diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index d2777c99cacb..2f960e28546c 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -148,6 +148,10 @@ #define PLAY_SYNTH (1<<5) #define PLAY_MISC (1<<6) +//toggles_survivor +#define PLAY_SURVIVOR_HOSTILE (1<<0) +#define PLAY_SURVIVOR_NON_HOSTILE (1<<1) + //toggles_admin /// Splits admin tabs in Statpanel #define SPLIT_ADMIN_TABS (1<<0) @@ -167,6 +171,8 @@ #define TOGGLES_ERT_DEFAULT (PLAY_LEADER|PLAY_MEDIC|PLAY_ENGINEER|PLAY_HEAVY|PLAY_SMARTGUNNER|PLAY_SYNTH|PLAY_MISC) +#define TOGGLES_SURVIVOR_DEFAULT (PLAY_SURVIVOR_HOSTILE|PLAY_SURVIVOR_NON_HOSTILE) + #define TOGGLES_ADMIN_DEFAULT (NONE) // Game Intents diff --git a/code/__DEFINES/job.dm b/code/__DEFINES/job.dm index 79f40c89bb53..c85082127c6c 100644 --- a/code/__DEFINES/job.dm +++ b/code/__DEFINES/job.dm @@ -40,11 +40,10 @@ GLOBAL_LIST_INIT(job_squad_roles, JOB_SQUAD_ROLES_LIST) #define MEDICAL_SURVIVOR "Medical Survivor" #define ENGINEERING_SURVIVOR "Engineering Survivor" #define CORPORATE_SURVIVOR "Corporate Survivor" -#define HOSTILE_SURVIVOR "Hostile Survivor" //AKA Marine Killers assuming they survive. Will do cultist survivor at some point. -#define SURVIVOR_VARIANT_LIST list(ANY_SURVIVOR = "Any", CIVILIAN_SURVIVOR = "Civ", SECURITY_SURVIVOR = "Sec", SCIENTIST_SURVIVOR = "Sci", MEDICAL_SURVIVOR = "Med", ENGINEERING_SURVIVOR = "Eng", CORPORATE_SURVIVOR = "W-Y", HOSTILE_SURVIVOR = "CLF") +#define SURVIVOR_VARIANT_LIST list(ANY_SURVIVOR = "Any", CIVILIAN_SURVIVOR = "Civ", SECURITY_SURVIVOR = "Sec", SCIENTIST_SURVIVOR = "Sci", MEDICAL_SURVIVOR = "Med", ENGINEERING_SURVIVOR = "Eng", CORPORATE_SURVIVOR = "W-Y") //-1 is infinite amount, these are soft caps and can be bypassed by randomization -#define MAX_SURVIVOR_PER_TYPE list(ANY_SURVIVOR = -1, CIVILIAN_SURVIVOR = -1, SECURITY_SURVIVOR = 2, SCIENTIST_SURVIVOR = 2, MEDICAL_SURVIVOR = 3, ENGINEERING_SURVIVOR = 4, CORPORATE_SURVIVOR = 2, HOSTILE_SURVIVOR = 1) +#define MAX_SURVIVOR_PER_TYPE list(ANY_SURVIVOR = -1, CIVILIAN_SURVIVOR = -1, SECURITY_SURVIVOR = 2, SCIENTIST_SURVIVOR = 2, MEDICAL_SURVIVOR = 3, ENGINEERING_SURVIVOR = 4, CORPORATE_SURVIVOR = 2) #define SPAWN_PRIORITY_VERY_HIGH 1 #define SPAWN_PRIORITY_HIGH 2 diff --git a/code/__DEFINES/nightmare.dm b/code/__DEFINES/nightmare.dm index 3395f365d07c..c518d631ee94 100644 --- a/code/__DEFINES/nightmare.dm +++ b/code/__DEFINES/nightmare.dm @@ -6,6 +6,8 @@ #define NIGHTMARE_CTX_GROUND "ground" /// Ship Map Context: Performs actions relevant to the ship map #define NIGHTMARE_CTX_SHIP "ship" +/// Hostile Survivor Scenarios +#define NIGHTMARE_SCENARIO_HOSTILE_SURVIVOR list("lvevent" = list("fallen_ship", "clfship"), "riot_in_progress" = list("clfship"), "panic_room" = list("clfship")) // File names for use in context configs #define NIGHTMARE_FILE_SCENARIO "scenario.json" diff --git a/code/controllers/subsystem/nightmare.dm b/code/controllers/subsystem/nightmare.dm index e963653b54a0..75b146a079d5 100644 --- a/code/controllers/subsystem/nightmare.dm +++ b/code/controllers/subsystem/nightmare.dm @@ -12,6 +12,8 @@ SUBSYSTEM_DEF(nightmare) var/list/contexts = list() /// List of parsed file nodes var/list/roots = list() + /// Associated list of scenarios that indicate hostile survivor spawning + var/list/hostile_survivor_scenarios = NIGHTMARE_SCENARIO_HOSTILE_SURVIVOR /datum/controller/subsystem/nightmare/Initialize(start_timeofday) var/global_nightmare_path = CONFIG_GET(string/nightmare_path) @@ -139,3 +141,13 @@ SUBSYSTEM_DEF(nightmare) else CRASH("Tried to instanciate an invalid node type") +/// Returns whether the ground context indicates a hostile survivor scenario +/datum/controller/subsystem/nightmare/proc/get_scenario_is_hostile_survivor() + // Assumption: Only ground context is relevant + var/datum/nmcontext/ground_context = contexts[NIGHTMARE_CTX_GROUND] + for(var/key in hostile_survivor_scenarios) + var/scenario = ground_context.get_scenario_value(key) + for(var/value in hostile_survivor_scenarios[key]) + if(scenario == value) + return TRUE + return FALSE diff --git a/code/game/jobs/job/civilians/other/survivors.dm b/code/game/jobs/job/civilians/other/survivors.dm index 87b7fcb2b18f..22eaeee2ca56 100644 --- a/code/game/jobs/job/civilians/other/survivors.dm +++ b/code/game/jobs/job/civilians/other/survivors.dm @@ -32,6 +32,16 @@ " to_chat_spaced(survivor, html = entrydisplay) +/datum/job/civilian/survivor/can_play_role_in_scenario(client/client) + . = ..() + if(!.) + return . + + if(SSnightmare.get_scenario_is_hostile_survivor()) + return HAS_FLAG(client.prefs?.toggles_survivor, PLAY_SURVIVOR_HOSTILE) + else + return HAS_FLAG(client.prefs?.toggles_survivor, PLAY_SURVIVOR_NON_HOSTILE) + /datum/job/civilian/survivor/spawn_in_player(mob/new_player/NP) . = ..() var/mob/living/carbon/human/H = . @@ -44,6 +54,12 @@ potential_spawners += spawner if(length(potential_spawners)) break + if(!length(potential_spawners)) + // Generally this shouldn't happen since role authority shouldn't be rolling us for a survivor in a hostile scenario + message_admins("Failed to spawn_in_player [key_name_admin(H)] as a survivor! This likely means NIGHTMARE_SCENARIO_HOSTILE_SURVIVOR is incorrect for this map!") + H.send_to_lobby() + qdel(H) + return null var/obj/effect/landmark/survivor_spawner/picked_spawner = pick(potential_spawners) H.forceMove(get_turf(picked_spawner)) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 0af315fc3b9d..f332d9a85648 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -127,6 +127,10 @@ return TRUE +/// Whether the client passes requirements for the scenario +/datum/job/proc/can_play_role_in_scenario(client/client) + return TRUE + /datum/job/proc/get_role_requirements(client/C) var/list/return_requirements = list() for(var/prereq in minimum_playtimes) diff --git a/code/game/jobs/role_authority.dm b/code/game/jobs/role_authority.dm index f32860c06d2c..7d71f086bca6 100644 --- a/code/game/jobs/role_authority.dm +++ b/code/game/jobs/role_authority.dm @@ -362,6 +362,8 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou return FALSE if(!J.can_play_role(M.client)) return FALSE + if(!J.can_play_role_in_scenario(M.client)) + return FALSE if(!J.check_whitelist_status(M)) return FALSE if(J.total_positions != -1 && J.get_total_positions(latejoin) <= J.current_positions) diff --git a/code/game/objects/effects/landmarks/survivor_spawner.dm b/code/game/objects/effects/landmarks/survivor_spawner.dm index 4a6e5272ed05..0a9c6f7ce39f 100644 --- a/code/game/objects/effects/landmarks/survivor_spawner.dm +++ b/code/game/objects/effects/landmarks/survivor_spawner.dm @@ -26,6 +26,12 @@ // prevents stacking survivors on top of eachother if(locate(/mob/living/carbon/human) in loc) return FALSE + if(!survivor) + return FALSE + if(hostile && !HAS_FLAG(survivor.client?.prefs?.toggles_survivor, PLAY_SURVIVOR_HOSTILE)) + return FALSE + if(!hostile && !HAS_FLAG(survivor.client?.prefs?.toggles_survivor, PLAY_SURVIVOR_NON_HOSTILE)) + return FALSE return TRUE /obj/effect/landmark/survivor_spawner/lv624_crashed_clf diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index b4ee572d8d2d..f7e1856c2d92 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -62,6 +62,7 @@ GLOBAL_LIST_INIT(bgstate_options, list( var/toggles_sound = TOGGLES_SOUND_DEFAULT var/toggles_flashing = TOGGLES_FLASHING_DEFAULT var/toggles_ert = TOGGLES_ERT_DEFAULT + var/toggles_survivor = TOGGLES_SURVIVOR_DEFAULT var/chat_display_preferences = CHAT_TYPE_ALL var/item_animation_pref_level = SHOW_ITEM_ANIMATIONS_ALL var/pain_overlay_pref_level = PAIN_OVERLAY_BLURRY @@ -652,6 +653,12 @@ GLOBAL_LIST_INIT(bgstate_options, list( dat += "Spawn as Miscellaneous: [toggles_ert & PLAY_MISC ? "Yes" : "No"]
" dat += "" + dat += "
" + dat += "

Survivor Settings:

" + dat += "Spawn as Hostile: [toggles_survivor & PLAY_SURVIVOR_HOSTILE ? "Yes" : "No"]
" + dat += "Spawn as Non-Hostile: [toggles_survivor & PLAY_SURVIVOR_NON_HOSTILE ? "Yes" : "No"]
" + dat += "
" + dat += "" winshow(user, "preferencewindow", TRUE) @@ -1909,6 +1916,16 @@ GLOBAL_LIST_INIT(bgstate_options, list( var/flag = text2num(href_list["flag"]) toggles_ert ^= flag + if("toggles_survivor") + var/flag = text2num(href_list["flag"]) + toggles_survivor ^= flag + if(!HAS_FLAG(toggles_survivor, PLAY_SURVIVOR_HOSTILE|PLAY_SURVIVOR_NON_HOSTILE)) + // Neither hostile nor non-hostile: Invert the other + if(flag == PLAY_SURVIVOR_NON_HOSTILE) + toggles_survivor ^= PLAY_SURVIVOR_HOSTILE + else + toggles_survivor ^= PLAY_SURVIVOR_NON_HOSTILE + if("ambientocclusion") toggle_prefs ^= TOGGLE_AMBIENT_OCCLUSION var/atom/movable/screen/plane_master/game_world/plane_master = locate() in user?.client.screen diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 54e98aceea94..68fb40067ed4 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -195,6 +195,7 @@ S["dual_wield_pref"] >> dual_wield_pref S["toggles_flashing"] >> toggles_flashing S["toggles_ert"] >> toggles_ert + S["toggles_survivor"] >> toggles_survivor S["toggles_admin"] >> toggles_admin S["UI_style"] >> UI_style S["tgui_say"] >> tgui_say @@ -282,6 +283,7 @@ dual_wield_pref = sanitize_integer(dual_wield_pref, 0, 2, initial(dual_wield_pref)) toggles_flashing= sanitize_integer(toggles_flashing, 0, SHORT_REAL_LIMIT, initial(toggles_flashing)) toggles_ert = sanitize_integer(toggles_ert, 0, SHORT_REAL_LIMIT, initial(toggles_ert)) + toggles_survivor = sanitize_integer(toggles_survivor, 0, SHORT_REAL_LIMIT, initial(toggles_survivor)) toggles_admin = sanitize_integer(toggles_admin, 0, SHORT_REAL_LIMIT, initial(toggles_admin)) UI_style_color = sanitize_hexcolor(UI_style_color, initial(UI_style_color)) UI_style_alpha = sanitize_integer(UI_style_alpha, 0, 255, initial(UI_style_alpha)) @@ -397,6 +399,7 @@ S["dual_wield_pref"] << dual_wield_pref S["toggles_flashing"] << toggles_flashing S["toggles_ert"] << toggles_ert + S["toggles_survivor"] << toggles_survivor S["toggles_admin"] << toggles_admin S["window_skin"] << window_skin S["fps"] << fps diff --git a/code/modules/gear_presets/survivors/lv_624/clfship_insert_lv624.dm b/code/modules/gear_presets/survivors/lv_624/clfship_insert_lv624.dm index 1bfeaaad9c43..0e99a03c1078 100644 --- a/code/modules/gear_presets/survivors/lv_624/clfship_insert_lv624.dm +++ b/code/modules/gear_presets/survivors/lv_624/clfship_insert_lv624.dm @@ -8,7 +8,6 @@ faction = FACTION_CLF faction_group = list(FACTION_CLF, FACTION_SURVIVOR) access = list(ACCESS_CIVILIAN_PUBLIC) - survivor_variant = HOSTILE_SURVIVOR /datum/equipment_preset/survivor/clf/load_gear(mob/living/carbon/human/new_human) diff --git a/code/modules/vehicles/cargo_train.dm b/code/modules/vehicles/cargo_train.dm index 40085ad078ea..85ae4ee29866 100644 --- a/code/modules/vehicles/cargo_train.dm +++ b/code/modules/vehicles/cargo_train.dm @@ -46,6 +46,11 @@ turn_off() //so engine verbs are correctly set +/obj/vehicle/train/cargo/engine/Destroy(force) + . = ..() + if(!QDELETED(key)) + QDEL_NULL(key) + /obj/vehicle/train/cargo/engine/Move() if(on && cell.charge < charge_use) turn_off() diff --git a/code/modules/vehicles/train.dm b/code/modules/vehicles/train.dm index cbad4535df72..3e6a2f087b99 100644 --- a/code/modules/vehicles/train.dm +++ b/code/modules/vehicles/train.dm @@ -27,6 +27,11 @@ for(var/obj/vehicle/train/T in orange(1, src)) latch(T) +/obj/vehicle/train/Destroy(force) + . = ..() + lead = null + tow = null + /obj/vehicle/train/Move() var/old_loc = get_turf(src) . = ..() diff --git a/code/modules/vehicles/vehicle.dm b/code/modules/vehicles/vehicle.dm index c78be6fa57ec..d26e288a192f 100644 --- a/code/modules/vehicles/vehicle.dm +++ b/code/modules/vehicles/vehicle.dm @@ -37,6 +37,11 @@ // Standard procs //------------------------------------------- +/obj/vehicle/Destroy(force) + . = ..() + if(!QDELETED(cell)) + QDEL_NULL(cell) + /obj/vehicle/initialize_pass_flags(datum/pass_flags_container/PF) ..() if (PF) diff --git a/maps/Nightmare/maps/BigRed/nightmare.json b/maps/Nightmare/maps/BigRed/nightmare.json index 5c66a5dc94f1..d01e201bea7d 100644 --- a/maps/Nightmare/maps/BigRed/nightmare.json +++ b/maps/Nightmare/maps/BigRed/nightmare.json @@ -1,8 +1,8 @@ [ { "type": "map_sprinkle", "path": "sprinkles/" }, { "type": "pick", "chance": 0.40, "choices": [ - { "type": "map_insert", "landmark": "crashlanding-offices", "path": "standalone/crashlanding-offices.dmm" }, - { "type": "map_insert", "landmark": "crashlanding-eva", "path": "standalone/crashlanding-eva.dmm" } + { "type": "map_insert", "landmark": "crashlanding-offices", "path": "standalone/crashlanding-offices.dmm", "when": { "lvevent": "none" } }, + { "type": "map_insert", "landmark": "crashlanding-eva", "path": "standalone/crashlanding-eva.dmm", "when": { "lvevent": "none" } } ]}, { "type": "map_insert", "chance": 0.50, "landmark": "lambda-graveyard", "path": "standalone/lambda-graveyard.dmm" }, { "type": "pick", "chance": 0.50, "choices": [ @@ -12,5 +12,12 @@ { "type": "pick", "chance": 0.50, "choices": [ { "weight": 3, "type": "map_insert", "landmark": "medbay-passage", "path": "standalone/medbay-passage.dmm" }, { "weight": 1, "type": "map_insert", "landmark": "medbay-v3", "path": "standalone/medbay-v3.dmm" } - ]} + ]}, + { + "type": "map_insert", + "landmark": "clfship", + "chance": 1.0, + "path": "standalone/clfship.dmm", + "when": { "lvevent": "fallen_ship" } + } ] diff --git a/maps/Nightmare/maps/BigRed/scenario.json b/maps/Nightmare/maps/BigRed/scenario.json index fe51488c7066..de7c9df2990b 100644 --- a/maps/Nightmare/maps/BigRed/scenario.json +++ b/maps/Nightmare/maps/BigRed/scenario.json @@ -1 +1,10 @@ -[] +[ + { + "type": "pick", "name": "Big Red Global Event", + "choices": [ + { "weight": 9, "type": "def", "values": { "lvevent": "none" } }, + { "weight": 1, "type": "def", "values": { "lvevent": "fallen_ship" } } + ] + } + +] diff --git a/maps/Nightmare/maps/DesertDam/nightmare.json b/maps/Nightmare/maps/DesertDam/nightmare.json index 75a4a605556f..c3f60b7181b2 100644 --- a/maps/Nightmare/maps/DesertDam/nightmare.json +++ b/maps/Nightmare/maps/DesertDam/nightmare.json @@ -19,5 +19,12 @@ "chance": 1.0, "path": "standalone/crashlanding-upp-alt1.dmm", "when": { "lvevent": "uppcrash" } + }, + { + "type": "map_insert", + "landmark": "clfship", + "chance": 1.0, + "path": "standalone/clfship.dmm", + "when": { "lvevent": "clfship" } } ] diff --git a/maps/Nightmare/maps/DesertDam/scenario.json b/maps/Nightmare/maps/DesertDam/scenario.json index bacb95e27c25..ad710697ecdd 100644 --- a/maps/Nightmare/maps/DesertDam/scenario.json +++ b/maps/Nightmare/maps/DesertDam/scenario.json @@ -2,8 +2,9 @@ { "type": "pick", "name": "uppcrash", "choices": [ - { "weight": 10, "type": "def", "values": { "lvevent": "none" } }, - { "weight": 4, "type": "def", "values": { "lvevent": "uppcrash" } } + { "weight": 5, "type": "def", "values": { "lvevent": "none" } }, + { "weight": 4, "type": "def", "values": { "lvevent": "uppcrash" } }, + { "weight": 1, "type": "def", "values": { "lvevent": "clfship" } } ] } ] diff --git a/maps/Nightmare/maps/FOP_v3_Sciannex/nightmare.json b/maps/Nightmare/maps/FOP_v3_Sciannex/nightmare.json index 156b291fb203..9cdf08bebac3 100644 --- a/maps/Nightmare/maps/FOP_v3_Sciannex/nightmare.json +++ b/maps/Nightmare/maps/FOP_v3_Sciannex/nightmare.json @@ -5,6 +5,13 @@ "landmark": "riot_control", "chance": 0.5, "path": "standalone/riot_in_progress.dmm", - "when": { "riot_in_progress": "true" } + "when": { "riot_in_progress": "riot" } +}, +{ + "type": "map_insert", + "landmark": "clfship", + "chance": 1.0, + "path": "standalone/clfship.dmm", + "when": { "riot_in_progress": "clfship" } } ] diff --git a/maps/Nightmare/maps/FOP_v3_Sciannex/scenario.json b/maps/Nightmare/maps/FOP_v3_Sciannex/scenario.json index 217ac5a8cb38..d83dfd12adb1 100644 --- a/maps/Nightmare/maps/FOP_v3_Sciannex/scenario.json +++ b/maps/Nightmare/maps/FOP_v3_Sciannex/scenario.json @@ -2,8 +2,9 @@ { "type": "pick", "name": "Riot Control", "choices": [ - { "weight": 4, "type": "def", "values": { "riot_in_progress": "none" } }, - { "weight": 2, "type": "def", "values": { "riot_in_progress": "true" } } + { "weight": 6, "type": "def", "values": { "riot_in_progress": "none" } }, + { "weight": 3, "type": "def", "values": { "riot_in_progress": "riot" } }, + { "weight": 1, "type": "def", "values": { "riot_in_progress": "clfship" } } ] } ] diff --git a/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json b/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json index 301ffa337115..4d1f0d68b636 100644 --- a/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json +++ b/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json @@ -103,5 +103,12 @@ "chance": 0.5, "path": "standalone/panic_room_hold.dmm", "when": { "panic_room": "full" } + }, + { + "type": "map_insert", + "landmark": "clfship", + "chance": 1.0, + "path": "standalone/clfship.dmm", + "when": { "panic_room": "clfship" } } ] diff --git a/maps/Nightmare/maps/Ice_Colony_v3/scenario.json b/maps/Nightmare/maps/Ice_Colony_v3/scenario.json index 4b4eb7b6b92f..dd0c85f45660 100644 --- a/maps/Nightmare/maps/Ice_Colony_v3/scenario.json +++ b/maps/Nightmare/maps/Ice_Colony_v3/scenario.json @@ -12,9 +12,11 @@ { "type": "pick", "name": "Panic Room", "choices": [ - { "weight": 10, "type": "def", "values": { "panic_room": "none"} }, - { "weight": 3, "type": "def", "values": { "panic_room": "full"} } + { "weight": 6, "type": "def", "values": { "panic_room": "none"} }, + { "weight": 3, "type": "def", "values": { "panic_room": "full"} }, + { "weight": 1, "type": "def", "values": { "panic_room": "clfship"} } ] } + ] diff --git a/maps/Nightmare/maps/Kutjevo/nightmare.json b/maps/Nightmare/maps/Kutjevo/nightmare.json index f3a4d42dd32e..e4c6063fa9d3 100644 --- a/maps/Nightmare/maps/Kutjevo/nightmare.json +++ b/maps/Nightmare/maps/Kutjevo/nightmare.json @@ -2,5 +2,12 @@ { "type": "map_sprinkle", "path": "sprinkles/" - } + }, + { + "type": "map_insert", + "landmark": "clfship", + "chance": 1.0, + "path": "standalone/clfship.dmm", + "when": { "lvevent": "clfship" } + } ] diff --git a/maps/Nightmare/maps/Kutjevo/scenario.json b/maps/Nightmare/maps/Kutjevo/scenario.json index fe51488c7066..943f61a50b4b 100644 --- a/maps/Nightmare/maps/Kutjevo/scenario.json +++ b/maps/Nightmare/maps/Kutjevo/scenario.json @@ -1 +1,9 @@ -[] +[ + { + "type": "pick", "name": "event", + "choices": [ + { "weight": 9, "type": "def", "values": { "lvevent": "none" } }, + { "weight": 1, "type": "def", "values": { "lvevent": "clfship" } } + ] + } +] diff --git a/maps/Nightmare/maps/LV624/nightmare.json b/maps/Nightmare/maps/LV624/nightmare.json index 0fe51643177b..e60101db3157 100644 --- a/maps/Nightmare/maps/LV624/nightmare.json +++ b/maps/Nightmare/maps/LV624/nightmare.json @@ -2,7 +2,7 @@ { "type": "map_insert", "landmark": "clfship", - "chance": 0.2, + "chance": 0.5, "path": "standalone/clfship.dmm", "when": { "lvevent": "fallen_ship" } }, diff --git a/maps/Nightmare/maps/New_Varadero/nightmare.json b/maps/Nightmare/maps/New_Varadero/nightmare.json new file mode 100644 index 000000000000..e4c6063fa9d3 --- /dev/null +++ b/maps/Nightmare/maps/New_Varadero/nightmare.json @@ -0,0 +1,13 @@ +[ + { + "type": "map_sprinkle", + "path": "sprinkles/" + }, + { + "type": "map_insert", + "landmark": "clfship", + "chance": 1.0, + "path": "standalone/clfship.dmm", + "when": { "lvevent": "clfship" } + } +] diff --git a/maps/Nightmare/maps/New_Varadero/scenario.json b/maps/Nightmare/maps/New_Varadero/scenario.json new file mode 100644 index 000000000000..943f61a50b4b --- /dev/null +++ b/maps/Nightmare/maps/New_Varadero/scenario.json @@ -0,0 +1,9 @@ +[ + { + "type": "pick", "name": "event", + "choices": [ + { "weight": 9, "type": "def", "values": { "lvevent": "none" } }, + { "weight": 1, "type": "def", "values": { "lvevent": "clfship" } } + ] + } +] diff --git a/maps/Nightmare/maps/Sorokyne_Strata/nightmare.json b/maps/Nightmare/maps/Sorokyne_Strata/nightmare.json index f3a4d42dd32e..e4c6063fa9d3 100644 --- a/maps/Nightmare/maps/Sorokyne_Strata/nightmare.json +++ b/maps/Nightmare/maps/Sorokyne_Strata/nightmare.json @@ -2,5 +2,12 @@ { "type": "map_sprinkle", "path": "sprinkles/" - } + }, + { + "type": "map_insert", + "landmark": "clfship", + "chance": 1.0, + "path": "standalone/clfship.dmm", + "when": { "lvevent": "clfship" } + } ] diff --git a/maps/Nightmare/maps/Sorokyne_Strata/scenario.json b/maps/Nightmare/maps/Sorokyne_Strata/scenario.json index fe51488c7066..943f61a50b4b 100644 --- a/maps/Nightmare/maps/Sorokyne_Strata/scenario.json +++ b/maps/Nightmare/maps/Sorokyne_Strata/scenario.json @@ -1 +1,9 @@ -[] +[ + { + "type": "pick", "name": "event", + "choices": [ + { "weight": 9, "type": "def", "values": { "lvevent": "none" } }, + { "weight": 1, "type": "def", "values": { "lvevent": "clfship" } } + ] + } +] diff --git a/maps/bigredv2.json b/maps/bigredv2.json index 996d0d44422d..e36963ccf0fa 100644 --- a/maps/bigredv2.json +++ b/maps/bigredv2.json @@ -15,7 +15,6 @@ "/datum/equipment_preset/survivor/colonial_marshal/solaris", "/datum/equipment_preset/survivor/corporate/solaris", "/datum/equipment_preset/survivor/flight_control_operator", - "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], "defcon_triggers": [ diff --git a/maps/corsat.json b/maps/corsat.json index 87a41e840d61..22af8a4ca8fa 100644 --- a/maps/corsat.json +++ b/maps/corsat.json @@ -15,7 +15,6 @@ "/datum/equipment_preset/survivor/security/corsat", "/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/corsat", "/datum/equipment_preset/survivor/engineer/corsat", - "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], "defcon_triggers": [ diff --git a/maps/desert_dam.json b/maps/desert_dam.json index b40e9887d15b..bd96c3586508 100644 --- a/maps/desert_dam.json +++ b/maps/desert_dam.json @@ -15,7 +15,6 @@ "/datum/equipment_preset/survivor/trucker/trijent", "/datum/equipment_preset/survivor/security/trijent", "/datum/equipment_preset/survivor/corporate/trijent", - "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], "defcon_triggers": [ diff --git a/maps/fiorina_sciannex.json b/maps/fiorina_sciannex.json index 61212c433be0..39e1f1eaf459 100644 --- a/maps/fiorina_sciannex.json +++ b/maps/fiorina_sciannex.json @@ -13,7 +13,6 @@ "/datum/equipment_preset/survivor/prisoner", "/datum/equipment_preset/survivor/gangleader", "/datum/equipment_preset/survivor/engineer/fiorina", - "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], "defcon_triggers": [ diff --git a/maps/ice_colony_v2.json b/maps/ice_colony_v2.json index d8baaab7dcd4..bc6307239bf1 100644 --- a/maps/ice_colony_v2.json +++ b/maps/ice_colony_v2.json @@ -11,7 +11,6 @@ "/datum/equipment_preset/survivor/scientist/shiva", "/datum/equipment_preset/survivor/engineer/shiva", "/datum/equipment_preset/survivor/security/shiva", - "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], "defcon_triggers": [ diff --git a/maps/kutjevo.json b/maps/kutjevo.json index 83a0ff90c575..f740cbfc9b1d 100644 --- a/maps/kutjevo.json +++ b/maps/kutjevo.json @@ -11,7 +11,6 @@ "/datum/equipment_preset/survivor/colonial_marshal/kutjevo", "/datum/equipment_preset/survivor/trucker/kutjevo", "/datum/equipment_preset/survivor/security/kutjevo", - "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], "defcon_triggers": [ diff --git a/maps/lv624.json b/maps/lv624.json index 7c782c0a43bf..79f30234c312 100644 --- a/maps/lv624.json +++ b/maps/lv624.json @@ -14,7 +14,6 @@ "/datum/equipment_preset/survivor/security/lv", "/datum/equipment_preset/survivor/colonial_marshal/lv", "/datum/equipment_preset/survivor/goon", - "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], "map_item_type": "/obj/item/map/lazarus_landing_map", diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index b71c76ab1cb9..1f5a4969ec85 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -8,142 +8,32 @@ icon_state = "pwall" }, /area/space) -"aad" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) "aae" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) -"aaf" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"aag" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port) "aah" = ( /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aai" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"aaj" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"aak" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"aal" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"aam" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"aan" = ( -/obj/effect/landmark/crap_item, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) "aao" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"aap" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) "aaq" = ( /obj/structure/sign/safety/hazard, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) -"aar" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"aas" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"aat" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) "aau" = ( /obj/docking_port/stationary/marine_dropship/lz1{ name = "LZ1: Communications Landing Zone" }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aav" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) "aaw" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/space_port) -"aax" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/hvac{ - pixel_x = -32 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aay" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aaz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aaA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aaB" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/telecomm/n_cave) -"aaC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aaD" = ( -/obj/structure/prop/tower, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port) -"aaE" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) "aaF" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aaG" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) "aaH" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating, @@ -156,143 +46,19 @@ /obj/structure/cargo_container/grant/right, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aaK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"aaL" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aaM" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aaN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aaO" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aaP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aaQ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aaR" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"aaS" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"aaT" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) "aaU" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aaV" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"aaW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Spaceport" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/space_port) "aaX" = ( /obj/structure/closet/secure_closet/injection, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"aaY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aaZ" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"aba" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) "abc" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"abe" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -32; - start_charge = 0 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"abf" = ( -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"abg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"abh" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/door_control{ - id = "Spaceport"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/item/tool/pen, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"abi" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"abj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) "abk" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/floor/plating, @@ -305,40 +71,6 @@ /obj/structure/cargo_container/arious/right, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"abn" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"abo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"abp" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"abq" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_north) -"abr" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_north) -"abs" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_north) -"abt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) "abu" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/floor/plating, @@ -360,90 +92,15 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aby" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/landing/console) -"abA" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"abB" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"abC" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) "abD" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"abE" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/outside/space_port) -"abF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"abG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"abH" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/obj/structure/surface/table, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"abI" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"abJ" = ( -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"abK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/outside/space_port) -"abM" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_north) "abO" = ( /turf/open/mars_cave, /area/bigredv2/caves_north) -"abP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"abQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) "abR" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -464,71 +121,20 @@ /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"abV" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_north) -"abY" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_north) -"abZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) "aca" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"acb" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) +"acc" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/n) "acd" = ( /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"ace" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"acf" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"acg" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"ach" = ( -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"acj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"acl" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"acm" = ( -/obj/item/tool/pickaxe, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) "acn" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, @@ -559,32 +165,10 @@ /obj/structure/window_frame/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"acu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"acv" = ( -/obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"acw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) "acx" = ( /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"acy" = ( -/obj/structure/machinery/botany, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) -"acz" = ( -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) "acA" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm) @@ -592,162 +176,15 @@ /obj/effect/landmark/hunter_primary, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"acC" = ( -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"acD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"acF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"acH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"acI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"acJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"acK" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"acL" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"acM" = ( -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"acO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) "acP" = ( /turf/open/mars, /area/bigredv2/outside/n) "acQ" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/telecomm) -"acR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Telecommunications" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm) -"acS" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"acT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"acU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"acV" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"acX" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"acY" = ( -/obj/structure/surface/table, -/obj/item/folder/black, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) "acZ" = ( /turf/open/floor/greengrid, /area/bigredv2/outside/telecomm) -"ada" = ( -/mob/living/simple_animal/hostile/retaliate/clown{ - desc = "Always returning. Always watching."; - health = 10000; - move_to_delay = 2; - name = "Gonzo the Magnificent"; - rapid = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"adb" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"adc" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/head/det_hat, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"add" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"ade" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"adf" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"adg" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"adh" = ( -/turf/open/floor/darkish, -/area/bigredv2/outside/marshal_office) -"adi" = ( -/obj/item/shard, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) "adj" = ( /obj/item/shard, /obj/effect/decal/cleanable/dirt, @@ -757,187 +194,53 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"adl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/space_port) -"adm" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/white, +"adz" = ( +/obj/structure/window/framed/solaris/reinforced/tinted, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"adn" = ( +"adA" = ( /obj/structure/bed/chair{ dir = 8 }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/white, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"ado" = ( -/obj/structure/bed/chair{ +"adB" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"adG" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"adp" = ( +"adL" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/whitegreen/east, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"adQ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adr" = ( +"adR" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"ads" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"adt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"adu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"adv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"adw" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"ady" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkish, -/area/bigredv2/outside/marshal_office) -"adz" = ( -/obj/structure/window/framed/solaris/reinforced/tinted, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"adA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"adB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"adC" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"adD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/marshal_office) -"adE" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"adF" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/item/tool/soap/deluxe, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"adG" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/structure/window_frame/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"adH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"adI" = ( -/obj/structure/surface/table, -/obj/item/tool/extinguisher, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"adJ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"adL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"adM" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"adN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"adO" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"adP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"adQ" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"adR" = ( -/obj/structure/machinery/light{ - dir = 1 + dir = 1 }, /turf/open/floor, /area/bigredv2/outside/marshal_office) "adS" = ( /turf/open/floor, /area/bigredv2/outside/marshal_office) -"adT" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/floor4, -/area/bigredv2/outside/marshal_office) "adU" = ( /obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ @@ -947,110 +250,15 @@ /obj/item/paper/bigred/crazy, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"adW" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) "adZ" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/lambda/xenobiology) -"aea" = ( -/obj/structure/machinery/computer/telecomms/monitor{ - req_one_access_txt = "19;200" - }, -/obj/structure/transmitter/colony_net{ - dir = 4; - phone_category = "Solaris Ridge"; - phone_color = "yellow"; - phone_id = "Communications"; - pixel_x = -18 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"aeb" = ( -/obj/item/device/radio/headset, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"aec" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Telecommunications" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm) -"aed" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"aee" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"aef" = ( -/obj/structure/surface/table, -/obj/item/device/radio/headset, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"aeg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"aeh" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"aei" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"aej" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"aek" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) "ael" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"aem" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"aen" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"aeo" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Marshal Office Prison Toilet" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) "aep" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -32 @@ -1067,20 +275,6 @@ /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"aes" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"aet" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"aeu" = ( -/obj/item/clothing/accessory/storage/holster/armpit, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) "aev" = ( /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) @@ -1093,41 +287,6 @@ /obj/structure/closet/crate/freezer/rations, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aey" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whiteyellow/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"aez" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whiteyellow/north, -/area/bigredv2/caves/lambda/xenobiology) -"aeA" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/whiteyellow/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"aeB" = ( -/obj/structure/machinery/computer/telecomms/server{ - req_one_access_txt = "19;200" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"aeC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"aeD" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"aeE" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/xenobiology) "aeF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -1149,56 +308,11 @@ "aeI" = ( /turf/open/mars, /area/bigredv2/outside/nw) -"aeJ" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"aeK" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"aeL" = ( -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"aeM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) "aeN" = ( /obj/structure/bed/stool, /obj/item/clothing/shoes/jackboots, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"aeO" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/recharger, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"aeP" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/flask/detflask, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"aeQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"aeS" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"aeT" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) "aeU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, @@ -1207,48 +321,10 @@ /obj/structure/closet/crate/radiation, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aeW" = ( -/turf/open/floor/whiteyellow/west, -/area/bigredv2/caves/lambda/xenobiology) -"aeX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull, -/area/bigredv2/caves/lambda/xenobiology) -"aeY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/lambda/xenobiology) -"aeZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/whiteyellowcorner/east, -/area/bigredv2/caves/lambda/xenobiology) -"afa" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whiteyellow/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"afb" = ( -/obj/structure/machinery/computer/telecomms/traffic{ - req_one_access_txt = "19;200" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"afc" = ( -/obj/item/folder/yellow, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) "afd" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aff" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/surface/table, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) "afg" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, @@ -1263,55 +339,6 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"afj" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"afk" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"afl" = ( -/obj/structure/machinery/flasher/portable, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"afm" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"afn" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"afo" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"afp" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"afq" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) "afr" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -1319,23 +346,6 @@ /obj/structure/closet/bombclosetsecurity, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"afs" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"aft" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/hemostat, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"afu" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) "afv" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -1344,25 +354,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/telecomm) -"afw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"afx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"afy" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) "afz" = ( /turf/open/floor/plating, /area/bigredv2/caves/lambda/research) @@ -1374,48 +365,11 @@ /obj/structure/machinery/smartfridge/chemistry, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"afC" = ( -/obj/structure/foamed_metal, -/turf/open/floor/whiteyellow/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"afD" = ( -/obj/item/device/mass_spectrometer/adv, -/obj/structure/foamed_metal, -/turf/open/floor/whiteyellow, -/area/bigredv2/caves/lambda/xenobiology) -"afE" = ( -/turf/open/floor/whiteyellow, -/area/bigredv2/caves/lambda/xenobiology) -"afF" = ( -/obj/structure/machinery/light, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/lambda/xenobiology) -"afG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/whiteyellow/southeast, -/area/bigredv2/caves/lambda/xenobiology) "afH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"afI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/door_control{ - id = "tcomms"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"afJ" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) "afK" = ( /obj/structure/machinery/power/apc{ start_charge = 0 @@ -1431,11248 +385,8268 @@ }, /turf/open/floor/greengrid, /area/bigredv2/outside/telecomm) -"afM" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"afO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/delivery, +"afU" = ( +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"afP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" +"afX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"afQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"agm" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves_north) +"agr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/delivery, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"agu" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/nw) +"agy" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Marshal Offices"; + name = "\improper Marshal Offices Shutters" + }, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"afR" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/vault2/west, +"agR" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_north) +"ahf" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"ahh" = ( +/obj/structure/girder/reinforced, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"ahi" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/nw) +"ahk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"afS" = ( -/turf/open/floor/dark, +"ahl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"afT" = ( +"ahm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"afU" = ( -/obj/structure/closet/bombclosetsecurity, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"afV" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/structure/machinery/light{ +"ahn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/floor4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"afW" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 +"aho" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/wood, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"afY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/lambda/xenobiology) -"afZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves/lambda/xenobiology) -"aga" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"agb" = ( -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"agc" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"agd" = ( -/turf/open/floor/dark, +"ahs" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aht" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ahu" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ahv" = ( +/obj/structure/surface/table/holotable/wood, +/obj/item/paper_bin, +/obj/item/tool/pen/clicky, +/turf/open/floor/carpet, /area/bigredv2/caves/lambda/breakroom) -"age" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Lambda Lab Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"agf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window{ - dir = 2 +"ahN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"ahX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/nw) +"aiv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"aiL" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/storage/CMB, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aiM" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aiN" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aiO" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aiP" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/structure/foamed_metal, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "chem_lock"; - name = "\improper Chemistry Lockdown" +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajd" = ( +/obj/structure/surface/table/holotable/wood, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_color = "blue"; + phone_id = "Administration" }, -/turf/open/floor/whiteyellowfull, -/area/bigredv2/caves/lambda/xenobiology) -"agg" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Chemistry Lab" +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 6 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"agh" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"agi" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"agj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"agk" = ( -/obj/structure/toilet{ +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"aje" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajf" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajg" = ( +/obj/structure/surface/table, +/obj/item/evidencebag, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajh" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/armor/det_suit, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aji" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/flashbang, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajj" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/window, -/obj/structure/window/reinforced, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"agl" = ( -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"agm" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves_north) -"agn" = ( +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajm" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"ajL" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"ago" = ( +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajM" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajN" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/space_port) -"agq" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/n) -"agr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"ags" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/n) -"agt" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/grimy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"agu" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/nw) -"agv" = ( -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/space_port) -"agw" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"agx" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"agy" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Marshal Offices"; - name = "\improper Marshal Offices Shutters" +"ajO" = ( +/obj/structure/machinery/prop/almayer/computer/PC, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ajP" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"agz" = ( -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"agA" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"agB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"agC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"agD" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"agE" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/dark, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"agF" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +"ajQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/recharger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"agG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +"ajR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"agH" = ( -/obj/structure/pipes/vents/pump, +"ajS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"agI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/obj/item/weapon/shield/riot, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"agJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Head Office" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/delivery, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"agK" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"agL" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/shard, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"agM" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Surgery" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"agN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/shard{ - icon_state = "small" +"ajU" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/maint{ + pixel_y = -32 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"agO" = ( +"aka" = ( +/obj/structure/machinery/faxmachine, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"akb" = ( +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"akc" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"agP" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/dark, +"akj" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Office Complex 2"; + name = "\improper Marshal Office Complex Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"akl" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"ako" = ( +/turf/closed/wall/solaris, /area/bigredv2/outside/general_offices) -"agQ" = ( -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"agS" = ( -/obj/structure/machinery/light{ +"akp" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"akq" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"akr" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aks" = ( +/obj/effect/landmark/good_item, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"akt" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"agT" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aku" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Dormitories"; + name = "\improper Dormitories Shutters" }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"agU" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/lambda/xenobiology) -"agV" = ( -/obj/structure/foamed_metal, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/lambda/xenobiology) -"agW" = ( -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"agX" = ( -/obj/structure/foamed_metal, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"agY" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitegreenfull, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"akL" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/general_offices) +"akU" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"akV" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/n) +"alr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"alu" = ( +/turf/closed/wall/solaris, /area/bigredv2/outside/medical) -"agZ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ +"alx" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"aha" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"alD" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Medical"; + name = "\improper Medical Storm Shutters" }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"ahb" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"alK" = ( +/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"ahc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +"alX" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/medical) +"alZ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Marshal Offices"; + name = "\improper Marshal Offices Shutters" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"ahd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"ahe" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"ahf" = ( -/obj/structure/surface/table, -/turf/open/floor, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"amb" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"amh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/closed/wall/solaris, /area/bigredv2/outside/general_offices) -"ahg" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"ahh" = ( -/obj/structure/girder/reinforced, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"ahi" = ( +"ami" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/nw) -"ahj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"ahk" = ( +"amj" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"amk" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/breakroom) +"aml" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"amm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"amn" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/dorms) +"amo" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"ahl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"amp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"ahm" = ( +"amq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/item/clothing/shoes/black, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"ahn" = ( +"amr" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"aho" = ( +"amu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, +/obj/effect/landmark/survivor_spawner, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"ahp" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ahq" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"ahr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ahs" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aht" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahu" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahv" = ( -/obj/structure/surface/table/holotable/wood, -/obj/item/paper_bin, -/obj/item/tool/pen/clicky, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ahw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"ahx" = ( +"amD" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"ahy" = ( +/turf/open/mars, +/area/bigredv2/outside/n) +"amE" = ( +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"amF" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"amH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"ahz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/lambda/xenobiology) -"ahA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"ahB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Surgery" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"ahC" = ( -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"ahD" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/darkpurple2, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"ahE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -32 +"amI" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Dormitories"; + name = "\improper Dormitories Shutters" }, -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"ahF" = ( -/obj/structure/closet/hydrant{ - pixel_y = -32 +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"amV" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Dormitories"; + name = "\improper Dormitories Shutters" }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"ahG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"amX" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) +"amY" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "sci_br"; + name = "\improper Lambda Observation Shutters" }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"ahH" = ( -/turf/open/floor/darkpurple2, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/breakroom) -"ahI" = ( -/obj/structure/foamed_metal, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"ahJ" = ( -/obj/structure/foamed_metal, -/obj/structure/machinery/light, -/turf/open/floor/darkpurple2, +"amZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_offices) +"anf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"anj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"ank" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"ahK" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/space_port) -"ahL" = ( -/turf/open/floor/darkpurplecorners2/east, +"anl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"ahM" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Cell" - }, -/turf/open/floor/delivery, +"anm" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"ahN" = ( -/obj/effect/decal/cleanable/dirt, +"anp" = ( /turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"ahO" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/nw) -"ahP" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"ahQ" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/nw) -"ahR" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"ahS" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"ahT" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/nw) -"ahU" = ( -/obj/structure/lz_sign/solaris_sign, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"ahV" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/nw) -"ahW" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"ahX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/nw) -"ahY" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"ahZ" = ( -/obj/item/stack/rods, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"aia" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 +/area/bigredv2/outside/nw/ceiling) +"ant" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Dormitories"; + name = "\improper Dormitories Shutters" }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"aib" = ( -/obj/structure/machinery/light, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"aic" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"aid" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"anw" = ( +/obj/structure/sign/safety/bulkhead_door, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/breakroom) +"anB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"aie" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"aif" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aig" = ( -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves_lambda) -"aih" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Armory" - }, -/turf/open/floor/delivery, +"anC" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aii" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Equipment" - }, -/turf/open/floor/delivery, +"anD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aij" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"aik" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"ail" = ( -/obj/structure/bed/roller, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"aim" = ( -/obj/structure/surface/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 +"anI" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/research) +"anJ" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"anK" = ( +/obj/structure/window_frame/solaris, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/item/storage/box/beakers, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"ain" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Lambda Lab Maintenance" +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"anL" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/research) +"anM" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"aio" = ( -/turf/open/floor/darkpurplecorners2/west, -/area/bigredv2/caves/lambda/xenobiology) -"aip" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump, -/obj/item/device/flashlight/lamp, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aiq" = ( -/obj/structure/largecrate/random, -/turf/open/floor/dark, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"air" = ( -/obj/effect/landmark/crap_item, +"anN" = ( +/obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"ais" = ( -/obj/structure/urinal{ - pixel_y = 32 +"anT" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/hydroponics) +"anU" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Greenhouse"; + name = "\improper Greenhouse Shutters" }, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"ait" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"aiu" = ( -/obj/structure/sink{ +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) +"anW" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/library) +"anX" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - pixel_x = 11 + id = "Greenhouse"; + name = "\improper Greenhouse Shutters" }, -/obj/structure/mirror{ - pixel_x = 30 +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) +"anY" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) +"anZ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Medical"; + name = "\improper Medical Storm Shutters" }, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"aiv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"aob" = ( /turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"aiw" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"aix" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"aiy" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"aiz" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/nw) -"aiA" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/nw) -"aiB" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/nw) -"aiC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office Brig" +/area/bigredv2/caves/lambda/virology) +"aoc" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Library"; + name = "\improper Library Shutters" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"aiD" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/library) +"aof" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/admin_building) +"aoj" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"aiE" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aiF" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/dark, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aiG" = ( -/obj/structure/surface/table, -/obj/item/restraint/handcuffs, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "red"; - phone_id = "Marshal Office" +"aoo" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aiH" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aiI" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/head/beret/sec/warden, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aiJ" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aiK" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aiL" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/storage/CMB, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiM" = ( -/obj/structure/surface/table, -/obj/item/restraint/handcuffs, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiN" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiO" = ( -/obj/structure/bed/chair, +/area/bigredv2/outside/general_offices) +"aop" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +/area/bigredv2/outside/general_offices) +"aoq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" +/area/bigredv2/outside/general_offices) +"aou" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"aoz" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Bar Complex"; + name = "\improper Bar Complex Shutters" }, -/turf/open/floor/delivery, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aoD" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/virology) +"aoE" = ( +/obj/item/stool, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aoH" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_store) +"aoW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aiR" = ( +"apc" = ( +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"apd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aph" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkpurplecorners2/west, -/area/bigredv2/caves/lambda/xenobiology) -"aiS" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"aiT" = ( -/obj/structure/pipes/vents/scrubber/on, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/xenobiology) -"aiU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Lambda Lab Prison Restroom" +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"api" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/delivery, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"app" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aiV" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/white, +"apq" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aiW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"aiX" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"aiY" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/device/defibrillator, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aiZ" = ( -/obj/structure/machinery/computer/cameras, +"apr" = ( /obj/structure/surface/table, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"aja" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aps" = ( /obj/structure/surface/table, -/obj/item/ore/diamond, -/obj/item/ore/uranium, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"ajb" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"ajc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"ajd" = ( -/obj/structure/surface/table/holotable/wood, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_color = "blue"; - phone_id = "Administration" +/obj/item/circuitboard/machine/batteryrack, +/obj/item/stack/cable_coil/orange, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"apt" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "General Store"; + name = "\improper General Store Shutters" }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 5; - pixel_y = 6 +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"apu" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"apC" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"apD" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Operations"; + name = "\improper Operations Shutters" }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"aje" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajf" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajg" = ( -/obj/structure/surface/table, -/obj/item/evidencebag, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajh" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/armor/det_suit, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"apG" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/virology) +"apI" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"apJ" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Operations"; + name = "\improper Operations Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"apK" = ( +/obj/structure/bed/chair, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aji" = ( -/obj/structure/surface/table, -/obj/item/explosive/grenade/flashbang, +/area/bigredv2/outside/general_offices) +"apL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajj" = ( -/obj/structure/machinery/light{ +/area/bigredv2/outside/general_offices) +"apQ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"apR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajk" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"ajl" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"apS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"aqb" = ( /obj/structure/surface/table, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"ajm" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aqc" = ( /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) -"ajn" = ( -/obj/structure/platform/shiva{ - dir = 1 +"aqx" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Library"; + name = "\improper Library Shutters" }, -/obj/structure/platform/shiva, -/obj/structure/machinery/light/small/built{ - dir = 8 +/turf/open/floor/plating, +/area/bigredv2/outside/library) +"aqz" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Bar Complex"; + name = "\improper Bar Complex Shutters" }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"ajp" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aqD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"aqE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/research) +"aqO" = ( +/obj/structure/barricade/wooden, +/turf/open/mars, +/area/bigredv2/outside/n) +"aqQ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aqU" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Kitchen"; + name = "\improper Kitchen Shutters" }, -/turf/open/floor/darkpurplecorners2/west, -/area/bigredv2/caves/lambda/xenobiology) -"ajq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) +"aqV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"arh" = ( +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 2; + pixel_y = -3 }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/xenobiology) -"ajr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Prisoner Room" +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"ajs" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"ajt" = ( -/obj/structure/bed/stool, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"aju" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"ajv" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"ajw" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"aro" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"ars" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"arv" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/se) +"arw" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"arD" = ( +/turf/open/mars, +/area/bigredv2/outside/ne) +"arI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"ajx" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"ajy" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"ajz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"ajA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/nw) -"ajB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"arK" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves_lambda) +"arT" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"asj" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "General Store"; + name = "\improper General Store Shutters" }, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"ajC" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"ajE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"ajF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westright, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"ajG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ajH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ajI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"asl" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"asp" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"asr" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ajJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ass" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ajK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"asv" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/office_complex) +"asx" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"asH" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Office Complex 1"; + name = "\improper Office Complex Shutters" }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office Armory" +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"asI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"ajL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor, +/area/bigredv2/outside/dorms) +"asJ" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"asK" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/cargo) +"asL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asM" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/area/bigredv2/outside/general_offices) +"asN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajN" = ( +/area/bigredv2/outside/general_offices) +"asO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asQ" = ( /obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/cable_coil/blue, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajO" = ( -/obj/structure/machinery/prop/almayer/computer/PC, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ajP" = ( +/area/bigredv2/outside/general_offices) +"asR" = ( /obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asS" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asT" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"atb" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/chapel) +"atd" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Chapel"; + name = "\improper Chapel Shutters" }, +/turf/open/floor/plating, +/area/bigredv2/outside/chapel) +"atn" = ( +/obj/structure/closet/secure_closet/personal/cabinet, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajQ" = ( +/area/bigredv2/outside/dorms) +"atw" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Cargonia"; + name = "\improper Cargo Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"atA" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"atC" = ( /obj/structure/surface/table, -/obj/structure/machinery/recharger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajR" = ( +/area/bigredv2/outside/general_offices) +"atD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atF" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajS" = ( +/area/bigredv2/outside/general_offices) +"atG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajT" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"ajU" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/maint{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"ajV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Break Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"ajW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"ajX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"ajY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/bigredv2/outside/general_offices) +"atH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"ajZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"aka" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"akc" = ( +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atJ" = ( /obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Office Complex 1"; + name = "\improper Office Complex Shutters" + }, /turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"akd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"ake" = ( -/obj/structure/surface/table, -/obj/item/ore/uranium, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"akh" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"aki" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"akj" = ( +/area/bigredv2/outside/office_complex) +"atP" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - id = "Office Complex 2"; - name = "\improper Marshal Office Complex Shutters" + id = "Chapel"; + name = "\improper Chapel Shutters" }, /turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"akk" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"akl" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"akm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"akn" = ( +/area/bigredv2/outside/chapel) +"atQ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/nw) +"atU" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aua" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ako" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"akp" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"akq" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"akr" = ( -/obj/structure/machinery/computer/prisoner, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aks" = ( -/obj/effect/landmark/good_item, +/area/bigredv2/outside/dorms) +"aub" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"akt" = ( -/obj/structure/bed/chair{ +/area/bigredv2/outside/general_offices) +"auc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 1 }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aku" = ( +/area/bigredv2/outside/general_offices) +"aud" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"auj" = ( +/obj/item/device/radio/intercom{ + frequency = 150; + name = "Safe-Room intercom"; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"auk" = ( /obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Dormitories"; - name = "\improper Dormitories Shutters" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"akv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office" +/area/bigredv2/outside/cargo) +"aul" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"auJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"akw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"aky" = ( -/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"auW" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/c) +"auY" = ( +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"avr" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"avC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"avD" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/whitepurple/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"akz" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/xenobiology) -"akA" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"akB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/xenobiology) -"akD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"akE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"avF" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + name = "Dormitories APC"; + pixel_y = 25 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"akF" = ( -/obj/structure/machinery/botany/editor, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"avG" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/whitegreen_v/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"akG" = ( -/obj/structure/machinery/botany/extractor, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/xenobiology) -"akH" = ( -/obj/structure/machinery/centrifuge, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/xenobiology) -"akI" = ( -/obj/structure/machinery/mill, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/xenobiology) -"akJ" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"avH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"avI" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitegreen_v/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"akK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"akL" = ( -/turf/closed/wall/solaris/reinforced, +/turf/open/floor, /area/bigredv2/outside/general_offices) -"akM" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"akP" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/n_cave) -"akQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"akR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office" +"avJ" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"akS" = ( -/obj/structure/bed/chair, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"akT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"akU" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, +/turf/open/floor, /area/bigredv2/outside/general_offices) -"akV" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/n) -"akW" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/caves_north) -"akX" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"akY" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_north) -"akZ" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_north) -"ala" = ( -/turf/open/floor/whitepurple/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"alb" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/caves/lambda/xenobiology) -"alc" = ( -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"ald" = ( -/obj/structure/surface/table/reinforced, -/obj/item/book/manual/research_and_development, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"ale" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"alf" = ( -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/xenobiology) -"alg" = ( -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"alh" = ( -/obj/item/tool/hatchet, +"avM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"avN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"ali" = ( -/obj/item/reagent_container/spray/plantbgone, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"alj" = ( -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/caves/lambda/xenobiology) -"alk" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen_v/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"all" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/telecomm) -"alm" = ( +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"avS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris, +/area/bigredv2/outside/office_complex) +"avT" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"avU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"avV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"aln" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/nw) -"alo" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"awd" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/se) +"awf" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/w) +"awj" = ( +/turf/open/floor/darkpurple2/northwest, +/area/bigredv2/caves/lambda/research) +"awn" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/nw) -"alp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Evidence Room" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"awo" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"awp" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_plant) +"aws" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"alr" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"als" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/area/bigredv2/outside/dorms) +"awt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"alt" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"alu" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/medical) -"alv" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"alw" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"awu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/red/northeast, -/area/bigredv2/outside/marshal_office) -"alx" = ( -/obj/structure/bed/chair{ +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"awv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"alz" = ( +/area/bigredv2/outside/general_offices) +"aww" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"awz" = ( +/obj/item/ashtray/bronze{ + pixel_x = -7 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"awB" = ( +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_color = "blue"; + phone_id = "Director" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"awC" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"awD" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"awM" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/filtration_plant) +"awY" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"alA" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"awZ" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"alB" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"alC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"alD" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Medical"; - name = "\improper Medical Storm Shutters" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axa" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axb" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axc" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axd" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"alF" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"alG" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/caves_north) -"alH" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves_north) -"alI" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_north) -"alJ" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_north) -"alK" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"alL" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/warnplate/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"alM" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"alN" = ( -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"alO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/warnplate/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"alP" = ( -/turf/open/floor/warnwhite/west, -/area/bigredv2/caves/lambda/xenobiology) -"alQ" = ( -/obj/effect/landmark/monkey_spawn, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axi" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"axj" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"axk" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"axl" = ( +/obj/structure/barricade/wooden, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"axo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"alR" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"alS" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"alT" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, /turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"alU" = ( -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"alV" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/grown/log, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"alW" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"alX" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/medical) -"alY" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light{ +/area/bigredv2/caves/lambda/breakroom) +"axp" = ( +/obj/structure/bed/chair/comfy/lime{ dir = 4 }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/xenobiology) -"alZ" = ( +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"axr" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Marshal Offices"; - name = "\improper Marshal Offices Shutters" + dir = 4; + id = "Filtration Plant"; + name = "\improper Filtration Plant Shutters" }, /turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"ama" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/nw) -"amb" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/area/bigredv2/outside/filtration_plant) +"axC" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"axG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"amc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axH" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"amd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axK" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axL" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Cargonia"; + name = "\improper Cargo Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"axP" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"ame" = ( +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"axQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"axT" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"axX" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"axZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"amg" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aya" = ( +/obj/effect/landmark/hunter_primary, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"ayb" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"ayc" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"ayf" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port_lz2) +"ayo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"amh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/trash/pistachios, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayq" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayr" = ( /turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"ami" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/landmark/crap_item, +/area/bigredv2/outside/engineering) +"ayv" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amj" = ( +/area/bigredv2/outside/dorms) +"ayA" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ayB" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/tool/lighter/zippo, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ayF" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"ayV" = ( +/turf/open/floor/plating, /area/bigredv2/outside/medical) -"amk" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/breakroom) -"aml" = ( +"ayX" = ( +/obj/effect/landmark/good_item, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayZ" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"amm" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/bigredv2/outside/engineering) +"azb" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Engineering"; + name = "\improper Engineering Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"azl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves/lambda/research) +"azm" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves/lambda/breakroom) +"azn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"azo" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"azB" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Engineering"; + name = "\improper Engineering Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"azE" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"azG" = ( /obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Filtration Plant"; + name = "\improper Filtration Plant Shutters" + }, /turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"amn" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/dorms) -"amo" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/area/bigredv2/outside/filtration_plant) +"azK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amp" = ( +/turf/open/mars, +/area/bigredv2/outside/n) +"azO" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/eta) +"azP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/shoes/black, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amr" = ( -/obj/effect/decal/cleanable/blood, +/area/bigredv2/outside/dorms) +"azS" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ams" = ( +/area/bigredv2/outside/dorms) +"azT" = ( +/obj/structure/machinery/vending/cigarette/colony, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/red/east, -/area/bigredv2/outside/marshal_office) -"amt" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azU" = ( +/obj/structure/machinery/vending/cola, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office Courtroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"amu" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azV" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azW" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/survivor_spawner, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amw" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/bigredv2/outside/dorms) +"azY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"amx" = ( -/obj/structure/surface/table, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAa" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAb" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"amy" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"amz" = ( -/turf/open/floor/rampbottom/north, -/area/bigredv2/outside/marshal_office) -"amA" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"amB" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"amC" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aAg" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aAh" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/eta) +"aAo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"amD" = ( +/turf/open/mars_cave, +/area/bigredv2/caves/lambda/research) +"aAp" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/storage) +"aAq" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aAA" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, /turf/open/mars, /area/bigredv2/outside/n) -"amE" = ( -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"amG" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_lambda) -"amH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"amI" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Dormitories"; - name = "\improper Dormitories Shutters" +"aAC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"amJ" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"amK" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate, -/area/bigredv2/caves/lambda/xenobiology) -"amL" = ( -/turf/open/floor/plating/warnplate, -/area/bigredv2/caves/lambda/xenobiology) -"amM" = ( -/obj/structure/machinery/door/poddoor/almayer{ +/area/bigredv2/outside/bar) +"aAI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/warnplate/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"amN" = ( -/obj/item/stool, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"amO" = ( -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"amP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Xenobiology" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Bar Maintenance" }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"amQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aAM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aAN" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/darkgreen2/east, -/area/bigredv2/caves/lambda/xenobiology) -"amR" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Hydroponics" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"amS" = ( -/obj/item/grown/log, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"amT" = ( -/obj/effect/glowshroom, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"amU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/xenobiology) -"amV" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aAO" = ( +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aAZ" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"amW" = ( +/area/bigredv2/outside/nw/ceiling) +"aBa" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aBi" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"amX" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aBv" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/research) +"aBw" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, -/area/bigredv2/caves/lambda/breakroom) -"amY" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - id = "sci_br"; - name = "\improper Lambda Observation Shutters" +/area/bigredv2/caves/eta/research) +"aBx" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"aBy" = ( +/obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, -/area/bigredv2/caves/lambda/breakroom) -"amZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/bigredv2/caves/eta/storage) +"aBA" = ( /turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"ana" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Marshal Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"anb" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"anc" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"and" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, +/area/bigredv2/caves/eta/research) +"aBE" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves/eta/storage) +"aBQ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"aBR" = ( +/turf/open/mars, +/area/bigredv2/outside/c) +"aBU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"ane" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 - }, -/turf/open/floor/red/southeast, -/area/bigredv2/outside/marshal_office) -"anf" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ang" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper/Court, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"anh" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"ani" = ( -/obj/structure/bed/chair{ +/area/bigredv2/outside/dorms) +"aBY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door_control{ - id = "Office Complex 2"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"anj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"ank" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"ano" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Lambda Lab Maintenance Storage" +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" }, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"anp" = ( +/area/bigredv2/outside/lambda_cave_cas) +"aCb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aCe" = ( /turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/nw/ceiling) -"anq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/xenobiology) -"ans" = ( -/obj/structure/surface/table, -/obj/item/storage/box/gloves, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"ant" = ( +/area/bigredv2/caves/eta/xenobiology) +"aCh" = ( /obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, /turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"anu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"anv" = ( -/obj/effect/glowshroom, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/xenobiology) -"anw" = ( -/obj/structure/sign/safety/bulkhead_door, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/breakroom) -"anx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Holding Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"any" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Checkpoint" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"anz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"anB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, +/area/bigredv2/caves/eta/research) +"aCi" = ( +/obj/structure/machinery/vending/hydronutrients, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"anC" = ( -/obj/effect/decal/cleanable/blood/gibs/body, +/area/bigredv2/outside/hydroponics) +"aCj" = ( +/obj/structure/machinery/vending/hydroseeds, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"anD" = ( -/obj/effect/decal/cleanable/blood, +/area/bigredv2/outside/hydroponics) +"aCl" = ( +/obj/structure/surface/table, +/obj/item/tool/shovel/spade, +/obj/structure/machinery/camera/autoname, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"anE" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"anF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"anH" = ( -/obj/structure/bed/chair, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"anI" = ( -/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/hydroponics) +"aCm" = ( +/obj/structure/surface/table, +/obj/item/paper/hydroponics, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCn" = ( +/obj/structure/machinery/fermenter, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCp" = ( +/obj/structure/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCq" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/engine, /area/bigredv2/caves/lambda/research) -"anJ" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) -"anK" = ( -/obj/structure/window_frame/solaris, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"anL" = ( +"aCH" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, -/area/bigredv2/caves/lambda/research) -"anM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anN" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anO" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"anP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"anQ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"anR" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"anS" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/warnwhite/west, -/area/bigredv2/caves/lambda/xenobiology) -"anT" = ( +/area/bigredv2/caves/eta/xenobiology) +"aCL" = ( /turf/closed/wall/solaris, -/area/bigredv2/outside/hydroponics) -"anU" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Greenhouse"; - name = "\improper Greenhouse Shutters" +/area/bigredv2/caves/eta/xenobiology) +"aCM" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, +/area/bigredv2/outside/c) +"aCY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/plating, +/turf/open/floor, /area/bigredv2/outside/hydroponics) -"anV" = ( -/obj/item/reagent_container/spray/pepper, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"anW" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/library) -"anX" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; +"aCZ" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aDa" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aDb" = ( +/obj/structure/machinery/door_control{ id = "Greenhouse"; - name = "\improper Greenhouse Shutters" + name = "Storm Shutters"; + pixel_x = 32 }, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"anY" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, +/turf/open/floor, /area/bigredv2/outside/hydroponics) -"anZ" = ( +"aDi" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aDj" = ( /obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Medical"; - name = "\improper Medical Storm Shutters" - }, /turf/open/floor/plating, -/area/bigredv2/outside/medical) -"aob" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/virology) -"aoc" = ( +/area/bigredv2/caves/eta/xenobiology) +"aDv" = ( /obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Library"; - name = "\improper Library Shutters" - }, /turf/open/floor/plating, -/area/bigredv2/outside/library) -"aod" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"aoe" = ( -/obj/item/explosive/grenade/custom/antiweed, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"aof" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/admin_building) -"aog" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/nw) -"aoh" = ( +/area/bigredv2/caves/eta/living) +"aDQ" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door_control{ - id = "Marshal Offices"; + id = "Dormitories"; name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"aoi" = ( -/obj/structure/surface/table, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"aoj" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aDR" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz1_north_cas) +"aDX" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves/eta/living) +"aDY" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/living) +"aEd" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aok" = ( -/obj/structure/surface/table/woodentable, +/area/bigredv2/outside/hydroponics) +"aEg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"aol" = ( -/turf/open/floor/rampbottom, -/area/bigredv2/outside/marshal_office) -"aom" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/suit/storage/lawyer/bluejacket, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"aon" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"aoo" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light{ +/obj/item/trash/popcorn, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEh" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEj" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/living) +"aEk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"aEs" = ( +/obj/structure/bed/chair/comfy/lime{ dir = 8 }, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"aEu" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside) +"aEF" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves/lambda/research) +"aEK" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"aop" = ( +/area/bigredv2/outside/dorms) +"aET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/shovel/spade, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"aoq" = ( +/area/bigredv2/outside/hydroponics) +"aEU" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"aou" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"aov" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"aow" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"aox" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"aoy" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"aoz" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Bar Complex"; - name = "\improper Bar Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aoA" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"aoB" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"aoD" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"aoE" = ( -/obj/item/stool, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aoF" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"aoG" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"aoH" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_store) -"aoI" = ( -/obj/item/tool/surgery/scalpel/laser/advanced, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"aoJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/oldresearch/Resin, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"aoK" = ( -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/breakroom) -"aoL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"aoM" = ( -/obj/item/tool/weedkiller, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"aoN" = ( +/area/bigredv2/outside/hydroponics) +"aEW" = ( +/obj/item/tool/hatchet, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"aoO" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/nw) -"aoP" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"aoQ" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"aoR" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEX" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/se) +"aEZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/medical{ - pixel_y = -32 +/obj/item/trash/liquidfood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"aoT" = ( -/obj/structure/bed, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aoU" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aFa" = ( +/obj/structure/machinery/botany/extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aFb" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"aoV" = ( -/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"aoW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aoX" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"aoY" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"aoZ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 +/area/bigredv2/outside/hydroponics) +"aFc" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/sw) +"aFd" = ( +/obj/structure/flora/jungle/plantbot1{ + pixel_y = 10 }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"apa" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/jungle, +/area/bigredv2/outside/admin_building) +"aFv" = ( +/turf/open/mars, +/area/bigredv2/outside/virology) +"aFL" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/c) +"aFN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"apb" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/camera_film, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"apc" = ( -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"apd" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"ape" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"apg" = ( -/obj/item/clothing/under/lightbrown, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"aph" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"api" = ( +/area/bigredv2/outside/dorms) +"aFP" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 9 }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"apj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aFZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Dormitories EVA Maintenance" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aGb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"apk" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aGh" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"aGL" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aGM" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"apl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"aGS" = ( +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"aHn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars, +/area/bigredv2/outside/nw) +"aHP" = ( +/obj/structure/prop/almayer/computers/mapping_computer{ + desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; + name = "\improper Teleporter Targeting Computer" }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"apm" = ( +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aIo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aIF" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aIT" = ( +/obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Dormitories EVA" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aIY" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aJk" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"apn" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"aJA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"apo" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"app" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"apq" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"apr" = ( -/obj/structure/surface/table, -/obj/item/tool/screwdriver, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aps" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aKk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/c) +"aKn" = ( /obj/structure/surface/table, -/obj/item/circuitboard/machine/batteryrack, -/obj/item/stack/cable_coil/orange, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"apt" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "General Store"; - name = "\improper General Store Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"apu" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"apv" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Xenbiology Lab APC"; - pixel_x = -30; - start_charge = 0 - }, -/obj/structure/machinery/door_control{ - id = "lambda"; - name = "Lambda Lockdown"; - pixel_y = -25 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aKr" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/c) +"aKP" = ( +/turf/open/mars, +/area/bigredv2/outside/e) +"aLc" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/turf/open/floor/whitepurple/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"apw" = ( -/turf/open/floor/whitepurplecorner/west, -/area/bigredv2/caves/lambda/xenobiology) -"apx" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/core, -/obj/item/shard, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"apy" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/mars, +/area/bigredv2/outside/c) +"aLl" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"apz" = ( -/obj/item/grown/sunflower, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"apA" = ( -/turf/open/floor/whitegreencorner, -/area/bigredv2/caves/lambda/xenobiology) -"apB" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"apC" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/admin_building) -"apD" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Operations"; - name = "\improper Operations Shutters" +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aLo" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/plating, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aLI" = ( +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aLL" = ( +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) -"apE" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"apF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"apG" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/virology) -"apH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" +"aMl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"apJ" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Operations"; - name = "\improper Operations Shutters" +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cheesie, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMr" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aMs" = ( +/turf/open/floor/bluegrid, +/area/bigredv2/caves/lambda/research) +"aMt" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/bluegrid, +/area/bigredv2/caves/lambda/research) +"aMu" = ( +/obj/structure/cryofeed/right{ + name = "\improper coolant feed" }, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aMC" = ( +/obj/effect/landmark/railgun_camera_pos, /turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"apK" = ( +/area/bigredv2/outside/space_port) +"aML" = ( /obj/structure/bed/chair, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"apL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/area/bigredv2/outside/hydroponics) +"aMO" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aNo" = ( +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aNq" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"apM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/bigredv2/outside/general_store) +"aOa" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Dormitories Lavatory" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"apN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOe" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"apO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"apP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOg" = ( /obj/structure/surface/table, -/obj/structure/bedsheetbin, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/utensil/spoon, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOw" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"apQ" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, /area/bigredv2/outside/general_store) -"apR" = ( +"aOx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"apS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"apT" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"apU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"apV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"apW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"apX" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"apY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"apZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"aqa" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"aqb" = ( +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOJ" = ( /obj/structure/surface/table, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aqc" = ( -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"aqd" = ( -/obj/structure/xenoautopsy/tank/alien, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 +/area/bigredv2/caves/eta/research) +"aOW" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/whitepurple/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"aqe" = ( -/obj/structure/xenoautopsy/tank/larva, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOY" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/xenobiology) -"aqf" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/xenoautopsy/tank/broken, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/decal/warning_stripes, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/xenobiology) -"aqg" = ( -/obj/structure/xenoautopsy/tank/alien, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/xenobiology) -"aqh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/obj/structure/xenoautopsy/tank/hugger, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPa" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"aqi" = ( -/obj/structure/machinery/light/built{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPb" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/pipes/vents/scrubber/on{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"aqj" = ( -/obj/structure/machinery/light{ +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPh" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"aqk" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"aql" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/xenobiology) -"aqm" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/xenobiology) -"aqn" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/xenobiology) -"aqo" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"aqp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"aqq" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"aqr" = ( -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"aqs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplefull, -/area/bigredv2/outside/medical) -"aqt" = ( -/obj/structure/machinery/chem_master, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"aqu" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"aqv" = ( -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aqw" = ( -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aqx" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Library"; - name = "\improper Library Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/library) -"aqz" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Bar Complex"; - name = "\improper Bar Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aqC" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPi" = ( /obj/structure/surface/table, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"aqH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"aqI" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/n) -"aqJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"aqK" = ( +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPC" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aPG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aQa" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"aqL" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"aqM" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"aqN" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"aqO" = ( -/obj/structure/barricade/wooden, -/turf/open/mars, -/area/bigredv2/outside/n) -"aqQ" = ( -/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"aqR" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"aqS" = ( -/obj/item/clothing/under/brown, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"aqT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"aqU" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Kitchen"; - name = "\improper Kitchen Shutters" - }, -/turf/open/floor/plating, /area/bigredv2/outside/hydroponics) -"aqV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"aqW" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"aqX" = ( -/obj/item/storage/toolbox/mechanical, -/obj/item/device/multitool, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/rack, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"aqY" = ( +"aQb" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"ara" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp{ - pixel_y = 15 - }, -/obj/item/paper/bigred/lambda, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"arb" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"arc" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQd" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"ard" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"are" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQf" = ( /obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"arf" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"arg" = ( -/obj/structure/bed/chair/office/light{ +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"ari" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"arj" = ( -/obj/item/trash/chips, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ark" = ( -/obj/structure/bed/roller, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"arl" = ( -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"arm" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"arp" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/n) -"arq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"ars" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQi" = ( /obj/structure/bed/chair{ dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"arw" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"arx" = ( +/area/bigredv2/outside/hydroponics) +"aQk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQm" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQn" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQo" = ( /obj/structure/surface/table, +/obj/item/trash/plate, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"ary" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQq" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"arA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQs" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"arB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/sheet/plasteel, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"arC" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aQz" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"arD" = ( -/turf/open/mars, -/area/bigredv2/outside/ne) -"arE" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/machinery/door/window/eastleft, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"arF" = ( -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"arG" = ( -/obj/structure/bed, -/obj/item/bedsheet/rd, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"arI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"arJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Biology Wing" + dir = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"arK" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves_lambda) -"arL" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_lambda) -"arM" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"arN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/purple/west, -/area/bigredv2/caves/lambda/research) -"arO" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aQM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aQT" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/custom/large, -/turf/open/floor/whitepurplefull, -/area/bigredv2/outside/medical) -"arP" = ( -/obj/structure/pipes/vents/pump, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aRq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"arQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"arR" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aRr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"arS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"arT" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"arU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"arW" = ( -/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aRw" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"arX" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/firealarm{ + dir = 1 }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"arZ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/n) -"asa" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/n) -"asc" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"asd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"ase" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"aRD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aRE" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aRM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aRP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"asf" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"asg" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"ash" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aSv" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; health = 25000 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"asi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Dormitories Tool Storage Maintenance" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"asj" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "General Store"; - name = "\improper General Store Shutters" - }, /turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aSI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, /area/bigredv2/outside/general_store) -"ask" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +"aSZ" = ( +/obj/structure/machinery/power/apc{ dir = 1; - name = "\improper Dormitories EVA" + name = "Control Center APC" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"asl" = ( -/obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, -/area/bigredv2/outside/virology) -"asn" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/vest, -/obj/structure/machinery/door/window/eastright, -/obj/structure/window/reinforced, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"aso" = ( -/mob/living/simple_animal/corgi/puppy{ - desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; - name = "\improper Mister Wiggles" - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"asp" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"asq" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"asr" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ass" = ( +/area/bigredv2/outside/admin_building) +"aTa" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"aTo" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"ast" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 + dir = 1 }, +/obj/item/tank/air, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"aTQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aUe" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, /obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"asu" = ( -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"asv" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/office_complex) -"asw" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 + dir = 1; + pixel_y = -30 }, -/obj/structure/machinery/light/built{ - dir = 1 +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"aUN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"asx" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/caves_lambda) -"asy" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +"aUV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aUW" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aVh" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"asz" = ( -/obj/item/device/reagent_scanner, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"asA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/whitepurplefull, -/area/bigredv2/outside/medical) -"asB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"asC" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"asD" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"asE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"asF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"asH" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Office Complex 1"; - name = "\improper Office Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"asI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" - }, /turf/open/floor, -/area/bigredv2/outside/dorms) -"asJ" = ( +/area/bigredv2/outside/general_store) +"aVt" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/e) +"aVK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, /turf/open/floor, -/area/bigredv2/outside/dorms) -"asK" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/cargo) -"asL" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, +/area/bigredv2/outside/general_store) +"aVL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/restraint/adjustable/cable, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"asM" = ( -/obj/structure/machinery/light{ +/area/bigredv2/outside/general_store) +"aVM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 1 }, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"asN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asQ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/cable_coil/blue, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asR" = ( +/area/bigredv2/outside/general_store) +"aVQ" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/turf/open/mars, +/area/space) +"aVY" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/e) +"aWr" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asS" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asT" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"asU" = ( -/obj/structure/closet/l3closet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/general_offices) -"asV" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"asW" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/general_offices) -"asX" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +/obj/item/restraint/handcuffs, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "red"; + phone_id = "Marshal Office" }, /turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"asY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/bigredv2/outside/marshal_office) +"aWz" = ( +/obj/structure/showcase{ + icon_state = "bus" }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"ata" = ( +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"aWL" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, +/area/bigredv2/outside/e) +"aWY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"atb" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/chapel) -"atc" = ( -/obj/item/device/radio/intercom{ +/obj/item/restraint/adjustable/cable/cyan, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aXb" = ( +/obj/structure/machinery/power/apc{ dir = 1; - frequency = 150; - name = "Safe-Room intercom"; - pixel_y = -30 - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"atd" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Chapel"; - name = "\improper Chapel Shutters" + start_charge = 0 }, /turf/open/floor/plating, -/area/bigredv2/outside/chapel) -"ate" = ( -/obj/structure/machinery/door_control{ - id = "safe_room"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -28; - req_access_txt = "106"; - specialfunctions = 4 - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"atf" = ( -/obj/structure/closet/secure_closet/RD, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"atg" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"ath" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"ati" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/bigredv2/outside/cargo) +"aXd" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) -"atj" = ( -/obj/structure/machinery/vending/coffee{ - icon_state = "coffee-broken"; - stat = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"atk" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_lambda) -"atl" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"atm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/nw) -"atn" = ( -/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aXr" = ( /turf/open/floor, -/area/bigredv2/outside/dorms) -"ato" = ( -/obj/structure/machinery/chem_master, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"atq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"atr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"atw" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Cargonia"; - name = "\improper Cargo Shutters" - }, +/area/bigredv2/outside/office_complex) +"aXH" = ( /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"aty" = ( -/obj/item/bedsheet/brown, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/bed, -/obj/structure/bed{ - pixel_y = 13 +"aXS" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aXU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aXV" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"atz" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"atA" = ( -/obj/structure/window/framed/solaris, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aYc" = ( +/obj/structure/machinery/light, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"atB" = ( -/obj/structure/closet/crate, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"atC" = ( -/obj/structure/surface/table, +"aYs" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aYt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/eat, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aYu" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atD" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"atF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, +/area/bigredv2/outside/office_complex) +"aYB" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aYD" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"aYF" = ( +/turf/open/mars, +/area/bigredv2/outside/w) +"aYG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atG" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atI" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - icon_state = "door_locked"; - id = "safe_room"; - name = "\improper Lambda Lab Director's Safe Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"atJ" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Office Complex 1"; - name = "\improper Office Complex Shutters" - }, /turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"atK" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Administration Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"atL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +/area/bigredv2/outside/cargo) +"aYI" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"atM" = ( -/obj/structure/window/reinforced, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) -"atN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/window/reinforced, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) -"atO" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"atP" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Chapel"; - name = "\improper Chapel Shutters" +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/plating, -/area/bigredv2/outside/chapel) -"atQ" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/nw) -"atR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"atS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"atT" = ( +/area/bigredv2/outside/cargo) +"aYO" = ( +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"aZa" = ( +/obj/effect/decal/mecha_wreckage/ripley/firefighter, +/turf/open/floor/mech_bay_recharge_floor, +/area/bigredv2/outside/office_complex) +"aZc" = ( /obj/structure/surface/table, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/microwave, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aZd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/obj/item/tool/hand_labeler, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"atU" = ( -/obj/structure/window_frame/solaris, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aZm" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"atV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic CMO's Office" +"aZn" = ( +/obj/structure/closet/secure_closet/quartermaster, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZo" = ( +/obj/structure/closet/secure_closet/cargotech{ + req_access = null; + req_one_access_txt = "21;101" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"atX" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZp" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"atY" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"atZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Bedroom" +/area/bigredv2/outside/library) +"aZr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZs" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZu" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZv" = ( +/obj/structure/machinery/door/window/eastleft{ + layer = 3.1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"aua" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/dorms) -"aub" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, +/area/bigredv2/outside/cargo) +"aZw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"auc" = ( +/area/bigredv2/outside/cargo) +"aZx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZB" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aZC" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aZM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZO" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZQ" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"aud" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/area/bigredv2/outside/cargo) +"aZT" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aZU" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"baj" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"aue" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"auf" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"aug" = ( -/obj/item/stack/sheet/plasteel, -/obj/structure/machinery/camera/autoname{ - dir = 1 +/area/bigredv2/outside/office_complex) +"bay" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"auh" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"aui" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"auj" = ( -/obj/item/device/radio/intercom{ - frequency = 150; - name = "Safe-Room intercom"; - pixel_y = 30 +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"auk" = ( -/obj/structure/window/framed/solaris, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor, /area/bigredv2/outside/cargo) -"aul" = ( -/obj/structure/window/framed/solaris, +"baA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /turf/open/floor, -/area/bigredv2/outside/office_complex) -"aum" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Director's Office" +/area/bigredv2/outside/cargo) +"baB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/hunter_primary, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"aun" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"auo" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/crowbar, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baG" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"aup" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"baJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"baO" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"auq" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"baP" = ( +/obj/structure/surface/table, +/obj/item/paper, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bbb" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"aur" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"aus" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/telecomm/n_cave) -"aut" = ( -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"auu" = ( -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/mars, +/area/bigredv2/outside/w) +"bbe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbf" = ( +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbh" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbi" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"auv" = ( -/obj/structure/showcase{ - icon_state = "bus" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbj" = ( +/obj/structure/surface/table, +/obj/item/alienjar, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bbo" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbp" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 6 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"aux" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/breakroom) -"auy" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"auz" = ( -/obj/structure/machinery/door_control{ - id = "sci_br"; - name = "Observation Shutters"; - pixel_y = 28 +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbq" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 6 }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"auA" = ( -/obj/structure/inflatable/door, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"auB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"auC" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"auD" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/machinery/door_control{ - id = "sci_br"; - name = "Observation Shutters"; - pixel_y = 28 - }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"auE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"auF" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/nw) -"auG" = ( -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"auH" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"auI" = ( +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbr" = ( /obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"auK" = ( +/obj/item/storage/photo_album, +/obj/item/tool/pen/red, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"auL" = ( -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"auM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"auN" = ( -/obj/structure/machinery/light{ +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbC" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"auP" = ( -/turf/open/floor/whiteblue/northwest, -/area/bigredv2/outside/medical) -"auU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"auV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories Tool Storage" +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bbL" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/space_port_lz2) +"bbM" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"auW" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/c) -"auY" = ( -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"auZ" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"ava" = ( -/obj/structure/pipes/vents/scrubber/on{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"avb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"avc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"avd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"ave" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Administration Wing" +/obj/item/device/flashlight, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"avf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"avg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bca" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"avh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bcd" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bcp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"bcv" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcw" = ( +/obj/effect/decal/mecha_wreckage/ripley, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Cargonia"; + name = "Storm Shutters"; + pixel_x = 32 }, -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcy" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"avi" = ( -/obj/structure/showcase, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcB" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -30 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"avj" = ( -/obj/structure/showcase{ - icon_state = "broadcaster_send" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcC" = ( +/obj/structure/machinery/door_control{ + id = "Cargonia"; + name = "Storm Shutters"; + pixel_x = 32 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcE" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"avk" = ( -/obj/structure/window/reinforced{ +/obj/item/prop/alien/hugger, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bcF" = ( +/obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/breakroom) -"avl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Break Room" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"avm" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bcG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bcQ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bcU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"avn" = ( -/obj/structure/inflatable/door, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"avo" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"avp" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"avr" = ( -/obj/structure/window_frame/solaris, /turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"avt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/nw/ceiling) -"avu" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic Chemistry" +/area/bigredv2/outside/admin_building) +"bcV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"avv" = ( -/obj/structure/surface/table/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bcW" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"bcX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"avw" = ( -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"avx" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"avy" = ( -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"avz" = ( -/turf/open/floor/whiteblue/southwest, -/area/bigredv2/outside/medical) -"avA" = ( -/turf/open/floor/whiteblue, -/area/bigredv2/outside/medical) -"avB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/whiteblue/southeast, -/area/bigredv2/outside/medical) -"avC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, /turf/open/floor, -/area/bigredv2/outside/dorms) -"avD" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/bigredv2/outside/office_complex) +"bcY" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/dorms) -"avF" = ( +/area/bigredv2/outside/office_complex) +"bcZ" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc{ dir = 1; - name = "Dormitories APC"; - pixel_y = 25 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"avG" = ( -/obj/structure/machinery/light{ - dir = 1 + name = "Interview Room APC" }, /turf/open/floor, -/area/bigredv2/outside/dorms) -"avH" = ( +/area/bigredv2/outside/office_complex) +"bda" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdb" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"bdf" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"bdh" = ( +/obj/effect/spawner/random/tool, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"avI" = ( +/area/bigredv2/outside/cargo) +"bdi" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdr" = ( +/obj/structure/machinery/vending/snack, /obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"avJ" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +/area/bigredv2/outside/admin_building) +"bdt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bdy" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 4 }, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"avM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"avN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"avO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Relaxation Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"avP" = ( +/area/bigredv2/outside/office_complex) +"bdz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/red, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdA" = ( +/obj/structure/sign/prop1, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdD" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"avQ" = ( -/obj/structure/window/reinforced{ +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"avR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdK" = ( +/obj/structure/largecrate, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdL" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdM" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdN" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdT" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/n_cave) +"bdW" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/window/reinforced{ +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdY" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"avS" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris, +/turf/open/floor, /area/bigredv2/outside/office_complex) -"avT" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"avU" = ( -/obj/structure/machinery/light{ - dir = 1 +"bec" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bed" = ( +/obj/effect/landmark/good_item, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bee" = ( +/obj/structure/closet/emcloset, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bef" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"avV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"avW" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bei" = ( /obj/structure/surface/table, -/obj/item/trash/burger, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bes" = ( +/turf/open/mars, +/area/bigredv2/outside/se) +"bew" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/outside/medical) -"avX" = ( +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"bex" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"avY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"avZ" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bez" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beA" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beD" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/lambda/research) +"beL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"beM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"beT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beW" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beX" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/item/tool/lighter/random, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"awa" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"bfk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"awb" = ( +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bfq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"awc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bfr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"awd" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/se) -"awe" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/purple/southwest, -/area/bigredv2/caves/lambda/research) -"awg" = ( -/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bfv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Office Complex" + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bfx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"awh" = ( +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bfz" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"awi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"awk" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"awl" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"awn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"awo" = ( -/obj/structure/bed/chair, /turf/open/floor, -/area/bigredv2/outside/dorms) -"awp" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_plant) -"awq" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"awr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aws" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/outside/cargo) +"bfB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor, -/area/bigredv2/outside/dorms) -"awt" = ( +/area/bigredv2/outside/cargo) +"bfE" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"awu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/outside/cargo) +"bfH" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/effect/landmark/crap_item, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"awv" = ( +/area/bigredv2/outside/cargo) +"bfZ" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 + dir = 8 }, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"aww" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"awz" = ( -/obj/item/ashtray/bronze{ - pixel_x = -7 - }, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 14 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awA" = ( +/area/bigredv2/outside/cargo) +"bgb" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ +/obj/effect/spawner/random/technology_scanner, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/item/tool/pickaxe/drill, -/turf/open/floor/purple/southwest, -/area/bigredv2/caves/lambda/research) -"awB" = ( -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_color = "blue"; - phone_id = "Director" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awC" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awD" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awE" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"awF" = ( -/obj/structure/bed/chair{ +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bgr" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bgD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bhf" = ( +/obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"awG" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"awH" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bhi" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/c) +"bhr" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/se) +"bhE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"awI" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"awJ" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 8 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bhO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"awK" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 +/turf/open/mars, +/area/bigredv2/outside/c) +"bhP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"awL" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/tramadol, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"awM" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/filtration_plant) -"awN" = ( -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"awO" = ( -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"awP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"awQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"awR" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"awS" = ( -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 +/turf/open/mars, +/area/bigredv2/outside/c) +"bic" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/mars, +/area/bigredv2/outside/se) +"bie" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bil" = ( +/obj/structure/machinery/photocopier{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"awT" = ( -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/outside/medical) -"awU" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"biq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"awV" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"awW" = ( -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"awX" = ( -/turf/open/floor/whiteblue/northeast, -/area/bigredv2/outside/medical) -"awY" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor, -/area/bigredv2/outside/dorms) -"awZ" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axa" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axb" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axc" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axd" = ( -/obj/structure/bed/chair{ +/area/bigredv2/outside/cargo) +"bir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor, -/area/bigredv2/outside/dorms) -"axe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"axg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"axh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Dormitories" +/area/bigredv2/outside/cargo) +"bit" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"axi" = ( -/obj/structure/machinery/light, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"axj" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/area/bigredv2/outside/cargo) +"biI" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Engineering Landing Zone" }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"biK" = ( +/obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"axk" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, +/area/bigredv2/outside/cargo) +"biL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/megaphone, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"axl" = ( -/obj/structure/barricade/wooden, +/area/bigredv2/outside/cargo) +"biN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"axn" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"axo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"axp" = ( -/obj/structure/bed/chair/comfy/lime{ +/area/bigredv2/outside/cargo) +"biQ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"axq" = ( -/obj/structure/machinery/light/built, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"biV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating, +/area/bigredv2/outside/c) +"bje" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bji" = ( +/obj/item/reagent_container/glass/bottle/tramadol, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bjo" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bjv" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2-4"; + name = "heavy duty power cable" }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"axr" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Filtration Plant"; - name = "\improper Filtration Plant Shutters" +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bjA" = ( +/turf/open/mars, +/area/bigredv2/outside/s) +"bjC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"axs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/s) +"bjM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"axt" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"axu" = ( +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bjN" = ( /obj/effect/landmark/crap_item, -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/nw) -"axv" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/nw/ceiling) -"axw" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"axx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"axy" = ( +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"bjP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic Treatment" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"axz" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"axA" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"bjU" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"bkj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 1; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"bkl" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bkn" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bkq" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"axB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"axF" = ( -/obj/structure/barricade/wooden, -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"axG" = ( -/obj/structure/machinery/camera/autoname{ +/turf/open/mars, +/area/bigredv2/outside/s) +"bkt" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"bkA" = ( +/obj/structure/bed/chair/office/dark, /turf/open/floor, -/area/bigredv2/outside/dorms) -"axH" = ( -/obj/structure/bed/chair{ +/area/bigredv2/outside/cargo) +"bkB" = ( +/obj/structure/machinery/computer/arcade, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/survivor_spawner, /turf/open/floor, -/area/bigredv2/outside/dorms) -"axI" = ( +/area/bigredv2/outside/cargo) +"bkT" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bkU" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bla" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/virology) +"bld" = ( /obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axK" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, -/area/bigredv2/outside/dorms) -"axL" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Cargonia"; - name = "\improper Cargo Shutters" - }, -/turf/open/floor/plating, /area/bigredv2/outside/cargo) -"axM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"axN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"axO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"axP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"blg" = ( +/obj/structure/machinery/computer/ordercomp, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"axQ" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/bigredv2/outside/cargo) +"blh" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, /turf/open/floor, -/area/bigredv2/outside/general_offices) -"axR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" +/area/bigredv2/outside/cargo) +"bli" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"axS" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"axT" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"axU" = ( -/obj/item/tool/pickaxe/drill, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"axV" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"axW" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/c) -"axX" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"axY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bll" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blm" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bln" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/nw/ceiling) -"axZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blp" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Air Filtration" }, /turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aya" = ( +/area/bigredv2/outside/filtration_plant) +"blG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bme" = ( +/turf/open/mars, +/area/bigredv2/outside/sw) +"bmn" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"bmM" = ( /obj/effect/landmark/hunter_primary, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bmT" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, +/obj/structure/machinery/light, /turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"ayb" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/area/bigredv2/outside/engineering) +"bmV" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, /turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"ayc" = ( -/obj/structure/window/framed/solaris/reinforced/hull, +/area/bigredv2/outside/engineering) +"bom" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_lambda) +"boA" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"ayd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bpv" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_virology) +"bpU" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bpV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Clinic" +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bqv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"aye" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bqw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/obj/structure/machinery/light, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ayf" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port_lz2) -"ayg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bqA" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"bqC" = ( +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"bqG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/hatchet, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"bqQ" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ayh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/outside/medical) -"ayi" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 32 +/obj/structure/window/reinforced, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"bqX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"ayj" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bqY" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ayk" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ayl" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aym" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = -32 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"ayn" = ( +/obj/structure/plasticflaps, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"brt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"brD" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_cave_cas) +"brE" = ( +/turf/open/floor/greengrid, +/area/bigredv2/outside/filtration_cave_cas) +"brG" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"bso" = ( +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"bsp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/medical{ + pixel_y = -32 }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"bss" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"ayo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/pistachios, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"bsH" = ( +/obj/effect/landmark/hunter_primary, /turf/open/floor, -/area/bigredv2/outside/dorms) -"ayp" = ( +/area/bigredv2/outside/filtration_cave_cas) +"bsW" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"btw" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"btU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"btV" = ( /obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"bul" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"buq" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"bur" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_research) +"bus" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"buv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"buP" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bvh" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_north) +"bvv" = ( +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor, -/area/bigredv2/outside/dorms) -"ayq" = ( -/obj/structure/bed/chair{ +/area/bigredv2/outside/lz2_south_cas) +"bvF" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, -/area/bigredv2/outside/dorms) -"ayr" = ( -/turf/closed/wall/solaris, +/area/bigredv2/outside/lz2_south_cas) +"bvP" = ( +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bvS" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"bvY" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/eta) +"bwe" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigred/ground/garage_workshop) +"bwk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bwq" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"ays" = ( +"bww" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bwA" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bwC" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/research) +"bwK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bwN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bwO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxc" = ( +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxe" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxq" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"ayt" = ( +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxD" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxU" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byg" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"byx" = ( +/obj/structure/largecrate/mule, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byH" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"ayu" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"byI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"ayv" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, /turf/open/floor, -/area/bigredv2/outside/dorms) -"ayw" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"ayx" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"ayA" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ayB" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/tool/lighter/zippo, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ayC" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/lambda/research) -"ayD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/area/bigredv2/caves/eta/storage) +"byY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/lambda/research) -"ayE" = ( -/obj/structure/girder/reinforced, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/lambda/research) -"ayF" = ( -/obj/structure/window/framed/solaris, /turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"ayG" = ( -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"ayH" = ( -/obj/structure/machinery/light{ +/area/bigredv2/caves/eta/research) +"bzm" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"ayI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ayJ" = ( -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/medical) -"ayK" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ayL" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"ayM" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bzV" = ( +/obj/structure/ore_box, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"bAa" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAt" = ( +/obj/structure/machinery/door_control{ + id = "garage"; + name = "Garage Shutters"; + pixel_x = 26; + range = 500 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"ayN" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"ayO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ayP" = ( -/obj/item/weapon/broken_bottle, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ayQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/outside/medical) -"ayR" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"ayS" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"ayT" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"bAu" = ( /obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"ayU" = ( +/obj/item/storage/box/wy_mre, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAL" = ( /obj/structure/surface/table, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAY" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/gloves, -/obj/item/reagent_container/spray/cleaner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"ayV" = ( /turf/open/floor/plating, -/area/bigredv2/outside/medical) -"ayX" = ( -/obj/effect/landmark/good_item, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayZ" = ( -/obj/structure/window/framed/solaris, +/area/bigredv2/caves/eta/research) +"bBv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"aza" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"azb" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Engineering"; - name = "\improper Engineering Shutters" +/area/bigredv2/caves/eta/storage) +"bBN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bBO" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bCB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"bCE" = ( +/obj/item/stack/sheet/xenochitin, +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bCF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"azc" = ( +/area/bigredv2/caves/eta/research) +"bCJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bCK" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bCL" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"azd" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"azf" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"azg" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"bDk" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/item/cell/hyper, -/turf/open/floor/whitepurple/northwest, -/area/bigredv2/caves/lambda/research) -"azh" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/objective, -/obj/item/clothing/glasses/science, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/research) -"azi" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/research) -"azj" = ( -/obj/structure/machinery/autolathe, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"bDx" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/research) -"azk" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/lambda/research) -"azl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves/lambda/research) -"azm" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves/lambda/breakroom) -"azn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"azo" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"azp" = ( -/obj/structure/bed/roller, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bDy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bDE" = ( +/obj/item/trash/kepler, /obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"azq" = ( -/obj/structure/machinery/camera/autoname{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bDF" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bDM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bEa" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"azr" = ( -/obj/structure/bed/roller, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"azs" = ( -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"azt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"bEz" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bEF" = ( +/obj/structure/surface/table, +/obj/item/trash/semki, +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bEI" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"azu" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bEN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bES" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bFw" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm/warehouse) +"bFE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"azv" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/telecomm/n_cave) +"bFZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"azw" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"bGe" = ( +/obj/structure/surface/table, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"bGp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/obj/item/tool/hand_labeler, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"bGM" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/platform_decoration, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"bGW" = ( +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"bHi" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/c) +"bHs" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"bHz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/medical) -"azx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"azy" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"bHW" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"bIa" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_cave_cas) +"bIu" = ( +/obj/structure/machinery/power/apc{ dir = 4 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"azz" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"bIv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves/lambda/research) +"bIC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Clinic Treatment" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office Courtroom" }, /turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"azA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/outside/marshal_office) +"bIJ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Power Substation" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lz2_south_cas) +"bJf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"azB" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Engineering"; - name = "\improper Engineering Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"azD" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"bJo" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bJB" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"bJS" = ( +/obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"azE" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/window_frame/solaris, /turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"azF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +/area/bigredv2/caves/mining) +"bKq" = ( +/obj/structure/machinery/light, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/lambda/xenobiology) +"bKx" = ( +/obj/structure/machinery/computer/general_air_control, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"bKL" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/telecomm/n_cave) +"bLb" = ( +/obj/structure/machinery/reagentgrinder, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"bLN" = ( +/obj/structure/surface/rack, +/obj/item/weapon/twohanded/lungemine{ + pixel_y = 8 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"azG" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Filtration Plant"; - name = "\improper Filtration Plant Shutters" +/obj/item/weapon/twohanded/lungemine{ + pixel_y = -7 }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"azH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Medical Clinic Power Station" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bLT" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/turf/open/floor/delivery, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"azK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/n) -"azM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"azN" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"azO" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/eta) -"azP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bMJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"bNA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigredv2/outside/dorms) -"azQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"bND" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azS" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 +/obj/structure/mirror{ + pixel_x = 30 }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"bNK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azT" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"bNY" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"bOs" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"bOK" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azU" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/tool/pickaxe/drill, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"bPj" = ( +/obj/structure/platform_decoration/shiva{ + dir = 1 + }, +/obj/structure/platform_decoration/shiva{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azV" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azW" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/cable_coil/random, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"bPz" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_research) +"bPD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"bPX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"bQa" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"bQe" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/outside/dorms) -"aAb" = ( -/obj/structure/machinery/light, +/area/bigredv2/outside/admin_building) +"bQk" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bQB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAf" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bQC" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"bRd" = ( +/obj/structure/cable{ + icon_state = "1-4" }, /turf/open/floor/plating, +/area/bigredv2/oob) +"bRx" = ( +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"bRC" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "reactor_meltdown" + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"bRJ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/tonic, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"bRU" = ( +/turf/open/floor/wood, /area/bigredv2/outside/bar) -"aAg" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aAi" = ( -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) -"aAj" = ( -/obj/item/tool/extinguisher/mini, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"aAk" = ( -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/lambda/research) -"aAl" = ( -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/caves/lambda/research) -"aAm" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 +"bSs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/cable_coil/random, +/obj/effect/spawner/random/powercell{ + pixel_x = 6; + pixel_y = 10 }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/research) -"aAn" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves/lambda/research) -"aAo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/spawner/random/attachment, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bTa" = ( +/obj/item/ore{ + pixel_x = -1 }, -/turf/open/mars_cave, -/area/bigredv2/caves/lambda/research) -"aAp" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/storage) -"aAq" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aAr" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Medical Clinic Operating Theatre" +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"bTu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"aAs" = ( -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"aAt" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aAu" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"aAv" = ( -/obj/structure/machinery/light, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aAw" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aAx" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aAy" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"bTR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bTS" = ( +/turf/open/mars_cave/mars_cave_12, +/area/bigredv2/caves_research) +"bTY" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/n) +"bUv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/grenade/custom/large, +/turf/open/floor/whitepurplefull, /area/bigredv2/outside/medical) -"aAz" = ( +"bUZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ - dir = 8 + dir = 4 }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 32 +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"bVb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"aAA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/n) -"aAB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"bVF" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"bWa" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"aAC" = ( +/obj/item/device/multitool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"bWe" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAE" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Recreation" +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"bWz" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"bWB" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz1_telecomm_cas) +"bWD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/purple/northwest, +/area/bigredv2/caves/lambda/research) +"bWN" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp{ + pixel_y = 15 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"aAH" = ( +/obj/item/paper/bigred/lambda, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"bWS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aAI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/bed/roller, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"bWT" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper/courtroom{ + name = "A Crash Course in Legal SOP" }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Bar Maintenance" +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"bWX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"bXe" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aAJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/bigredv2/caves/lambda/xenobiology) +"bXg" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/obj/structure/cable, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"bXr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"bXy" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/e) +"bYa" = ( +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bYF" = ( +/obj/item/frame/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"bYU" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"bYV" = ( +/obj/structure/machinery/smartfridge/secure/virology, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"bZp" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"aAK" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"bZq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"bZB" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"bZF" = ( +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/research) +"caa" = ( +/obj/structure/curtain/medical, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"cam" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/n) +"caN" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"cbc" = ( +/obj/item/folder/yellow, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"cbd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"cbg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) -"aAL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"cbj" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"cbx" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"cbJ" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/e) +"cbQ" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"cbX" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"cbZ" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ccr" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/mauler, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ccs" = ( +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/outside/ne) -"aAM" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aAN" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"cct" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/grenade/high_explosive/frag{ + desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. This one seems to have weird insciptions all over it. You can barely make out 'PrAIs3 thE H3f@ G0d'" }, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aAO" = ( -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aAP" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ccz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) -"aAQ" = ( -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/research) -"aAR" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" - }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/research) -"aAS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + icon_state = "S" }, -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves/lambda/research) -"aAT" = ( -/obj/structure/machinery/light/small{ +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"aAU" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"aAV" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "anomalybelt" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"aAW" = ( -/obj/structure/machinery/conveyor{ - dir = 9; - id = "anomalybelt" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"aAX" = ( -/obj/structure/machinery/light/small/built{ +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"cdd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"cdw" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"aAY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"aAZ" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aBa" = ( -/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"ceb" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"cec" = ( +/obj/structure/bed, +/obj/item/toy/plush/farwa, /turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aBb" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"aBc" = ( -/turf/open/floor/darkish, +/area/bigredv2/outside/cargo) +"ceh" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"cei" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"ceV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"aBd" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ +"cfj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"cfx" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"aBe" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Operations"; + pixel_y = 24 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"cfE" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"cgp" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"cgq" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - name = "\improper Medical Clinic" + id_tag = "mbayexit"; + name = "Medbay Reception"; + req_one_access_txt = "2;8;19" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"aBf" = ( -/obj/item/device/healthanalyzer, -/turf/open/floor/whitegreencorner, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"aBg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 +"cgs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "U-S" }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitegreen, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"cgx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/healthanalyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"aBh" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 +"cgC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"cgY" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 }, -/turf/open/floor/whitegreen/southeast, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"chR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"aBi" = ( -/obj/structure/machinery/light{ +"cif" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aBj" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"aBk" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"aBl" = ( -/obj/structure/urinal{ - pixel_y = 32 +/turf/open/floor/darkblue2, +/area/bigredv2/caves/eta/research) +"cim" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/lz2_south_cas) +"cin" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"ciw" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/recharger, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"ciD" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"ciE" = ( +/obj/item/stool, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"ciH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"aBm" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"aBn" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"ciL" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"aBo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"ciW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"cjl" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/freezerfloor, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) -"aBp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"cjm" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"aBq" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"cjD" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"aBr" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/beach_ball, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"aBu" = ( -/turf/open/floor/asteroidwarning, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"ckc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) -"aBv" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/research) -"aBw" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"aBy" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"aBz" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"aBA" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/research) -"aBB" = ( -/obj/item/device/multitool, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"aBC" = ( -/obj/item/clothing/suit/storage/labcoat/science, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"aBD" = ( -/obj/item/tool/weldingtool/experimental, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"aBE" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/storage) -"aBF" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"aBG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "U-S" +"ckn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/effect/landmark/static_comms/net_two{ + broken_on_spawn = 1 }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"aBH" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"ckM" = ( +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"clm" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"cln" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"aBI" = ( -/obj/structure/bed/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"aBJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"aBK" = ( -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aBM" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aBN" = ( -/obj/structure/surface/table, -/obj/item/device/healthanalyzer, -/obj/structure/pipes/vents/pump, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/transmitter/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Clinic"; - pixel_y = 24 - }, +/area/bigredv2/outside/engineering) +"clr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"clL" = ( +/obj/structure/bed, /turf/open/floor/white, /area/bigredv2/outside/medical) -"aBO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/recharger, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aBP" = ( +"clN" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aBQ" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"aBR" = ( -/turf/open/mars, -/area/bigredv2/outside/c) -"aBS" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"aBT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Storage" +/obj/item/spacecash/c1, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"clO" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"aBU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/trash/candy, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aBW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"aBX" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"cmm" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"aBZ" = ( -/obj/structure/bed/stool, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"aCa" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"aCb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aCc" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"aCd" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/ne) -"aCe" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/xenobiology) -"aCf" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"aCh" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"aCi" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCj" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCk" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper/courtroom{ - name = "A Crash Course in Legal SOP" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"cmu" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cmD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"aCl" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel/spade, -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCm" = ( -/obj/structure/surface/table, -/obj/item/paper/hydroponics, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCn" = ( -/obj/structure/machinery/fermenter, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCo" = ( +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"cns" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "se-checkpoint" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"cnu" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) +"cnB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCp" = ( -/obj/structure/machinery/seed_extractor, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"cnM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/caves/lambda/xenobiology) +"cnO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCq" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aCr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"aCs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/clipboard, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) -"aCt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/lambda/research) -"aCu" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" - }, -/obj/structure/ore_box, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/research) -"aCv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) +"cok" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Lambda Lab Technical Lab" + name = "\improper Engineering Lockers" }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"aCw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"aCx" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"con" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/eta) +"cor" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/barricade/handrail/wire{ dir = 1 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"aCy" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"aCz" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/warning_stripes{ - icon_state = "U-N" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"aCA" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"cox" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"coy" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"coQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"coZ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/plasticflaps, -/turf/open/floor/dark, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) +"cpo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/purple/southeast, /area/bigredv2/caves/lambda/research) -"aCB" = ( +"cpt" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"aCC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"cpG" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"cpR" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"aCD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"cpS" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aCE" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"cqf" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/w) +"cqi" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aCF" = ( -/obj/item/reagent_container/pill/happy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"cqk" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/surface/table, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"cqo" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/obj/effect/landmark/corpsespawner/prisoner, /turf/open/floor/white, -/area/bigredv2/outside/medical) -"aCG" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" +/area/bigredv2/outside/marshal_office) +"cqE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"cqO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Spaceport" }, /turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"aCH" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"aCI" = ( -/obj/structure/bed/chair, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aCJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aCK" = ( -/obj/structure/bed/chair, +/area/bigredv2/outside/space_port) +"cqR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -32; + start_charge = 0 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"cqU" = ( +/obj/structure/bed/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) -"aCL" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/xenobiology) -"aCM" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/c) -"aCN" = ( +"crb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) -"aCO" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"aCP" = ( -/obj/structure/closet/secure_closet/bar, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aCR" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"crF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"aCS" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"aCT" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"aCU" = ( +/obj/structure/machinery/computer/aifixer, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"cse" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"csi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Bar Maintenance" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" }, /turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"aCW" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/ne) -"aCY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/area/bigredv2/outside/general_offices) +"cst" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCZ" = ( -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aDa" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"csY" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"csZ" = ( /obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aDb" = ( -/obj/structure/machinery/door_control{ - id = "Greenhouse"; - name = "Storm Shutters"; - pixel_x = 32 +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6 }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aDe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ctr" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = -32 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"aDg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"ctw" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ctA" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"ctF" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/zippo, +/obj/item/tool/lighter/zippo, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"ctP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"aDi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aDj" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"aDk" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplecorner, -/area/bigredv2/caves/lambda/research) -"aDl" = ( -/obj/structure/ore_box, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/research) -"aDm" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"ctY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"cuu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/retractor, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/research) -"aDn" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 4 +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"cuR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic" }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"aDp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/purple/northwest, -/area/bigredv2/caves/lambda/research) -"aDq" = ( -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"aDr" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"cuT" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/sign/safety/laser{ - pixel_y = 32 +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"cuU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Robotics" }, -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"aDs" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"cvS" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"cwF" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"cxk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"cxq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Surgery" }, -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"aDt" = ( -/obj/structure/machinery/conveyor_switch{ - id = "anomalybelt" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"cxu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/sign/safety/biohazard{ + pixel_x = 32; + pixel_y = 32 }, -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"aDu" = ( -/turf/open/floor/purple/northeast, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/research) -"aDv" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/living) -"aDw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/nw) -"aDx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"aDy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cxA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"cxE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -30 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"aDz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"aDA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/light/built{ + dir = 1 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"aDB" = ( -/turf/open/floor/whitegreen/northeast, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) -"aDC" = ( +"cxF" = ( /obj/structure/surface/table, -/obj/item/tool/surgery/bonesetter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"cxK" = ( +/turf/open/floor/whitegreencorner/west, /area/bigredv2/outside/medical) -"aDD" = ( +"cxO" = ( /obj/structure/surface/table, -/obj/item/storage/box/masks, +/obj/item/tool/surgery/bonesetter, /obj/effect/decal/cleanable/dirt, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"aDE" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/FixOVein, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"aDF" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/cautery, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"aDG" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 +"cxS" = ( +/obj/structure/coatrack{ + pixel_x = -5; + pixel_y = 13 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/surgery/blue, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"aDH" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/obj/item/clothing/shoes/dress{ + pixel_y = -13 }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aDI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aDJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aDK" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"aDL" = ( -/obj/structure/curtain/open/medical, +/obj/item/clothing/under/suit_jacket/trainee{ + pixel_x = -6; + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"cyp" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"cyv" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"cyG" = ( +/obj/structure/closet/secure_closet/RD, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"czj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"czs" = ( +/obj/structure/machinery/camera/autoname, /turf/open/floor/white, -/area/bigredv2/outside/medical) -"aDM" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"aDN" = ( +/area/bigredv2/outside/office_complex) +"czv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aDO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreenfull, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) -"aDP" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 +"czG" = ( +/obj/item/tool/pickaxe, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -11; + pixel_y = 10 }, -/obj/item/trash/chips, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"czN" = ( +/obj/structure/machinery/light, /turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"aDQ" = ( +"czS" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"cAd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"cAh" = ( +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"cAN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aDU" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"aDV" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"cBe" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"cBI" = ( +/obj/structure/machinery/light/small{ dir = 1 }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"cBK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"cBP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"aDW" = ( +"cDi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aDX" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/living) -"aDY" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/living) -"aDZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bar Backroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"aEa" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aEb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Bar APC" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aEc" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aEd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEg" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"cDn" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/trash/popcorn, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEh" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEi" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"aEj" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/living) -"aEm" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"cDp" = ( +/obj/structure/foamed_metal, +/turf/open/floor/whiteyellow/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"cDS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) -"aEn" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"aEo" = ( -/turf/open/floor/whitepurplecorner, -/area/bigredv2/caves/lambda/research) -"aEp" = ( -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/research) -"aEq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -30 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"cDV" = ( +/obj/structure/machinery/light, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"cDY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"cEb" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/darkpurple2/west, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) -"aEs" = ( -/obj/structure/bed/chair/comfy/lime{ +"cEo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"cEz" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"cEF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"cEM" = ( +/obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"aEt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/purple/east, -/area/bigredv2/caves/lambda/research) -"aEu" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside) -"aEv" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"aEw" = ( /obj/structure/surface/table, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"aEx" = ( -/obj/item/alien_embryo, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aEz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"cET" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_cave_cas) +"cFb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"aEA" = ( +"cFF" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/ne) +"cGd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/hemostat, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"aEC" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aED" = ( -/obj/structure/bed, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"aEE" = ( -/obj/structure/bed, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"aEF" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves/lambda/research) -"aEG" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"cGw" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"cGA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aEH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"cGC" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"cGF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/effect/landmark/corpsespawner/doctor, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/white, -/area/bigredv2/outside/medical) -"aEI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/caves/lambda/xenobiology) +"cGI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aEJ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cHi" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aEK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aEM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"cHy" = ( +/obj/item/device/flashlight, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cHS" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, /turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) -"aEN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Toilet" +"cIA" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"cIJ" = ( +/obj/structure/closet/secure_closet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"cIP" = ( +/obj/item/paper/bigred/smuggling, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cJd" = ( +/turf/open/space/basic, +/area/space) +"cJg" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"aEO" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aEP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"cJi" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"cJL" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"cJS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"cKl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aEQ" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aER" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"cKD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aET" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/shovel/spade, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"cKP" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"cKQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"cLq" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEW" = ( -/obj/item/tool/hatchet, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/barricade/handrail{ dir = 4 }, /turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEX" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/se) -"aEY" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/asteroidwarning/northeast, -/area/bigred/ground/garage_workshop) -"aEZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/liquidfood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/area/bigredv2/outside/marshal_office) +"cLt" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aFa" = ( -/obj/structure/machinery/botany/extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aFb" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"cLI" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aFc" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/sw) -"aFd" = ( -/obj/structure/flora/jungle/plantbot1{ - pixel_y = 10 - }, -/turf/open/jungle, -/area/bigredv2/outside/admin_building) -"aFf" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurple/southwest, -/area/bigredv2/caves/lambda/research) -"aFg" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/research) -"aFh" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/research) -"aFi" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light/built, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurple/southeast, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"cLJ" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"cMn" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"cMt" = ( +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) -"aFj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2/west, +"cME" = ( +/obj/item/device/multitool, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) -"aFk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"cMG" = ( +/obj/structure/closet/crate, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"cMM" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/nw) +"cNj" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 32 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"aFl" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/transmitter/colony_net{ - dir = 4; - phone_category = "Eta Labs"; - phone_id = "Observation"; - pixel_x = -18 +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"cNy" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/purple/southwest, -/area/bigredv2/caves/lambda/research) -"aFm" = ( -/turf/open/floor/purplecorner/west, -/area/bigredv2/caves/lambda/research) -"aFn" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"aFo" = ( -/turf/open/floor/purplecorner, -/area/bigredv2/caves/lambda/research) -"aFp" = ( -/turf/open/floor/purple/southeast, -/area/bigredv2/caves/lambda/research) -"aFq" = ( -/obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"aFr" = ( -/obj/structure/machinery/smartfridge/secure/virology, +/area/bigredv2/outside/telecomm) +"cNJ" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, /turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"aFs" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/virology) -"aFt" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/virology) -"aFu" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/virology) -"aFv" = ( -/turf/open/mars, -/area/bigredv2/outside/virology) -"aFw" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/virology) -"aFx" = ( -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"aFy" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/dirt, -/obj/item/organ/heart/prosthetic, -/turf/open/floor/white, /area/bigredv2/outside/medical) -"aFz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"cNQ" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -32 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"aFA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/stack/sheet/metal{ + amount = 30 }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"cOt" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"cOw" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"cOy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"cOH" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"cPa" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; name = "\improper Medical Clinic Operating Theatre" }, /turf/open/floor/delivery, /area/bigredv2/outside/medical) -"aFB" = ( +"cPe" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"cPm" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"cPG" = ( +/obj/structure/bed/chair/wood/normal, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"aFC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aFE" = ( -/obj/item/reagent_container/pill/happy, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aFF" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"cPY" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aFG" = ( -/obj/structure/bed, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"aFH" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aFI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/buritto, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aFJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/healthanalyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, +/obj/item/clothing/head/surgery/blue, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"aFK" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +"cQd" = ( +/obj/structure/fence, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; dir = 1; - id_tag = "mbayexit"; - name = "Medbay Reception"; - req_one_access_txt = "2;8;19" + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cQq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cQu" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_north) +"cQF" = ( +/obj/item/tool/warning_cone{ + pixel_y = 20 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aFL" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/c) -"aFM" = ( /turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"aFN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/area/bigredv2/outside/telecomm/n_cave) +"cQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor, -/area/bigredv2/outside/dorms) -"aFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"aFP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, +/area/bigredv2/outside/general_offices) +"cRb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aFT" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/radio, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"aFU" = ( -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_y = -32 - }, /obj/structure/machinery/camera/autoname{ - dir = 1 + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"aFV" = ( -/obj/structure/machinery/light/small/built{ - dir = 8 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cRt" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"cRE" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/item/weapon/gun/rifle/m41a/training, +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"cRH" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/n) +"cRI" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"aFW" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aFX" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Administration" }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aFY" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"cSg" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_se) +"cSp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"cSr" = ( +/obj/item/ammo_magazine/handful/shotgun/custom_color{ + color = "#6666ff"; + desc = "A handful of ulta rare 12 gauge HE/FRAG ammunition to seriously fuck shit up with. Too bad its behind this indestructable window....."; + name = "handful of HE/FRAG shells (12g)"; + pixel_y = 3 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aGa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Greenhouse Storage" +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"cSJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"aGb" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"cSV" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"cTh" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"cTk" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_virology) +"cTn" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/item/shard{ + icon_state = "small" }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aGc" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cTr" = ( +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_se) +"cTV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Greenhouse Storage" +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"cUa" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, /turf/open/floor/delivery, -/area/bigredv2/outside/library) -"aGd" = ( -/obj/structure/closet/l3closet/virology, +/area/bigredv2/outside/cargo) +"cUk" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/warnwhite/southwest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/virology) -"aGe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"cUC" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"aGg" = ( -/obj/structure/machinery/light/built{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"cUK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"cUM" = ( +/obj/structure/cable{ + icon_state = "1-6" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-9" }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"aGh" = ( -/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cUW" = ( /turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"aGi" = ( -/obj/item/clothing/glasses/welding, -/turf/open/floor/purplecorner/west, -/area/bigredv2/caves/lambda/research) -"aGj" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/warnwhite/southeast, -/area/bigredv2/caves/lambda/virology) -"aGk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/area/bigredv2/outside/general_offices) +"cVa" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"cVd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"cVh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"cVx" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = 32 +/obj/structure/morgue{ + dir = 2 }, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"aGl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"cVK" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"cVR" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/floor4, +/area/bigredv2/outside/marshal_office) +"cVS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/caves/lambda/virology) -"aGm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"cVU" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"cVY" = ( +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"cWw" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"cWE" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"cWL" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"cWS" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/caves/lambda/virology) -"aGn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_north) +"cWT" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/platform/kutjevo/rock{ dir = 1 }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"aGo" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/virology) -"aGp" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/virology) -"aGq" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"cXp" = ( /turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/virology) -"aGr" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/virology) -"aGs" = ( -/obj/structure/machinery/light{ +/area/bigredv2/outside/n) +"cXz" = ( +/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/virology) -"aGt" = ( -/obj/item/reagent_container/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" - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aGu" = ( -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aGv" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"aGw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"aGx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"cXC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aGy" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"aGz" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"cYp" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aGA" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"cYq" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aGB" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/computer/pod/old{ + name = "Register" }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"aGC" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/trash/kepler, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aGD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/objective, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aGE" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"cYy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aGF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"aGG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/binoculars, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aGH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, +/turf/open/floor/plating, /area/bigredv2/outside/bar) -"aGI" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +"cYY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"cZa" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/waffles, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"cZj" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"cZm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"cZv" = ( +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/storage) +"cZF" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lz2_south_cas) +"cZJ" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"cZS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/flour, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aGJ" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aGL" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) -"aGP" = ( -/obj/structure/filingcabinet/medical, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aGT" = ( -/obj/structure/surface/table, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aGU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"daa" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_virology) +"dad" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"dan" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"daP" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/research) -"aGV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aGW" = ( -/turf/open/floor/purple, -/area/bigredv2/caves/lambda/research) -"aGX" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"daX" = ( +/obj/structure/machinery/floodlight, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"dbc" = ( /obj/structure/surface/table, -/obj/item/tool/weedkiller/D24, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aGY" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, +/obj/item/paper, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"dbi" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/telecomm/lz2_cave) +"dbj" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"dbk" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/purple/southeast, -/area/bigredv2/caves/lambda/research) -"aGZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"dco" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"dcv" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 28; - start_charge = 0 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"aHa" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"dcD" = ( /obj/structure/surface/table, -/obj/item/storage/pill_bottle/spaceacillin, -/obj/structure/machinery/computer/objective, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aHc" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"aHd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-in" - }, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/caves/lambda/virology) -"aHe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"dcP" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/whitegreen/northeast, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"ddr" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/lambda/virology) -"aHf" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/virology) -"aHg" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/virology) -"aHh" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/virology) -"aHj" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"aHl" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"aHm" = ( -/obj/effect/decal/cleanable/blood, +"ddu" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/weapon/gun/pistol/mod88, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"dei" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/living) +"deU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"aHn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars, -/area/bigredv2/outside/nw) -"aHo" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"aHp" = ( -/obj/structure/machinery/light, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"aHq" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"aHr" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"aHs" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"aHt" = ( -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"aHu" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aHv" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/toxin, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aHw" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aHy" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/rad, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aHz" = ( -/obj/structure/bed, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"aHA" = ( -/obj/structure/bed, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"aHB" = ( -/obj/structure/bed/chair{ +/turf/open/floor/delivery, +/area/bigredv2/outside/eta) +"deY" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"dft" = ( +/obj/structure/bed/chair, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"dgm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aHC" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/c) -"aHD" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) -"aHF" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"aHG" = ( -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"aHH" = ( -/obj/structure/machinery/light{ - dir = 1 +"dgK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"aHI" = ( -/turf/open/floor/carpet11_12/west, -/area/bigredv2/outside/bar) -"aHJ" = ( -/obj/structure/machinery/reagentgrinder, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"dgX" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"dhb" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aHK" = ( -/obj/structure/surface/table, -/obj/item/toy/sword, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aHL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Kitchen Storage" +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"aHO" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"aHP" = ( -/obj/structure/prop/almayer/computers/mapping_computer{ - desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; - name = "\improper Teleporter Targeting Computer" +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"dhq" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"dhJ" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/caves_lambda) +"dhL" = ( +/obj/item/explosive/grenade/custom/antiweed, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"dhN" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/almayer{ + id = "rad_door"; + name = "\improper Radiation Shielding" }, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aHQ" = ( -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/research) -"aHR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Anomaly Lab" +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"die" = ( +/obj/structure/machinery/deployable/barrier, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"aHS" = ( +/area/bigredv2/outside/admin_building) +"dip" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/access_button/airlock_interior{ - master_tag = "viro_controller"; - pixel_y = 28 + icon_state = "N" }, -/turf/open/floor/whitegreen/northwest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/whitegreen, /area/bigredv2/caves/lambda/virology) -"aHT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor/whitegreencorner/north, +"diq" = ( +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) -"aHU" = ( -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 +"div" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"diN" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"aHV" = ( -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/lambda/virology) -"aHW" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"diS" = ( +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/lambda/virology) -"aHX" = ( -/obj/structure/window/reinforced/toughened{ +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"djg" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"djD" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"dki" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/disease2/diseaseanalyser, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"aHY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/red/east, +/area/bigredv2/outside/marshal_office) +"dkn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" }, -/obj/structure/machinery/light/built{ - dir = 4 +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"dkq" = ( +/obj/structure/machinery/power/apc{ + dir = 1 }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"aHZ" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/virology) -"aIa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"dkt" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Engine Reactor" }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/virology) -"aIb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"dkF" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"aIc" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aIe" = ( -/obj/structure/surface/table/reinforced, -/obj/item/pizzabox/vegetable, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"aIg" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"dkO" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"dkQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"dlm" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"dln" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -32; + start_charge = 0 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"dlt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"dlJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"dmq" = ( +/obj/item/weapon/gun/boltaction, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dms" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Checkpoint" }, /turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"aIi" = ( +/area/bigredv2/outside/marshal_office) +"dmB" = ( +/obj/item/tool/pickaxe, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) +"dmM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"aIj" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/darkblue2, +/area/bigredv2/caves/eta/research) +"dmO" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"dmU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aIk" = ( -/obj/structure/machinery/light, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aIl" = ( -/obj/item/reagent_container/glass/rag, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aIm" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/c) -"aIn" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"aIo" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/landmark/crap_item, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"dnd" = ( +/obj/structure/prop/tower, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"dnh" = ( +/obj/structure/platform, +/obj/structure/flora/jungle/planttop1{ + pixel_y = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"dot" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor, -/area/bigredv2/outside/office_complex) -"aIp" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/c) -"aIq" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +/area/bigredv2/outside/cargo) +"doM" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"aIr" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"doP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hefa_cult_decals/d96, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dpE" = ( +/obj/structure/machinery/computer/pandemic, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"dpN" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_lambda) +"dpQ" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"dpU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"dpZ" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"dqo" = ( /turf/open/floor/carpet15_15/west, /area/bigredv2/outside/bar) -"aIs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"aIt" = ( -/obj/effect/decal/cleanable/blood/gibs/body, +"dqv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aIu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aIv" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aIw" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aIx" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aIy" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aIz" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aIA" = ( -/obj/structure/sign/safety/biolab{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"dqU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"dqX" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +/obj/structure/cable{ + icon_state = "4-10" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aIB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aIC" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"drp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aID" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aIE" = ( -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aIF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aIJ" = ( -/turf/open/floor/darkpurple2/northwest, -/area/bigredv2/caves/lambda/research) -"aIK" = ( -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"aIL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"aIM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"aIN" = ( -/turf/open/floor/darkpurplecorners2/north, -/area/bigredv2/caves/lambda/research) -"aIO" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"aIP" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"drC" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"aIQ" = ( -/turf/open/floor/bluegrid/damaged5, -/area/bigredv2/caves/lambda/research) -"aIR" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/bluegrid/damaged4, -/area/bigredv2/caves/lambda/research) -"aIS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"aIT" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aIU" = ( -/obj/structure/pipes/vents/scrubber/on, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"aIV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"aIW" = ( -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"aIX" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light/small/built{ - dir = 1 +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"drD" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/virology) -"aIY" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aIZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/virology) -"aJa" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 +/obj/item/weapon/baton/loaded, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"dst" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/machinery/door/window{ +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"dsy" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 8 }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"aJb" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/obj/structure/pipes/vents/pump{ +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"dsQ" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"dtd" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"dte" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"dtA" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"dtE" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/carpet15_15/west, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"aJc" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"aJd" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/lambda/virology) -"aJe" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 +"dtV" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"dtZ" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, -/obj/structure/machinery/door/window{ - layer = 4 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"aJf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"duk" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"dum" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/virology) -"aJg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/virology) -"aJh" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/virology) -"aJi" = ( -/obj/item/trash/popcorn, /turf/open/floor/asteroidwarning, -/area/bigredv2/outside/virology) -"aJj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/virology) -"aJl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"aJm" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/c) -"aJn" = ( -/turf/open/floor/carpet13_5/west, -/area/bigredv2/outside/bar) -"aJo" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/carpet13_5/west, -/area/bigredv2/outside/bar) -"aJp" = ( -/turf/open/floor/carpet9_4/west, -/area/bigredv2/outside/bar) -"aJq" = ( -/obj/structure/bed/chair/wood/normal{ +"duo" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"duA" = ( +/obj/structure/platform{ dir = 1 }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aJr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Bar Backroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"aJs" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aJt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aJv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"duG" = ( +/obj/item/reagent_container/food/snacks/sausage, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aJw" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"duV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aJx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"dvi" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aJy" = ( -/obj/structure/surface/table/woodentable, /turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"aJz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/outside/engineering) +"dvo" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"dvz" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lambda_cave_cas) +"dvN" = ( +/obj/structure/largecrate/supply/supplies, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"dvX" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"dwd" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Kitchen Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"aJA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aJC" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"aJD" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/dice/d20, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"aJE" = ( -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/research) -"aJF" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"aJG" = ( -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"aJH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"aJI" = ( +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"dwD" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"aJJ" = ( -/obj/structure/machinery/light/built, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"aJL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"aJM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/bluegrid/damaged3, -/area/bigredv2/caves/lambda/research) -"aJN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"aJO" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rad_haz{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/pill_bottle/tramadol, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"dwO" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"aJQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"aJR" = ( -/obj/structure/machinery/access_button/airlock_exterior{ - master_tag = "viro_controller"; - pixel_y = -28 +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"dwV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"aJS" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 32; - pixel_y = -32 +/obj/structure/mirror{ + pixel_x = -28 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"dxr" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"dxs" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"dxu" = ( +/obj/item/cell/hyper/empty, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"dxv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dxL" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"aJT" = ( -/obj/structure/filingcabinet/medical, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"dye" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"dyv" = ( +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"dyQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"dyT" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"dyZ" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/eta) +"dzp" = ( +/obj/structure/inflatable/door, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"dzE" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/caves/eta/xenobiology) +"dzU" = ( +/obj/structure/closet/boxinggloves, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aJU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/bigredv2/outside/dorms) +"dAi" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"dAy" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"dAI" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/virology) +"dAJ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/virology) -"aJV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"dBD" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"dBL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"dBR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/white, -/area/bigredv2/caves/lambda/virology) -"aJW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/bigredv2/outside/virology) +"dBX" = ( +/obj/structure/machinery/computer/station_alert, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"dCp" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"dCr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/item/stack/sheet/metal{ + amount = 30 }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/virology) -"aJX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"dCy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Virology Wing" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Bar Maintenance" }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"aJY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/bigredv2/outside/bar) +"dCA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"dCE" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dCM" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"dCN" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/virology) -"aJZ" = ( -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/door/window{ +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"dCU" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"dDi" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"aKa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"dDo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Robotics" }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/lambda/virology) -"aKb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"dDx" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"dDA" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic Chemistry" }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"aKc" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"dEb" = ( +/obj/structure/surface/table, +/obj/item/cell/hyper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"dEc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"aKd" = ( -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/lambda/virology) -"aKe" = ( -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/door/window{ - layer = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"dEf" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"dFc" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"aKf" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"dFn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/camera/oldcamera, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dFs" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreen/east, +/turf/open/floor/whitegreencorner/east, /area/bigredv2/caves/lambda/virology) -"aKg" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"aKi" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"aKk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/c) -"aKl" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/c) -"aKm" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 +"dFL" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"dGe" = ( +/obj/item/tool/wrench, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) -"aKn" = ( +"dHr" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -15 + }, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"dHy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"dHG" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"dHL" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"dIb" = ( +/turf/open/floor, +/area/bigredv2/caves) +"dIk" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"dIy" = ( +/obj/structure/machinery/computer/crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"dID" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"dIJ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"dIU" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"dIW" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"dJc" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, -/area/bigredv2/outside/office_complex) -"aKo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aKp" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/bigredv2/outside/dorms) +"dJj" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + desc = "An old W-Y systems control computer that manages the air enviorment for a large area. Commonly used in mining operations in order to control O2 levels, alert of any dangerous gases and make the heat slightly more bearable."; + name = "W-Y Enviorment Control System Control Panel" + }, +/obj/structure/cable{ + icon_state = "11-2" + }, +/obj/structure/cable{ + icon_state = "11-10" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dJk" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"dJv" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"dKg" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whiteyellow/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"dKm" = ( +/obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aKq" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -32 +/area/bigredv2/caves/lambda/xenobiology) +"dKo" = ( +/obj/item/ore/iron{ + pixel_x = 6; + pixel_y = 9 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"aKr" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/c) -"aKt" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/c) -"aKv" = ( -/obj/structure/bed/chair/wood/normal, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aKw" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aKx" = ( -/obj/structure/bed/stool, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aKy" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aKz" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aKC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/item/ore/iron{ + pixel_x = -9; + pixel_y = 8 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aKD" = ( +/obj/item/ore/iron, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"dKv" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/w) +"dKG" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"dLa" = ( +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/medical) +"dLl" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz1_north_cas) +"dLt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) -"aKE" = ( -/obj/structure/machinery/door_control{ - id = "Kitchen Greenhouse"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"dLz" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aKF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aKG" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aKH" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aKI" = ( -/obj/structure/machinery/processor, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"aKJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"dLK" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aKO" = ( -/obj/structure/bed/chair/wood/normal{ +/area/bigredv2/outside/general_store) +"dMv" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"aKP" = ( -/turf/open/mars, -/area/bigredv2/outside/e) -"aKQ" = ( -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"aKS" = ( -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"aKT" = ( -/obj/structure/machinery/light/small/built{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"dNi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"aKU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"dNm" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer/plant_analyzer, /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"aKV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-in" + dir = 1 }, -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/caves/lambda/virology) -"aKW" = ( -/obj/structure/window/reinforced/toughened{ - dir = 8 +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitegreen_v/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"dNz" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/pistol/holdout, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dNA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/window/reinforced/toughened, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"aKX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Director's Office" }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/lambda/virology) -"aKY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/lambda/virology) -"aKZ" = ( -/obj/structure/window/reinforced/toughened{ +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"dNJ" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) +"dNO" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"dNU" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/window/reinforced/toughened, -/obj/structure/closet/crate/freezer, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"dNX" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"dOz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/living) +"dOH" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"dPf" = ( +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"dPp" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"aLa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"dPJ" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/bigredv2/outside/c) +"dPY" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"dQd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"dQI" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/caves/lambda/virology) -"aLb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/obj/structure/surface/table, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"dQL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Break Room" }, -/obj/structure/machinery/light/built{ - dir = 4 +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"dQU" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"dRj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"aLc" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"dRE" = ( +/obj/item/folder/yellow, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"dRH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"dRN" = ( +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"dSe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"dSg" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"dSr" = ( /obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/mars, -/area/bigredv2/outside/c) -"aLd" = ( -/turf/open/mars/mars_dirt_13, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"dSD" = ( +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/c) -"aLe" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Command Complex" +"dSS" = ( +/obj/structure/closet, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"aLf" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dTq" = ( /obj/structure/surface/table, -/obj/item/clothing/mask/cigarette, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"dTB" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lambda_cave_cas) +"dUc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"aLg" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, +/area/bigredv2/caves/eta/research) +"dUh" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"aLi" = ( -/obj/structure/closet/jcloset, -/obj/structure/machinery/camera/autoname{ +/area/bigredv2/outside/admin_building) +"dUi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"aLl" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aLo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"dUl" = ( /obj/structure/surface/table, -/obj/item/device/radio, -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/item/paper_bin, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"dUt" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) -"aLp" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aLq" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump, -/obj/item/trash/cheesie, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aLr" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aLs" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/item/tool/extinguisher, +"dUG" = ( +/obj/structure/barricade/wooden, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"aLt" = ( -/obj/structure/surface/table/woodentable{ - flipped = 1 +"dUL" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_east) +"dVb" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"dVh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dVi" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aLu" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aLv" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aLw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/waffles, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aLx" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aLy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/knife, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aLz" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/waffles, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aLA" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aLB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/plate, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aLC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aLD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aLE" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"dVU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aLH" = ( -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"aLI" = ( -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aLJ" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkyellow2/north, +/obj/item/stack/sheet/metal, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"aLM" = ( -/obj/structure/machinery/shower{ - dir = 1 +"dVW" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"dWj" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"dWq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/pipes/vents/pump, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"dWA" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/obj/structure/machinery/door/window{ - dir = 1; - opacity = 1 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"dWB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/burger, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dXL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/warnwhite, -/area/bigredv2/caves/lambda/virology) -"aLO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"dXT" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_se) +"dYb" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"aLP" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"dYe" = ( /obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"aLQ" = ( -/obj/structure/window/reinforced/toughened{ - icon_state = "fwindow" +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"dYm" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/obj/structure/window/reinforced/toughened{ - dir = 8 +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"dYu" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"dYE" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"dYJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"aLR" = ( -/obj/structure/window/reinforced/toughened{ - icon_state = "fwindow" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/obj/structure/window/reinforced/toughened{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/computer/pandemic, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"aLS" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"dYU" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/lambda/research) +"dZe" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"aLT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/virology) -"aLU" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"dZp" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"dZK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"aLV" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = -24 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"aLW" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"dZR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"aLX" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"aLY" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/virology) -"aLZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"dZS" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"aMa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood{ - amount = 2 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"dZV" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"eam" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"aMb" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"aMc" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"aMd" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/c) -"aMf" = ( /turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aMg" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"aMh" = ( -/obj/structure/bed/chair/wood/normal{ +/area/bigredv2/outside/virology) +"eaM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Technical Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"eaN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ dir = 1 }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/landing/console2) +"ebj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aMi" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/spawner/random/tool, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aMj" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aMk" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/ne) -"aMl" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"ebv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Armory" }, -/turf/open/floor, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"ebH" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ebY" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) -"aMm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aMn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aMo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aMp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cheesie, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"aMr" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aMs" = ( -/turf/open/floor/bluegrid, -/area/bigredv2/caves/lambda/research) -"aMt" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/bluegrid, -/area/bigredv2/caves/lambda/research) -"aMu" = ( -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" - }, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aMv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "viro_q"; - layer = 4; - name = "Qurantine Lockdown"; - normaldoorcontrol = 1; - pixel_x = -25; - req_access_txt = "7"; - specialfunctions = 4 - }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"aMw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"aMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"aMy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = -32 - }, -/obj/structure/machinery/light/built, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"aMB" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/pen, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"aMC" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aME" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper General Store" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"aMF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"aMG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/tool/surgery/retractor, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"aMH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aMI" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/sosjerky, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aMJ" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/obj/structure/machinery/door_control{ - id = "Bar Complex"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aMK" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aML" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMM" = ( -/obj/structure/bed/chair, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aMN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aMO" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMP" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aMQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMR" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/e) -"aMT" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/caves_lambda) -"aMV" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/caves_lambda) -"aMW" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"aMX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Virology Quarantine" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"aMY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"aMZ" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aNa" = ( -/obj/structure/closet/l3closet/general, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aNb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aNc" = ( -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aNd" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"aNe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aNf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aNg" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/surgicaldrill, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aNh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"aNi" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"aNj" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"aNk" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aNl" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aNm" = ( -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aNn" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aNo" = ( -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aNq" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aNr" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aNs" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aNt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/arcade, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aNu" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aNv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/snack, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aNw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"aNx" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"aNy" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aNz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aNA" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aNB" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aNC" = ( -/obj/structure/machinery/computer/station_alert, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aND" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "200" - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aNE" = ( -/obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Administration" - }, -/turf/open/floor/warnwhite/east, -/area/bigredv2/outside/admin_building) -"aNG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aNH" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"aNI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/outside/admin_building) -"aNJ" = ( -/turf/open/floor/darkred2/northeast, -/area/bigredv2/outside/admin_building) -"aNK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/outside/admin_building) -"aNL" = ( -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"aNM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"aNN" = ( -/obj/structure/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"aNO" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aNP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aNQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aNR" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aNS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aNT" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aNU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aNV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aNW" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aNX" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aNY" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/raisins, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aNZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aOa" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOb" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aOc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aOe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOf" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aOg" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/kitchen/utensil/spoon, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aOk" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/e) -"aOl" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/disk/nuclear, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/research) -"aOm" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/caves_lambda) -"aOn" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/caves_lambda) -"aOo" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"aOp" = ( -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"aOq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"aOr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aOs" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"aOt" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"aOu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"aOv" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aOw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cola, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aOE" = ( -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"aOF" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aOG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aOH" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/warnwhite/east, -/area/bigredv2/outside/admin_building) -"aOI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aOJ" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"aOK" = ( -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"aOL" = ( -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"aOM" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aON" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Operations Bedroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"aOO" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aOP" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"aOQ" = ( -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "Blue"; - phone_id = "Director" - }, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/research) -"aOR" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"aOS" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/cheesie, -/obj/item/trash/pistachios, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aOU" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Crew Habitation Complex" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"aOV" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aOW" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOX" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/tray, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aOY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aPa" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPc" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aPd" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"aPe" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aPf" = ( -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_id = "Workshop" - }, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"aPg" = ( -/obj/structure/surface/table, -/obj/item/oldresearch/Blood, -/obj/item/oldresearch/Blood, -/obj/item/paper, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"aPh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPi" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aPq" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Anomaly Chamber" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"aPr" = ( -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"aPs" = ( -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"aPt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - name = "\improper Virology Lab Decontamination" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"aPu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"aPv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aPw" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/donut, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aPx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aPy" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aPz" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aPA" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aPB" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aPC" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aPD" = ( -/obj/structure/surface/table, -/obj/item/storage/briefcase, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aPE" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aPF" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aPG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aPH" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"aPI" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aPJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aPK" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aPL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aPM" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aPN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aPO" = ( -/obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/phone, -/turf/open/floor/warnwhite/east, -/area/bigredv2/outside/admin_building) -"aPP" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aPQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aPS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aPT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"aPV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aPW" = ( -/obj/structure/coatrack{ - pixel_x = -5; - pixel_y = 13 - }, -/obj/item/clothing/shoes/dress{ - pixel_y = -13 - }, -/obj/item/clothing/under/suit_jacket/trainee{ - pixel_x = -6; - pixel_y = 15 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aPX" = ( -/obj/structure/surface/table/woodentable, -/obj/item/tool/lighter/zippo, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aPY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aPZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"aQa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aQd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQe" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aQf" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aQh" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aQi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQj" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aQk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aQm" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQn" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQo" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQp" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aQq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"aQu" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"aQv" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/podhatch/north, -/area/bigredv2/caves/lambda/research) -"aQw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/podhatch/northeast, -/area/bigredv2/caves/lambda/research) -"aQy" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/obj/item/paper_bundle, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"aQz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aQA" = ( -/obj/item/frame/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aQB" = ( -/obj/item/frame/table, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aQC" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Virology APC" - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aQD" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/smes_coil, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"aQE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aQF" = ( -/turf/open/mars/mars_dirt_5, -/area/bigredv2/outside/w) -"aQG" = ( -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/w) -"aQH" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aQI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aQJ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aQL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aQM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aQN" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aQO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname, -/obj/effect/decal/cleanable/blood, -/obj/item/alien_embryo, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aQP" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/kitchen/knife, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aQQ" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/item/tool/lighter/random, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aQR" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aQS" = ( -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aQT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aQU" = ( -/obj/item/device/flashlight, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aQV" = ( -/obj/structure/surface/table, -/obj/item/paper, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aQW" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aQX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aQY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aQZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aRa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aRb" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aRc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aRd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"aRe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Operations" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aRf" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"aRh" = ( -/obj/structure/machinery/door_control{ - id = "Operations"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"aRi" = ( -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/outside/admin_building) -"aRj" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aRk" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aRl" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aRm" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aRn" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, +"ecb" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aRo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Bar" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"aRp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Kitchen" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"aRq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aRr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aRs" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Kitchen"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aRu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Library" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/library) -"aRx" = ( -/obj/structure/machinery/teleport/station, -/turf/open/floor/podhatch, -/area/bigredv2/caves/lambda/research) -"aRy" = ( -/obj/structure/machinery/teleport/hub, -/turf/open/floor/podhatch/southeast, -/area/bigredv2/caves/lambda/research) -"aRz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -30 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light/built{ - dir = 1 +/area/bigredv2/outside/dorms) +"ecf" = ( +/obj/structure/closet/secure_closet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"ech" = ( +/obj/structure/showcase{ + icon = 'icons/obj/structures/machinery/research.dmi'; + icon_state = "d_analyzer_la" }, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"aRA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/virology) -"aRB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/virology) -"aRC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 30 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/vomit, -/obj/structure/machinery/light/built{ - dir = 1 - }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"aRD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aRE" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aRF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aRG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aRH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aRI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aRJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aRK" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aRL" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aRM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aRN" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aRO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aRP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aRQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aRR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aRS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aRT" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aRU" = ( -/obj/structure/machinery/light, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aRV" = ( -/obj/structure/sign/safety/terminal{ - pixel_y = -32 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aRX" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aRY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"aRZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"aSc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Bar" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"aSe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Kitchen" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"aSf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"aSg" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/e) -"aSh" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/e) -"aSi" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/e) -"aSl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/caves_lambda) -"aSm" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/caves_lambda) -"aSn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"aSo" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"aSp" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"aSq" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/scrubber/on{ - dir = 1 - }, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/caves/lambda/virology) -"aSr" = ( -/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/caves/lambda/virology) -"aSs" = ( -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"aSt" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"aSu" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aSv" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aSw" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aSx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aSy" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aSA" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Virology Lab Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"aSB" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/w) -"aSC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aSD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aSE" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aSF" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/tonic, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aSG" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/obj/item/reagent_container/food/drinks/flask, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aSH" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aSI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aSJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/roller, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aSK" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/surgery/surgicaldrill, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aSL" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/healthanalyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aSM" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/multitool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aSN" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aSO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aSP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper General Store Security" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"aSQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"aSR" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"aSS" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"aST" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/outside/admin_building) -"aSU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"aSV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"aSW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/darkredcorners2/north, -/area/bigredv2/outside/admin_building) -"aSX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aSZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Control Center APC" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"aTa" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"aTb" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aTc" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"aTd" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"aTe" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"aTf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"aTg" = ( -/obj/structure/sign/double/barsign{ - pixel_y = 32 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"ecq" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Recreation" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"ecB" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz1_telecomm_cas) +"edk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"aTh" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"edz" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"edK" = ( +/turf/open/floor/whitepurplecorner/west, +/area/bigredv2/caves/lambda/xenobiology) +"eeh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"eek" = ( +/turf/open/floor/purple/northeast, +/area/bigredv2/caves/lambda/research) +"eep" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"eeB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"eeZ" = ( +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/c) -"aTi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"efo" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/mining) +"efq" = ( +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"efv" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"efW" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"aTj" = ( +/obj/structure/cable, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"egS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"egX" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"ehd" = ( /obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) -"aTk" = ( +"ehg" = ( +/obj/structure/bed/chair/wood/normal, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/e) -"aTl" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"eho" = ( +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/outside/engineering) +"ehy" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/lz1_north_cas) +"ehE" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"eio" = ( +/obj/structure/machinery/message_server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"eix" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"aTp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"aTq" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"aTr" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/e) -"aTs" = ( -/turf/open/floor/delivery, -/area/bigred/ground/garage_workshop) -"aTt" = ( +/turf/open/floor/darkred2/northeast, +/area/bigredv2/caves/eta/xenobiology) +"eiB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"aTu" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"aTv" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"aTw" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"aTC" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"aTD" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"aTE" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/lambda/virology) -"aTG" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"aTH" = ( -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/lambda/virology) -"aTI" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"aTJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"aTK" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aTL" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aTM" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"eiD" = ( +/obj/structure/closet/l3closet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/general_offices) +"eiU" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/structure/machinery/light{ +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/outside/admin_building) +"ejP" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/se) +"eko" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aTN" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aTO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aTP" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aTQ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aTR" = ( -/obj/structure/surface/table, -/obj/item/storage/briefcase, -/obj/structure/machinery/light{ +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"ekB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aTS" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aTU" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"aTV" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"aTY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"aTZ" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Office" }, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"aUa" = ( -/turf/open/floor/darkredcorners2, -/area/bigredv2/outside/admin_building) -"aUb" = ( -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"aUc" = ( -/turf/open/floor/darkred2/southeast, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"aUd" = ( +"ekD" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/se) +"elK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/outside/admin_building) -"aUe" = ( +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"elU" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/eta/xenobiology) +"emd" = ( +/obj/structure/surface/table, +/obj/item/tool/screwdriver, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "yellow"; + phone_id = "Robotics" }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"aUf" = ( -/obj/effect/landmark/good_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"aUg" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aUh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"emo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"ems" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"aUi" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"aUk" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/e) -"aUl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"aUm" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"aUn" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"aUv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"aUD" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"aUE" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"aUF" = ( -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/lambda/virology) -"aUG" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"aUH" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/lambda/virology) -"aUI" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"aUJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/objective_landmark/science, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"aUM" = ( -/obj/structure/machinery/computer/operating, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aUO" = ( -/obj/structure/surface/table, -/obj/item/tank/anesthetic, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aUP" = ( -/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"emD" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"emM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aUQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/w) -"aUS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aUT" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aUU" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aUV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aUW" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aUX" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/coffee, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aUY" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/coffee, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aUZ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aVa" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aVb" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/obj/item/storage/box/snappops, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aVc" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars/mars_dirt_9, -/area/space) -"aVd" = ( -/obj/structure/surface/table, -/obj/item/toy/dice, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aVe" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aVf" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/knife, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aVg" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ene" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_x = -11; + pixel_y = 11 }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aVh" = ( -/obj/structure/bed/chair/office/dark{ +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"enf" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"enl" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eno" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras/wooden_tv{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVi" = ( -/obj/structure/machinery/door_control{ - id = "General Store"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aVj" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"enr" = ( +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"enD" = ( +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 7 }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"aVk" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"aVl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"aVm" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"aVn" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/c) -"aVo" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/c) -"aVp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"aVq" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/e) -"aVr" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/e) -"aVs" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/e) -"aVt" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/e) -"aVv" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/e) -"aVx" = ( -/obj/structure/curtain/medical, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"aVy" = ( -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"aVz" = ( -/turf/open/floor/darkgreen2, -/area/bigredv2/caves/lambda/virology) -"aVA" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"aVB" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"aVC" = ( -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"enK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door_control{ - id = "viro"; - name = "Virology Lockdown"; - pixel_x = -25 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aVD" = ( -/obj/structure/bed/stool, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aVE" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/white, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Virology Lab Decontamination" + }, +/turf/open/floor/delivery, /area/bigredv2/outside/virology) -"aVF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/w) -"aVG" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/w) -"aVH" = ( +"enT" = ( +/obj/structure/surface/table/woodentable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/w) -"aVI" = ( +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"eoc" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/item/tool/extinguisher, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"eoj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/w) -"aVJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper General Store" +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"aVK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"eol" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVL" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/restraint/adjustable/cable, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVM" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"eom" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"eoH" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"eoK" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/virology) +"eoY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"eoZ" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/w) +"epc" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"eqq" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"eqv" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aVO" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"eqQ" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"erj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"eru" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"erD" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/ne) +"erH" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/se) +"ess" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aVP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"esx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"esX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"aVQ" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/mars, -/area/space) -"aVR" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"eup" = ( +/obj/structure/bed/chair, +/obj/item/trash/cigbutt, +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_x = 11 }, -/turf/open/mars/mars_dirt_12, -/area/space) -"aVS" = ( -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"euL" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"eve" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"evO" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/virology) +"ewa" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/eta) +"ewy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - network = list("interrogation") + name = "\improper Atmospherics Condenser" }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"aVT" = ( -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/outside/admin_building) -"aVU" = ( -/turf/open/floor/darkblue2/north, -/area/bigredv2/outside/admin_building) -"aVV" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"ewE" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/sw) +"exm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Eta Lab Restroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"exG" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"exK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"eyj" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"eyl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"eyn" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"eyp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/darkblue2/north, -/area/bigredv2/outside/admin_building) -"aVW" = ( -/obj/structure/bed/chair/office/dark{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"eyu" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/head/beret/sec/warden, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"eyD" = ( +/obj/structure/largecrate, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/transmitter/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Operations"; - pixel_y = 24 +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"eyF" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"eyJ" = ( +/obj/structure/curtain/red, /obj/item/prop/alien/hugger, -/turf/open/floor/darkblue2/north, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"aVX" = ( -/obj/structure/machinery/computer/cameras{ +"ezh" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_virology) +"ezk" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table, -/turf/open/floor/darkblue2/northeast, +/turf/open/floor/red/southwest, +/area/bigredv2/outside/lambda_cave_cas) +"ezp" = ( +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 150; + name = "Safe-Room intercom"; + pixel_y = -30 + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"ezs" = ( +/turf/open/floor/darkredcorners2/west, /area/bigredv2/outside/admin_building) -"aVY" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/e) -"aVZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"aWb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/wy_mre, -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 8 +"ezw" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"aWc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"aWd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/effect/landmark/objective_landmark/close, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"ezJ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/c) +"ezK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"eAk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"eAx" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aWe" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/delivery, +/area/bigredv2/outside/eta) +"eAI" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"eAK" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aWf" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"eAM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"eBa" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/white, -/area/bigredv2/outside/virology) -"aWg" = ( -/obj/structure/machinery/computer/pandemic, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aWh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/warnwhite/northwest, -/area/bigredv2/outside/virology) -"aWi" = ( -/turf/open/floor/warnwhite/north, -/area/bigredv2/outside/virology) -"aWj" = ( +/area/bigredv2/outside/medical) +"eBb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"eBh" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"eBv" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/se) +"eBN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 32 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"eDf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"eDi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"eDz" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/lambda/research) +"eDG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/red/southwest, +/turf/open/floor/red, /area/bigredv2/outside/marshal_office) -"aWk" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/w) -"aWs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aWt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"eDL" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/brown, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"eDQ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"eDS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aWu" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"eEy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_west_cas) +"eFa" = ( +/obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/whitebluefull/northeast, +/obj/item/tool/surgery/surgicaldrill, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) -"aWv" = ( -/obj/structure/machinery/alarm{ +"eFi" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"eFx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - pixel_y = -30 + name = "\improper Dormitories Bedroom" }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aWw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"eFy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"eFZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"eGc" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aWx" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aWy" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/telecomm/n_cave) -"aWz" = ( -/obj/structure/showcase{ - icon_state = "bus" +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"eGe" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"eGo" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"aWB" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aWC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"eGw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/sw) +"eGC" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/ne) +"eHu" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_west_cas) +"eHF" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; dir = 1; - name = "\improper Operations Armory" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"aWD" = ( -/turf/open/floor/darkblue2/west, -/area/bigredv2/outside/admin_building) -"aWE" = ( -/turf/open/floor/darkbluecorners2, -/area/bigredv2/outside/admin_building) -"aWF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" }, -/turf/open/floor/darkblue2, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eIc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) -"aWG" = ( -/obj/structure/machinery/computer/communications{ +"eIn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/purple/west, +/area/bigredv2/caves/lambda/research) +"eIv" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/surface/table, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/outside/admin_building) -"aWH" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"eIz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"eIF" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"eII" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"eIP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"eJT" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"aWI" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/c) -"aWJ" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/c) -"aWK" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/e) -"aWL" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/e) -"aWM" = ( +/area/bigredv2/caves/eta/research) +"eJV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"aWN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"eJY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"eLb" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"eLq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"eLx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"eLG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"aWO" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"eLX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/white, -/area/bigredv2/outside/virology) -"aWP" = ( +/area/bigredv2/outside/admin_building) +"eMe" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Virology Lab Chemistry" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"eMj" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"aWQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"eMm" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"eMt" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/disk/nuclear, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"eMR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"eMT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"eMV" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; + dir = 4; health = 25000 }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aWR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"aWS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/bottle/toxin, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"aWT" = ( -/obj/structure/bed, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"aWU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 }, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"eNc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"aWV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/w) -"aWW" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) -"aWX" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/odysseus, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aWY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/restraint/adjustable/cable/cyan, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aXb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aXc" = ( -/obj/structure/machinery/light, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"aXd" = ( -/obj/structure/machinery/light{ - dir = 1 +"eNv" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/e) +"eNx" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lambda-cave-mushroom" }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aXg" = ( -/obj/structure/sign/safety/terminal{ - pixel_y = 32 +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"eNC" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eNJ" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"eNM" = ( +/obj/structure/bed/chair, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"eNP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/landmark/good_item, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"aXj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"eNS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aXk" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aXl" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"eOo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/landmark/crap_item, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aXm" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/area/bigredv2/outside/chapel) +"eOB" = ( +/obj/structure/window/reinforced/toughened{ + dir = 4 }, -/turf/open/floor/darkblue2/east, -/area/bigredv2/outside/admin_building) -"aXn" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aXo" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/window/reinforced/toughened, +/obj/structure/closet/crate/freezer, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"aXq" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"ePf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/w) +"ePk" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"ePG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"ePK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Eta Lab Security Office" }, /turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"aXr" = ( -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXu" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aXw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"aXx" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Virology Lab Cell" +/area/bigredv2/caves/eta/storage) +"eQe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eQh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"aXy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"aXz" = ( -/obj/structure/toilet{ +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"eQn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"eRe" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"eRf" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"eRC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/freezerfloor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eSd" = ( +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) -"aXA" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/w) -"aXB" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/mauler, -/obj/item/toy/prize/odysseus, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aXC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/odysseus, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aXD" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/mauler, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aXE" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/mauler, -/obj/structure/machinery/camera/autoname{ - dir = 1 +"eSf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aXG" = ( -/obj/structure/surface/table, -/obj/item/toy/sword, -/obj/item/toy/gun, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aXH" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aXL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"eSh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"eSi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"aXM" = ( +"eSl" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"eSn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"eSU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"aXN" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"eTF" = ( +/obj/structure/surface/table, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"eTP" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/n) +"eTU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) +"eTX" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine{ density = 0; @@ -12683,7456 +8657,8670 @@ }, /turf/open/floor/darkblue2/southwest, /area/bigredv2/outside/admin_building) -"aXO" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/darkblue2, -/area/bigredv2/outside/admin_building) -"aXP" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/turf/open/floor/darkblue2, -/area/bigredv2/outside/admin_building) -"aXQ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/outside/admin_building) -"aXS" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXV" = ( -/obj/structure/bed/chair/comfy/black{ +"eUh" = ( +/obj/structure/window/reinforced/toughened{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXW" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/e) -"aXY" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/w) -"aXZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/obj/structure/window/reinforced/toughened{ dir = 1; - name = "\improper General Store Maintenance" + icon_state = "fwindow"; + pixel_y = 12 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"aYc" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/outside/admin_building) -"aYi" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/platform_decoration, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aYk" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"eUp" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"eUq" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/shotgun, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eUs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = 3; + pixel_y = 12 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aYl" = ( -/obj/item/cell/hyper/empty, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"aYm" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Office" +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"eUv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Telecommunications" }, /turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"aYo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, +/area/bigredv2/outside/telecomm) +"eVa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/outside/admin_building) -"aYp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Operations Toilet" +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"eWo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) +"eWy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/moneybag, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"eWK" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/se) +"eWP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"aYq" = ( -/obj/effect/landmark/objective_landmark/far, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = 20 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"eWX" = ( +/obj/structure/machinery/mill, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"eXl" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/mirror{ - pixel_y = 29 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/admin_building) -"aYr" = ( -/obj/structure/toilet{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"eXp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"eXq" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"eXv" = ( +/obj/item/reagent_container/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" }, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"eXK" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"eXR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = 3; + pixel_y = 12 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/admin_building) -"aYs" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aYt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/eat, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aYu" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eYb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/bed/chair/comfy/black{ +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"eYo" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aYv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"eYq" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"aYx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"eYv" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock{ dir = 4 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/e) -"aYA" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aYB" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aYC" = ( -/obj/structure/surface/table, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"aYE" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/w) -"aYF" = ( -/turf/open/mars, -/area/bigredv2/outside/w) -"aYG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYH" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/space) +"eYE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYI" = ( -/obj/structure/machinery/light{ +/obj/item/tool/warning_cone, +/obj/structure/barricade/handrail/wire{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"eYH" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYK" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/c) -"aYL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aYM" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"aYN" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Meeting Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"aYO" = ( /turf/open/floor, -/area/bigredv2/outside/admin_building) -"aYS" = ( -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/outside/admin_building) -"aYT" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/area/bigredv2/outside/dorms) +"eZf" = ( +/obj/item/tool/pickaxe{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"eZq" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"eZw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"aYU" = ( -/obj/structure/machinery/light{ +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"aYV" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"aYW" = ( -/turf/open/floor/darkredcorners2/north, -/area/bigredv2/outside/admin_building) -"aYX" = ( -/obj/structure/machinery/robotic_fabricator, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"aYY" = ( -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"aYZ" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"aZa" = ( -/obj/effect/decal/mecha_wreckage/ripley/firefighter, -/turf/open/floor/mech_bay_recharge_floor, -/area/bigredv2/outside/office_complex) -"aZb" = ( -/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"eZz" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"eZH" = ( +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"eZU" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"fah" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/stack/sheet/wood{ + pixel_y = -7 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"faA" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_lambda) +"faD" = ( +/obj/structure/machinery/medical_pod/sleeper, /turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"aZc" = ( +/area/bigredv2/outside/medical) +"faI" = ( /obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aZd" = ( -/obj/structure/bed/chair/comfy/black{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aZe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"aZh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"faJ" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"faM" = ( +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/chapel) -"aZi" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/chapel) -"aZj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/red/northeast, +/area/bigredv2/outside/marshal_office) +"faS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"aZk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"faT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/structure/surface/table, +/obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary{ + pixel_y = 12 }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Virology Lab Decontamination" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fbi" = ( +/obj/item/stack/sheet/glass, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"fbk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"fbr" = ( +/obj/structure/cable{ + icon_state = "1-6" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"aZl" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/cable{ + icon_state = "6-8" }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"aZm" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fbs" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/n) +"fbA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aZn" = ( -/obj/structure/closet/secure_closet/quartermaster, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZo" = ( -/obj/structure/closet/secure_closet/cargotech{ - req_access = null; - req_one_access_txt = "21;101" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Greenhouse Storage" }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZr" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZs" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZt" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"fbB" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crashlanding-eva" + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"fbO" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"fbP" = ( +/obj/item/trash/pistachios, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"fbV" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"fct" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZu" = ( -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZv" = ( -/obj/structure/machinery/door/window/eastleft{ - layer = 3.1 +/obj/item/folder/yellow, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"fcy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZw" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"fcI" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZx" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"fcN" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/s) +"fcU" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"fcX" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"fdg" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"fdq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZz" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Administration Wing" }, -/obj/item/prop/alien/hugger, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"aZA" = ( -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/admin_building) -"aZB" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZC" = ( -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZE" = ( -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"aZF" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"fdy" = ( +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"fdz" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_west_cas) +"fdU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"fek" = ( +/obj/item/weapon/shield/riot, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"feA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"aZG" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"aZH" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"aZJ" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"feB" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"aZL" = ( +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"feI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"feL" = ( +/obj/structure/bed/roller, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"ffb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "\improper General Store Maintenance" + name = "\improper Eta Lab Armory" }, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"aZM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZO" = ( +/area/bigredv2/caves/eta/research) +"ffh" = ( +/obj/item/stack/rods, +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZQ" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"ffY" = ( /obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZS" = ( +/obj/item/clothing/under/brown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"fgu" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"fgI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/mucus, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"fhj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_se) +"fhs" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"fhw" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"fin" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) +"fiK" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"fiZ" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"fja" = ( +/obj/structure/bed/stool, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"fjd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"aZT" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZU" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"fjr" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"fkd" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"fkI" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"fkJ" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/goldschlager, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fkP" = ( +/obj/structure/machinery/power/turbine, /turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"aZW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkredcorners2, -/area/bigredv2/outside/admin_building) -"aZX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"aZY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/outside/engineering) +"flJ" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/se) +"fmb" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_y = 8 }, -/obj/structure/machinery/door_control{ - id = "Operations"; - name = "Storm Shutters"; - pixel_y = -32 +/obj/effect/landmark/objective_landmark/close, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"fmc" = ( +/obj/effect/landmark/objective_landmark/far, +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 20 }, -/obj/effect/landmark/good_item, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"aZZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/mirror{ + pixel_y = 29 }, -/turf/open/floor/dark, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/admin_building) -"baa" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"bac" = ( +"fmp" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/folder/black, /turf/open/floor/white, /area/bigredv2/outside/office_complex) -"bad" = ( -/obj/item/device/analyzer, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bae" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"baf" = ( -/obj/structure/surface/table, -/obj/item/cell/hyper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bag" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/beaker/sulphuric, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bah" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bai" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"baj" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bal" = ( -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"bam" = ( -/turf/open/floor/rampbottom/north, -/area/bigredv2/outside/chapel) -"ban" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/radio/headset, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"bao" = ( -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"bap" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"baq" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"bar" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"bat" = ( -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"bay" = ( +"fmr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 6 }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; +/turf/open/floor/darkred2/northwest, +/area/bigredv2/outside/admin_building) +"fmw" = ( +/obj/item/explosive/grenade/slug/baton{ dir = 1; - health = 25000 + pixel_y = -8 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/explosive/grenade/baton{ + dir = 4; + pixel_x = 9; + pixel_y = -8 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/cable{ + icon_state = "4-10" }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/hunter_primary, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/crowbar, +/obj/structure/cable{ + icon_state = "4-5" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fmD" = ( +/obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baF" = ( -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"baG" = ( -/obj/structure/bed/chair/comfy/blue{ +/obj/item/tool/extinguisher, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"fmT" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ dir = 4 }, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/gloves, +/obj/item/reagent_container/spray/cleaner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"fnv" = ( +/obj/structure/bed/chair/comfy, /turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"baI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" +/area/bigredv2/caves/lambda/breakroom) +"fnF" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"fnK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ + name = "\improper Dormitories Restroom" }, /turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"baJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"baK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"baL" = ( +/area/bigredv2/outside/dorms) +"fom" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/obj/item/reagent_container/food/drinks/flask, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"foA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/item/trash/hotdog, /turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"baM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/black, +/area/bigredv2/outside/medical) +"foD" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"fpa" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"fpb" = ( +/obj/structure/surface/rack, +/obj/item/device/camera_film, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"fpy" = ( +/obj/structure/closet/firecloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"fqq" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/surgicaldrill, /turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"baN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_sw) -"baO" = ( +/area/bigredv2/outside/virology) +"fqw" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"fqI" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/ne) +"fqM" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"baP" = ( -/obj/structure/surface/table, -/obj/item/paper, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"baR" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"baS" = ( -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"baT" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/asteroidwarning/east, +/area/bigred/ground/garage_workshop) +"frA" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/caves/eta/research) +"frT" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_research) +"frV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"fsc" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"fsj" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/chapel, /area/bigredv2/outside/chapel) -"baU" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +"fst" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"baW" = ( -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"bba" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/obj/structure/closet/crate, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23/ap, +/obj/item/ammo_magazine/rifle/nsg23/ap, +/obj/item/ammo_magazine/rifle/nsg23/extended, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fsR" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = -32 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/w) -"bbb" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"fth" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves) +"ftk" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_research) +"fts" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/mars, -/area/bigredv2/outside/w) -"bbc" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/w) -"bbe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbf" = ( -/obj/effect/spawner/random/tool, +/turf/open/floor/red/northeast, +/area/bigredv2/outside/marshal_office) +"ftz" = ( +/obj/structure/surface/table, +/obj/item/toy/sword, +/obj/item/toy/gun, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"fue" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"fuj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/binoculars, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"fuy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"fuI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"fve" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Surgery" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"fvk" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 1; - name = "\improper Cargo Bay" + icon_state = "door_locked"; + id = "safe_room"; + name = "\improper Lambda Lab Director's Safe Room" }, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bbh" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbi" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/area/bigredv2/caves/lambda/breakroom) +"fvo" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Server Room" }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbj" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"fvp" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"fvt" = ( /obj/structure/surface/table, -/obj/item/alienjar, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bbk" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/light, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"fvB" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"bbl" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fvI" = ( +/obj/structure/machinery/conveyor_switch{ + id = "anomalybelt" }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/carpet7_3/west, -/area/bigredv2/outside/admin_building) -"bbm" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/admin_building) -"bbn" = ( -/obj/structure/safe, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bbo" = ( -/obj/structure/bed/chair/comfy/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbp" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 6 +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"fvN" = ( +/obj/item/tool/warning_cone, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/filtration_cave_cas) +"fvR" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"fvT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"fvZ" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 27 }, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbq" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 6 +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fwq" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"fwC" = ( +/obj/effect/spawner/random/attachment, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fwV" = ( +/obj/structure/surface/table, /turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbr" = ( +/area/bigredv2/caves) +"fxg" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fxF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/whiteyellowcorner/east, +/area/bigredv2/caves/lambda/xenobiology) +"fxH" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"fxN" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"fxP" = ( /obj/structure/surface/table, -/obj/item/storage/photo_album, -/obj/item/tool/pen/red, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"fxQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"fyy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbs" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"fzG" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"fzX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bbt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"fAu" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1containers_scramble" }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bbu" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"fAR" = ( +/turf/open/floor/almayer/w_y2/north, +/area/bigredv2/outside/admin_building) +"fBc" = ( +/obj/structure/pipes/standard/tank/phoron, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"fBF" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bbv" = ( -/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"fBR" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"fBV" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"fCb" = ( +/turf/open/floor, +/area/bigredv2/outside/filtration_cave_cas) +"fCk" = ( +/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, /turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bbw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/welding, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/outside/medical) +"fCn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab" }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bbx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"fCy" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"fCC" = ( +/obj/structure/window/reinforced, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"fCJ" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/s) +"fDb" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bby" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/stock_parts/smes_coil, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bbz" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"fDh" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bbA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"bbB" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bbC" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bbD" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"bbE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"fDn" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/firealarm, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"fDo" = ( /obj/structure/surface/table/woodentable, -/obj/item/storage/bible, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"bbF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"bbG" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"bbH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"fDP" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 }, -/obj/effect/landmark/crap_item, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"fDS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/warnplate/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"fEq" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/ash, /turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"bbI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/bigredv2/outside/engineering) +"fEx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_se) +"fEZ" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fFt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"bbJ" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/w) -"bbM" = ( -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"fFP" = ( +/obj/structure/machinery/light/built, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"fFQ" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"fGf" = ( +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) -"bbO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"fGL" = ( +/obj/structure/janitorialcart, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"fGU" = ( +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/lambda/virology) +"fHf" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbP" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"fHt" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/flashlight, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 + dir = 10 }, -/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"fHv" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_north) +"fId" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/beach_ball, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"fIi" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/virology) +"fIw" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/bluegrid/damaged4, +/area/bigredv2/caves/lambda/research) +"fIE" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"fIU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Lambda Lab Prison Restroom" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"fJh" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, /turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bbW" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/bigredv2/outside/library) +"fJL" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/weapon/gun/rifle/mar40/lmg, +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"fKb" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/warnwhite/west, +/area/bigredv2/caves/lambda/xenobiology) +"fKe" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"fLw" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/carpet7_3/west, -/area/bigredv2/outside/admin_building) -"bbY" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bbZ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras/wooden_tv{ +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"fLE" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"fLQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"fMi" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"fMk" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_east) +"fMq" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bca" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"fMx" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bcb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"bcc" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"bcd" = ( -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"fMK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"fML" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bce" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bcf" = ( -/obj/structure/machinery/light, +/area/bigredv2/caves/mining) +"fNa" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bcg" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bch" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"bci" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"fNb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/warnwhite, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" + }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) -"bcj" = ( +"fNo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"fNv" = ( +/obj/item/device/flashlight/on{ + pixel_x = 8 + }, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"fNE" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"fNF" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"fOA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bar" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"fOM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"fON" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"fPB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"fPW" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/redcorner, +/turf/open/floor/grimy, /area/bigredv2/outside/office_complex) -"bck" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Private Office" +"fQf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"fQg" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"fQL" = ( +/obj/structure/transmitter/colony_net{ + dir = 4; + do_not_disturb = 1; + phone_category = "Lambda Labs"; + phone_color = "red"; + phone_id = "Director's Safe Room"; + pixel_x = -18 + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"fRb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Eta Lab" }, /turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"fRd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"fRy" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"fRN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"bcl" = ( -/obj/structure/bed/chair/wood/normal{ +"fRU" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"bcn" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"fSi" = ( +/obj/structure/surface/table, +/obj/item/book/manual/nuclear, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"fSz" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"fSB" = ( +/obj/structure/bed, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"fTb" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_6, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_virology) -"bco" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"bcq" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/w) -"bct" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +"fTw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"fTI" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/ne) +"fTK" = ( +/obj/structure/closet/secure_closet, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"fTL" = ( +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"fTS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-4-8"; + name = "heavy duty power cable" }, -/turf/open/floor/loadingarea/east, -/area/bigredv2/outside/cargo) -"bcu" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"fTX" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"fUy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bcv" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcw" = ( -/obj/effect/decal/mecha_wreckage/ripley, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"fUI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"fVt" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Cargonia"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcy" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcz" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcB" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = -30 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcC" = ( -/obj/structure/machinery/door_control{ - id = "Cargonia"; - name = "Storm Shutters"; - pixel_x = 32 +/obj/item/stack/sheet/glass{ + amount = 30 }, /turf/open/floor, /area/bigredv2/outside/cargo) -"bcD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Cargo Bay Offices" +"fVN" = ( +/obj/structure/bed/chair, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"fVW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"fWp" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bcE" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"fWC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bcF" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"fWR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"fXt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"fXy" = ( +/obj/structure/machinery/filtration/console{ + pixel_y = 15 }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"fXF" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/carpet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"fXG" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) +"fXH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"fXO" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"fYg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/roller, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"fYh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"fYv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"bcG" = ( +"fYH" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/caves/mining) +"fYV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bcH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"fZd" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/e) +"fZp" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"fZA" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"gae" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) -"bcI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"gaV" = ( +/obj/structure/machinery/computer/telecomms/server{ + req_one_access_txt = "19;200" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"gbw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"gbP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"gcl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"bcJ" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"gcw" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" + }, +/turf/open/floor/carpet10_8/west, +/area/bigredv2/caves/eta/living) +"gcI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"gcL" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"gda" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/lz1_telecomm_cas) +"gdf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"gdm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gdB" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/s) +"gdN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"gea" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_se) +"geq" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/nw) +"gex" = ( +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"gez" = ( +/obj/structure/machinery/power/breakerbox/activated, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"geY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"gfb" = ( +/obj/structure/closet/hydrant{ + pixel_y = -32 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"gfH" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"gfO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, /turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) -"bcK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"gfR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"gfT" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"ggq" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"ggX" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Office" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/admin_building) +"ghn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_east) +"gia" = ( +/obj/effect/landmark/good_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"gio" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/filtration_cave_cas) +"gir" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/lambda/research) +"giB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/caves_sw) +"giC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Equipment" }, /turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"bcL" = ( +/area/bigredv2/outside/marshal_office) +"giP" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"giW" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 5 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bcM" = ( -/turf/open/floor/carpet5_1/west, -/area/bigredv2/outside/admin_building) -"bcN" = ( -/turf/open/floor/carpet13_5/west, -/area/bigredv2/outside/admin_building) -"bcO" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bcP" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"gja" = ( +/obj/structure/machinery/computer/operating, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"gjk" = ( +/obj/structure/machinery/computer/med_data{ density = 0; - req_one_access_txt = "200" + pixel_y = 16 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bcQ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bcR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"gjy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"gjO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2; + name = "\improper Operations" }, -/turf/open/floor/grimy, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"bcS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gko" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"bcT" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/caves_lambda) +"gkH" = ( +/obj/structure/bed, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"gkN" = ( +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"glB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lz2_south_cas) +"glL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"glX" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Space Port" }, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"bcU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"gmg" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Engineering"; + name = "\improper Engineering Shutters" }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bcV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"gmi" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"gmm" = ( +/obj/structure/window/framed/solaris, +/obj/effect/decal/cleanable/molten_item, +/obj/structure/machinery/door/poddoor/almayer{ + id = "rad_door"; + name = "\improper Radiation Shielding" }, /turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bcW" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"bcX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bcY" = ( +/area/bigredv2/outside/engineering) +"gmo" = ( /obj/structure/bed/chair{ + dir = 4; + pixel_x = 13; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"gmW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bcZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Interview Room APC" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"gnI" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"gnJ" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/storage/fancy/vials/random, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"goD" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bda" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdb" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdd" = ( -/turf/open/floor/rampbottom, -/area/bigredv2/outside/chapel) -"bdg" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bdh" = ( -/obj/effect/spawner/random/tool, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdi" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"goI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/space_port) +"goL" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/pen, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"goN" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"goU" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"goX" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"gpg" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_east) +"gpn" = ( +/obj/structure/closet/crate/miningcar, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gpo" = ( +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) +"gpq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"gpR" = ( +/turf/open/gm/river, +/area/bigredv2/outside/c) +"gqK" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"gqN" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"gqS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light, /turf/open/floor, -/area/bigredv2/outside/cargo) -"bdj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Offices" +/area/bigred/ground/garage_workshop) +"grh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations Toilet" }, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bdk" = ( -/obj/effect/landmark/crap_item, +/area/bigredv2/outside/admin_building) +"gri" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "containerroom_xenos" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/nw/ceiling) +"grt" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"bdl" = ( +/area/bigredv2/caves/mining) +"gsa" = ( +/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"bdm" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bdn" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gse" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"gsn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/recharge_station, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"gsr" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/obj/structure/surface/table/woodentable, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bdo" = ( -/turf/open/floor/darkred2/southwest, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"gsv" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"gsE" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/e) +"gsH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"gsU" = ( +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"gsX" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gtP" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/c) +"gtX" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_se) +"gul" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) -"bdp" = ( -/obj/effect/decal/cleanable/dirt, +"gur" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crashlanding-offices" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"guB" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/darkred2/southeast, -/area/bigredv2/outside/admin_building) -"bdq" = ( -/obj/structure/surface/table, -/obj/item/trash/snack_bowl, -/turf/open/floor/wood, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) -"bdr" = ( -/obj/structure/machinery/vending/snack, +"gvC" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/n) +"gvM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bds" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"bdt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bdu" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bdv" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"gvT" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/nw) +"gwR" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/item/tool/pickaxe, /obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bdx" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"gwV" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gxc" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/filtration_cave_cas) +"gxp" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bdy" = ( -/obj/structure/bed/chair/comfy/lime{ +/obj/item/tool/surgery/retractor, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"gxu" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"gxz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"gyi" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"gyu" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whiteyellow/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"gyI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/red, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdA" = ( -/obj/structure/sign/prop1, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Private Office" +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" }, /turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"bdD" = ( -/obj/structure/machinery/light{ +/area/bigredv2/outside/virology) +"gyV" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/n) +"gzk" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdE" = ( -/obj/structure/machinery/door_control{ - id = "Chapel"; - name = "Storm Shutters"; - pixel_x = -32 - }, /turf/open/floor/cult, /area/bigredv2/outside/chapel) -"bdF" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"bdG" = ( -/obj/structure/machinery/power/apc, +"gzt" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/floor/loadingarea/west, +/area/bigredv2/outside/cargo) +"gzL" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/nw) +"gAs" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"gAt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/item/prop/alien/hugger, /turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"bdI" = ( -/obj/structure/machinery/alarm{ +/area/bigredv2/outside/admin_building) +"gAE" = ( +/obj/structure/sink{ dir = 1; - pixel_y = -30 + pixel_y = -9 }, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"bdK" = ( -/obj/structure/largecrate, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdL" = ( -/obj/structure/largecrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdM" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, /turf/open/floor, -/area/bigredv2/outside/cargo) -"bdO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bdP" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bdU" = ( -/obj/structure/machinery/door_control{ - id = "Office Complex 1"; - name = "Storm Shutters"; - pixel_x = -32 +/area/bigredv2/outside/hydroponics) +"gAG" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/virology) +"gAK" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "chapel_cult" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"bdW" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/closed/wall/solaris, +/area/bigredv2/outside/chapel) +"gAY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdY" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engine Reactor Control" }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"gAZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdZ" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/w) -"bec" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bed" = ( -/obj/effect/landmark/good_item, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bee" = ( -/obj/structure/closet/emcloset, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bef" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"gBs" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"gBx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"gBK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"gCd" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/research) +"gCj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"gCk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bei" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"gCu" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_south_cas) +"gCz" = ( /obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bej" = ( -/obj/structure/machinery/deployable/barrier, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"bek" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/delivery, +/obj/item/phone, +/turf/open/floor/warnwhite/east, /area/bigredv2/outside/admin_building) -"bel" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bem" = ( -/obj/item/device/taperecorder, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"ben" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Robotics" +"gCC" = ( +/obj/structure/closet/secure_closet, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"bep" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/se) -"beq" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/se) -"ber" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/se) -"bes" = ( -/turf/open/mars, -/area/bigredv2/outside/se) -"bet" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"beu" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/w) -"bev" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/w) -"bex" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bez" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beA" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"beC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"gCG" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"gCJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"gDj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/mineral/processing_unit, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gDu" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"gDX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"gEi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) -"beE" = ( +"gEr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 10 }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) -"beF" = ( -/obj/structure/barricade/wooden, +"gET" = ( /turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"beG" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/c) -"beH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"beI" = ( -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"beJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"beK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"beL" = ( +/area/bigredv2/outside/space_port_lz2) +"gFj" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"beM" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"gFF" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/obj/structure/cable, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gFS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"beN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/prop3{ - pixel_y = 32 +"gFW" = ( +/obj/structure/machinery/door_control{ + id = "Operations"; + name = "Storm Shutters"; + pixel_y = -32 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"beP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/w) -"beQ" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/w) -"beT" = ( +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"gGr" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"gGG" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beU" = ( -/turf/open/floor/loadingarea, -/area/bigredv2/outside/cargo) -"beV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cargo Offices" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"gGN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"beW" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beX" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/item/tool/lighter/random, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"gHu" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) -"beZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"gHN" = ( +/obj/structure/closet/secure_closet/bar, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"gHY" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"gIr" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"gIE" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz2_south_cas) +"gIZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"bfb" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"bfc" = ( -/obj/structure/barricade/wooden, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/c) -"bfd" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gJw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/caves_virology) +"gJE" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 + }, +/obj/structure/platform_decoration/shiva, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"gJF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"gJV" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"gKm" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bfe" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"gLG" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"gMi" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/se) +"gMC" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bfi" = ( +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"gMO" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"gMP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Office Complex Storage" - }, -/turf/open/floor/delivery, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"bfj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"gNB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel{ + id = "hole2" }, -/obj/effect/landmark/crap_item, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"bfk" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"gNH" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves) +"gNR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"gNX" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"gNZ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfl" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bfn" = ( -/obj/structure/machinery/light, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"gOp" = ( +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/xenobiology) +"gOH" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) -"bfo" = ( +"gPw" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bfp" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"gQf" = ( +/obj/structure/surface/table, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"gQj" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"gQy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bfq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"gQO" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"gRg" = ( +/obj/structure/toilet{ + pixel_y = 8 }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gRs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"gRM" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"gSe" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"gSB" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8 }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"gSG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" }, -/obj/item/trash/cheesie, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bft" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"gSM" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bfu" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bfv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Office Complex" + dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfw" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/se) -"bfy" = ( -/obj/structure/largecrate/random, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bfz" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"gTI" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"gTJ" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"gUi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfB" = ( +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"gUn" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"gUv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfC" = ( -/obj/structure/largecrate, -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bfD" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"gUH" = ( +/obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bfE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"gUL" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/knife, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"gUQ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"gVF" = ( +/obj/structure/pipes/vents/scrubber/on, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"gVW" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"gWd" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/virology) +"gWf" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -9; + pixel_y = 13 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfF" = ( -/obj/structure/largecrate, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bfG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gWv" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "eta_carp" }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/xenobiology) +"gWD" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/space_port_lz2) +"gWG" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/s) +"gWT" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"gWY" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper/Court, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"gXn" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 8 + }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"gXK" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"gXL" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"gXQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"gXW" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfH" = ( +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"gYf" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"gYh" = ( /obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"bfJ" = ( -/obj/item/trash/raisins, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/meson, +/obj/effect/landmark/crap_item, /turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bfK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/bigredv2/outside/engineering) +"gYs" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"gYv" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"gYO" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"gYS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"gYW" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/filtration_plant) +"gZf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"gZg" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, /turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bfL" = ( -/obj/effect/decal/cleanable/dirt, +/area/bigredv2/caves/lambda/breakroom) +"hab" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "medbay-v3" + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"han" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"haz" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"haQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"hbg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/snack, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"hbl" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/vest, +/obj/structure/machinery/door/window/eastright, +/obj/structure/window/reinforced, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"hbY" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_lambda) +"hco" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"bfM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"hcL" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"hdk" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_virology) +"hdu" = ( +/obj/item/clothing/under/darkred, +/obj/structure/surface/rack, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"hdw" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"hdy" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"hdz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hdF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Private Office" + }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) -"bfO" = ( -/obj/structure/machinery/light{ +"heJ" = ( +/obj/structure/machinery/shower{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"bfP" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"hfH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bfQ" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hfJ" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"hfP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"hgd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"hgi" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"hgQ" = ( +/obj/structure/filingcabinet/medical{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/medical{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"hgV" = ( +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"hgX" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"bfR" = ( /turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"bfV" = ( +"hhq" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves/eta/research) +"hhB" = ( +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"hhX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"his" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"hiG" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -4; + pixel_y = 20 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hiJ" = ( +/obj/item/paper/bigred/witness, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"hiP" = ( +/obj/structure/sign/safety/one{ + pixel_x = 16 + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"hjl" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"hju" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_lambda) +"hjD" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"hjS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"hkb" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"hkt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"hkv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"hkM" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/waffles, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"hkO" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"hlc" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz1_north_cas) +"hlm" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/n) +"hls" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"hlK" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"hlW" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bfX" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"hlY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"hmj" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"hmk" = ( +/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"hmH" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bfY" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/bot/north, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"hmJ" = ( +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/plating, /area/bigredv2/outside/cargo) -"bfZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"hmS" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"hmU" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bga" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"hne" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cargo Bay Security" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bgb" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"hnF" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"hnO" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bgc" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bgd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bge" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bgf" = ( +/area/bigredv2/outside/general_offices) +"hog" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/se) +"hoi" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"bgg" = ( -/turf/open/floor/wood, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"bgh" = ( +"hos" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"hot" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"bgi" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"bgj" = ( -/obj/structure/surface/table, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_15"; - pixel_y = 10 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"bgk" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"bgl" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"hoE" = ( +/turf/open/floor/purple, +/area/bigredv2/caves/lambda/research) +"hpa" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/w) +"hpz" = ( /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bgm" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgn" = ( -/obj/structure/janitorialcart, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgp" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bgr" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bgs" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"hpK" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bgt" = ( -/obj/structure/surface/table, +/area/bigredv2/outside/space_port) +"hpR" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/trash/syndi_cakes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/clothing/glasses/welding, /turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bgu" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"bgv" = ( -/obj/structure/surface/table, -/obj/item/tool/pen/blue, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"bgw" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"bgx" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"bgy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/bigredv2/outside/engineering) +"hpS" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"hpT" = ( +/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgA" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"hpZ" = ( +/obj/item/alien_embryo, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"hql" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/outside/admin_building) +"hqp" = ( +/obj/structure/bed, +/obj/item/prop/alien/hugger, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"hqz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/lambda/research) +"hqL" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"hqO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars, +/area/bigredv2/caves_north) +"hra" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"hrq" = ( +/obj/effect/decal/cleanable/dirt{ + pixel_x = 17 }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bgE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bgF" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hrv" = ( +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/research) +"hry" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves/lambda/xenobiology) +"hrC" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hrD" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"hrO" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"bgI" = ( -/obj/structure/surface/table, -/obj/item/trash/semki, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"hrP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bgJ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"bgK" = ( -/obj/structure/surface/table, -/obj/item/device/multitool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bgL" = ( +/area/bigredv2/outside/admin_building) +"hrQ" = ( /obj/structure/surface/table, +/obj/item/storage/pill_bottle/spaceacillin, +/obj/structure/machinery/computer/objective, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"hrS" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"hrV" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/n) +"hsy" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/grown/log, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"hsR" = ( +/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bgM" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"hsZ" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/space_port_lz2) +"hto" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"htM" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bgN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"htU" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"htX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"huf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"bgO" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"huy" = ( +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"huF" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"bgP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidplating, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) -"bgQ" = ( +"huK" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"huP" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_sw) +"hvf" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"hvm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"bgR" = ( -/obj/structure/machinery/door_control{ - id = "Office Complex 1"; - name = "Storm Shutters"; - pixel_x = -32 +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Relaxation" }, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"bgS" = ( -/obj/structure/machinery/light{ +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"hvO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"hvQ" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/surface/table, -/obj/item/storage/box/m94, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"hwa" = ( +/obj/item/clothing/accessory/storage/holster/armpit, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"hwp" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgU" = ( -/obj/item/clothing/shoes/galoshes, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bgV" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"hwZ" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"hxS" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor/whiteyellowfull/east, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) -"bgW" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/space_port_lz2) -"bgX" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"bgZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/high_explosive/frag{ - desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. This one seems to have weird insciptions all over it. You can barely make out 'PrAIs3 thE H3f@ G0d'" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bhb" = ( -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"bhe" = ( -/obj/structure/machinery/light, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bhf" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +"hxT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bhi" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/c) -"bhk" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"bhl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/darkredcorners2/north, +/area/bigredv2/outside/admin_building) +"hyd" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bhm" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bhn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bhp" = ( -/obj/structure/closet/jcloset, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bhq" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/se) -"bhr" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"hyk" = ( /obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/se) -"bhs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_east) -"bhu" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"bhv" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"bhw" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"bhx" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"bhy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"bhz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"bhA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"bhD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"bhE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"hyl" = ( +/obj/structure/showcase{ + icon_state = "bus" + }, +/turf/open/floor/carpet9_4/west, +/area/bigredv2/caves/eta/living) +"hyP" = ( +/obj/structure/machinery/door_control{ + desc = "A remote control-switch for opening the engines blast doors."; + id = "rad_door"; + name = "Reactor Radiation Shielding control"; + pixel_x = 30; + req_access_txt = "7" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"hzv" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"hzw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"hzy" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/cargo) -"bhI" = ( -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"bhL" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"bhO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"hzE" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"hAb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"hAj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves_research) +"hAp" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/obj/structure/prop/almayer/missile_tube{ + color = "grey"; + desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; + icon_state = "missiletubesouth"; + name = "\improper massive vent"; + pixel_x = -15 }, -/turf/open/mars, -/area/bigredv2/outside/c) -"bhP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"hBe" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars, -/area/bigredv2/outside/c) -"bhQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"bhR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"bhT" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/area/bigredv2/outside/space_port_lz2) +"hBu" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"bhU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"bhX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"bhY" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"bhZ" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hBD" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"hBE" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/caves/eta/research) +"hBF" = ( +/obj/item/stack/sheet/wood, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"hBH" = ( /obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/janitor, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bia" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_y = 17 }, +/obj/item/reagent_container/food/snacks/jellysandwich/cherry, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"hBS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bic" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/mars, -/area/bigredv2/outside/se) -"bid" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"hBU" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"hBZ" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/s) +"hCk" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"bie" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bik" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"hDC" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"hDH" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/e) +"hDQ" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" }, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"biq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"hDZ" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/lambda_cave_cas) +"hEh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bir" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"hEw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bit" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"hEA" = ( +/obj/item/tool/warning_cone{ + pixel_x = -6 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"hEC" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"hER" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 18; + pixel_y = 11 }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = -5; + pixel_y = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bix" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"biy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 10; + pixel_y = 2 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"biz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"biA" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"hEW" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"hFQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 }, /turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"biD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"biE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" +/area/bigredv2/outside/general_offices) +"hGb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Lambda Lab Storage" }, /turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"biH" = ( -/obj/structure/machinery/landinglight/ds2{ +/area/bigredv2/caves/lambda/xenobiology) +"hGi" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"hGs" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"hGH" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) +"hHb" = ( +/obj/structure/sign/safety/ladder, +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/oob) +"hHf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"biI" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: Engineering Landing Zone" +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Xenobiology Lab" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/xenobiology) +"hHs" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/lz2_south_cas) +"hHG" = ( +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"biK" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/megaphone, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biQ" = ( -/obj/structure/machinery/light{ +/area/bigredv2/caves/eta/storage) +"hHS" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"hIp" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"biR" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"biS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"biT" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"hIv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"biU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"biV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"hIx" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_virology) +"hIK" = ( +/turf/open/floor/darkbluecorners2, +/area/bigredv2/outside/admin_building) +"hJe" = ( +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"hJx" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/obj/item/paper_bundle, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"hJA" = ( +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"hJJ" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/bigredv2/outside/c) -"biY" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"bja" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"bjb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"bjc" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/se) -"bjd" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/area/bigredv2/outside/n) +"hJL" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"hJP" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"hKj" = ( +/obj/item/grown/sunflower, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"hKN" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port_lz2) -"bje" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bji" = ( -/obj/item/reagent_container/glass/bottle/tramadol, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bjk" = ( +"hLp" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"hLL" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"bjl" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/se) -"bjm" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/se) -"bjn" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"hLS" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"hLW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Break Room" }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"bjo" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bjp" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"hMl" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"bjw" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"bjx" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"bjy" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"bjz" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/s) -"bjA" = ( -/turf/open/mars, -/area/bigredv2/outside/s) -"bjB" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/s) -"bjC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/s) -"bjD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"hMA" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"bjE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"hMQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"bjF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"bjG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"bjH" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/s) -"bjJ" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"hMR" = ( +/obj/item/tool/weedkiller, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"hMU" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"hMV" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"hNj" = ( +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/eta/xenobiology) +"hNl" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"bjK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"bjL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"bjM" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/virology) +"hNy" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"hNB" = ( +/turf/open/floor/darkgreen2/west, +/area/bigredv2/caves/eta/xenobiology) +"hNX" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"hOq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bjN" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"bjO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"bjR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Quartermaster" + dir = 6 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bjY" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/s) -"bjZ" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"bka" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/s) -"bkb" = ( /turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"bkc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"bkd" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/s) -"bkf" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"bkg" = ( -/obj/structure/machinery/light, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"bkh" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/se) -"bki" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/se) -"bkl" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bkn" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bko" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bkp" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/s) -"bkq" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/s) -"bkr" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/s) -"bks" = ( -/obj/effect/decal/cleanable/dirt, +/area/bigredv2/outside/virology) +"hOC" = ( /turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"bku" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" +/area/bigredv2/caves_lambda) +"hOT" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"hPf" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"bkw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" +/obj/structure/machinery/door_control{ + id = "Bar Complex"; + name = "Storm Shutters"; + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"bkx" = ( -/obj/effect/spawner/gibspawner/human, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"bky" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/se) -"bkz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Cargo Bay Quartermaster" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hPk" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Medical Clinic Morgue" }, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bkA" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bkB" = ( -/obj/structure/machinery/computer/arcade, -/obj/structure/machinery/light{ - dir = 4 +/area/bigredv2/outside/medical) +"hQq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bkC" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/s) -"bkD" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"hQN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"hQS" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"hRb" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_cave_cas) +"hRc" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/c) +"hRB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"bkE" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bkG" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bkH" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"bkI" = ( -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office Armory" }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"bkJ" = ( -/obj/structure/cryofeed, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"bkK" = ( -/obj/structure/closet/toolcloset, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"hRI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"bkL" = ( +/obj/item/device/flashlight, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"hSo" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"hSH" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/knife, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"hSI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"hTa" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 }, -/obj/item/tank/air, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"bkM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bkN" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"bkO" = ( +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"hTs" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/darkyellow2/north, +/obj/structure/surface/table, +/obj/item/paper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"bkP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" +"hTP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"hUf" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"hUg" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"hUI" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "Blue"; + phone_id = "Director" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/research) +"hUN" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"hUU" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/filtration_plant) -"bkS" = ( -/obj/structure/closet/toolcloset, +"hUX" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_sw) +"hVD" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"hVJ" = ( /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"hWf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"hWt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bkT" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bkU" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bkV" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/se) -"bkY" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"hWO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = -7; + pixel_y = 4 }, -/obj/structure/mirror{ - pixel_x = 30 +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"hWZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/landmark/objective_landmark/science, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"hXF" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"hXH" = ( +/obj/structure/bed, /turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"bld" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blg" = ( -/obj/structure/machinery/computer/ordercomp, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blh" = ( -/obj/structure/machinery/camera/autoname{ +/area/bigredv2/outside/marshal_office) +"hYo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"hYB" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bli" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"hYC" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"hYD" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"hZl" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"hZv" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"hZM" = ( +/obj/structure/machinery/photocopier, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"ian" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/door_control{ + id = "Cargonia"; + name = "Storm Shutters"; + pixel_x = 32 }, /turf/open/floor, /area/bigredv2/outside/cargo) -"blj" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"ias" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Anomaly Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"iaC" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"iaH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; health = 25000 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bll" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bln" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, +/turf/open/floor/loadingarea/west, /area/bigredv2/outside/cargo) -"blo" = ( -/obj/structure/reagent_dispensers/fueltank, +"iaN" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"iaR" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blp" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blq" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"blr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"bls" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"iaT" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"blt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"blu" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/s) -"blv" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/s) -"blx" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/tool/extinguisher, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"ibd" = ( +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) -"bly" = ( +"ibi" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"ibj" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"ibC" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ibP" = ( +/turf/open/floor/plating, +/area/bigredv2/caves_research) +"ibW" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"ici" = ( +/obj/item/reagent_container/spray/pepper, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"icL" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"ids" = ( +/obj/structure/surface/table, +/obj/item/tank/anesthetic, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"idD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"idJ" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"blA" = ( -/obj/structure/dispenser/oxygen, -/obj/structure/machinery/camera/autoname{ +"ieb" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkyellow2/east, +/obj/item/storage/firstaid/adv, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"ieu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"blB" = ( -/obj/effect/landmark/survivor_spawner, +"iey" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"ifg" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"ifh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"ifp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 8 + }, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"ifs" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"blC" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"blD" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"ifx" = ( /obj/structure/surface/table, -/obj/item/circuitboard/firealarm, -/obj/effect/decal/cleanable/dirt, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"blE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"blF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Air Filtration" +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"ifY" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"igt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"igO" = ( +/obj/item/paper/bigred/crazy, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iho" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"ihB" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/caves/eta/research) +"ihU" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/w) +"iig" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/framed/solaris, /turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"iii" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz1_north_cas) +"iiG" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_plant) -"blG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +"iiM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"iiW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"blT" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"ijk" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"ijm" = ( +/obj/structure/cable{ + icon_state = "11-2" }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ijV" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/ammo_magazine/pistol/hp{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/item/ammo_magazine/pistol{ + pixel_y = -4 + }, +/obj/structure/cable{ + icon_state = "9-10" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ika" = ( +/obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ikh" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"ikv" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/obj/item/reagent_container/food/drinks/cans/cola, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"blV" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ikE" = ( +/obj/item/stack/sheet/glass, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"blW" = ( +/area/bigredv2/outside/engineering) +"ikZ" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"ilf" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"ilt" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/effect/decal/warning_stripes{ + icon_state = "U-N" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"blX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/northwest, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"ilA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/red/southeast, +/area/bigredv2/outside/lambda_cave_cas) +"ilI" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) -"blY" = ( -/obj/structure/bed/chair{ +"ilN" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"ilZ" = ( +/obj/structure/platform/shiva{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"blZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/item/disk, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"imd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bma" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"imL" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bmb" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/delivery, +/area/bigredv2/outside/lz2_south_cas) +"imM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"bme" = ( -/turf/open/mars, -/area/bigredv2/outside/sw) -"bmf" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bmg" = ( +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"imS" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"imT" = ( +/obj/structure/bed, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"imW" = ( +/obj/structure/tunnel{ + id = "hole3" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ind" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"inA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"inH" = ( +/obj/structure/machinery/light, +/obj/structure/closet/cabinet, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"bmh" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bmi" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/curtain/red, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"bmj" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"ioi" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/n) +"ioj" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 5; + pixel_y = 11 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"bml" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ioq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"bmm" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bmn" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"ioH" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ioP" = ( +/obj/structure/platform, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"ipf" = ( +/obj/item/device/flashlight/lantern{ + pixel_x = -6 }, /turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmp" = ( -/obj/structure/machinery/mill, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bmq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bms" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"bmt" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"bmu" = ( -/obj/structure/machinery/computer/station_alert, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bmw" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/structure/machinery/light{ +/area/bigredv2/caves/mining) +"ipi" = ( +/obj/structure/machinery/light/built{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bmx" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"bmy" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"bmz" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"ipJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bmA" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"bmB" = ( -/obj/structure/barricade/wooden, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"ipK" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/head/hardhat, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"bmC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/bigredv2/caves/mining) +"iqR" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"iqS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"bmD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"ird" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bmF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bmG" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, +/obj/item/stack/sheet/metal, /turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bmH" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, +/area/bigredv2/outside/engineering) +"iru" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"irx" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"irG" = ( +/turf/open/floor/rampbottom/north, +/area/bigredv2/outside/chapel) +"irN" = ( +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"bmJ" = ( +"isd" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/ne) +"isi" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"ism" = ( +/obj/structure/machinery/chem_master, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bmM" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bmN" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"bmO" = ( -/obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"bmP" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bmQ" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"isn" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"iss" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 5; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"bmR" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"isw" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) -"bmS" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, +"itn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bmT" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/area/bigredv2/outside/general_offices) +"itr" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"itu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"iuy" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmV" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"iuA" = ( +/obj/structure/machinery/filtration/console{ + pixel_y = 13 }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bmX" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bmZ" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"bna" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"iuM" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"iuR" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"iuV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"bnb" = ( -/obj/structure/machinery/door_control{ - id = "Filtration Plant"; - name = "Storm Shutters"; - pixel_x = -32 +"ivF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"bnd" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/caves/lambda/virology) +"ivJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/machinery/computer3/server, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"bne" = ( -/obj/structure/cryofeed, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = -32 }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"bnf" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"bng" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/light/built, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"ivN" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"ivT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bnh" = ( +/area/bigredv2/outside/chapel) +"ivY" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/lambda/virology) +"iwK" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"iwS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ixB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Eta Lab Maintenance Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"ixX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bnj" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/s) +"iyg" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"iyt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"iyX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" + name = "\improper Dormitories EVA" }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"bnl" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"izp" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"izL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bnm" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"iAi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"iAj" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bnn" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bno" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/headset, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bnp" = ( -/obj/structure/machinery/computer/area_atmos/area, -/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"bnq" = ( +"iAq" = ( +/obj/structure/largecrate/lisa, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"iAs" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"iAw" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"iAI" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bnr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/darkyellow2/west, +/turf/open/gm/river, /area/bigredv2/outside/engineering) -"bns" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering SMES" +"iAV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bnt" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"iBl" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"iBm" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, +/obj/item/stack/sheet/glass, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"bnu" = ( -/obj/structure/machinery/light{ - dir = 4 +"iBs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"iBR" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"iBX" = ( +/obj/structure/closet/jcloset, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/darkyellow2/east, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"iCm" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"iCO" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"bnw" = ( +"iDh" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/xenobiology) +"iDj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"iDo" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz1_north_cas) +"iDp" = ( +/obj/item/tool/surgery/scalpel/laser/advanced, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"iDq" = ( +/obj/structure/machinery/camera/autoname, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 10 }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"iDs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bnx" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iEi" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"iEm" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"iFd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/meson, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bny" = ( -/obj/structure/window/reinforced/toughened{ +/obj/structure/machinery/power/apc{ dir = 1; - icon_state = "fwindow"; - pixel_y = 12 + pixel_y = 28; + start_charge = 0 }, -/obj/structure/window/reinforced/toughened{ - dir = 4 +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"iFt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/obj/structure/surface/table/reinforced, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_id = "Virology" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"iFC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"iFL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Abandoned Mining Storage" }, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"bnz" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iFP" = ( /obj/structure/surface/table, -/obj/item/tool/lighter/zippo, -/obj/item/tool/lighter/zippo, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bnA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" +/obj/item/device/radio, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"iGs" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"iGv" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"iGJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"bnB" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/bigredv2/outside/telecomm/warehouse) +"iGK" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_sw) +"iGL" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"iHb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"iHc" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bnE" = ( +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"iHd" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname, /obj/effect/decal/cleanable/blood, +/obj/item/alien_embryo, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"iHm" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iHM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bnF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bnH" = ( -/obj/structure/machinery/computer/general_air_control, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"bnI" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"bnK" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"iHN" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"iHO" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Kitchen Storage" }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"bnL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"bnM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"iHQ" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"bnN" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/light/built{ + dir = 1 }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"iHU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"bnO" = ( -/obj/structure/machinery/computer/atmos_alert{ +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"iIa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"iId" = ( /obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"bnQ" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light{ +/obj/effect/spawner/random/technology_scanner, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bnR" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"iIn" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"bnS" = ( -/obj/item/trash/eat, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bnT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engineering Secure Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bnV" = ( -/obj/structure/sign/safety/electronics{ - pixel_y = 32 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bnW" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"bnX" = ( -/obj/item/folder/yellow, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bnY" = ( -/obj/structure/machinery/photocopier, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bnZ" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) +"iIt" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"boa" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"iIC" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"iJc" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bob" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"boc" = ( -/obj/structure/machinery/light{ +/area/bigredv2/caves/lambda/research) +"iJd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"iJv" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"iJC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"iKp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"boe" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"bof" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"boj" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"bok" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"boq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"iKu" = ( +/obj/structure/prop/almayer/missile_tube{ + desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; + name = "\improper Massive mining drill"; + pixel_y = 13 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"bor" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"iKD" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iKK" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"bos" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bou" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"iKX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"iLb" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"iLg" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/nw) +"iLL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"bov" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/fireaxe, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"box" = ( -/obj/item/frame/table, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"boy" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"boA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"boG" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"boH" = ( -/obj/effect/decal/cleanable/liquid_fuel, +/area/bigredv2/caves/lambda/xenobiology) +"iLO" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iMc" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"boI" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"boK" = ( -/obj/item/trash/pistachios, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"boL" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"boM" = ( -/obj/structure/closet/firecloset/full, +/area/bigredv2/outside/general_offices) +"iMi" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/se) +"iMn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_se) +"iMo" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"iMq" = ( +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/caves/lambda/research) +"iMP" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"boN" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"boR" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"boS" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"boU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Chief Engineer's Office" +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"iNo" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"iNp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"boV" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"iNy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" + dir = 1; + name = "\improper Marshal Office" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"iNR" = ( +/turf/open/gm/river, /area/bigredv2/outside/engineering) -"boW" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"boX" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"boY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/transmitter/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "yellow"; - phone_id = "Filtration"; - pixel_y = 24 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"boZ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bpa" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, +"iOu" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"iOL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bpc" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"bpe" = ( -/obj/effect/landmark/survivor_spawner, +/obj/item/tool/lighter/random, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"iOV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"bpf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bpi" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"bpj" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bpk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Tool Storage" + icon_state = "NW-in" }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bpl" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/caves/lambda/virology) +"iPr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"iPw" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"iPY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Cargo Bay" }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"bpm" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"iQa" = ( /obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"bpn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"bpo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"iQd" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/largecrate, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"iQe" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"iQw" = ( +/obj/item/ore, +/turf/open/gm/river, /area/bigredv2/outside/filtration_plant) -"bpp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bpq" = ( +"iQL" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"iRk" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"iRl" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"iRo" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/dark, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"bpu" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"bpx" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/sw) -"bpy" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/sw) -"bpz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +"iSv" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"iSz" = ( +/obj/structure/barricade/handrail{ dir = 1; - name = "\improper Engineering Lockers" + layer = 3.01; + pixel_y = 9 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) -"bpA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Lockers" +"iTR" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bpC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"bpD" = ( -/obj/structure/surface/rack, -/obj/item/device/camera_film, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"bpE" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bpF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"iUa" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"iUw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bpH" = ( +/area/bigredv2/caves/eta/research) +"iUy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bpI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"iVd" = ( +/obj/structure/platform/kutjevo/rock{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/lightreplacer, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bpK" = ( -/obj/structure/machinery/light{ +/obj/structure/platform/kutjevo/rock{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bpL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"bpM" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bpN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/mars, +/area/space) +"iVf" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"iVi" = ( +/obj/structure/fence, +/turf/open/mars, +/area/bigredv2/outside/se) +"iVk" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"iVD" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"bpO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"iVF" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"iVO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 9; + pixel_y = -3 }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"iWb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"iWI" = ( +/obj/structure/closet/secure_closet/security/science, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bpP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, +/area/bigredv2/caves/eta/storage) +"iWQ" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"iXc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"iXx" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/n) +"iXD" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/outside/lambda_cave_cas) +"iXV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bpQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/area/bigredv2/caves/lambda/breakroom) +"iYB" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"iZj" = ( +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"iZt" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/s) +"iZA" = ( +/obj/structure/surface/rack, +/turf/open/floor, +/area/bigredv2/caves) +"iZQ" = ( /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"bpR" = ( +"iZT" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/n) +"jaw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bpS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/good_item, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bpT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"bpU" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bpV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/bigredv2/caves/eta/research) +"jaC" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bpX" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/se) -"bpY" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/se) -"bpZ" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_cave_cas) -"bqa" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/se) -"bqb" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_cave_cas) -"bqc" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 +/obj/structure/cryofeed/right{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "\improper coolant feed" }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"bqd" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"jaM" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"bqf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Break Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bqk" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"jaQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"bql" = ( -/obj/structure/machinery/door_control{ - id = "Engineering"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"bqo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bqv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bqw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bqA" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"bqE" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/area/bigredv2/caves/eta/storage) +"jbs" = ( +/obj/structure/platform/kutjevo/rock{ dir = 8 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"bqI" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"bqJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +/obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"bqK" = ( -/obj/item/folder/yellow, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/mars_cave/mars_cave_2, +/area/space) +"jbv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4 }, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"bqL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"jbx" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bqM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"bqN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, +"jbB" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"jbN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"jcE" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bqP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/area/bigredv2/outside/marshal_office) +"jcG" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"jdD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"jdN" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Engine Reactor Control" + name = "\improper Cargo Bay Quartermaster" }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bqT" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"jdT" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"jdU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/head/det_hat, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"jeD" = ( +/obj/structure/machinery/teleport/hub, +/turf/open/floor/podhatch/southeast, +/area/bigredv2/caves/lambda/research) +"jeP" = ( +/obj/structure/girder, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jfm" = ( +/obj/effect/landmark/crap_item, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bqV" = ( -/obj/structure/machinery/light{ +/area/bigredv2/caves/eta/storage) +"jfS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table, -/obj/item/paper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"bqX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"brb" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"bre" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"brf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"jfX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"brg" = ( -/obj/structure/machinery/light{ +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"jgg" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bri" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"brj" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"brn" = ( -/obj/structure/machinery/power/breakerbox/activated, +/area/bigredv2/caves/lambda/research) +"jgl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"jgA" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"bro" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bru" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"brv" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"brw" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"brx" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"jgQ" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_sw) +"jhe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_se) +"jho" = ( /obj/structure/surface/table, -/obj/item/stack/cable_coil, +/obj/item/tool/lighter/random, +/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"bry" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"brz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jhv" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/filtration_cave_cas) +"jiS" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"jiV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"brA" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/item/tool/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"jiX" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_north) +"jjy" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/oob) +"jjP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"brB" = ( +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"jkk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"jkA" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"brC" = ( -/obj/effect/landmark/good_item, +/obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"brD" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_cave_cas) -"brE" = ( -/turf/open/floor/greengrid, -/area/bigredv2/outside/filtration_cave_cas) -"brI" = ( -/obj/structure/sign/safety/galley{ - pixel_x = -32 +/area/bigredv2/outside/general_offices) +"jkL" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"jkO" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"jkR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" }, -/obj/item/stack/sheet/metal{ - amount = 30 +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"jkS" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/ore{ + pixel_y = 5 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"brJ" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jlg" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"jli" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/glass, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"brK" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"jlu" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"jlZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"jmn" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/lz1_north_cas) +"jmo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"jnj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"jnn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ore/diamond, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jnv" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"brL" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"jnD" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"brM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"brO" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"brP" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"jnN" = ( /obj/structure/bed/chair/office/light{ - dir = 8 + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"jnU" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"brR" = ( /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"brU" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"brV" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"jot" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_south_cas) +"jpd" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"brW" = ( -/obj/structure/surface/table, -/obj/item/weapon/baton, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"brY" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"brZ" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/outside/filtration_plant) -"bsa" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"bsb" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"bsc" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +/area/bigredv2/caves/lambda/xenobiology) +"jph" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"bsd" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"bse" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 +/turf/open/floor, +/area/bigredv2/outside/dorms) +"jpj" = ( +/obj/structure/surface/table, +/obj/item/storage/briefcase, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"jpo" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jpW" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jqj" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"bsm" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/effect/landmark/crap_item, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bss" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"bsB" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"bsC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"bsD" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"bsE" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"bsF" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/solar_tracker, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"bsG" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"bsH" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor, -/area/bigredv2/outside/filtration_cave_cas) -"bsI" = ( +"jqC" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_west_cas) +"jrg" = ( /turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/sw) -"bsJ" = ( -/obj/structure/machinery/vending/coffee{ - icon_state = "coffee-broken"; - stat = 1 +/area/bigredv2/outside/s) +"jrh" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "filtration_restored" }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"bsK" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"bsL" = ( -/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/s) +"jrF" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"jsi" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"jsk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"jtd" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"jtj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"jto" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"jtO" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/storage) +"jud" = ( /obj/structure/surface/table, +/obj/effect/spawner/random/powercell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"bsM" = ( -/obj/structure/machinery/door_control{ - id = "Engineering"; - name = "Storm Shutters"; - pixel_y = -32 +"juC" = ( +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"jve" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/filtration_cave_cas) +"jvf" = ( +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"jwm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"jwy" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"jwL" = ( +/obj/structure/machinery/r_n_d/organic_analyzer, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"jwX" = ( +/obj/item/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/darkyellow2/southeast, +/obj/structure/surface/rack, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"jxg" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"jxp" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"jxy" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"jxA" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) -"bsN" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 1 +"jxT" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz2_south_cas) +"jyb" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/e) +"jyq" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/smes_coil, -/obj/item/stack/sheet/glass{ - amount = 30 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"jyG" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/s) +"jyV" = ( +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"jyX" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"jzj" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jzm" = ( +/obj/item/tool/hatchet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"jzw" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"jzy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold/small_stack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jzO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"jzS" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz1_north_cas) +"jAb" = ( +/obj/structure/surface/table, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"bsP" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bsX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bsY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bsZ" = ( -/obj/structure/janitorialcart, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"bta" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +"jAr" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"btb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"btc" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"jAI" = ( /obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"btd" = ( +/obj/item/tool/surgery/FixOVein, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"jAW" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/eta) +"jBc" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/darkyellow2/southeast, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"jBN" = ( +/obj/structure/closet/crate/miningcar/yellow, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"jBW" = ( +/obj/item/trash/eat, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"bte" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32 +"jCQ" = ( +/obj/item/ore{ + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"bti" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"jDa" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"jDb" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"jDy" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"btj" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"jDY" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"btk" = ( /obj/structure/bed/chair, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"btn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/s) -"bto" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/se) -"btr" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"btt" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"btu" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"btw" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"btA" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"btB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"btD" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/s) -"btH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jEl" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"btJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"btK" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jEF" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"jER" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"jEZ" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"jFh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"jFj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"jFl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"jFF" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"btN" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"jFI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"bua" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Storage" }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bub" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/s) -"buc" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/s) -"bud" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/s) -"buj" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/mining) -"bun" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/s) -"buo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"buu" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/s) -"buy" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"buz" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves_sw) -"buB" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"buJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"buQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"buR" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"buY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"jGg" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"jGk" = ( +/obj/item/tool/pickaxe{ + pixel_y = -3 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"bvk" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/s) -"bvv" = ( +"jHf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"jHS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"bvw" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"bvz" = ( +/area/bigred/ground/garage_workshop) +"jJc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"jJB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"jJG" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -9 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"jJU" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm/lz2_cave) +"jKg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Library" }, /turf/open/floor/delivery, -/area/bigredv2/outside/eta) -"bvD" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/area/bigredv2/outside/library) +"jKk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"bvF" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"bvH" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/eta) -"bvK" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/obj/structure/machinery/alarm{ dir = 1; - name = "\improper Power Substation" + pixel_y = -30 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lz2_south_cas) -"bvO" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/caves/eta/xenobiology) -"bvP" = ( -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bvQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/eta) -"bvR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_23, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"jKC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"jKJ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"jLw" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/ne) +"jMh" = ( +/obj/item/storage/toolbox/mechanical, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"jMl" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/filtration_plant) +"jMo" = ( +/obj/structure/tunnel{ + id = "hole1" + }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) -"bvS" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"bvV" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/turf/open/floor/plating/platingdmg3/west, +"jMr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"bvW" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"bvX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"bvY" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/eta) -"bvZ" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"bwa" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"bwb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"bwc" = ( +"jMF" = ( +/turf/open/floor/whiteblue/southwest, +/area/bigredv2/outside/medical) +"jMT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper General Store Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"jNq" = ( +/obj/effect/spawner/gibspawner/human, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"bwj" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/caves/eta/xenobiology) -"bwr" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Virology Lab" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"bww" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bwx" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/eta/xenobiology) -"bwz" = ( -/obj/structure/surface/table, -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"bwA" = ( -/obj/structure/surface/table, -/turf/open/floor, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"jNR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"bwG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Eta Lab Storage Bay" +"jOA" = ( +/obj/structure/machinery/computer/area_atmos{ + dir = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"bwH" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"bwI" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"jOH" = ( +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"jOV" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_sw) +"jPm" = ( +/obj/structure/bed/chair/office/dark{ dir = 1; - name = "\improper Eta Lab Decontamination" + pixel_y = 20 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"bwK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bwL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"jPW" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/outside/lz1_telecomm_cas) +"jPX" = ( +/obj/item/ore/diamond{ + pixel_x = 8; + pixel_y = -11 }, -/turf/open/floor/loadingarea/north, -/area/bigredv2/caves/eta/storage) -"bwM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/storage/firstaid/fire, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"jQe" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5 }, -/turf/open/floor/loadingarea/north, -/area/bigredv2/caves/eta/storage) -"bwN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"jQj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bwO" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"jQw" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_virology) +"jQz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"jQU" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/filtration_cave_cas) +"jQW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/radiation, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"jRd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bwP" = ( -/obj/structure/filingcabinet, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bwQ" = ( -/obj/structure/surface/table, -/obj/item/tool/screwdriver, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "yellow"; - phone_id = "Robotics" +/area/bigredv2/caves/eta/research) +"jRs" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/s) +"jRB" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bwR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bwS" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bwT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bwU" = ( -/obj/structure/machinery/shower{ - dir = 4 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"jRN" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/xenobiology) +"jRT" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/c) +"jSn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"bwV" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"bwW" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"bwX" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/darkyellow2/northwest, +/turf/open/floor/darkyellow2, /area/bigredv2/caves/eta/research) -"bwY" = ( +"jSp" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"jSw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/obj/structure/xenoautopsy/tank/hugger, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"jSF" = ( +/obj/item/frame/table, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"jTb" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/virology) +"jTe" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"jTj" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"bwZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"bxa" = ( -/obj/structure/surface/rack, +/obj/item/bodybag/cryobag, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"jTp" = ( +/obj/structure/closet/secure_closet/medical1, /obj/item/storage/fancy/vials/random, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"bxb" = ( -/obj/structure/surface/rack, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/caves/eta/research) -"bxc" = ( -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxe" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxh" = ( -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/caves/eta/storage) -"bxi" = ( -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/caves/eta/storage) -"bxj" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"jTA" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + req_one_access_txt = "19;200" + }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bxk" = ( +/area/bigredv2/outside/telecomm) +"jTO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/plate, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"jUc" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"jUg" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_east) +"jUv" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"jUF" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"jUY" = ( +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"jVf" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/n) +"jVp" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 }, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -4; - pixel_y = 7 +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bxl" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"bxn" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"jVv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bxo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bxp" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/darkyellow2/east, -/area/bigredv2/caves/eta/research) -"bxq" = ( +/area/bigredv2/outside/engineering) +"jVz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"jVB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"jVS" = ( +/obj/structure/largecrate/guns, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"jVZ" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/eta/xenobiology) +"jWq" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxr" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"jWO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Robotics" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"jWU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"jXh" = ( +/obj/structure/machinery/door_control{ + id = "workshop_br_g"; + name = "Workshop Garage Lockdown"; + pixel_x = 28 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"bxs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"jXm" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bxt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"bxu" = ( -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/storage) -"bxv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"bxw" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bxx" = ( -/obj/structure/closet/l3closet/scientist, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"jXo" = ( +/obj/structure/surface/table, +/obj/item/storage/briefcase, /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"bxy" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"bxz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bxA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bxB" = ( -/obj/structure/largecrate/guns, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"bxC" = ( -/obj/structure/largecrate/guns, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"bxD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxE" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"jXz" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bxF" = ( -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"bxG" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"bxH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bxI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"jXD" = ( +/obj/structure/machinery/vending/coffee{ + icon_state = "coffee-broken"; + stat = 1 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"bxJ" = ( -/obj/structure/machinery/r_n_d/organic_analyzer, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/caves/eta/research) -"bxK" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"jXG" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"jXM" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxL" = ( -/obj/structure/powerloader_wreckage/ft, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bxM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bxO" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"bxP" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"jXU" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bxQ" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/caves/eta/research) -"bxR" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"bxS" = ( -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"bxT" = ( -/obj/structure/bed, -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"bxU" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bxV" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"bxW" = ( -/obj/effect/spawner/random/toolbox, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"jYR" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"jYW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bxX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/storage) -"bxY" = ( -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bya" = ( -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"byb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, +/area/bigredv2/outside/engineering) +"jZE" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"jZJ" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"jZQ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"byc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"bye" = ( -/turf/open/mars_cave/mars_cave_12, -/area/bigredv2/caves_research) -"byf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"byg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"byh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, /area/bigredv2/caves/eta/storage) -"byi" = ( -/obj/structure/machinery/light{ +"jZX" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"kar" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"kas" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"kaJ" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"kbF" = ( +/obj/structure/platform_decoration/shiva{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"byj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/storage) -"byk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"byl" = ( -/obj/structure/machinery/photocopier, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/platform_decoration/shiva, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"kbP" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz1_north_cas) +"kbW" = ( +/obj/structure/machinery/computer/cameras, /turf/open/floor/dark, /area/bigredv2/caves/eta/storage) -"byn" = ( -/obj/structure/machinery/r_n_d/bioprinter, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/caves/eta/research) -"byo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"kbZ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"byp" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"kce" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"byq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"kck" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"kcl" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"byr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"bys" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/caves/eta/research) -"byt" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/pmc, /turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"byu" = ( +/area/bigredv2/outside/bar) +"kcx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"kcC" = ( +/obj/item/reagent_container/pill/happy, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 9 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kcG" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"kcO" = ( +/obj/structure/sign/safety/electronics{ + pixel_y = 32 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"kdj" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"kdo" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"kdT" = ( +/obj/structure/platform_decoration/shiva{ + dir = 1 }, +/obj/structure/platform_decoration/shiva{ + dir = 4 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"keg" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lz2_south_cas) +"key" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"keM" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"keO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/sosjerky, /turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"byv" = ( +/area/bigredv2/outside/bar) +"keT" = ( /obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Kitchen"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"kfi" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 5 }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"kfk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"kfw" = ( +/obj/structure/surface/table, /turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"byw" = ( -/obj/structure/largecrate/mule, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"byx" = ( -/obj/structure/largecrate/mule, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"byy" = ( -/obj/structure/largecrate/lisa, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"byz" = ( -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/storage) -"byA" = ( -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/storage) -"byB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/storage) -"byC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/storage) -"byE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ +/area/bigredv2/caves/eta/living) +"kfC" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"kgb" = ( +/obj/structure/machinery/alarm{ dir = 1; - name = "\improper Eta Lab Technical Storage" + pixel_y = -30 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"byF" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"kgk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"kgp" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/research) +"kgB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Eta Lab Dormitories" + name = "\improper Cargo Bay Offices" }, /turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"byG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_se) -"byH" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"byI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"byJ" = ( -/obj/structure/closet/l3closet/scientist, +/area/bigredv2/outside/cargo) +"kgD" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 6 }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"byK" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/bigredv2/caves/eta/research) +"kgE" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"byL" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"kgG" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"byM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"byN" = ( +/turf/open/floor/carpet7_3/west, +/area/bigredv2/outside/admin_building) +"kgO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"kgZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/raisins, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"khb" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/obj/item/storage/box/snappops, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"khj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/oldresearch/Resin, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"khm" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"byO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"khw" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"byP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/cable{ + icon_state = "4-10" }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"byQ" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"khU" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"kig" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"byR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kii" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"kiP" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/w) +"kiS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"kjb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"kjv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"kjz" = ( +/obj/structure/machinery/chem_master, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"kjH" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"byS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"kka" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 }, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"byT" = ( -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"byU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"byV" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) +"kkt" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/floor/darkgreencorners2/north, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"kkx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) +"kkD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"byW" = ( -/obj/structure/machinery/light{ - dir = 1 +"kkE" = ( +/obj/structure/machinery/computer/general_air_control{ + dir = 8; + pixel_y = 6 }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/caves/eta/research) -"byX" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"byY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"kkF" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/copper{ + pixel_y = 1 }, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"byZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Robotics" +/obj/item/stack/sheet/mineral/osmium{ + pixel_y = 6 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bza" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/stack/sheet/mineral/platinum{ + pixel_y = 12 }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bzb" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kkP" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/podhatch/north, +/area/bigredv2/caves/lambda/research) +"kkS" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/xenobiology) +"klz" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"klX" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/lambda/virology) +"kmd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bzc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kme" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"kmg" = ( +/obj/structure/xenoautopsy/tank/alien, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bzd" = ( +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"kmh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bze" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bzf" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"kmn" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"knd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bzg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"knC" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"knJ" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bzh" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bzi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"knX" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bzj" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"kow" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"bzk" = ( +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"koD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bzl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Dormitories EVA Maintenance" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bzm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"koI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bzn" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves/eta/research) -"bzo" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_research) -"bzp" = ( -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/eta/storage) -"bzq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/eta/storage) -"bzr" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"koP" = ( /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"kpi" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/nw) +"kpw" = ( +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"kpO" = ( /turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/eta/storage) -"bzs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Eta Lab Armory" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"bzt" = ( +/area/bigredv2/caves/lambda/virology) +"kqb" = ( /obj/structure/surface/table, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"bzu" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/eta/research) -"bzv" = ( -/obj/structure/machinery/light{ +/obj/item/clothing/head/hardhat/orange{ + pixel_y = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"kqG" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"krl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves/eta/research) -"bzw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"bzx" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"bzy" = ( -/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bzz" = ( +/area/bigredv2/outside/engineering) +"krT" = ( +/turf/open/floor/whiteyellow/west, +/area/bigredv2/caves/lambda/xenobiology) +"krW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/effect/decal/cleanable/blood/writing, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"ksV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"ktv" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"ktL" = ( +/obj/item/ammo_magazine/shotgun/beanbag/riot, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"kuo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bzA" = ( +/area/bigredv2/caves/eta/research) +"kuu" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/trash/cigbutt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"kuG" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"bzB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"bzC" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"kuN" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"bzD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kuR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bzE" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kuV" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -15 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/highpower, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"kvj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"bzF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/item/phone, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"bzG" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"bzH" = ( -/obj/structure/closet/secure_closet/RD, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"bzI" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/caves/eta/research) -"bzJ" = ( -/obj/item/weapon/gun/smg/m39, -/obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"bzK" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/device/lightreplacer, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"kvs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"kwG" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"kxr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bzL" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/landmark/nightmare{ + insert_tag = "dorms_party" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor, +/area/bigredv2/outside/dorms) +"kxs" = ( +/obj/structure/machinery/light, +/obj/structure/window{ + dir = 4 }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"bzM" = ( -/obj/structure/closet/secure_closet, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"bzN" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"bzO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/eta/research) -"bzP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/eta/research) -"bzQ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Server" +/obj/structure/surface/table/woodentable, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 11 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"bzR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Eta Lab Security Office" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"kxv" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 18 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"bzT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bzU" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"kxF" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"kxW" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"kyc" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bzW" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/caves/eta/research) -"bzX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bzY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"bzZ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"bAa" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAb" = ( -/obj/structure/bed/chair, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"kyB" = ( /turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves/eta/research) -"bAc" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/eta/research) -"bAd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/eta/research) -"bAe" = ( +/area/bigredv2/caves_lambda) +"kyJ" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/caves/eta/xenobiology) +"kyZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/n_cave) +"kzr" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"kzE" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"kzX" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_5, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) -"bAf" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/eta/storage) -"bAg" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/eta/storage) -"bAh" = ( -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"bAi" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bAj" = ( +"kAj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bAn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"kAt" = ( +/obj/structure/fence, +/obj/structure/disposalpipe/segment, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"kAD" = ( +/obj/structure/showcase, +/turf/open/floor/carpet6_2/west, +/area/bigredv2/caves/eta/living) +"kAN" = ( +/obj/structure/window/reinforced/toughened{ + icon_state = "fwindow" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bAo" = ( +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"kAT" = ( /obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"bAp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/research) -"bAq" = ( -/obj/structure/machinery/light{ +"kAU" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"kAX" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kBd" = ( +/obj/structure/surface/table, +/obj/structure/xenoautopsy, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"kBf" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"kBn" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves) +"kBv" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"kBE" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"kBG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/computer/aifixer, -/obj/structure/surface/table, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/research) -"bAr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"bAs" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"bAu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"kBJ" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"kBK" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"kCG" = ( /obj/structure/surface/table, -/obj/item/storage/box/wy_mre, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAv" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 1 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"bAw" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Server" +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 8 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"bAx" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"bAy" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kCP" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 18 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"kDE" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/eta) +"kDM" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"kDN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/machinery/light/built{ dir = 4 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"bAz" = ( -/obj/structure/machinery/light{ +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"kDW" = ( +/obj/structure/machinery/light/small/built{ dir = 8 }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bAA" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"kDZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bAB" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bAC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/bigredv2/outside/telecomm) +"kEj" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"kFg" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bAD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"kFk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Director's Office" +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"kFC" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz1_telecomm_cas) +"kFH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/virology) +"kGn" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"bAE" = ( +/area/bigredv2/outside/space_port) +"kGt" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/research) -"bAF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/research) -"bAH" = ( -/obj/structure/lamarr, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/research) -"bAI" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"bAJ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"bAK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAL" = ( -/obj/structure/surface/table, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAM" = ( -/turf/open/mars_cave/mars_cave_12, -/area/bigredv2/caves/eta/research) -"bAN" = ( -/obj/structure/machinery/telecomms/server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/eta/storage) -"bAO" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"bAP" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"bAQ" = ( -/obj/structure/closet/secure_closet/security/science, /turf/open/floor/dark, /area/bigredv2/caves/eta/storage) -"bAR" = ( +"kGw" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"kHh" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"kHk" = ( /obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/sign/safety/rad_haz{ + pixel_y = -32 }, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/research) -"bAS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/darkblue2, -/area/bigredv2/caves/eta/research) -"bAT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"kHB" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/shard, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"kId" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"kIA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"kIF" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/turf/open/floor/darkblue2, -/area/bigredv2/caves/eta/research) -"bAU" = ( -/obj/structure/machinery/light, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"bAV" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/caves/eta/research) -"bAW" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"bAX" = ( -/obj/structure/bed/chair{ +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"kIJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"kIR" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kJC" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/darkyellow2, +/turf/open/floor/darkblue2/east, /area/bigredv2/caves/eta/research) -"bAY" = ( +"kJO" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_research) +"kKh" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"kKx" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bBa" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"kKN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"kKY" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"bBb" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"kLd" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/caves/eta/xenobiology) -"bBc" = ( -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/xenobiology) -"bBd" = ( -/obj/structure/target, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/xenobiology) -"bBe" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/xenobiology) -"bBf" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/light/small/built{ dir = 1 }, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/caves/eta/xenobiology) -"bBg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bBh" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/northwest, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"kLP" = ( +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) -"bBj" = ( -/obj/structure/machinery/light{ - dir = 1 +"kMX" = ( +/obj/structure/toilet{ + dir = 8 }, -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"bBk" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"bBl" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"bBn" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/machinery/biogenerator, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"bBo" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/caves/eta/research) -"bBp" = ( -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/research) -"bBq" = ( -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/xenobiology) -"bBr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"bBs" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"bBt" = ( -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/xenobiology) -"bBv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bBx" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Eta Lab Maintenance Storage" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"kNs" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"bBA" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"kNz" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bBB" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bBC" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/research) -"bBH" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Cell" +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"kNB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/outside/admin_building) +"kOr" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"bBI" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/tool/soap/deluxe, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"kOy" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"kOX" = ( +/obj/item/tool/pickaxe{ + pixel_x = -18; + pixel_y = 4 }, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/research) -"bBJ" = ( -/turf/open/floor/darkred2/southwest, -/area/bigredv2/caves/eta/xenobiology) -"bBK" = ( -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/xenobiology) -"bBL" = ( -/turf/open/floor/darkred2/southeast, -/area/bigredv2/caves/eta/xenobiology) -"bBN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bBO" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bBP" = ( -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/research) -"bBQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/research) -"bBR" = ( -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/research) -"bBS" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"kPg" = ( +/obj/structure/window/reinforced/toughened{ dir = 1; - name = "\improper Eta Lab Cell" + icon_state = "fwindow"; + pixel_y = 12 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/xenobiology) -"bBT" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/door/window{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bBU" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"kPh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"bBV" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/down, /turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"bBW" = ( -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bBX" = ( +"kPk" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/weapon/gun/smg/fp9000, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"bBY" = ( -/obj/structure/machinery/light{ +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"kPn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Research Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"kPC" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"kPF" = ( +/mob/living/simple_animal/hostile/retaliate/clown{ + desc = "Always returning. Always watching."; + health = 10000; + move_to_delay = 2; + name = "Gonzo the Magnificent"; + rapid = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"bBZ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bCa" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"bCb" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"bCc" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"bCd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"bCe" = ( -/obj/structure/surface/table, -/obj/item/alienjar, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"bCf" = ( -/obj/structure/surface/table, -/obj/structure/xenoautopsy, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"bCg" = ( -/obj/structure/surface/table, -/obj/item/oldresearch/Blood, -/obj/item/oldresearch/Blood, -/obj/item/tool/pen, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"bCi" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/eta/xenobiology) -"bCj" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/caves/eta/xenobiology) -"bCk" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/eta/xenobiology) -"bCl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/space) +"kPS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westright, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"kQc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave, +/area/bigredv2/caves_east) +"kQs" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"kRj" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"kRw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"kRy" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"kRI" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"kRK" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"kRQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"kSj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/obj/item/shard{ + icon_state = "small" + }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"bCm" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"bCn" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"bCo" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"bCp" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"bCq" = ( -/turf/open/floor/darkgreen2/west, -/area/bigredv2/caves/eta/xenobiology) -"bCr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkgreen2/east, -/area/bigredv2/caves/eta/xenobiology) -"bCs" = ( -/obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/area/bigredv2/caves/lambda/xenobiology) +"kSB" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/ne) +"kSS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/w) +"kTl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bCt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"bCu" = ( -/obj/structure/bed/chair/office/dark{ +/area/bigredv2/caves/eta/storage) +"kTp" = ( +/obj/structure/machinery/light/built{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber/on{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bCv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"bCw" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"bCx" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"bCy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"kTs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/filtration_cave_cas) +"kUe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"kUo" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"kUt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"bCz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"kUF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Xenobiology Lab" + name = "\improper Virology Lab Chemistry" }, /turf/open/floor/delivery, -/area/bigredv2/caves/eta/xenobiology) -"bCA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/bigredv2/outside/virology) +"kUG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm/n_cave) +"kUK" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"bCC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/mirror{ + pixel_x = 30 }, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"bCE" = ( -/obj/item/stack/sheet/xenochitin, -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bCF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bCG" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"kUP" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/n) +"kVc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kVW" = ( +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"bCI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"bCJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bCK" = ( +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"kWk" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"kWy" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bCM" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/technology_scanner, -/obj/item/xenos_claw, -/obj/structure/pipes/vents/pump{ +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/armband, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"kWH" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -5 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kWK" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"bCN" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"bCO" = ( -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/eta/xenobiology) -"bCP" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkgreen2, -/area/bigredv2/caves/eta/xenobiology) -"bCQ" = ( -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/eta/xenobiology) -"bCR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Eta Lab" +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"kWR" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"kWT" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lambda_cave_cas) +"kXq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/caves_lambda) +"kXA" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"kYl" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"kYt" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"kYK" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/space_port_lz2) +"kZz" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" }, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"bCS" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"bCT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"bCU" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"bCV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"bCW" = ( +/area/bigredv2/outside/lambda_cave_cas) +"kZB" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"kZG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"bCX" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"bCY" = ( +/obj/item/storage/bible/hefa, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"kZR" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"kZW" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"laJ" = ( /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"bCZ" = ( -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bDa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/research) -"bDb" = ( -/obj/structure/bed/chair{ +/area/bigredv2/caves/eta/storage) +"laN" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/xenobiology) -"bDc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"bDd" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/surface/table, +/obj/item/storage/box/m94, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/xenobiology) -"bDe" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"bDf" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/darkyellowcorners2, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"lba" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"lbs" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_north) +"lbu" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/e) +"lbw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) -"bDg" = ( -/obj/structure/machinery/light{ +"lbU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"lbY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkred2/southeast, -/area/bigredv2/caves/eta/research) -"bDh" = ( -/obj/structure/machinery/light{ +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"lbZ" = ( +/obj/item/frame/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/pickaxe{ + pixel_y = -7 + }, +/obj/item/tool/pickaxe{ + pixel_y = -3 + }, +/obj/item/tool/pickaxe, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/machinery/teleport/station, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bDi" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bDj" = ( -/obj/structure/machinery/computer/WYresearch, -/turf/open/floor/dark, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"lcn" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/darkblue2/north, /area/bigredv2/caves/eta/research) -"bDk" = ( -/obj/structure/machinery/light{ - dir = 8 +"lcu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/ashtray/bronze{ + pixel_x = -7 + }, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"lcB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/w) +"lcO" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ldv" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ldD" = ( +/obj/item/tool/warning_cone{ + pixel_x = 16; + pixel_y = 14 }, /turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"bDl" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/bigredv2/outside/n) +"ldF" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"ldG" = ( +/obj/structure/cable{ + icon_state = "5-8" }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"bDm" = ( -/obj/structure/machinery/light{ +/obj/structure/cable{ + icon_state = "5-6" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ley" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/filtration_cave_cas) +"leD" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"bDn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"bDo" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bDp" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"leT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/closet/cabinet, -/obj/item/disk/nuclear, -/obj/item/weapon/gun/pistol/mod88, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bDq" = ( -/obj/structure/machinery/light{ +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"lfg" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_cave_cas) +"lfW" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/obj/item/reagent_container/food/drinks/flask, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"lgq" = ( +/obj/structure/machinery/power/terminal{ dir = 1 }, -/obj/structure/closet/cabinet, -/obj/item/clothing/accessory/armband, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bDr" = ( +/obj/structure/pipes/valve/open, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lgy" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"bDs" = ( -/obj/structure/machinery/alarm{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"lhf" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/lambda/xenobiology) +"lhz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"lhH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/space_port) +"lhK" = ( +/obj/structure/bed, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"liD" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Virology Lab Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"liE" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; - pixel_x = -30 + id = "viro"; + name = "Virology Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"liF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"liO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"ljf" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ljp" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"bDt" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"ljF" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ljO" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"ljR" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"ljT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"lkB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"bDu" = ( +/area/bigredv2/outside/engineering) +"lkI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"lkJ" = ( /obj/structure/surface/table, -/obj/item/book/manual/nuclear, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bDv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bDx" = ( +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"lkO" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/sw) +"lkT" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lln" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Chemistry Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"llu" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Server" + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"llH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDy" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDz" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 32 }, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bDA" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Personal Computer" +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"llP" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bDB" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/w) +"llX" = ( +/obj/structure/window/reinforced/toughened{ + icon_state = "fwindow" }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bDC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bDD" = ( +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/machinery/computer/pandemic, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"lmg" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bDE" = ( -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDF" = ( -/obj/structure/machinery/vending/cola, /turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDG" = ( +/area/bigredv2/outside/lz2_south_cas) +"lmx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"bDH" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bDJ" = ( -/obj/structure/showcase, -/turf/open/floor/carpet6_2/west, -/area/bigredv2/caves/eta/living) -"bDK" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"lmR" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/carpet10_8/west, -/area/bigredv2/caves/eta/living) -"bDL" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bDM" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"lns" = ( /obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bDO" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/cola, /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Research Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"bDP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Canteen" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"lnC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"bDQ" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"bDR" = ( -/obj/structure/toilet{ +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"bDS" = ( -/obj/structure/machinery/light{ +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"lnE" = ( +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Clinic Labs"; + pixel_y = 24 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"lnS" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"lnT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"bDT" = ( +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"lof" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"loo" = ( /obj/structure/machinery/light{ dir = 8 }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"loy" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper{ + pixel_x = -7 + }, +/obj/item/prop/magazine/book/theartofwar{ + pixel_x = 11 + }, +/obj/item/tool/pen{ + pixel_x = -7 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"loD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"loF" = ( +/obj/structure/closet/toolcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"bDU" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"bDV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"bDW" = ( +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"loG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"loH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"loN" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"loQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"bDX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bEc" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"loT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"lpk" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lpo" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bEd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/transmitter/colony_net{ + phone_category = "Lambda Labs"; + phone_id = "Surgery"; + pixel_y = 24 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"bEe" = ( +/area/bigredv2/caves/lambda/xenobiology) +"lpx" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/ne) +"lpC" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"lpT" = ( +/obj/structure/prop/dam/truck/damaged, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"lpV" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"lqh" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"lqq" = ( /obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 + pixel_y = 32 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"bEf" = ( -/obj/structure/machinery/light{ +/area/bigredv2/outside/marshal_office) +"lqE" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/eta/xenobiology) -"bEg" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/caves/eta/xenobiology) -"bEh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bEi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"bEj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Eta Lab Restroom" - }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"lqL" = ( +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"lqS" = ( +/obj/item/device/analyzer, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"lrb" = ( /turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"bEk" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/eta/xenobiology) -"bEl" = ( -/obj/structure/showcase{ - icon_state = "mechfab1" +/area/bigredv2/caves/lambda/virology) +"lrj" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/turf/open/floor/carpet5_1/west, -/area/bigredv2/caves/eta/living) -"bEm" = ( -/obj/structure/showcase{ - icon_state = "bus" +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"lrr" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"lru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/carpet9_4/west, -/area/bigredv2/caves/eta/living) -"bEn" = ( -/obj/structure/bookcase/manuals/medical, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bEo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"bEp" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"lrw" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/virology) +"lrR" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"bEq" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"lrT" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"lsa" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"lsn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"bEr" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves/eta/xenobiology) -"bEt" = ( -/obj/effect/landmark/crap_item, +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"lsz" = ( +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bEv" = ( -/obj/structure/machinery/light{ +/area/bigredv2/outside/bar) +"lsN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bEw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bEx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/living) -"bEy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bEz" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bEA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bEB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/caves/eta/research) -"bEC" = ( -/obj/structure/machinery/light, -/obj/structure/closet/cabinet, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"lsR" = ( +/obj/structure/platform/shiva{ dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bED" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/wood, +/obj/structure/platform/shiva, +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"lsT" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) -"bEE" = ( +"lsY" = ( /obj/structure/surface/table, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/filtration_plant) +"ltb" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/n) +"lte" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/lz2_south_cas) +"ltn" = ( /turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bEF" = ( -/obj/structure/surface/table, -/obj/item/trash/semki, -/obj/structure/pipes/vents/pump, +/area/bigredv2/outside/admin_building) +"lto" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigred/ground/garage_workshop) +"ltK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_y = -32 + }, /turf/open/floor, -/area/bigredv2/caves/eta/living) -"bEG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/bigredv2/outside/dorms) +"ltP" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"ltR" = ( +/obj/structure/target, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"ltS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"lud" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"luH" = ( +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"luR" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"bEH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"luY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"lve" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"lvy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/se) +"lvJ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"lwu" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"lwK" = ( +/obj/effect/spawner/random/tool, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"lxk" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lxJ" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"lxS" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Relaxation" +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/xenobiology) +"lxT" = ( +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"lxW" = ( +/obj/item/ore/coal{ + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"bEI" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 +/obj/item/ore/coal, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"lym" = ( +/obj/structure/bed/chair{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bEJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/barricade/handrail{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"lyo" = ( /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"bEK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/bigredv2/caves/lambda/research) +"lyp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/pizzabox/vegetable, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"lyJ" = ( +/obj/structure/platform/shiva{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"bEL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"lyK" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2/north, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"lzg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"lzn" = ( +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) -"bEM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"lzI" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves) +"lzL" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"bEN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bEO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bEP" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bEQ" = ( -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bER" = ( +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/book/bladerunner{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lzS" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"lAk" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"lAl" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/virology) +"lAp" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"lAz" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bES" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bET" = ( +/turf/open/floor/darkred2/northwest, +/area/bigredv2/outside/admin_building) +"lAF" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"lAK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"lAS" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"lAU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Kitchen" + }, /turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"bFw" = ( +/area/bigredv2/outside/hydroponics) +"lBb" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/n) +"lBc" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/c) +"lBe" = ( +/obj/structure/sign/poster/safety, /turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"lBi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/plating/warnplate/east, /area/bigredv2/outside/telecomm/warehouse) -"bGp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/obj/item/tool/hand_labeler, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"bGC" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/n) -"bGL" = ( -/turf/open/floor/asteroidfloor/north, +"lBX" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"lBY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/loadingarea/north, +/area/bigredv2/caves/eta/storage) +"lCp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"lCw" = ( +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/lz2_south_cas) -"bII" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"lCB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/red, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"lCJ" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"lCR" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 9; + pixel_y = 17 + }, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/clothing/mask/cigarette/weed{ + pixel_y = -3 + }, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"lDB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"lDC" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"bJz" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_x = -9; - pixel_y = 13 +"lDI" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 }, -/turf/open/floor/plating/platingdmg3/west, +/obj/effect/decal/cleanable/blood/oil/streak{ + pixel_y = 4 + }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"bJQ" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/n) -"bJS" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +"lDV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"lEl" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"bKY" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/filtration_cave_cas) -"bLA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"bMa" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"bMf" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"bMz" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/ne) -"bNl" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/lambda/xenobiology) -"bNA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bNE" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/dark, +"lEF" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/virology) +"lEV" = ( +/obj/item/paper/bigred/them, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lFb" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/suit/storage/lawyer/bluejacket, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) -"bOZ" = ( -/obj/structure/pipes/vents/pump{ +"lFj" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"bPy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"bQb" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz2_west_cas) -"bQe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bQh" = ( -/turf/open/mars/mars_dirt_11, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"lFn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"lFw" = ( +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/outside/n) -"bQi" = ( -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"bQG" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_lambda) -"bRd" = ( -/obj/structure/cable{ - icon_state = "1-4" +"lFy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/oob) -"bRm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz1_telecomm_cas) -"bRC" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"lFC" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 4 + }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"lFD" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"lFR" = ( /obj/effect/landmark/nightmare{ - insert_tag = "reactor_meltdown" + insert_tag = "viro_open" }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"bRK" = ( +"lGe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) +"lGK" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_y = 8 +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"lGN" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/obj/item/tool/pickaxe/drill{ - pixel_y = -8 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lGP" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Xenobiology" }, -/obj/item/tool/pickaxe/drill, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bRV" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"bSw" = ( -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"lGS" = ( +/obj/item/clothing/under/brown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"lGU" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"lHk" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "4-10" +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"lHs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bSy" = ( -/obj/structure/barricade/handrail{ +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Greenhouse Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/library) +"lIc" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, /turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"bTm" = ( +/area/bigredv2/outside/space_port_lz2) +"lIE" = ( /obj/structure/surface/table, -/obj/item/folder/black_random, -/obj/item/device/flashlight/lamp{ - pixel_y = 15 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_15"; + pixel_y = 10 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"lII" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/xenobiology) +"lIL" = ( +/obj/structure/sign/safety/fire_haz, +/turf/closed/wall/wood, /area/bigredv2/caves/mining) -"bTW" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_se) -"bVX" = ( +"lJb" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"lJD" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"lJM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"lJQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"lKb" = ( /obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 + dir = 1; + pixel_y = 7 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = -4; + pixel_y = 3 }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"lKg" = ( +/obj/structure/window, +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lKt" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"lKO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_north) -"bWk" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz1_north_cas) +"lLd" = ( +/obj/structure/surface/table, +/obj/item/trash/semki, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"lLI" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/sw) +"lLV" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"lMG" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"bWl" = ( -/obj/structure/largecrate/random/barrel/red, +/area/bigredv2/outside/s) +"lMK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"lMY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"lNe" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"lNq" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"lNC" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"lNY" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"lOj" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"lOx" = ( +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"lOE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"bXe" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"bYa" = ( -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bYW" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bZp" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/bigredv2/outside/s) +"lOH" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/donut, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"bZJ" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"lOS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"lOY" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "etatunnel_open" + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"lPg" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/n) +"lPn" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/radiation, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"bZL" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"caD" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"caN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"lPG" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"ccI" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_id = "Workshop" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"lPX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/warnplate/east, -/area/bigredv2/outside/telecomm/warehouse) -"ccP" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/caves_lambda) +"lQh" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"lQl" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"cdA" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_west_cas) -"cec" = ( -/obj/structure/bed, -/obj/item/toy/plush/farwa, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"ced" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/item/weapon/gun/rifle/m41a/training, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave/mars_cave_2, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"lQm" = ( +/obj/structure/cable{ + icon_state = "5-6" + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"ceA" = ( +"lQL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Greenhouse Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"lRk" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"cfr" = ( -/obj/item/explosive/grenade/baton{ - dir = 8 +/obj/structure/sign/safety/high_rad{ + pixel_x = 32 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"cgt" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"lRu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"cgO" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/telecomm/n_cave) -"chq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/area/bigredv2/caves/lambda/virology) +"lRz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"lRE" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"lRL" = ( /turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"ciG" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"lRP" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) -"ciY" = ( -/obj/structure/machinery/light/small{ +"lSR" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"cla" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"lSU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" }, -/turf/open/floor/dark, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"clB" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"cmC" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"cmG" = ( -/obj/item/ore/iron{ - pixel_x = 6; - pixel_y = 9 +"lSZ" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"lTh" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"lTl" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_north) +"lTJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"lTS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"cnk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2/north, +/area/bigredv2/outside/admin_building) +"lTW" = ( +/obj/structure/largecrate/guns, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"lTZ" = ( +/obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ dir = 8 }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ +/obj/structure/platform_decoration/kutjevo/rock{ dir = 1 }, -/obj/structure/platform_decoration/kutjevo/rock{ +/turf/open/mars_cave/mars_cave_2, +/area/space) +"lUh" = ( +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/door/window{ dir = 8 }, -/obj/structure/platform_decoration/kutjevo/rock{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"cns" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "se-checkpoint" +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"lUl" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"cnG" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"lUA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"coT" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"cpc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_se) -"cpQ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"lUF" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"lUI" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/csandwich, +/obj/item/toy/deck/uno{ + pixel_y = 18 }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"cqj" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"lUM" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"lUN" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"lUS" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_east) +"lWn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_virology) +"lWv" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"lWw" = ( +/obj/structure/machinery/light, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"cqZ" = ( -/obj/effect/decal/cleanable/blood/drip, +/area/bigredv2/outside/general_offices) +"lWS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"lXl" = ( /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"crd" = ( +/area/bigredv2/caves/lambda/xenobiology) +"lXM" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) -"crl" = ( +"lXR" = ( +/obj/effect/spawner/random/tool, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"lYj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"lYn" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"crv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_x = 3; - pixel_y = 12 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"lYp" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/research) +"lYu" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_research) +"lYw" = ( +/obj/structure/closet/radiation, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"lYB" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 4 }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"lYI" = ( +/obj/item/tool/weldpack, +/obj/item/frame/rack, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"cry" = ( -/obj/structure/surface/table/reinforced, -/obj/item/restraint/handcuffs, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"crQ" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_virology) -"csB" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"csC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"lYR" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"lYZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"lZs" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"lZW" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) -"csE" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz1_telecomm_cas) -"ctT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"cud" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"mam" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2"; + pixel_x = -9; + pixel_y = 11 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"cuG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"cvi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel{ - id = "hole2" +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1"; + pixel_x = 12; + pixel_y = 16 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"cxi" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"max" = ( +/obj/structure/showcase{ + icon_state = "bus" }, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"cyv" = ( -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_x = 3; - pixel_y = 12 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"may" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"maB" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "viro-rock_open" }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"czS" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"czV" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"cAf" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"cAs" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_cave_cas) -"cAN" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/virology) +"maF" = ( +/obj/item/frame/rack, +/obj/effect/landmark/good_item, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"cBq" = ( -/obj/structure/machinery/camera/autoname{ +"maG" = ( +/obj/structure/platform_decoration/kutjevo/rock{ dir = 1 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"cCr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_sw) -"cCu" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/mars_cave/mars_dirt_6, +/turf/open/mars/mars_dirt_12, +/area/space) +"maS" = ( +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"mbn" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"cDx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +"mbO" = ( +/obj/structure/machinery/door_control{ + id = "safe_room"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -28; + req_access_txt = "106"; + specialfunctions = 4 + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"mck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"mcl" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"mcp" = ( +/obj/structure/bed/chair{ + buckling_y = 5; dir = 1; - name = "\improper Abandoned Mining Storage" + pixel_y = 5 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"cGc" = ( -/obj/structure/machinery/botany, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"cGi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"mcK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"cGT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -32; - start_charge = 0 +/obj/structure/surface/table/woodentable, +/obj/item/storage/bible, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"mcN" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"cGZ" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/lz1_north_cas) -"cHn" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/lz2_south_cas) -"cHy" = ( -/obj/item/device/flashlight, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"mcO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cHz" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/lz2_cave) -"cHH" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/ne) -"cHI" = ( -/obj/structure/closet/crate, -/obj/structure/machinery/light{ +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"mcP" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz1_telecomm_cas) +"mdZ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_west_cas) +"mea" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"mer" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, +/area/bigredv2/outside/library) +"meS" = ( +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"meT" = ( +/turf/open/mars, +/area/bigredv2/outside/eta) +"mfZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"mgc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"mgs" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) -"cIP" = ( -/obj/item/paper/bigred/smuggling, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cJa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"mhl" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"mhG" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +/obj/structure/sign/safety/airlock{ + pixel_x = 11 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations" +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/caves/mining) +"mib" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"cJd" = ( -/turf/open/space/basic, -/area/space) -"cJh" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_x = 7; - pixel_y = 7 +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/research) +"mih" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/lightbrown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"miq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"cJA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"miu" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"cJG" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_north) -"cKu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"cLq" = ( -/obj/structure/bed/chair{ - dir = 4 +"miB" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/technology_scanner, +/obj/item/xenos_claw, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/barricade/handrail{ +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"miR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cLZ" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"miV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"mjf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/obj/item/weapon/shield/riot, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"cNb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"mjh" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_cave_cas) +"mji" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Engineering Workshop" + }, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"mjC" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"mjQ" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"mjV" = ( +/obj/structure/platform/shiva{ dir = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cNH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"cOa" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"mjZ" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"mkh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Evidence Room" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cOl" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_research) -"cOt" = ( -/obj/structure/sign/poster/clf, -/turf/closed/wall/solaris/reinforced, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"mkt" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"mku" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"cOu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"cOJ" = ( +"mkv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, /turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"mkz" = ( +/turf/open/floor/darkgreencorners2/north, /area/bigredv2/caves/eta/research) -"cPg" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"cPZ" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cQi" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "medbay-v3" +"mkI" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/asteroidwarning, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) -"cQO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"cRb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cRP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cSu" = ( +"mmb" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; dir = 1; @@ -20140,167 +17328,394 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/obj/item/trash/cigbutt{ + pixel_x = 7 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"cVd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) -"cVh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"mmh" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"cVL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_se) -"cVY" = ( -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"cXG" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_north) +"mmm" = ( +/obj/structure/morgue{ + dir = 2 + }, +/turf/open/floor/whiteblue/northwest, +/area/bigredv2/outside/medical) +"mmr" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"mmW" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"mnl" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/virology) +"moe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"mol" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"moy" = ( +/obj/structure/safe, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"cYy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"moz" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"moC" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"cYI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"moJ" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/n) +"mpc" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/hydroponics) -"cYJ" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_west_cas) -"cZj" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating, +"mpG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"mqs" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"mqz" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"mqE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Access door" + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"cZB" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"mqG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"mrl" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"mrp" = ( +/obj/structure/surface/table, +/obj/item/tool/extinguisher, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"daf" = ( -/obj/effect/landmark/crap_item, +/area/bigredv2/outside/telecomm) +"mrq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/telecomm/n_cave) +"mry" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = 12 + }, +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"msl" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light/built, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"msy" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) -"daB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_id = "Xenobiology" +"msK" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_north) +"msP" = ( +/obj/structure/tunnel{ + id = "hole4" }, -/turf/open/floor/whitepurple/east, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) -"dbi" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/telecomm/lz2_cave) -"ddt" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"dgy" = ( -/obj/structure/barricade/handrail/wire{ +"msX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_telecomm_cas) +"mtf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"mtF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"mtL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"mue" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"muC" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, /area/bigredv2/outside/c) -"dgH" = ( -/turf/open/floor/asteroidwarning, +"muF" = ( +/obj/structure/largecrate/random, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"muP" = ( +/turf/closed/wall/wood, +/area/bigredv2/caves_research) +"muS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Kitchen Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"muY" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_north) -"dhN" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/almayer{ - id = "rad_door"; - name = "\improper Radiation Shielding" +"mve" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm) +"mvq" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"mvt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"mvE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"mvM" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/turf/open/floor/plating, +/turf/open/floor/loadingarea/east, +/area/bigredv2/outside/cargo) +"mvP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"dhS" = ( -/obj/structure/machinery/light/small{ +"mvS" = ( +/obj/structure/xenoautopsy/tank/larva, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) +"mwe" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"mwu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"mwL" = ( +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"mwS" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_sw) +"mxr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars_cave/mars_cave_15, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"myU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"myX" = ( +/obj/structure/machinery/computer3/server, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"mzc" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" + }, +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"mzn" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"dij" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, +"mzH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"din" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 +/area/bigredv2/caves_north) +"mzK" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"djo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"dka" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) -"dkY" = ( -/obj/structure/platform, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"dmB" = ( -/obj/item/tool/pickaxe, +"mzR" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "anomalybelt" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"mzV" = ( /turf/open/mars, /area/bigredv2/outside/filtration_plant) -"dmO" = ( -/obj/structure/machinery/fuelcell_recycler, +"mAv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"mBm" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"mBo" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"mBI" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"mBL" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"mBO" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"mCD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"mCI" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_cave_cas) +"mCU" = ( +/obj/structure/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"mCX" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz2_south_cas) +"mDk" = ( +/obj/structure/dispenser/oxygen, /turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"dnV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) -"dot" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +"mDr" = ( +/obj/item/device/mass_spectrometer/adv, +/obj/structure/foamed_metal, +/turf/open/floor/whiteyellow, +/area/bigredv2/caves/lambda/xenobiology) +"mDH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"dov" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"mEw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"mEz" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"dqy" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/area/bigredv2/caves_se) +"mEQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"mFa" = ( +/obj/structure/machinery/computer/WYresearch, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"mFm" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"drq" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"drx" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"mFu" = ( /obj/structure/filingcabinet{ density = 0; pixel_x = 8; @@ -20313,1370 +17728,1689 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) -"drT" = ( -/obj/structure/disposalpipe/broken{ - dir = 4 +"mFv" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"mFQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"dsh" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/reagent_container/food/snacks/tofu{ + pixel_y = 11 }, -/obj/item/ammo_magazine/pistol/m1911, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"dsm" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"dsy" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 +"mGC" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"mGN" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"mGU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Operations" }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"dtf" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/podhatch/southwest, -/area/bigredv2/caves/lambda/research) -"dtX" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"mGV" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/space_port_lz2) +"mHv" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"mHO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"mHY" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"mIj" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"mIu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves_north) -"duo" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"duA" = ( -/obj/structure/platform{ - dir = 1 +"mIz" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"dvz" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/reinforced, +/turf/open/floor/red/north, /area/bigredv2/outside/lambda_cave_cas) -"dvB" = ( -/obj/item/ore/coal{ - pixel_x = 9; - pixel_y = 8 +"mIB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"mIO" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/hvac{ + pixel_x = -32 }, -/obj/item/ore/coal, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"dvC" = ( +"mJb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer/test_floor4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"dws" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +"mJz" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"mKE" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"mKM" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/turf/open/floor/plating/warnplate/southeast, -/area/bigredv2/outside/telecomm/warehouse) -"dwL" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"mKW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/lambda/xenobiology) +"mLk" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"mLv" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"mLO" = ( +/turf/open/floor/purplecorner/west, +/area/bigredv2/caves/lambda/research) +"mLP" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"dwO" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"mMa" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"mMb" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/eta) +"mMk" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"mML" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"dxV" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_sw) -"dyv" = ( -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"dyH" = ( -/obj/structure/machinery/computer/area_atmos{ - dir = 1 +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"mNb" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"mNL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Clinic Treatment" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"mNP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"mOb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"mOB" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"mOD" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_sw) +"mPg" = ( +/obj/structure/machinery/robotic_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"mPq" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"mQd" = ( /obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) -"dzY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"dAd" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"dAi" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"dAX" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"dBa" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 +"mQi" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 8 }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"mQm" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, +/obj/item/clothing/glasses/welding, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"mQt" = ( +/obj/structure/bed/chair, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"mQv" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"mRf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"dBm" = ( -/obj/structure/platform{ +"mRh" = ( +/obj/structure/machinery/teleport/station, +/turf/open/floor/podhatch, +/area/bigredv2/caves/lambda/research) +"mRj" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"mRD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor, +/area/bigredv2/caves) +"mRH" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mRJ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"mRN" = ( +/obj/structure/cryofeed, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"mSe" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/nw) +"mSo" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/filtration_cave_cas) +"mSr" = ( +/obj/structure/machinery/light/small{ dir = 8 }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"mSC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/w) +"mSK" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"mSM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"dBE" = ( -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 2; - pixel_y = -3 +/area/bigredv2/outside/general_offices) +"mSQ" = ( +/obj/item/clothing/under/lightbrown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"mSW" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/library) +"mTc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"mTw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"mTz" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/sw) +"mTF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"mTL" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"mUU" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"mVc" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"mVe" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"mVr" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"mVu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"mVO" = ( +/turf/open/floor/whiteblue/southeast, +/area/bigredv2/outside/medical) +"mWw" = ( /obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"dBU" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"dCb" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/weapon/gun/launcher/grenade/m81/m79{ - pixel_x = -3; - pixel_y = -9 - }, -/obj/structure/cable{ - icon_state = "1-5" +"mWK" = ( +/obj/item/ore/gold, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"dCA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/plating, +"mWM" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"dCU" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/mars, +"mWZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"mXI" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"mXJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) -"dEf" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"dEr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_se) -"dEV" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz2_south_cas) -"dFz" = ( -/obj/item/tool/pickaxe{ - pixel_x = -18; +"mYc" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"mYi" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"mYq" = ( +/obj/structure/surface/table, +/obj/structure/window, +/obj/structure/machinery/computer/emails{ + dir = 8; pixel_y = 4 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"mYD" = ( +/obj/structure/morgue{ + dir = 2 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"dFL" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"mYM" = ( +/obj/item/folder/yellow, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"mZj" = ( +/obj/structure/prop/dam/truck/mining{ + desc = "A crawler, imported from the Alpha Centauri colonies."; + dir = 1; + icon_state = "crawler_crate_alt"; + name = "crawler" }, -/turf/open/floor, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/s) +"mZu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior"; + pixel_x = null + }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) -"dFR" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -8 +"mZw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"dHr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -15 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"nal" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"nan" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"nau" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"dHH" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"dIb" = ( -/turf/open/floor, -/area/bigredv2/caves) -"dIz" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_virology) -"dIG" = ( +/obj/structure/sign/prop3{ + pixel_y = 32 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"naw" = ( +/obj/structure/reagent_dispensers/watertank, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"naI" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"naT" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/structure/machinery/light{ + dir = 8 }, +/obj/item/ammo_magazine/pistol/m1911, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"dIH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"naW" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"nbt" = ( +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"nbu" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, /area/bigredv2/outside/space_port_lz2) -"dJc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"dJr" = ( +"nbA" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"nbD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"ncn" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"ncB" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"ncC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/asteroidwarning/northeast, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"ncG" = ( +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/storage) +"ncJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) -"dJM" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/shotgun, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dKk" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/lambda_cave_cas) -"dKo" = ( -/obj/item/ore/iron{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/ore/iron{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/item/ore/iron, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"dKR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_5, +"nda" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/n_cave) +"ndb" = ( +/obj/item/reagent_container/glass/rag, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"ndm" = ( +/turf/open/mars_cave/mars_cave_4, /area/bigredv2/caves_lambda) -"dLS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = 7; - pixel_y = 14 +"ndG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"ndS" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/window{ +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"nea" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"ned" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"dNd" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"dNn" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigred/ground/garage_workshop) -"dNr" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"nev" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 }, -/obj/structure/machinery/firealarm{ +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform_decoration/kutjevo/rock{ dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dNX" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"dOu" = ( +/turf/open/mars/mars_dirt_12, +/area/space) +"neZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"nfc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/podhatch/northwest, +/area/bigredv2/caves/lambda/research) +"nfL" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_research) +"nfN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ngg" = ( +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 13 }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"dOZ" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/n) -"dPb" = ( +"ngU" = ( /obj/item/tool/pickaxe/drill, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"dPs" = ( -/obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"dPC" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves/mining) -"dPJ" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/bigredv2/outside/c) -"dQw" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) -"dQF" = ( -/obj/effect/spawner/random/tool, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"dQR" = ( /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"dQZ" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"dRc" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Lambda Checkpoint" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"dSg" = ( -/obj/effect/landmark/crap_item, +/area/bigredv2/caves_lambda) +"nhw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"dTi" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_north) -"dTB" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/lambda_cave_cas) -"dUj" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"nhU" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/eta/xenobiology) +"nie" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"nij" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"nix" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/warnwhite/southeast, +/area/bigredv2/caves/lambda/virology) +"niN" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/cautery, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"njk" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"dUz" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"njq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"dVp" = ( -/obj/effect/decal/cleanable/dirt, +/area/bigredv2/caves_lambda) +"nkr" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"nky" = ( +/obj/structure/machinery/vending/coffee, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"dVA" = ( +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"nkz" = ( /turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"dVM" = ( -/obj/structure/largecrate/supply/supplies, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"dWd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"dWl" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"dXs" = ( -/obj/item/tool/pickaxe{ - pixel_y = 12 +/area/bigredv2/caves_sw) +"nlh" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/xenobiology) +"nlW" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"dXu" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/turf/open/mars, +/area/space) +"nmp" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"dXK" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/n) -"dZO" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"nmt" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Machine room" }, -/turf/open/mars_cave/mars_cave_14, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"eaW" = ( -/obj/structure/disposalpipe/segment, -/obj/item/frame/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/power/terminal{ +"nmB" = ( +/obj/item/clothing/mask/gas, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/filtration_plant) +"nmH" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/valve/open, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eaZ" = ( +/turf/open/floor/red/north, +/area/bigredv2/outside/lambda_cave_cas) +"nmL" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, /turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) -"ebr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"ebZ" = ( -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"eci" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/outside/lz1_telecomm_cas) -"ecy" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/obj/item/trash/cigbutt{ - pixel_x = 7 - }, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"ecK" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_east) -"ecX" = ( -/obj/structure/machinery/light{ +"nns" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"nnu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/largecrate, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"eeI" = ( -/obj/structure/machinery/light, -/obj/structure/window{ +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nnE" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/obj/structure/surface/table/woodentable, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_y = 11 - }, +/obj/item/tool/extinguisher, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"efh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"efK" = ( -/obj/structure/machinery/computer/crew{ - density = 0; - pixel_y = 16 +/area/bigredv2/outside/bar) +"nnL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"egI" = ( -/obj/item/ore, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"nnR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/fireaxe, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"noe" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"egL" = ( +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"noo" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate, +/area/bigredv2/caves/lambda/xenobiology) +"nor" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/n_cave) +"noE" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"noK" = ( /obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"egS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"noS" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"ejp" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "filtration_restored" +"noY" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/s) -"eju" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 2 +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"npi" = ( +/obj/item/bedsheet/brown, +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"ejP" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/se) -"ekV" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/obj/structure/bed, +/obj/structure/bed{ + pixel_y = 13 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"elh" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/n) -"els" = ( -/obj/structure/ore_box, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"npE" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"elM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"npK" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_sw) +"nqb" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"nqf" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"nqr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"emC" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"ene" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_x = -11; - pixel_y = 11 +"nqs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Tool Storage" }, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/mars_cave, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"nqu" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"enD" = ( -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_y = 7 +"nqG" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"nqV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"nru" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"nrF" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/obj/item/trash/cigbutt{ - pixel_x = 7; - pixel_y = 7 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -6; + pixel_y = 12 }, -/obj/item/trash/cigbutt{ - pixel_x = -10; +/obj/item/ore{ + pixel_x = -4; pixel_y = 7 }, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"enJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ - name = "\improper Dormitories Restroom" +"nrN" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/caves/eta/research) +"nsL" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"nsS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/delivery, /area/bigredv2/outside/dorms) -"eoU" = ( -/turf/open/floor/almayer/w_y2/north, -/area/bigredv2/outside/admin_building) -"epe" = ( +"nta" = ( /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/eta) -"eql" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"eqr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ +"ntf" = ( +/obj/structure/machinery/door_control{ + id = "eta"; + name = "Eta Lockdown"; + pixel_x = 30; + throw_range = 15 + }, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"nto" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/beaker/sulphuric, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"ntw" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"ntz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - name = "\improper Dormitories Restroom" + name = "\improper Lambda Lab Virology Wing" }, /turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"erA" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"erG" = ( -/obj/effect/decal/hefa_cult_decals/d32, +/area/bigredv2/caves/lambda/virology) +"ntN" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lambda_cave_cas) +"nug" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"nuq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/recharger, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"nuG" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Server" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"nvq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, +/obj/structure/machinery/vending/cola, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"nvQ" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"nwu" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"erJ" = ( +"nwF" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/eta) -"erX" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/s) +"nwN" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"nwP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nxN" = ( +/obj/item/ore/iron{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"esS" = ( -/obj/structure/machinery/light{ +"nyN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/window, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"eup" = ( -/obj/structure/bed/chair, -/obj/item/trash/cigbutt, -/obj/item/storage/fancy/cigarettes/lady_finger{ - pixel_x = 11 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"nyS" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/xenobiology) +"nzs" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/hvac{ + pixel_x = -32 }, -/turf/open/floor/plating, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"nzF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"nzM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare{ + pixel_y = -7 + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"euF" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"euO" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves_research) -"euP" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"nAb" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 32; + pixel_y = -32 }, -/obj/structure/closet/crate/miningcar/yellow{ - layer = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"evA" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/platform_decoration/shiva, -/turf/open/floor/bluegrid/bcircuitoff, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) -"evX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"ewv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/curtain/red, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"exc" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigred/ground/garage_workshop) -"ezQ" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eAU" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/eta) -"eBn" = ( +"nAn" = ( +/obj/structure/surface/table, +/obj/item/trash/burger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"nAs" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nAU" = ( +/obj/structure/machinery/door_control{ + id = "workshop_br_g"; + name = "Workshop Garage Lockdown"; + pixel_x = -28 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"nBg" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, /obj/effect/decal/cleanable/blood/drip{ pixel_x = 3; pixel_y = 15 }, -/obj/effect/spawner/gibspawner/xeno, +/obj/effect/spawner/gibspawner/human, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"eBL" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"nBo" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"eDQ" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"eDS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"eEm" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"eEy" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/lz2_cave) +"nBr" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"nBO" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/filtration_cave_cas) +"nCd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_west_cas) -"eER" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"nCe" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"eFh" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_lambda) -"eFr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +"nCf" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/red/north, +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"nCi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"eGa" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"eGb" = ( +"nCl" = ( /obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 + dir = 1; + pixel_y = 7 }, -/turf/open/mars_cave/mars_cave_3, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves/mining) -"eGf" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"eGM" = ( -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/outside/engineering) -"eHA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"eIN" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"eJE" = ( -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"eJU" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"nCE" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) +"nCG" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"eKm" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"eKU" = ( -/obj/structure/machinery/door_control{ - id = "filtration"; - name = "Filtration Lockdown"; - pixel_x = 30; - throw_range = 15 +/obj/structure/window/reinforced/toughened{ + dir = 4 }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"eKZ" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 4 +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_id = "Virology" }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"eLp" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/dark, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"nCN" = ( +/turf/open/floor/carpet5_1/west, +/area/bigredv2/outside/admin_building) +"nCR" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/eta/xenobiology) +"nCT" = ( +/obj/structure/sign/poster/ad, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"nCX" = ( +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"nCY" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Head Office" + }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"eLq" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"eLQ" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/filtration_plant) -"eMX" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_lambda) -"eNe" = ( -/obj/item/clothing/under/darkred, -/obj/structure/surface/rack, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"eNx" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lambda-cave-mushroom" +"nDf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"nDr" = ( +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"eNN" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"eOd" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +"nDv" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/n_cave) +"nDM" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/queen_spawn, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"ePk" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"eRc" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_plant) -"eRe" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/bigredv2/caves/mining) +"nEh" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"eRI" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/c) -"eSm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"eSu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"eSN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"nEn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"eTj" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/c) -"eUs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = 3; - pixel_y = 12 +/area/bigredv2/caves/lambda/research) +"nEv" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -8 }, -/turf/open/floor/plating, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"eVo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/ammo_magazine/pistol/hp{ - pixel_x = 8; - pixel_y = -7 - }, -/obj/item/ammo_magazine/pistol{ - pixel_y = -4 +"nEy" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lambda_cave_cas) +"nEB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/caves/eta/research) +"nEF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/research) +"nEG" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/living) +"nFn" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"nFo" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/obj/structure/cable{ - icon_state = "9-10" +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"eVM" = ( -/obj/structure/largecrate/random/barrel/true_random, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"eWd" = ( +"nFD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "lambda-interior"; + name = "Lambda Checkpoint Interior"; + pixel_x = null + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"nGk" = ( /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"eWo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/filtration_plant) -"eWv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/telecomm/n_cave) -"eWy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/moneybag, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, +/area/bigredv2/caves_north) +"nGS" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/lz2_south_cas) +"nHy" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"eWB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/recharge_station, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"eWE" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +"nHI" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/lz2_south_cas) +"nIe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Dormitories Lavatory" }, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves_north) -"eWG" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eWP" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"nIy" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/donkpocket, /obj/structure/machinery/light{ - dir = 4 + dir = 8 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"nJp" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"eYy" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"nJx" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/n) +"nJz" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"nJG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"nJJ" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"nJW" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"nKh" = ( +/obj/structure/surface/table, +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"nKi" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"eYA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"nKk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) -"eYH" = ( -/obj/structure/machinery/camera/autoname{ +"nKn" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"nKv" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"eYK" = ( -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"eZw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, +/obj/item/trash/syndi_cakes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"nKW" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"nLG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories Tool Storage" }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"fbf" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/sw) -"fbB" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "crashlanding-eva" +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"nLP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) -"fcG" = ( +/turf/open/floor/red/east, +/area/bigredv2/outside/marshal_office) +"nMe" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"nMk" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nMt" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"nMw" = ( +/obj/structure/surface/table, +/obj/item/folder/black, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"nMF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"fdr" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_sw) -"fdy" = ( -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"feN" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/space_port_lz2) -"feS" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) -"fgD" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Server Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"fgE" = ( +"nMO" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/landmark/static_comms/net_two{ - broken_on_spawn = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"nMT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"fhy" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"nMV" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_cave_cas) +"nMX" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/admin_building) -"fhI" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_north) -"fin" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"fjz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/objective{ - dir = 8 +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"fjF" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/w) -"fjP" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves) -"fmd" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"nNa" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"fmn" = ( +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"nNc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_virology) -"fmL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/camera/oldcamera, -/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves_se) +"nNj" = ( +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"fnh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"nNo" = ( +/obj/structure/morgue{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"fni" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Medical Clinic Morgue" +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"nOi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"nOH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, /turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"fnv" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"fnO" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"foB" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves_east) -"fpa" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +/area/bigredv2/outside/marshal_office) +"nPt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"fsT" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/n) -"fsY" = ( -/turf/open/mars/mars_dirt_6, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) -"ftY" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/sw) -"fus" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"fvb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"nPu" = ( +/obj/structure/machinery/light/small/built{ + dir = 4 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"fvu" = ( -/obj/structure/machinery/light/double, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"nPD" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"fwa" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_virology) -"fwD" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; +/area/bigredv2/caves_sw) +"nPR" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ dir = 4; - health = 25000 + health = 80 }, -/turf/open/floor/loadingarea/west, -/area/bigredv2/outside/cargo) -"fwO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 1; + opacity = 1 + }, +/turf/open/floor/warnwhite, +/area/bigredv2/caves/lambda/virology) +"nQx" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"nRH" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/ne) +"nRV" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"nRZ" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"nSg" = ( +/obj/item/trash/chips, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nSt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"nSW" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"nTe" = ( /obj/structure/prop/almayer/cannon_cables{ name = "\improper Cables" }, -/obj/structure/cryofeed/right{ +/obj/structure/cryofeed{ color = "silver"; desc = "A bewildering tangle of machinery and pipes."; - name = "\improper coolant feed" + name = "coolant feed" }, -/turf/open/shuttle/escapepod/floor5, +/turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) -"fwV" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/caves) -"fxh" = ( +"nTh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"fxn" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/oob) -"fxK" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/lz1_telecomm_cas) -"fxZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/area/bigredv2/caves/eta/research) +"nTz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/light/double{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 14; + pixel_y = 3 + }, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_lambda) -"fyp" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"fyz" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"fyO" = ( +/area/bigredv2/caves/mining) +"nTA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"nTC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"nTH" = ( +/obj/structure/surface/table, +/obj/item/device/healthanalyzer, +/obj/structure/pipes/vents/pump, +/obj/item/reagent_container/spray/cleaner, /obj/structure/transmitter/colony_net{ phone_category = "Solaris Ridge"; phone_color = "green"; - phone_id = "Clinic Labs"; + phone_id = "Clinic"; pixel_y = 24 }, -/turf/open/floor/whitepurplecorner/north, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"fyZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/obj/structure/machinery/light/small, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"fBc" = ( -/obj/structure/pipes/standard/tank/phoron, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"fBo" = ( +"nTM" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"nUx" = ( +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/filtration_plant) -"fCb" = ( -/turf/open/floor, +"nUC" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"nUE" = ( +/obj/item/tank/air, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) -"fDf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Greenhouse Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"fDr" = ( -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"fEv" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" +"nUS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/delivery, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"fEE" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/ne) -"fFG" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/mars_cave/mars_cave_13, +"nVf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"nVl" = ( +/turf/open/floor/rampbottom, +/area/bigredv2/outside/marshal_office) +"nVE" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz1_telecomm_cas) +"nVF" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"fFO" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/space_port_lz2) -"fGK" = ( +"nVQ" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"nWd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"nWi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E-corner" + icon_state = "S"; + pixel_y = -1 }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_north) -"fGN" = ( +/turf/open/floor/red/north, +/area/bigredv2/outside/marshal_office) +"nWo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"nXb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"nXl" = ( +/obj/item/device/flashlight, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"nXm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nXR" = ( /turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_research) -"fHw" = ( -/obj/structure/barricade/handrail, +/area/bigredv2/caves_north) +"nXV" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_sw) +"nXW" = ( +/obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"fHF" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/item/weapon/baseballbat, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"fJH" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/eta) -"fJW" = ( -/obj/structure/window, -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, +/area/bigredv2/outside/space_port) +"nXX" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"fKO" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_north) -"fKW" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"fLj" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_virology) -"fLl" = ( -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"fLA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/area/bigredv2/outside/marshal_office) +"nYo" = ( +/obj/structure/surface/table/woodentable, /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"fLR" = ( -/obj/item/tool/pickaxe, +/area/bigredv2/outside/chapel) +"nYV" = ( +/obj/item/tool/warning_cone, +/turf/open/mars, +/area/bigredv2/outside/s) +"nZa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"nZd" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1cave_flank" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"nZf" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/solar_tracker, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"nZp" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_cave_cas) +"nZy" = ( /turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"fMl" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"fML" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/area/bigredv2/caves_north) +"nZK" = ( +/obj/item/ore/diamond, +/obj/item/stack/sheet/mineral/diamond{ + pixel_x = 13; + pixel_y = -5 + }, +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"fMT" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 +"nZL" = ( +/obj/structure/machinery/conveyor{ + dir = 9; + id = "anomalybelt" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"fMZ" = ( -/obj/structure/machinery/light{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"nZO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/transmitter/colony_net{ - phone_category = "Lambda Labs"; - phone_id = "Surgery"; - pixel_y = 24 - }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"oag" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"fOc" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_virology) -"fOo" = ( +/area/bigredv2/caves/eta/storage) +"oam" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"oaF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, -/obj/structure/machinery/light/double{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 14; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"fOx" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"fOK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"fOM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"obf" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lambda-graveyard" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"fPe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/n_cave) -"fPB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"fQv" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/se) +"obt" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_research) +"obu" = ( +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"obz" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; dir = 1; @@ -21684,2766 +19418,3642 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"fRo" = ( -/obj/item/tool/pickaxe/drill, /turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) -"fRH" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_se) -"fRW" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"fSJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/space_port) -"fST" = ( +"obC" = ( +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"obP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/machinery/light, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"fSY" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/lz2_west_cas) -"fTg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ocd" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/lz2_south_cas) +"och" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"fUk" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"ocm" = ( /obj/structure/surface/table, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat{ - pixel_x = 7; - pixel_y = 12 - }, -/turf/open/floor/asteroidwarning/north, +/obj/item/storage/firstaid/adv, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"oco" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_plant) -"fUp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" - }, +"ocp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"ocr" = ( /turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"fVt" = ( +/area/bigredv2/caves/lambda/xenobiology) +"ocx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"ocN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/whiteyellow/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"ocQ" = ( +/obj/structure/machinery/body_scanconsole, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"ode" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"odw" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"odJ" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" + }, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"odO" = ( +/obj/effect/glowshroom, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"oeq" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"oeU" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"oeX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"ofa" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"ofn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_plant) +"oft" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"ofS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"ofX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/stack/sheet/glass{ - amount = 30 +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/s) +"ogb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"fWw" = ( -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"fWY" = ( -/obj/structure/window, -/obj/structure/window{ +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"ogd" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"ogG" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, -/obj/item/prop/magazine/book/starshiptroopers, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"fXm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/tool/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"fXR" = ( +/area/bigredv2/outside/filtration_plant) +"ogH" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/storage) +"ogI" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"ogN" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"ogQ" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ogX" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"ohb" = ( +/obj/structure/bed/chair, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) -"fYH" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/caves/mining) -"fYJ" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/plating/platingdmg3/west, +"ohY" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"fZg" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/hvac{ - pixel_x = -32 +"ohZ" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/ne) +"oiH" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"oiM" = ( +/obj/structure/girder/reinforced, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/research) +"oiR" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"fZm" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/eta) -"gad" = ( -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"gan" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"ojq" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/platform_decoration/shiva{ +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"ojD" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"gbA" = ( +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"ojU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"gcR" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_sw) -"gda" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/lz1_telecomm_cas) -"gdx" = ( -/turf/open/floor/darkyellow2/southeast, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"ojW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"gdK" = ( -/turf/open/mars_cave/mars_dirt_6, +"okK" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_lambda) +"okW" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_north) +"olu" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/n) -"gdN" = ( +"olY" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"omh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"omt" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/lambda/xenobiology) +"omM" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/c) +"onw" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/s) +"onH" = ( +/obj/structure/machinery/light/built, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"onL" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"onR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"ooa" = ( +/obj/structure/machinery/botany/extractor, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) +"oos" = ( +/obj/structure/platform/shiva, +/obj/structure/platform/shiva{ + dir = 1 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"ooy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"ooB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"ooF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"ooI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"opn" = ( +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/eta/xenobiology) -"gej" = ( -/turf/open/floor/whiteblue/southeast, -/area/bigredv2/outside/medical) -"geC" = ( +"opr" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_north) +"opE" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/c) +"opT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"oqh" = ( +/obj/item/device/flashlight/lantern, /turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz1_north_cas) -"gfX" = ( -/obj/structure/sign/safety/hazard{ +/area/bigredv2/caves/mining) +"oqk" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/xenobiology) +"oql" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/darkyellow2, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"oqp" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"oqy" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) -"ggC" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/plating/platingdmg3/west, +"oqz" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"oqK" = ( +/obj/item/explosive/grenade/baton{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"ggW" = ( -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/research) -"gio" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/filtration_cave_cas) -"giB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/caves_sw) -"giY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"oqT" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"ore" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"orM" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/s) +"orP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Biology Wing" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"orT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"osj" = ( +/obj/structure/machinery/computer/station_alert, +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"osG" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/obj/structure/barricade/handrail/wire{ - dir = 1 +/turf/open/floor/delivery, +/area/bigredv2/outside/c) +"osI" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"osO" = ( +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"otd" = ( +/turf/open/floor/carpet9_4/west, +/area/bigredv2/outside/bar) +"oto" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/obj/structure/foamed_metal, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "chem_lock"; + name = "\improper Chemistry Lockdown" + }, +/turf/open/floor/whiteyellowfull, +/area/bigredv2/caves/lambda/xenobiology) +"otH" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/n) +"otW" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/space_port_lz2) +"oui" = ( +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"ouj" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 27 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"gke" = ( -/obj/item/tool/warning_cone, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/s) -"gki" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ouO" = ( /obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" + icon_state = "xgib3"; + pixel_x = 17 }, -/turf/open/mars_cave/mars_dirt_4, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"gkD" = ( +"ovz" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; + dir = 8; health = 25000 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"glB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/lz2_south_cas) -"gmm" = ( -/obj/structure/window/framed/solaris, -/obj/effect/decal/cleanable/molten_item, -/obj/structure/machinery/door/poddoor/almayer{ - id = "rad_door"; - name = "\improper Radiation Shielding" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"gmN" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"gnR" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gpg" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_east) -"gps" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ore/diamond, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gpt" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"gpA" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/barricade/wooden, /turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"gpB" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_research) -"gpR" = ( -/turf/open/gm/river, -/area/bigredv2/outside/c) -"gpT" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"gqS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light, +/area/bigredv2/outside/n) +"owv" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"oxk" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor, /area/bigred/ground/garage_workshop) -"gri" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "containerroom_xenos" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/nw/ceiling) -"grU" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" +"oxH" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/n) +"oxO" = ( +/obj/structure/machinery/power/reactor/colony{ + name = "Reactor Turbine" }, /turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"gsW" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ +/area/bigredv2/outside/engineering) +"oxQ" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"oym" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"oyF" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) -"gts" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"oyX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"ozv" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/bigredv2/caves_virology) +"ozI" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"ozL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"ozP" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"oAd" = ( +/obj/structure/closet/secure_closet/engineering_chief, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/morgue{ - dir = 2 - }, -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"gtX" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_se) -"guu" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"guM" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"gvd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Break Room" +"oAm" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"oAq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"gvI" = ( -/obj/structure/transmitter/colony_net{ +/obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; - do_not_disturb = 1; - phone_category = "Lambda Labs"; - phone_color = "red"; - phone_id = "Director's Safe Room"; - pixel_x = -18 + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"gwg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"gxJ" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_sw) -"gyJ" = ( -/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"oAC" = ( +/obj/structure/disposalpipe/junction, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"gyL" = ( -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"gyU" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 +"oAW" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"oBf" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"oBE" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"oBQ" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"oBX" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"oCb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"oCv" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"gzG" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 - }, -/turf/open/mars_cave/mars_cave_14, +"oCA" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_se) +"oCC" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"gAE" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -9 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"gAK" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "chapel_cult" - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/chapel) -"gAX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"oCL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"oDp" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_lambda) +"oDr" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"gCx" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"oDJ" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"gCC" = ( -/obj/structure/closet/secure_closet, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" - }, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" - }, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" +/obj/item/alienjar, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"oDS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"oDU" = ( +/obj/structure/window/reinforced/toughened{ + dir = 4 }, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"gCE" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"gEM" = ( +/obj/structure/machinery/disease2/diseaseanalyser, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"oEf" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/n_cave) +"oEo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"oEs" = ( +/turf/open/floor/darkredcorners2/north, +/area/bigredv2/outside/admin_building) +"oEA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"oEQ" = ( /obj/structure/machinery/vending/security, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/red, /area/bigredv2/outside/lambda_cave_cas) -"gFR" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"gGO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"gHH" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"gHV" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"gIT" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" +"oFd" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/delivery, -/area/bigredv2/caves_north) -"gJw" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/caves_virology) -"gKk" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves_virology) -"gMj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"oFn" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"gMC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"gML" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"gNz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_se) -"gNH" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves) -"gOr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"gPc" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/telecomm/n_cave) -"gPh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"oFF" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"oFM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Meeting Room" }, /turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"gPE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gQj" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"gSg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/se) -"gSB" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8 +/area/bigredv2/outside/admin_building) +"oGX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"gTJ" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"gTN" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/obj/structure/cable, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/oob) -"gTS" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"oHk" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/research) +"oHm" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"oHn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"oHw" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/general_offices) +"oHB" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"oHJ" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"oHV" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "small" +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"oHX" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gUD" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"oIe" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/n) +"oIt" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"oIK" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"gVl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/platform_decoration{ + dir = 6 }, -/turf/open/floor/darkyellowcorners2/east, +/turf/open/gm/river, /area/bigredv2/outside/engineering) -"gVm" = ( -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/research) -"gWv" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "eta_carp" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/xenobiology) -"gWD" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/space_port_lz2) -"gWU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"oIS" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"oJx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; pixel_y = -1 }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"gXp" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"gXs" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"gYl" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_virology) -"gYt" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"gZc" = ( -/obj/structure/machinery/light{ - dir = 8 +"oJC" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 }, -/obj/structure/sign/safety/high_rad{ - pixel_x = -32 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oKa" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz1_north_cas) +"oKg" = ( +/turf/open/floor/purplecorner, +/area/bigredv2/caves/lambda/research) +"oLh" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"hah" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"oLo" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"oLH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/loadingarea, -/area/bigredv2/outside/cargo) -"haT" = ( +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"oLJ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"oLO" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/w) +"oMe" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"oMw" = ( +/obj/structure/bed, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"oMF" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"oMN" = ( +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"oMS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"oMW" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"oMX" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_west_cas) +"oNb" = ( +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/filtration_plant) -"hbx" = ( +"oNk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/outside/telecomm/warehouse) +"oNv" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/ne) +"oNC" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whiteyellow/north, +/area/bigredv2/caves/lambda/xenobiology) +"oND" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/bed/roller, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"hcb" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"hcH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"hdc" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"oNE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"oNL" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"heD" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"oNO" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, +/turf/open/floor/whiteblue/southeast, +/area/bigredv2/outside/medical) +"oOp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_id = "Clinic Reception" + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"oOw" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/gm/river, +/area/bigredv2/outside/c) +"oOF" = ( +/obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/bigredv2/outside/library) -"heG" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, +"oOI" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hfB" = ( -/obj/item/ore{ - pixel_x = -5; - pixel_y = 2 +"oOO" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) +"oPn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"hgr" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/ne) -"hgO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/n) -"hgT" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz1_north_cas) -"hho" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/wood/normal{ +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"hhK" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"hhX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"oPG" = ( +/obj/structure/tunnel{ + id = "hole5" }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"hiP" = ( -/obj/structure/sign/safety/one{ - pixel_x = 16 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"oQf" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"hiY" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_sw) -"hkv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"hkY" = ( -/obj/structure/machinery/light{ +/obj/item/trash/tray, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"oQh" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"hmm" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"hmJ" = ( -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"hmL" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"oQs" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -32 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"hnh" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"oQU" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"hoQ" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"hoY" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/structure/cable{ - icon_state = "11-6" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/lz2_cave) +"oQX" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hpg" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/space_port_lz2) -"hqC" = ( -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/mars_cave/mars_cave_2, +"oRe" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hqD" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/lz2_south_cas) -"hqO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars, -/area/bigredv2/caves_north) -"hqS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"hsF" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"hsJ" = ( -/obj/item/ore, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"hto" = ( +"oRi" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"oRm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/virology) +"oRr" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"hvQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"oRz" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"oRD" = ( +/obj/structure/morgue{ + dir = 1 }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"hwe" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +/turf/open/floor/whiteblue/southwest, +/area/bigredv2/outside/medical) +"oRN" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"oRP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"hwy" = ( -/obj/effect/landmark/crap_item, +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"oRT" = ( +/obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"hxs" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"oSd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, /turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"hyv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/bar) +"oSl" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + name = "\improper Eta Lab Decontamination" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"oSm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) -"hyC" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/warehouse) -"hzg" = ( -/obj/structure/cable{ - icon_state = "1-6" +"oSr" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/s) +"oSB" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"oSJ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"oSK" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"oSN" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/weapon/gun/launcher/grenade/m81/m79{ + pixel_x = -3; + pixel_y = -9 }, /obj/structure/cable{ - icon_state = "1-9" + icon_state = "1-5" }, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hzy" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"hzP" = ( -/obj/item/paper/bigred/final, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"hAj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves_research) -"hBD" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"hCT" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 +"oSS" = ( +/obj/structure/machinery/door_control{ + id = "Chapel"; + name = "Storm Shutters"; + pixel_x = -32 }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -5 +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"oSV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hDK" = ( -/obj/structure/largecrate/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"hEz" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"hEC" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"hEE" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz2_south_cas) -"hEK" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hFg" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"hFv" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/machinery/access_button/airlock_interior{ + master_tag = "viro_controller"; + pixel_y = 28 }, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"oTj" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"hFP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hFV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/n) -"hGv" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"hHa" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"hHb" = ( -/obj/structure/sign/safety/ladder, -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/oob) -"hHG" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"hJH" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/telecomm/n_cave) -"hKl" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/goldschlager, +/area/bigredv2/outside/nw) +"oTo" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hKt" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"hKD" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"hKM" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_north) -"hKO" = ( -/obj/structure/machinery/light{ +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"oTz" = ( +/obj/item/folder/yellow, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/red/southwest, -/area/bigredv2/outside/lambda_cave_cas) -"hLp" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"hLs" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lambda_cave_cas) -"hLS" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/wood, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"oTP" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"hNg" = ( -/obj/effect/decal/cleanable/dirt, +"oUg" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"oUS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"oUX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Dormitories EVA" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"oVq" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1entrance_v2" + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"oVA" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"oVR" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"hNW" = ( -/obj/structure/machinery/light, +/area/bigredv2/outside/engineering) +"oVS" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"hOx" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) -"hOS" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/collectable/tophat/super, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"hPS" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"hQO" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/n) -"hRy" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hSP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"hTO" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" +"oVV" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/filtration_plant) +"oWg" = ( +/turf/open/floor/whiteblue/northeast, +/area/bigredv2/outside/medical) +"oWD" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/structure/cable{ + icon_state = "11-6" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"hUh" = ( -/obj/item/spacecash/c1, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hVP" = ( +"oWE" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"oWG" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/e) +"oWU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"oYu" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"oYz" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"oYM" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_cave_cas) +"oZi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"oZw" = ( +/obj/item/tool/lighter/random, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"hWa" = ( +/obj/structure/surface/table, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"hWM" = ( -/obj/structure/machinery/filtration/console{ - pixel_y = 15 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"hYB" = ( -/obj/structure/platform{ - dir = 1 +/area/bigredv2/outside/engineering) +"oZx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"oZB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"oZF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform_decoration{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"oZP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/lighter/zippo, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"oZQ" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/bigredv2/outside/filtration_plant) +"pab" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"hYI" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"hZc" = ( -/obj/structure/platform/shiva{ +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"pai" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"hZl" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"pat" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"paX" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"pbj" = ( +/obj/item/tool/warning_cone{ + pixel_y = 19 }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"pbr" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_cave_cas) +"pbV" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"pbX" = ( +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"ian" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/door_control{ - id = "Cargonia"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"iaC" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"iaN" = ( -/obj/structure/largecrate/random/barrel/red, +"pbZ" = ( +/obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"iaS" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"pca" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"iaX" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/effect/landmark/corpsespawner/colonist/random/burst, -/turf/open/mars_cave/mars_cave_16, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"pcd" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) +"pcf" = ( +/obj/structure/sign/safety/manualopenclose{ + desc = "The now broken door access console for these podlocks. Seems like some poor bastard was frantically trying to slide their card due to the the card reader being scraped up. Poor bastards."; + icon = 'icons/obj/structures/machinery/monitors.dmi'; + icon_state = "auth_off"; + name = "Access console"; + pixel_y = -2 + }, +/turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) -"ibP" = ( -/turf/open/floor/plating, -/area/bigredv2/caves_research) -"ibV" = ( -/obj/structure/toilet{ +"pcw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/vomit, +/obj/structure/machinery/light/built{ dir = 1 }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"ibZ" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_sw) -"ice" = ( -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"icQ" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_sw) -"idn" = ( +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"pcF" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"idM" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"idT" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_lambda) -"ied" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/brown, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"iep" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"pcR" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_research) +"pdg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"pdj" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"pdn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"pdr" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"ieD" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/copper{ - pixel_y = 1 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"pdY" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/obj/item/stack/sheet/mineral/osmium{ - pixel_y = 6 +/turf/open/floor/darkblue2/east, +/area/bigredv2/outside/admin_building) +"pek" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_sw) +"per" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"pet" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"peW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"pgn" = ( +/obj/structure/surface/table, +/obj/item/device/multitool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"phb" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 }, -/obj/item/stack/sheet/mineral/platinum{ - pixel_y = 12 +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"phr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ifF" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"phR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 - }, -/obj/item/ammo_box/magazine/misc/flares/empty, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"igM" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"igU" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"phT" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"pic" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Cell" }, -/turf/open/mars_cave/mars_cave_16, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"pij" = ( +/turf/open/floor/almayer/w_y0/north, +/area/bigredv2/outside/admin_building) +"piy" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"ihW" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/eta) -"iig" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"iis" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/red, -/area/bigredv2/outside/marshal_office) -"ijU" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" - }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"ilH" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"ilO" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_20, +"piN" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"iml" = ( -/obj/effect/landmark/crap_item, +"pji" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) -"inx" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"ioA" = ( -/obj/item/tool/pickaxe{ - pixel_y = -7 +"pjk" = ( +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"pjq" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"pkr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/tool/pickaxe{ - pixel_y = 4 +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"pkC" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/obj/item/tool/pickaxe{ - pixel_y = -3 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"pkE" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"pkL" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/surface/rack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ioS" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"ipf" = ( -/obj/item/device/flashlight/lantern{ - pixel_x = -6 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"iph" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = 6 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"pkQ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/ne) +"plb" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/plating/warnplate/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"plm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"ipo" = ( +"plL" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/n) +"pmE" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; + dir = 1; health = 25000 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"iqF" = ( -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"irM" = ( -/obj/item/weapon/shield/riot, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"irN" = ( -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"irZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/red/southeast, -/area/bigredv2/outside/lambda_cave_cas) -"itL" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/white, -/area/bigredv2/outside/virology) -"iuu" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/lz1_north_cas) -"ivW" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/ne) -"iwG" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_virology) -"ixA" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"iyY" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/lz1_north_cas) -"izb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"izh" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"iAi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"pmS" = ( +/turf/open/mars, +/area/bigredv2/caves_north) +"pmZ" = ( +/obj/item/spacecash/c1, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"iAw" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/plating, +"pno" = ( +/turf/open/floor/carpet11_12/west, +/area/bigredv2/outside/bar) +"pnq" = ( +/obj/structure/pipes/vents/scrubber/on, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/xenobiology) -"iAy" = ( +"pnC" = ( +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/admin_building) +"pnW" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/hefa_cult_decals/d96, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iAF" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_sw) -"iAI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"pog" = ( +/obj/structure/platform{ + dir = 1 + }, /obj/structure/platform{ dir = 8 }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"iCu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +"ppc" = ( +/obj/item/paper/bigred/walls, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/w) -"iDJ" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ppi" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/transmitter/colony_net{ + dir = 4; + phone_category = "Eta Labs"; + phone_id = "Observation"; + pixel_x = -18 }, -/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"ppp" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"ppt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"ppu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"ppy" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ppE" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves_research) +"ppP" = ( +/obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"iDL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ppR" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe{ + pixel_y = -7 }, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"iDT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/tool/pickaxe{ + pixel_y = -3 + }, +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe{ + pixel_y = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2/north, -/area/bigredv2/outside/admin_building) -"iDW" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"iEj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"iEm" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"iFa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/bananapeel, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"iFz" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" +"ppY" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"pqe" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"pqQ" = ( +/obj/item/stack/sheet/plasteel, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"iGK" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_sw) -"iGY" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_north) -"iHe" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"prI" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"iJF" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 12 - }, -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_13, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"pse" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"psm" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"iKn" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"iLs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave/mars_dirt_4, +"pso" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) -"iLu" = ( -/obj/structure/girder, +"psB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations Bedroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"psS" = ( +/obj/structure/girder/displaced, /turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iNE" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/warehouse) -"iNR" = ( -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"iOR" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"iPE" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/area/bigredv2/outside/space_port) +"psT" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"iQw" = ( -/obj/item/ore, -/turf/open/gm/river, -/area/bigredv2/outside/filtration_plant) -"iQC" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"pth" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"iQG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_research) -"iRf" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"iRw" = ( -/obj/structure/closet/secure_closet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"iRG" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"iSz" = ( -/obj/structure/barricade/handrail{ +"ptD" = ( +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"ptL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"puF" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"pve" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"pvh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 1; - layer = 3.01; - pixel_y = 9 + name = "\improper Engine Reactor" }, -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) -"iTN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"pvj" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"pvG" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"pvI" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"pww" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"pxk" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"pxq" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/corpsespawner/miner, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 10 }, -/turf/open/floor/plating/warnplate/southwest, -/area/bigredv2/outside/telecomm/warehouse) -"iUe" = ( -/turf/open/floor/darkred2/southeast, -/area/bigredv2/caves/eta/research) -"iVd" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"pxL" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + name = "Xenbiology Lab APC"; + pixel_x = -30; + start_charge = 0 }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "lambda"; + name = "Lambda Lockdown"; + pixel_y = -25 }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"pxN" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 15 }, -/turf/open/mars, -/area/space) -"iVi" = ( -/obj/structure/fence, -/turf/open/mars, -/area/bigredv2/outside/se) -"iXp" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_cave_cas) -"iXs" = ( -/obj/structure/platform_decoration{ +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"pxR" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"pyD" = ( +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"pzC" = ( +/obj/structure/window/framed/solaris, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"pzP" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"pzV" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_lambda) +"pAe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Relaxation Room" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"iXx" = ( -/turf/open/mars_cave, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"pAx" = ( +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"pAF" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) -"iXN" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_dirt_6, +"pAL" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"iYN" = ( -/obj/structure/closet/secure_closet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/redfull/northwest, +"pAX" = ( +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"pBA" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz1_north_cas) +"pBJ" = ( +/obj/item/tool/weldingtool/experimental, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"pBV" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"pCi" = ( +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"pDe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"pDF" = ( +/turf/open/floor/darkyellow2/north, /area/bigredv2/caves/eta/research) -"iYR" = ( -/obj/effect/decal/cleanable/dirt, +"pDM" = ( +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"pDO" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"pEl" = ( +/turf/open/floor/rampbottom, +/area/bigredv2/outside/chapel) +"pEr" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"pEJ" = ( +/obj/item/device/taperecorder, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"pEU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/eta/research) +"pEW" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/space_port_lz2) +"pFe" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/chapel) +"pFl" = ( +/obj/structure/barricade/wooden, /turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"iZc" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/area/bigredv2/outside/n) +"pFo" = ( +/obj/structure/xenoautopsy/tank/alien, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"iZA" = ( -/obj/structure/surface/rack, -/turf/open/floor, -/area/bigredv2/caves) -"jay" = ( +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) +"pFu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"pFz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"jbU" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"pFH" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Virology Lab" }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"jcR" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"pFL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/lambda/xenobiology) +"pFU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"pGd" = ( +/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"pGG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) -"jdj" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "crashlanding-offices" +"pGN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"jdQ" = ( -/obj/structure/prop/dam/truck/mining{ - desc = "A crawler, imported from the Alpha Centauri colonies."; +/turf/open/floor/bluegrid/damaged3, +/area/bigredv2/caves/lambda/research) +"pGZ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; dir = 1; - icon_state = "crawler_crate_alt"; - name = "crawler" + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/s) -"jeO" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/n) -"jfr" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/se) -"jgw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"pHd" = ( +/obj/item/tool/warning_cone{ + pixel_y = 17 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"pHp" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/caves_north) +"pHy" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/e) +"pIC" = ( +/turf/open/floor/warnwhite/west, +/area/bigredv2/caves/lambda/xenobiology) +"pID" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"pIX" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"jgW" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_lambda) -"jhj" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 +/area/bigredv2/caves/eta/research) +"pJg" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"pJl" = ( +/turf/open/floor/warnwhite/north, +/area/bigredv2/outside/virology) +"pJq" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/ne) +"pJw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jhM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/bigred/witness, -/turf/open/floor/plating/platingdmg3/west, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"jiS" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +"pJR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"jkn" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = -7 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"pJW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = 6 +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"pKg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/obj/item/tool/lighter/zippo{ - pixel_x = -1; - pixel_y = 14 +/obj/item/clipboard, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"pKm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jkO" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"jlg" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/floor/plating, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"pKA" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"jlS" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/space_port_lz2) -"jmD" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/ne) -"jna" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/darkred2, +"pLc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"pLT" = ( +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) -"jnR" = ( -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/caves/eta/research) -"jnV" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" +"pLV" = ( +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"pNk" = ( +/obj/structure/prop/dam/crane, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"pOo" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"pPn" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"pPZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "2-9" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"pQh" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"jph" = ( +"pQv" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/caves) +"pQA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Clinic" }, -/turf/open/floor, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"pQC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) -"jpT" = ( +"pQE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "11-1" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"pQM" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/outside/lz1_telecomm_cas) +"pRP" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm/n_cave) +"pSf" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"pSj" = ( +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"pSH" = ( /obj/structure/surface/table, +/obj/structure/machinery/light, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"pSI" = ( +/obj/structure/machinery/light, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"pTC" = ( +/obj/structure/machinery/disposal, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"jrA" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 + dir = 8 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"jrD" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"jrN" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"jsL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"pTK" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"pUf" = ( +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/weapon/gun/pistol/b92fs{ + pixel_x = 13; + pixel_y = -7 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg2/west, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"jtL" = ( -/turf/open/mars_cave/mars_cave_7, +"pUi" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"juo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/podhatch/northwest, -/area/bigredv2/caves/lambda/research) -"juZ" = ( -/obj/structure/machinery/light{ - dir = 1 +"pUj" = ( +/obj/structure/fence, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"pUp" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/ne) +"pUq" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_sw) +"pUF" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_sw) +"pUR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lambda_cave_cas) -"jvW" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/caves_lambda) -"jwj" = ( -/obj/structure/platform/shiva{ +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"pVG" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/obj/item/disk, -/turf/open/floor/bluegrid/bcircuitoff, +/obj/effect/landmark/crap_item, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"pVL" = ( +/turf/open/floor/darkpurple2/northeast, /area/bigredv2/caves/lambda/research) -"jxA" = ( -/obj/structure/barricade/handrail, +"pVX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"pWb" = ( +/obj/structure/machinery/door_control{ + id = "Office Complex 1"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"pWs" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, /turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) -"jxS" = ( -/obj/structure/machinery/light{ +"pWG" = ( +/obj/structure/filingcabinet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"pWW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"pXa" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"pXd" = ( +/obj/structure/machinery/access_button/airlock_exterior{ + master_tag = "viro_controller"; + pixel_y = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"pXK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"pXQ" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"jzD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"jAm" = ( -/obj/structure/coatrack{ - pixel_x = -8; - pixel_y = 16 +"pXW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/item/clothing/shoes/black{ - pixel_y = -7 +/turf/open/floor/whiteyellowfull, +/area/bigredv2/caves/lambda/xenobiology) +"pYe" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"pYz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"pYU" = ( +/obj/effect/landmark/crap_item, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"jAo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) -"jAJ" = ( -/turf/open/floor/podhatchfloor, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"pYV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"jAN" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave/mars_cave_2, +"pYW" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"jAR" = ( -/obj/structure/bookcase/manuals/engineering, +"pZl" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/cheesie, +/obj/item/trash/pistachios, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"jAX" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_lambda) -"jBq" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"jCg" = ( -/obj/effect/spawner/random/attachment, +/area/bigredv2/outside/bar) +"pZy" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jCq" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/obj/structure/sign/safety/laser{ + pixel_y = 32 }, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"pZN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/weapon/baton/loaded, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jCY" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_virology) -"jDo" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"jDy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 }, -/obj/structure/cable{ - icon_state = "11-2" +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"jDT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"jEx" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"jGd" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"pZR" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"qac" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"jGn" = ( -/obj/structure/machinery/door_control{ - id = "garage"; - name = "Garage Shutters"; - pixel_x = 26; - range = 500 +/area/bigredv2/caves_sw) +"qah" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/item/trash/kepler, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"qai" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"jGQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"jGT" = ( +/area/bigredv2/caves/eta/research) +"qaj" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"qaR" = ( +/obj/vehicle/powerloader/ft, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"qbf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"jHS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"qbt" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"jIQ" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/lz1_north_cas) -"jJB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"jJH" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"jJO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_north) -"jKp" = ( -/obj/structure/machinery/light{ +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/research) +"qbJ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"qbQ" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/red/north, -/area/bigredv2/outside/lambda_cave_cas) -"jKI" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 - }, -/obj/structure/platform_decoration/shiva, -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qbS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Dormitories" }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"jMm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"qbW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"jMn" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"qbZ" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/lz2_cave) +"qcz" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"jNE" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 13 +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"qcE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"jNN" = ( -/obj/structure/bed/chair/wood/normal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, +/turf/open/floor/carpet, /area/bigredv2/outside/library) -"jOc" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "eta"; - name = "Eta Lockdown" +"qcT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Medical Clinic Power Station" }, /turf/open/floor/delivery, -/area/bigredv2/outside/lz2_south_cas) -"jOj" = ( +/area/bigredv2/outside/medical) +"qdb" = ( +/obj/structure/foamed_metal, +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"qdl" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/machinery/door/window{ + layer = 4 + }, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"qdr" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"qdD" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/tool/surgery/hemostat, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"jOS" = ( /obj/structure/surface/rack, -/obj/item/tool/pickaxe/plasmacutter{ - pixel_y = 5 +/obj/item/tool/pickaxe/drill{ + pixel_y = 8 }, -/obj/item/tool/pickaxe/plasmacutter{ - pixel_y = -5 +/obj/item/tool/pickaxe/drill{ + pixel_y = -8 }, -/obj/item/tool/pickaxe/plasmacutter, +/obj/item/tool/pickaxe/drill, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"jPm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1; - pixel_y = 20 +"qdZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 32 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"qed" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/floor4, +/area/bigredv2/outside/marshal_office) +"qet" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"qex" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) +"qeH" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"qeL" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"qfz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"qfA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"qfE" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"qfG" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"qfX" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/flask/detflask, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"qge" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/lambda/xenobiology) +"qgx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic Treatment" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"qgD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qhk" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 9; + pixel_y = -2 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"jPQ" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/ne) -"jPV" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; pixel_y = 5 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"qia" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"qib" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplecorner, +/area/bigredv2/caves/lambda/research) +"qid" = ( +/obj/structure/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"qif" = ( +/obj/structure/surface/table, +/obj/item/toy/sword, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qih" = ( +/obj/item/weapon/gun/pistol/b92fs{ + pixel_x = 13; + pixel_y = -7 }, -/obj/effect/spawner/gibspawner/human, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"jPX" = ( -/obj/item/ore/diamond{ - pixel_x = 8; - pixel_y = -11 +"qiT" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"qjp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qjq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/storage/firstaid/fire, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"qju" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/caves/eta/research) +"qjA" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jQS" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"jRi" = ( -/obj/item/ammo_magazine/smg/bizon{ - pixel_x = 5; - pixel_y = -5 +"qjD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Break Room" }, -/obj/item/weapon/gun/smg/bizon{ - pixel_x = 1; - pixel_y = 11 +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"qjJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/ammo_magazine/smg/bizon{ - pixel_x = 11; - pixel_y = -3 +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"qjO" = ( +/obj/structure/prop/almayer/computers/mapping_computer{ + desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; + name = "\improper Teleporter Targeting Computer" }, -/obj/item/ammo_magazine/smg/bizon, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/greengrid, +/area/space) +"qko" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"qkB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Eta Lab Dormitories" }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"qkG" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"qlx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"qlK" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"qmc" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/research) +"qmm" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"jRn" = ( -/obj/structure/machinery/computer3/server, +"qmW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"qng" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, /turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"jRH" = ( +/area/bigredv2/outside/engineering) +"qni" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/whiteblue/northeast, +/obj/item/storage/firstaid/toxin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"jSe" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_north) -"jTa" = ( -/obj/structure/machinery/camera/autoname, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/turf/open/floor/red/northeast, -/area/bigredv2/outside/marshal_office) -"jTk" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"jUc" = ( +"qnx" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"jUd" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper General Store Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"jUJ" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/obj/structure/window{ +/obj/structure/machinery/computer/objective, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"qnO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"qnX" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"qnZ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"qoe" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"qos" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qoy" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/structure/machinery/door_control{ - id = "Library"; - name = "Storm Shutters" +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"qoG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"jUM" = ( +/turf/open/floor/dark, +/area/bigredv2/landing/console) +"qoL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"qpm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"qps" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"qpE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"qpF" = ( /obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"jUW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 4; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +"qpP" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 2; + pixel_y = 17 }, -/obj/structure/cable{ - icon_state = "2-5" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"qqn" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves/mining) -"jUY" = ( -/turf/open/mars_cave, +"qqu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"qqv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"qqJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"qrs" = ( +/obj/item/explosive/grenade/baton, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_research) +"qrD" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"qrZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"qsd" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"qsn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"qsA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"qsE" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigred/ground/garage_workshop) +"qsR" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"jVr" = ( +"qtd" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/radio, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"qte" = ( +/obj/structure/surface/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/storage/box/beakers, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"qth" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"qtk" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qtU" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"qul" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"qux" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, -/turf/open/mars_cave/mars_cave_9, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"jVN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"quz" = ( +/obj/structure/machinery/r_n_d/bioprinter, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/caves/eta/research) +"quN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"qvh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"qvn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"qvt" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"qvv" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"qwA" = ( /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jVW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" +/area/bigredv2/outside/filtration_plant) +"qwR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/research_and_development, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"qxw" = ( +/obj/item/clothing/suit/storage/labcoat/science, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"qxT" = ( +/obj/structure/closet/l3closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/general_offices) +"qxZ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"qyl" = ( +/obj/structure/machinery/botany, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"qyu" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/w) +"qyx" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/item/stack/sheet/wood{ - pixel_y = -8 +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"qyB" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"qyK" = ( +/obj/structure/bed, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"qyN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jWj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"jWA" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"jWF" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 1; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"qzs" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"qzF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/outside/space_port) +"qzQ" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_se) +"qzT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"jWR" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"qzW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 + icon_state = "SE-in" }, -/turf/open/floor/red/northwest, +/turf/open/floor/whitegreencorner, +/area/bigredv2/caves/lambda/virology) +"qAm" = ( +/obj/structure/closet/jcloset, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"qAK" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"qBm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) -"jXf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"qBv" = ( +/obj/structure/machinery/light, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"qBA" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"qBC" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"qBF" = ( +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"jXJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"jXP" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"jXX" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves_sw) -"jYD" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 +"qCl" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"jYF" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"jYS" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"jZp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) +"qDa" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper General Store" }, /turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"jZy" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/area/bigredv2/outside/general_store) +"qDq" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"jZM" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"qDT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -8 - }, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"kcx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"kcH" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/sw) -"kcZ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/filtration_cave_cas) -"kdf" = ( -/obj/item/tool/warning_cone{ - pixel_y = 17 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"kdh" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/sw) -"kdp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"qDU" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"qEv" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"qEw" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"qEH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Private Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"qEP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_lambda) +"qES" = ( +/turf/open/floor/almayer/w_y1/north, +/area/bigredv2/outside/admin_building) +"qEV" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" + name = "\improper Lambda Lab Administration Office" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"kdr" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"keg" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/lz2_south_cas) -"kek" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"qFc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"key" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) -"kfk" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"kfx" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/n) -"kfY" = ( +"qFd" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"qFo" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"kgn" = ( -/obj/item/paper/bigred/crazy, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"qFZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"qGf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kgw" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz2_west_cas) -"kgx" = ( +"qGi" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"qGn" = ( +/obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) -"khl" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/computer3frame/wallcomp, -/obj/structure/cable{ - icon_state = "11-2" +"qGT" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qHb" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 9 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"khx" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 +"qHm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/weapon/twohanded/spear{ - pixel_x = -4; - pixel_y = 3 +/obj/structure/machinery/door_control{ + id = "Operations"; + name = "Storm Shutters"; + pixel_y = -32 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"khB" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed" +/obj/effect/landmark/good_item, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"qHy" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"qHA" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/door_control{ + id = "Spaceport"; + name = "Storm Shutters"; + pixel_x = 32 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_lambda) -"khK" = ( +/obj/item/tool/pen, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"qHN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"khP" = ( -/obj/structure/platform{ +/area/bigredv2/outside/telecomm/n_cave) +"qHZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"qIm" = ( +/obj/structure/machinery/light/double, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"qIC" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"qIJ" = ( +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"qJn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"khR" = ( -/obj/structure/machinery/floodlight, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"kjr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/cable_coil/random, -/obj/effect/spawner/random/powercell{ - pixel_x = 6; - pixel_y = 10 +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"qJt" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/ne) +"qJx" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/spawner/random/attachment, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kjH" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"qJC" = ( /obj/structure/surface/table, -/obj/item/stack/sheet/glass{ - amount = 30 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"kjT" = ( -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"kka" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"qJM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"qJT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering) -"kli" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"klp" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Large Cables"; - pixel_y = 13 +/obj/structure/machinery/biogenerator, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"qKo" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"kmb" = ( +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"qKq" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; - dir = 4; + dir = 1; icon = 'icons/obj/pipes/pipes.dmi'; icon_state = "intact"; name = "Pipe" }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"kmm" = ( -/turf/open/floor/delivery, +"qKs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"kmx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/outside/engineering) -"knN" = ( +"qKx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) -"kok" = ( +"qKP" = ( +/obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"kpd" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/ne) -"kqO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"kqS" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"qLo" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 3 + }, /turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"kqV" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 5; - pixel_y = 11 +/area/bigredv2/outside/library) +"qLQ" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"qMt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"krx" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/lz2_south_cas) -"krW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/writing, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"ksO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"ktE" = ( -/obj/item/tool/wrench{ - pixel_x = -7; - pixel_y = -14 +/area/bigredv2/outside/admin_building) +"qMw" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"qMx" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4 +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"qMC" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"qME" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"ktN" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/filtration_plant) -"ktY" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/darkyellow2/north, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"kuu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"kuw" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"kvp" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"kvB" = ( -/obj/item/device/flashlight, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kwq" = ( +"qMG" = ( +/obj/structure/bed/chair, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"qMQ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"qNr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"kwQ" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/se) -"kxi" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"kxr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/landmark/nightmare{ - insert_tag = "dorms_party" +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"qNP" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor, +/area/bigred/ground/garage_workshop) +"qOh" = ( +/obj/structure/machinery/optable, +/turf/open/floor/whiteblue/east, +/area/bigredv2/outside/medical) +"qOp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Storage" + }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) -"kyz" = ( -/obj/structure/transmitter/colony_net{ - dir = 4; - phone_category = "Eta Labs"; - phone_id = "Observation"; - pixel_x = -18 +"qOs" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"qPd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"kzF" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/ne) -"kAj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Office Complex Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"qPp" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"qPw" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Director's Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"qPT" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/eta) +"qQi" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"kAs" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"qQA" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/nw) +"qRz" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"qRB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"qRQ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/xenobiology) +"qSd" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"qSe" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"kBn" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves) -"kBB" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_lambda) -"kBE" = ( -/obj/structure/largecrate/supply/supplies/water, +/area/bigredv2/outside/eta) +"qSi" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qSj" = ( +/obj/structure/cargo_container/hd/mid/alt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"kCe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kCR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"kDs" = ( +"qSl" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_y = 17 +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/jellysandwich/cherry, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"kFe" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/asteroidwarning/northeast, -/area/bigred/ground/garage_workshop) -"kGm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"qSx" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"qSD" = ( +/obj/structure/machinery/light, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) -"kGw" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"kHK" = ( +"qTf" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"kIv" = ( -/obj/structure/curtain/red, -/obj/item/prop/alien/hugger, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"kIF" = ( -/obj/structure/bed/chair/comfy/orange{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"qTh" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"qTk" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz2_south_cas) +"qUx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"qUL" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"kIW" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/se) -"kKx" = ( +/obj/structure/cable, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/general_air_control/large_tank_control, +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qVi" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"qVq" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"qVD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"qVI" = ( +/obj/structure/showcase, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"qVS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"kKB" = ( -/turf/open/floor/darkred2, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"kMk" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"kMs" = ( +"qWJ" = ( /obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; - dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" - }, -/obj/structure/cable{ - icon_state = "1-9" - }, -/obj/structure/cable{ - icon_state = "1-4" + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, /obj/structure/cable{ - icon_state = "4-5" + icon_state = "2-5" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kMJ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; +"qWQ" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/nw) +"qWX" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"qXp" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"qXq" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/item/phone, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"qXA" = ( +/obj/structure/noticeboard{ dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" + pixel_y = -27 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kNc" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"kNK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"qXG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/obj/structure/machinery/light/small, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"qXR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"kOv" = ( -/obj/structure/largecrate/random, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"kPu" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/obj/structure/pipes/valve/open, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kPP" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Control Module"; - pixel_y = 13 +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"qXW" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/eta) +"qYk" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"kQc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave, -/area/bigredv2/caves_east) -"kRy" = ( -/obj/structure/machinery/power/apc{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"qYm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"qYH" = ( +/obj/structure/platform/kutjevo/rock{ dir = 1 }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"kRK" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"kSm" = ( -/obj/item/storage/belt/grenade, -/obj/structure/closet/crate, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/mars/mars_dirt_9, +/area/space) +"qYX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"qZc" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kSt" = ( -/obj/structure/cable{ - icon_state = "11-2" +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"qZk" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"qZn" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"qZp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kSH" = ( -/obj/structure/ore_box, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"kSL" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"kTs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/filtration_cave_cas) -"kUW" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/red/northwest, +/area/bigredv2/outside/marshal_office) +"qZF" = ( +/obj/structure/machinery/centrifuge, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) +"rac" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"rah" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"ral" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) -"kVR" = ( +"rar" = ( +/obj/item/clothing/glasses/meson, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"kVS" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"kVT" = ( -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"kVY" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold/small_stack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kWV" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_se) -"kWW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/lz2_cave) -"kXV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/north, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) -"kZG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/bible/hefa, +"raS" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"rbd" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/ne) +"rbm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"rbs" = ( +/obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, +/area/bigredv2/outside/lambda_cave_cas) +"rbC" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/space_port_lz2) +"rbJ" = ( +/obj/item/device/flashlight, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kZI" = ( -/obj/structure/machinery/light/small{ +"rca" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/compressor{ dir = 1 }, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/caves_lambda) -"laj" = ( -/obj/structure/tunnel{ - id = "hole5" - }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"rcb" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) -"lbh" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/n) -"lbZ" = ( -/obj/item/frame/rack, +"rcf" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/tool/pickaxe{ - pixel_y = -7 +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"rcj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" }, -/obj/item/tool/pickaxe{ - pixel_y = -3 +/turf/open/floor/delivery, +/area/bigredv2/outside/chapel) +"rcK" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"rcX" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/item/tool/pickaxe, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"rdc" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/c) +"rdg" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) +"rdB" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"lck" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"lcu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/ashtray/bronze{ - pixel_x = -7 - }, +"rdP" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"rdR" = ( /turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) +"rdS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"rdY" = ( +/obj/structure/largecrate, +/turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) -"ldh" = ( -/obj/item/device/flashlight/on{ - pixel_x = 8 +"reL" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "vault_v2" }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"ldD" = ( -/obj/item/tool/warning_cone{ - pixel_x = 16; - pixel_y = 14 +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"reN" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/lambda/xenobiology) +"reS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/mars, -/area/bigredv2/outside/n) -"lhh" = ( -/obj/structure/fence, -/obj/structure/disposalpipe/segment, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"lhE" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Control Module"; - pixel_y = 15 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"reV" = ( +/obj/structure/sign/safety/biolab{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/stack/cable_coil/cut, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"rft" = ( +/obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"llS" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" +/area/bigredv2/outside/n) +"rgv" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"rgz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/prop/almayer/missile_tube{ - color = "grey"; - desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; - icon_state = "missiletubesouth"; - name = "\improper massive vent"; - pixel_x = -15 +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"rgV" = ( +/obj/item/ammo_magazine/smg/bizon{ + pixel_x = 5; + pixel_y = -5 }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"lmg" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/item/weapon/gun/smg/bizon{ + pixel_x = 1; + pixel_y = 11 }, -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"lmi" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2/north, +/obj/item/ammo_magazine/smg/bizon{ + pixel_x = 11; + pixel_y = -3 + }, +/obj/item/ammo_magazine/smg/bizon, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rih" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"lms" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/eta) -"lmO" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper{ - pixel_x = -7 +"riu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Telecommunications" }, -/obj/item/prop/magazine/book/theartofwar{ - pixel_x = 11 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm) +"riz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"riH" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"riN" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/item/tool/pen{ - pixel_x = -7 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"riU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"rjh" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_lambda) +"rjm" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"lom" = ( +/area/bigredv2/outside/bar) +"rjw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/filtration_cave_cas) +"rjx" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood{ dir = 8; @@ -24452,3416 +23062,3445 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave/mars_cave_3, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"lqo" = ( -/obj/item/tool/lighter/random, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table, +"rjy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/restraint/handcuffs, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"rjz" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"lqp" = ( -/obj/structure/platform{ - dir = 1 - }, +/area/bigredv2/outside/filtration_plant) +"rjA" = ( +/obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"lrs" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"lrH" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"lrW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 1; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"rjF" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 19 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"lsq" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_7, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"lst" = ( -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/research) -"ltu" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/filtration_plant) -"ltK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"rjZ" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/lambda/xenobiology) +"rkr" = ( +/obj/structure/toilet{ dir = 4 }, -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_y = -32 +/obj/structure/machinery/door/window, +/obj/structure/window/reinforced, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"rkv" = ( +/obj/structure/machinery/mill, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) +"rkH" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_research) +"rkK" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"rmg" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -10; + pixel_y = 12 }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"luA" = ( -/obj/item/tool/crowbar/red, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lvh" = ( -/obj/item/weapon/gun/rifle/m4ra, -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +"rmk" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"rml" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"rmn" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_research) -"lvy" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"rmu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/se) -"lwT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"lwX" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"rmH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"lxQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/bigred/union, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lym" = ( -/obj/structure/bed/chair{ +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/eta/research) +"rmS" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"rnc" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_research) +"rnq" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"rns" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"rnG" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_research) +"rnJ" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 }, -/obj/structure/barricade/handrail{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"lyx" = ( -/obj/structure/surface/table, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"rnR" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"lzI" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves) -"lAC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/ne) -"lAF" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"lAR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "lambda-interior"; - name = "Lambda Checkpoint Interior"; - pixel_x = null +/area/bigredv2/outside/admin_building) +"rnW" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"rph" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/tofu{ + pixel_x = -1; + pixel_y = 14 }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"lBc" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/c) -"lBe" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"lBx" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Machine room" +/obj/item/reagent_container/food/snacks/tofu{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/tofu, +/obj/structure/cable{ + icon_state = "5-9" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lCt" = ( -/obj/structure/machinery/power/reactor/colony{ - name = "Reactor Turbine" - }, -/turf/open/floor/delivery, +"rpG" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"rpH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"lCR" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 9; - pixel_y = 17 - }, -/obj/item/device/radio{ - pixel_x = -5; - pixel_y = 10 +"rpY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/item/clothing/mask/cigarette/weed{ - pixel_y = -3 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"rqb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"lDa" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"lDp" = ( -/obj/structure/closet/secure_closet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/redfull/northwest, +/turf/open/floor/darkyellow2, /area/bigredv2/caves/eta/research) -"lEi" = ( +"rqQ" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"rqY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"rqZ" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"rrp" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"lEw" = ( -/obj/item/tool/pickaxe{ - pixel_y = -3 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lFR" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "viro_open" +/turf/open/floor/carpet7_3/west, +/area/bigredv2/outside/admin_building) +"rsd" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/objective, +/obj/item/clothing/glasses/science, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/research) +"rsk" = ( +/obj/structure/cryofeed/right{ + name = "\improper coolant feed" }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"lGt" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"lIe" = ( -/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"rsq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"rsz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lID" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"rtd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"lIL" = ( -/obj/structure/sign/safety/fire_haz, -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"lIS" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/ne) -"lKw" = ( -/obj/item/paper/bigred/walls, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"rtk" = ( +/obj/structure/surface/table, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"rtm" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/plating/platingdmg3/west, +/obj/item/weapon/baseballbat, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"lLe" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lambda_cave_cas) -"lLf" = ( -/obj/structure/largecrate/random/case, +"rtn" = ( +/turf/open/floor/whiteblue/northwest, +/area/bigredv2/outside/medical) +"rtv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lantern, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lMw" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -9 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"lMC" = ( -/obj/structure/machinery/light{ - dir = 4 +"rtH" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/asteroidwarning/east, -/area/bigred/ground/garage_workshop) -"lNp" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"rtU" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"rug" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen_v/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"run" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"ruz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Holding Cell" }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"ruB" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"ruE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"lOL" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/n) -"lOY" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "etatunnel_open" +/turf/open/floor/darkredcorners2, +/area/bigredv2/outside/admin_building) +"ruV" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Command Complex" }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"lPg" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/n) -"lPh" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = 3; - pixel_y = 12 +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"rvk" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_y = 8 }, -/turf/open/mars_cave/mars_cave_15, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"lPL" = ( -/obj/structure/platform/shiva{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"lQN" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz2_south_cas) -"lQU" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/virology) -"lRC" = ( +"rvP" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"rvX" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/e) +"rwz" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"lSb" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/ne) -"lSm" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "small" - }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lSH" = ( -/obj/structure/largecrate/guns/merc{ - icon_state = "case_double"; - name = "supply crate" +"rwQ" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"rxf" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lSS" = ( -/obj/item/tool/warning_cone, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/filtration_cave_cas) -"lTi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"rxA" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"lTC" = ( -/obj/structure/machinery/light{ +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"rxU" = ( +/obj/structure/bed, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"rxV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/power/apc{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"rxX" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"lTM" = ( -/obj/item/folder/yellow, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"lTV" = ( -/obj/structure/surface/table, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"lUa" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/n) -"lUd" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"lUq" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_se) -"lUM" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"ryi" = ( +/turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/xenobiology) -"lVr" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"rys" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"lWA" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/lz2_south_cas) -"lWE" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"lYi" = ( -/obj/structure/ore_box, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"lYC" = ( +/area/bigredv2/outside/chapel) +"ryH" = ( +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"rzJ" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) +"rzO" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"lYH" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"lYZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"lZV" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves/mining) -"maB" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "viro-rock_open" +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 24 }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"rzT" = ( +/obj/structure/sign/nosmoking_1, /turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"maD" = ( -/turf/open/floor/almayer/test_floor4, +/area/bigredv2/caves/mining) +"rzW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"maF" = ( -/obj/item/frame/rack, -/obj/effect/landmark/good_item, +"rAh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"maH" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/clothing/gloves/latex, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rAu" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"rAC" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"mbz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"rAL" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Bar Maintenance" +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"rBa" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/n) +"rBk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"rBC" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/oob) +"rBE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"rCa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"mda" = ( +/turf/open/floor/darkgreen2/east, +/area/bigredv2/caves/lambda/xenobiology) +"rCh" = ( /turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_lambda) -"meT" = ( -/turf/open/mars, -/area/bigredv2/outside/eta) -"mfw" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"mfG" = ( -/obj/structure/pipes/vents/pump/on, +/area/bigredv2/outside/s) +"rCz" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"rDo" = ( +/obj/structure/bed, /turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"mfQ" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/virology) +"rDw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bar Backroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"rDA" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"rDX" = ( +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"mhF" = ( -/obj/structure/machinery/light{ - dir = 4 +"rEd" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/se) +"rEo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"rEx" = ( +/obj/item/reagent_container/pill/happy, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rEJ" = ( +/obj/structure/toilet{ + dir = 8 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"rEU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"rEY" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"mhG" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -3 +/area/bigredv2/outside/marshal_office) +"rFd" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/obj/structure/sign/safety/airlock{ - pixel_x = 11 +/obj/structure/cable{ + icon_state = "2-9" }, -/turf/closed/wall/solaris/reinforced/hull, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"mhV" = ( +"rFf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"mhZ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"mij" = ( -/obj/item/folder/yellow, -/obj/effect/landmark/crap_item, +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"rFr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rFu" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/ne) +"rGy" = ( +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"rGH" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"rGL" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz2_south_cas) +"rHa" = ( +/obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"miD" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/item/weapon/gun/revolver/cmb, +"rHb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"mji" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "\improper Engineering Workshop" - }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"mkt" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"mlV" = ( +/area/bigredv2/caves_sw) +"rHi" = ( /obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/device/healthanalyzer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"rHl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Cargo Bay Quartermaster" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"rHA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/river, +/area/bigredv2/outside/filtration_plant) +"rHF" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_virology) +"rHU" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/eta) +"rIl" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/oob) +"rIp" = ( +/obj/structure/machinery/botany/editor, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreen_v/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"rIs" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"mmg" = ( +/area/bigredv2/caves/lambda/research) +"rIE" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"rIY" = ( +/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_y = 11 +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"rJn" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"rJt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Oxygen Supply Console" + }, +/obj/structure/cable{ + icon_state = "11-2" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"mnv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"mnY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"moe" = ( +"rKe" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 5 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/bigredv2/outside/library) -"moE" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_research) -"mqf" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"rKr" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mqh" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/panelscorched, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"mqX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"mrH" = ( -/obj/structure/machinery/computer3/server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"mrS" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/obj/structure/cable, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"msf" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves/lambda/xenobiology) -"msq" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"rKs" = ( +/obj/item/stack/medical/splint{ + pixel_x = 4; + pixel_y = 5 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"msS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"mts" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"mtL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - pixel_x = 7; - pixel_y = 10 +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder{ + pixel_x = -9; + pixel_y = -14 }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"mtM" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/weapon/gun/smg/fp9000, -/obj/structure/machinery/light{ - dir = 1 +"rKv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"rKz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"mtS" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"muP" = ( -/turf/closed/wall/wood, -/area/bigredv2/caves_research) -"mxf" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/filtration_cave_cas) -"mya" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_east) -"myc" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 18; - pixel_y = 11 +/obj/item/trash/cheesie, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"rKB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = -5; - pixel_y = 4 +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"rKG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 10; +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"rLp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/virology) +"rMd" = ( +/obj/item/ore{ + pixel_x = 9; pixel_y = 2 }, -/turf/open/mars_cave/mars_cave_15, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"myY" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"mzV" = ( -/turf/open/mars, -/area/bigredv2/outside/filtration_plant) -"mAY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"mBc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/hatchet, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"mBo" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -7; - pixel_y = 9 +"rMf" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/plating, +/obj/item/stack/sheet/wood{ + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"mBI" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +"rMG" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor, /area/bigred/ground/garage_workshop) -"mDk" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"mDs" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_cave_cas) -"mDt" = ( -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"mDN" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/lz1_north_cas) -"mEC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) -"mEH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"rMO" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/sw) +"rMU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"mFT" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"mGq" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz1_north_cas) -"mHp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"mIc" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"mIr" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/filtration_plant) -"mIs" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/storage) +"rMV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"mIu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"rNc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/harpoon, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"mIZ" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/item/tank/air, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"mKi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"mKM" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 +"rNd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"rNi" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"rNn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) +"rNs" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "tcomms_open" }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"mMf" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/space_port_lz2) -"mNT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"mOc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +"rNK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1; - name = "\improper General Store Maintenance" + name = "\improper Engineering Workshop" }, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"mOW" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mOZ" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"mPC" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"mPF" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"mPK" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"mRi" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"mRD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor, -/area/bigredv2/caves) -"mSn" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"mSS" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"mST" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, +/area/bigred/ground/garage_workshop) +"rNS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"mUb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"mUy" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/eta/xenobiology) -"mWg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - name = "\improper Operations" +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"rOf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic CMO's Office" }, /turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"mWt" = ( -/obj/structure/prop/almayer/missile_tube{ - desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; - name = "\improper Massive mining drill"; - pixel_y = 13 - }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"mXw" = ( -/obj/item/storage/toolbox/mechanical, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"mYV" = ( -/obj/structure/machinery/power/apc{ +/area/bigredv2/outside/medical) +"rOt" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/sw) +"rPc" = ( +/obj/structure/noticeboard{ + desc = "A board for pinning important items upon."; dir = 1; - start_charge = 0 + name = "trophy board"; + pixel_y = 30 }, -/turf/open/floor/red/north, -/area/bigredv2/outside/lambda_cave_cas) -"mYW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +/obj/item/oldresearch/Chitin{ + anchored = 1; + pixel_y = 27 }, -/turf/open/mars_cave/mars_cave_13, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"rPq" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/lambda/virology) +"rPs" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"mZC" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_virology) -"nbc" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/se) -"nbi" = ( -/obj/effect/landmark/hunter_secondary, +"rPF" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/n) +"rPV" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"rPZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"nbu" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"ncv" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/area/bigredv2/outside/lz2_west_cas) +"rQs" = ( +/obj/structure/bed/sofa/south{ + desc = "An old rusty ladder"; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "ladder11"; + name = "Old Ladder" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"ncL" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/turf/open/floor/plating, +/area/bigredv2/oob) +"rQv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ndw" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"ndy" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"rRw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"neH" = ( -/turf/open/floor/asteroidwarning/northeast, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_cave_cas) -"nfY" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/caves_east) -"ngJ" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"nhF" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 +"rRX" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"niQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"rSg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Operations Armory" }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"njf" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz2_south_cas) -"nky" = ( -/obj/structure/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"nkE" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 8 +"rSh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/paper_bin/wy{ - pixel_x = -4; - pixel_y = 8 +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"rSw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"nkQ" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_se) -"nkW" = ( -/obj/item/ore/gold, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"rSQ" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"nkY" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_dirt_6, +"rTy" = ( +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"nlB" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/n) -"nlJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, +"rTE" = ( +/obj/structure/machinery/door_control{ + id = "Filtration Plant"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"nlW" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ +"rTO" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/s) +"rTS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/mars, -/area/space) -"nmU" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"nny" = ( -/turf/open/mars_cave/mars_dirt_7, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"rUa" = ( +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) -"nnz" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/n) -"nnA" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/window{ - dir = 8 +"rUf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Cargo Bay Offices" }, -/obj/structure/machinery/computer/emails{ - dir = 4 +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"rUn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"nnK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"nnU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"rUs" = ( /obj/structure/machinery/door_control{ - desc = "A remote control-switch for opening the engines blast doors."; - id = "rad_door"; - name = "Reactor Radiation Shielding control"; - pixel_x = 30; - req_access_txt = "7" + id = "safe_room"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 28; + req_access_txt = "106"; + specialfunctions = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"rUN" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/darkyellow2/northeast, +/turf/open/gm/river, /area/bigredv2/outside/engineering) -"npz" = ( -/obj/structure/surface/table, -/obj/item/spacecash/c100, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = 12 +"rVx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, +/obj/structure/surface/table/woodentable, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"rVM" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"nqr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"rVQ" = ( +/obj/structure/bed/stool, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"rWc" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"rWh" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"nra" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/sw) -"nrj" = ( +"rWt" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; pixel_y = 5 }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"nrw" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/filtration_cave_cas) -"nrA" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"ntX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"nub" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 +"rWB" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz2_south_cas) +"rWR" = ( +/obj/item/ore{ + pixel_x = -5; + pixel_y = 2 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"nug" = ( -/obj/structure/platform{ - dir = 1 +"rWS" = ( +/obj/structure/machinery/light, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"rXg" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"rXl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/obj/structure/platform{ - dir = 4 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"rYc" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"rYv" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/obj/structure/platform_decoration{ - dir = 9 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"rYL" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"rYS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"nuw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"rYV" = ( +/obj/structure/sign/safety/terminal{ + pixel_y = -32 }, -/turf/open/floor/dark, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) -"nuz" = ( +"rYY" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"nuQ" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"nvn" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - density = 0; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) -"nwB" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"nwS" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 +"rZf" = ( +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"rZn" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/w) +"rZr" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"rZv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"rZB" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"rZR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Eta Lab Storage Bay" }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"nxa" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"rZY" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"saE" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 12 }, -/turf/open/mars_cave/mars_cave_3, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"nzB" = ( -/obj/structure/machinery/computer/general_air_control{ - dir = 8; - pixel_y = 6 +"saF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"nzN" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Operating Theatre" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"saG" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"saY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"sba" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/eta/xenobiology) +"sbA" = ( +/obj/item/frame/rack, +/obj/effect/spawner/random/toolbox, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"nBb" = ( -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/weapon/gun/pistol/b92fs{ - pixel_x = 13; - pixel_y = -7 +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" }, -/turf/open/mars_cave/mars_dirt_6, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"nCp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"nCT" = ( -/obj/structure/sign/poster/ad, -/turf/closed/wall/solaris/reinforced, +"sbG" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"nCX" = ( -/obj/structure/closet/crate/miningcar/yellow{ - layer = 3 +"sbS" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_sw) +"sbT" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"sbZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating, +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"sch" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"nEl" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/lz2_south_cas) -"nEH" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/n) -"nEJ" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/eta) -"nEP" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/filtration_plant) -"nEV" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -10; - pixel_y = 12 +"scn" = ( +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 }, -/obj/effect/decal/cleanable/blood, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"nFp" = ( -/obj/structure/window, -/obj/structure/window{ +"scy" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/space_port_lz2) +"scH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/red/southwest, +/area/bigredv2/outside/marshal_office) +"scM" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"nFB" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"nFH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"nGm" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/filtration_cave_cas) -"nHQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"scO" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"scU" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"nIi" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"sdk" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/sw) +"sdp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Engine Reactor" + name = "\improper Atmospherics Condenser" }, /turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"nIS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/donut_box, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"nKL" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "An exchange valve"; - dir = 8; - icon = 'icons/obj/pipes/filter.dmi'; - icon_state = "map"; - name = "Automated Valve" +/area/bigredv2/outside/filtration_plant) +"sdA" = ( +/turf/open/floor/whitepurplecorner, +/area/bigredv2/caves/lambda/research) +"sdO" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/research) +"sdP" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"nLw" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/sw) -"nMB" = ( -/obj/structure/machinery/door_control{ - id = "workshop_br_g"; - name = "Workshop Garage Lockdown"; - pixel_x = 28 +"sdR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"sdT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"seg" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"seE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"sfn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/asteroidwarning/northeast, -/area/bigred/ground/garage_workshop) -"nMZ" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/obj/structure/cable, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nOe" = ( -/obj/structure/toilet{ - dir = 1 +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"sfE" = ( +/turf/open/floor/purple/southeast, +/area/bigredv2/caves/lambda/research) +"sfQ" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/e) +"sfS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"sgc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/purple/east, +/area/bigredv2/caves/lambda/research) +"sgJ" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_research) +"sgS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"shj" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"shm" = ( +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) -"nPz" = ( +"shr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"nQl" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"shu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"sie" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda"; + name = "Lambda Lockdown" }, -/obj/effect/decal/cleanable/blood/oil/streak{ - pixel_y = 4 +/turf/open/floor/delivery, +/area/bigredv2/caves_north) +"siE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"nRS" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/obj/structure/machinery/recharge_station, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"siZ" = ( +/obj/item/grown/log, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"sjc" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"nRT" = ( -/turf/open/floor/dark, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) -"nSP" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"nTF" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"nTG" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/lz2_south_cas) -"nUK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"nUV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_cave_cas) -"nVq" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"nVx" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"nWD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/burger, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nWG" = ( +"sjd" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"nXh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nXw" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"nXC" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_research) -"nYC" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nYV" = ( -/obj/item/tool/warning_cone, -/turf/open/mars, -/area/bigredv2/outside/s) -"nZd" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1cave_flank" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"nZB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/telecomm/n_cave) -"nZD" = ( -/obj/structure/platform_decoration{ +/area/bigredv2/outside/marshal_office) +"sjm" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"nZK" = ( -/obj/item/ore/diamond, -/obj/item/stack/sheet/mineral/diamond{ - pixel_x = 13; - pixel_y = -5 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"obf" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lambda-graveyard" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/se) -"obB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/stack/sheet/wood{ - pixel_y = -8 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"sjt" = ( +/obj/structure/machinery/door_control{ + id = "filtration"; + name = "Filtration Lockdown"; + pixel_x = 30; + throw_range = 15 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ocp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"ocA" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/library) -"ocG" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/storage/fancy/vials/random, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"ocR" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"sjG" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_north) +"sjH" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"sjL" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"sjV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"odw" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"oea" = ( +/area/bigredv2/outside/nw) +"ski" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_west_cas) +"skB" = ( +/obj/item/folder/yellow, /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"oes" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"ofn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_plant) -"ofu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ofJ" = ( -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "red"; - phone_id = "Security" - }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"ofX" = ( +/area/bigredv2/outside/engineering) +"skE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/s) -"ogt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Abandoned Mining Storage" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ohg" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"ohD" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_east) -"ohY" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"oji" = ( -/obj/structure/morgue{ - dir = 2 +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" }, -/turf/open/floor/whiteblue/north, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) -"ojD" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"okh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-2" +"slr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 7; + pixel_y = 14 }, -/obj/structure/cable{ - icon_state = "1-5" +/obj/structure/window{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-8" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"slV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"okt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/asteroidwarning, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"smh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"smk" = ( +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/space_port_lz2) -"ole" = ( -/turf/open/floor/almayer/w_y0/north, +"sms" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm/n_cave) +"smL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"smM" = ( +/turf/open/floor/darkred2/southwest, /area/bigredv2/outside/admin_building) -"olT" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"oma" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"omw" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"omG" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 +"smV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"omX" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = -3; - pixel_y = -5 +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/stack/cable_coil/cut{ - pixel_x = 9; - pixel_y = -8 +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"snq" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"snz" = ( +/obj/structure/bed/stool, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"snO" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"snQ" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"sod" = ( +/obj/structure/sign/double/barsign{ + pixel_y = 32 }, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"onh" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"onR" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"son" = ( +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"sou" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/broken, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"ooi" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/w) +"sow" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz2_south_cas) +"soz" = ( +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"soD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/platform_decoration/shiva, -/obj/item/stack/cable_coil, -/turf/open/floor/bluegrid/bcircuitoff, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"soI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/research) -"ooD" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_cave_cas) -"opz" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"opK" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"oqr" = ( -/obj/item/ore{ - pixel_x = -1 +"spw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"oqM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lambda_cave_cas) +"spI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"spQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"orT" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"orZ" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"otb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"oud" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ouh" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/marshal_office) +"sqB" = ( +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) -"ovq" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"ovB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_west_cas) -"ovQ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"ovZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"src" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/obj/structure/window{ + dir = 8 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 +/obj/structure/machinery/door_control{ + id = "Library"; + name = "Storm Shutters" }, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"owR" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"oxh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oxk" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"oxp" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_research) -"oye" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/filtration_cave_cas) -"ozf" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"srw" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"ozv" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"srA" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/space_port) +"ssf" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Hydroponics" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"ssE" = ( +/obj/structure/window/framed/solaris, /turf/open/floor/plating, -/area/bigredv2/caves_virology) -"ozO" = ( -/obj/structure/toilet{ +/area/bigredv2/caves) +"ssJ" = ( +/obj/structure/powerloader_wreckage/ft, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"ssV" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"stm" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"stC" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"stG" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"stI" = ( +/obj/structure/platform/shiva{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"ozQ" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/mars_cave/mars_cave_2, +/obj/structure/platform/shiva, +/obj/structure/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"sur" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_lambda) -"oAf" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_virology) -"oDB" = ( -/obj/structure/closet/l3closet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/general_offices) -"oDW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ +"suK" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"suP" = ( +/obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/darkred2/west, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/northeast, /area/bigredv2/outside/admin_building) -"oFj" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +"suS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"suU" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"suY" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"sva" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) -"oFx" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"oFY" = ( +/area/bigredv2/caves_se) +"svF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/item/prop/alien/hugger, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"oHn" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"oIc" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Chief Engineer's Office" }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"oIK" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"swt" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" }, -/obj/structure/platform_decoration{ - dir = 6 +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "coolant feed" }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"oJd" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2-4"; - name = "heavy duty power cable" +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + desc = "A big air filter."; + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "fuel_enhancer"; + layer = 5; + name = "Air filter"; + pixel_x = -3; + pixel_y = 1 }, -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oJv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 8 +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + desc = "Critical part of an HVAC system. Compresses refridgerant to send off to air cooling coils."; + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "cooling_system"; + layer = 4; + name = "\improper Air Condenser"; + pixel_x = -5; + pixel_y = 25 }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"oJO" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"swv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"sxa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"oKc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"oKy" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oMd" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"sxz" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"oMf" = ( -/obj/structure/fence, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"sxM" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz1_north_cas) +"sxW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"oNu" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/outside/lz2_west_cas) -"oOk" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"oOr" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oOw" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"syq" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"szj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/gm/river, -/area/bigredv2/outside/c) -"oPM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior"; - pixel_x = null +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"szv" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"oQz" = ( -/obj/structure/machinery/light/double{ +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"szD" = ( +/obj/structure/machinery/compressor{ dir = 1 }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"oQI" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_sw) -"oRs" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_north) -"oRK" = ( -/obj/structure/computer3frame/wallcomp, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oTf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"szU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/asteroidwarning/west, +/obj/structure/machinery/computer3/server, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"oTv" = ( -/obj/structure/largecrate/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oTL" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oTM" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; +"sAe" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/w) +"sAj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-4-8"; - name = "heavy duty power cable" + name = "\improper Marshal Office Prison Toilet" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"oUs" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"sAl" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz1_north_cas) +"sAm" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"oUY" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"sAH" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"sAS" = ( +/obj/item/toy/prize/fireripley{ + pixel_y = 19 }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"sAU" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz1_north_cas) +"sBp" = ( +/obj/item/trash/popcorn, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/virology) +"sBQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"oVq" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1entrance_v2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/mars, -/area/bigredv2/outside/nw) -"oWc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"sBW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"sCa" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/mauler, +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"oWe" = ( -/obj/structure/machinery/photocopier{ - density = 0; - pixel_y = 16 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"sCf" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/darkblue2/north, -/area/bigredv2/outside/admin_building) -"oWk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/lz2_cave) -"oWp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"oWC" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" +/obj/structure/cable{ + icon_state = "1-5" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"oXr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/eta) -"oXH" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 10; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +/obj/structure/cable{ + icon_state = "1-8" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"oZA" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Large Cables"; - pixel_y = 12 +"sCh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_id = "Xenobiology" }, -/turf/open/mars_cave/mars_cave_17, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"sCw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sCE" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"sCK" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/sw) +"sCR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"sCT" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"sCY" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"sDu" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"oZQ" = ( -/turf/closed/wall/r_wall/unmeltable, +"sDB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) -"pao" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Oxygen Supply Console" +"sDP" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/structure/computer3frame/wallcomp, /obj/structure/cable{ icon_state = "11-2" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"paz" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"pbr" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_cave_cas) -"pbs" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/living) -"pbK" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"pbX" = ( -/obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"pbZ" = ( -/obj/effect/decal/cleanable/blood/drip, +"sEd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"pcf" = ( -/obj/structure/sign/safety/manualopenclose{ - desc = "The now broken door access console for these podlocks. Seems like some poor bastard was frantically trying to slide their card due to the the card reader being scraped up. Poor bastards."; - icon = 'icons/obj/structures/machinery/monitors.dmi'; - icon_state = "auth_off"; - name = "Access console"; - pixel_y = -2 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"sEn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/caves/mining) -"pcA" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"pcF" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"pcI" = ( -/turf/open/mars/mars_dirt_10, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"sEs" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/caves/lambda/xenobiology) +"sEG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"sEI" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"pdG" = ( -/obj/item/prop/alien/hugger, +"sFR" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_research) +"sGg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"sGu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"sGL" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/pinpointer, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"pdW" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/virology) -"per" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"pgh" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/ne) -"pgi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/mars_cave/mars_cave_2, +"sHv" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"sHG" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"pgk" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"pgu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +"sHM" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"pgP" = ( -/obj/structure/surface/table, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"pgV" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"sHV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/loadingarea/north, +/area/bigredv2/caves/eta/storage) +"sHY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Prisoner Room" }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/caves_east) -"phi" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_research) -"phx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"sIh" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lambda-cave-extratunnel" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"plx" = ( -/obj/structure/machinery/power/apc{ +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"sIp" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"sIr" = ( +/obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"pmk" = ( /obj/structure/surface/table, -/obj/item/spacecash/c1, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"pmN" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"pmS" = ( -/turf/open/mars, -/area/bigredv2/caves_north) -"pmV" = ( +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"sIF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"sIT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) -"pnL" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/caves_north) -"pog" = ( -/obj/structure/platform{ - dir = 1 +"sJd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"sJN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/eta) +"sKa" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/platform{ +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"sKh" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_east) +"sKw" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/telecomm/n_cave) +"sKC" = ( +/obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"pow" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz1_north_cas) -"poF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"sKG" = ( +/obj/item/frame/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"sKK" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"sLg" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -32 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"ppp" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"pri" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"sLz" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"sLF" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"sLS" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"sMa" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"sMc" = ( +/obj/structure/sink{ dir = 8; - health = 25000 + pixel_x = -12; + pixel_y = 2 }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_north) -"prU" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"sMn" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable, -/obj/item/prop/magazine/book/bladerunner{ - pixel_y = 3 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 18 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"psE" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ptL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"puU" = ( -/obj/item/paper/bigred/witness, +/obj/item/weapon/gun/rifle/m41a/training, /turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"pvg" = ( +/area/bigredv2/caves/mining) +"sMT" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"sMX" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/virology) +"sNo" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"sOk" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"sOt" = ( +/obj/structure/machinery/smartfridge/secure/virology, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"sOx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"sPf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"pvj" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"pvk" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; - dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/lambda/xenobiology) +"sPE" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pvp" = ( -/turf/open/mars/mars_dirt_13, +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"sQm" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) -"pxp" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/platingdmg3/west, +"sQB" = ( +/obj/structure/bed/roller, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sRr" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"sRQ" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 32 + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"sSk" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"pxv" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; +"sSv" = ( +/obj/structure/machinery/alarm{ dir = 4; - health = 25000 + pixel_x = -30 }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"sTh" = ( +/obj/structure/surface/table, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"sTv" = ( +/obj/structure/showcase{ + icon_state = "broadcaster_send" }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"pxH" = ( -/obj/structure/platform_decoration{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"pyq" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 4 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"sTR" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_north) +"sUb" = ( +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/door/window{ + layer = 4 + }, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"sUe" = ( +/obj/structure/prop/almayer/missile_tube{ + desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; + name = "\improper Massive mining drill"; + pixel_y = 12 + }, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 }, +/obj/structure/cable, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"sUy" = ( +/obj/structure/closet/secure_closet/personal/cabinet, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"pyU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/area/bigredv2/outside/admin_building) +"sUI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"sUM" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"sUQ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"sUU" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"sVB" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"sVI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"pzC" = ( -/obj/structure/window/framed/solaris, -/obj/structure/curtain, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"pAX" = ( -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"pBv" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"sVO" = ( +/obj/structure/surface/table, +/obj/item/ore/diamond, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"sWe" = ( +/obj/item/weapon/broken_bottle, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"pBD" = ( -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"pCR" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sWg" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Lambda Lab Maintenance Storage" }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"sWp" = ( +/obj/structure/machinery/light/small/built{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"pDV" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pGP" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"sWr" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, /turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"pHb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"pIl" = ( -/obj/structure/morgue{ - dir = 2 +/area/bigredv2/outside/space_port) +"sWH" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/se) +"sXd" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "prison_breakout" }, -/turf/open/floor/whiteblue/northwest, -/area/bigredv2/outside/medical) -"pIN" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/marshal_office) +"sXi" = ( +/obj/structure/machinery/light/double, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"pJd" = ( +/area/bigredv2/caves_sw) +"sXl" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"sXq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = -32 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"sXC" = ( +/turf/open/floor/whitegreencorner, +/area/bigredv2/caves/lambda/xenobiology) +"sXF" = ( +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"sXK" = ( +/obj/item/shard, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"sXU" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/landmark/corpsespawner/colonist/random/burst, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"sYl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Lambda Checkpoint" - }, /turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"pJn" = ( +/area/bigredv2/outside/bar) +"sYp" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"sYC" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"sZg" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"sZp" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"sZN" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"sZR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"tac" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"tat" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/ne) -"pJt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/telecomm/n_cave) -"pJS" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -4; - pixel_y = 20 +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_west_cas) +"tax" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"taX" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "eta"; + name = "Eta Lockdown" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pJX" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"pKP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"pLj" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"pLH" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/ne) -"pMi" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/lz2_south_cas) +"tbe" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"tbo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/extinguisher, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"pMm" = ( -/turf/open/floor/asteroidwarning/west, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"tbs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"tbx" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/ne) +"tby" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"tbz" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "yellow"; + phone_id = "Filtration"; + pixel_y = 24 + }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) -"pMv" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/lz1_north_cas) -"pMB" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"pNa" = ( -/turf/open/floor/darkred2/southwest, -/area/bigredv2/caves/eta/research) -"pNU" = ( -/obj/structure/bed, -/obj/item/prop/alien/hugger, -/obj/item/bedsheet/brown{ - layer = 3.1 +"tcb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/meat, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tcp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"tcI" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"tcK" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/warning_stripes, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) +"tcP" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"tcY" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"tdl" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"pOg" = ( -/obj/structure/machinery/compressor{ - dir = 1 +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"pOt" = ( -/obj/structure/machinery/optable, -/turf/open/floor/whiteblue/east, -/area/bigredv2/outside/medical) -"pOL" = ( -/obj/structure/closet/crate/miningcar/yellow, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"pPh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"tdm" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c100, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 12 }, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/telecomm/warehouse) -"pPo" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tdw" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/eta/xenobiology) +"tdM" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"tdU" = ( +/obj/item/reagent_container/spray/cleaner, /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"tdW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"pQv" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/caves) -"pQE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "11-1" +/area/bigredv2/caves/eta/xenobiology) +"tdZ" = ( +/obj/item/tool/pickaxe/drill, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheeseburger{ + pixel_y = 22 }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"pQM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/outside/lz1_telecomm_cas) -"pRG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/darkyellow2/east, +"tes" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_west_cas) +"tey" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"pRP" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm/n_cave) -"pSa" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pSf" = ( -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"pTo" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"tfi" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/floor/asteroidwarning/east, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/telecomm/lz2_cave) -"pTA" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 +"tfn" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/obj/structure/platform_decoration/shiva{ - dir = 4 +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"pTH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"pUi" = ( -/obj/item/weapon/broken_bottle, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"tft" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_west_cas) +"tfu" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"tfx" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"tfz" = ( +/obj/effect/decal/cleanable/ash, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"pVp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"pVv" = ( +"tfR" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"tgf" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/compressor{ +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"tgl" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_east) +"tgm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/nw) +"thg" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"thq" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"thy" = ( +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/research) +"tie" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/panelscorched, /area/bigredv2/outside/engineering) -"pVP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"pWs" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 +"tir" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"tiH" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"pXm" = ( +"tjd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/camera/autoname, /turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"pXn" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 27 +/area/bigredv2/outside/office_complex) +"tjs" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/filtration_plant) +"tjv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"tjw" = ( +/turf/open/floor/whiteyellow, +/area/bigredv2/caves/lambda/xenobiology) +"tjy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "small" }, -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"pXu" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"pXB" = ( -/obj/effect/landmark/corpsespawner/ua_riot, +"tjC" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 + pixel_x = -9; + pixel_y = 13 }, /obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 + pixel_x = -1; + pixel_y = 5 }, /obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/obj/item/weapon/gun/rifle/m41a/training, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"pYt" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves_sw) -"pYE" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"pZe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pZu" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore{ - pixel_y = 5 + icon_state = "gib6" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qaK" = ( -/obj/structure/largecrate, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"qaR" = ( -/obj/vehicle/powerloader/ft, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"qby" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/lz2_cave) -"qbG" = ( +"tjS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"qcE" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"tjV" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_research) +"tjZ" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"tkh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"tkE" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"qcQ" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/space_port_lz2) -"qeK" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"tkJ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"qeX" = ( -/obj/structure/largecrate, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"tkP" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"tkQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"qeZ" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"tkV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"tln" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/curtain/red, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"tlt" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"qgY" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_sw) -"qhk" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 9; - pixel_y = -2 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"tlL" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Virology Lab Cell" }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"tlP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tmu" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/w) +"tmE" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) -"qhl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"tmF" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"tmV" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"qhH" = ( +/area/bigredv2/outside/space_port) +"tnp" = ( +/obj/item/clothing/glasses/welding, +/turf/open/floor/purplecorner/west, +/area/bigredv2/caves/lambda/research) +"tnW" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"toh" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_telecomm_cas) +"toA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"toF" = ( /obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; + desc = "Righty tighty, lefty loosey!"; dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" }, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"qiA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/tool/extinguisher, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"qjA" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-9" }, -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-5" + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qjO" = ( -/obj/structure/prop/almayer/computers/mapping_computer{ - desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; - name = "\improper Teleporter Targeting Computer" +"toQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"tpb" = ( +/obj/structure/surface/table, +/obj/item/storage/box/bodybags, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"tpu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/greengrid, -/area/space) -"qkw" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Access door" +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"tpH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"tpK" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"tpP" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"tpQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffee, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"tpV" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"qkC" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_cave_cas) -"qlK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"qmm" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"qmG" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +/area/bigredv2/outside/e) +"tpY" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"tql" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"tqs" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Anomaly Chamber" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"tqu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/xenobiology) +"tqK" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/n) +"tqS" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves_north) +"tqU" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"trh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"trj" = ( /obj/item/stack/sheet/wood{ - pixel_y = -7 + pixel_y = -8 }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"qoj" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/filtration_cave_cas) -"qot" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6; - pixel_y = 10 +"tru" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_east) +"trB" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"trF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/research) +"tsg" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"tsy" = ( +/obj/effect/decal/cleanable/dirt{ + pixel_x = 8 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 6; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"qoN" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"qoQ" = ( -/obj/structure/morgue{ +"tsC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/lz2_cave) +"tsH" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz1_north_cas) +"tsS" = ( +/obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor/whiteblue/southwest, -/area/bigredv2/outside/medical) -"qoS" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"ttf" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 9; + pixel_y = 11 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"qpn" = ( -/obj/item/tool/warning_cone{ - pixel_x = -6 +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"ttk" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"ttm" = ( +/obj/item/weapon/gun/smg/m39, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"ttq" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, +/obj/item/tank/air, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) -"qqw" = ( -/obj/effect/decal/cleanable/dirt, +"ttP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ttZ" = ( +/obj/item/ore{ + pixel_x = 9 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"tuo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"qrZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"qsd" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"qse" = ( -/obj/structure/largecrate/supply, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"qsE" = ( -/turf/closed/wall/solaris/reinforced, /area/bigred/ground/garage_workshop) -"qsV" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"qus" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"qux" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +"tut" = ( +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"tuF" = ( +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"quQ" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 2; - pixel_y = 17 - }, -/turf/open/mars_cave/mars_dirt_4, +"tuI" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/filtration_cave_cas) +"tuN" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave, /area/bigredv2/caves/mining) -"quX" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Engineering"; - name = "\improper Engineering Shutters" +"tuO" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"tuQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"qvA" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"qvI" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"qwm" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/n) -"qwx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"qwy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 7 +"tva" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_west_cas) +"tvu" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"tvG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/caves/lambda/virology) +"tvP" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"tvZ" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"twl" = ( +/turf/open/floor/darkish, +/area/bigredv2/outside/marshal_office) +"twz" = ( +/obj/item/tool/extinguisher/mini, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"twY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"txb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/surgery/hemostat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"txr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qyi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"txs" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"txB" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) +"typ" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"tyy" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = -4 }, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/outside/admin_building) -"qzO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"tyI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + name = "\improper Virology Lab Decontamination" }, /turf/open/floor/delivery, -/area/bigredv2/outside/lz2_south_cas) -"qzY" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"qCK" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/lz2_south_cas) -"qDZ" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/telecomm/n_cave) -"qEs" = ( +/area/bigredv2/outside/virology) +"tyL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"qEJ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "workshop_br_g"; - name = "\improper Workshop Garage" +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"tzQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"tzV" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"tAj" = ( +/obj/structure/machinery/door_control{ + id = "Kitchen Greenhouse"; + name = "Storm Shutters"; + pixel_x = 32 }, -/turf/open/floor/delivery, -/area/bigred/ground/garage_workshop) -"qFg" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"qFh" = ( -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -11; - pixel_y = 10 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"tAv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"tAB" = ( +/obj/structure/machinery/telecomms/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) +"tAE" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"tAL" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"tBf" = ( +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"qFY" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_east) -"qGg" = ( -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 13 +"tBi" = ( +/obj/item/reagent_container/spray/plantbgone, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"tBk" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"qGY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"qHc" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/filtration_plant) -"qHY" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/lz2_south_cas) -"qHZ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"tBl" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"qJB" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"tBq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/whiteblue/northeast, +/area/bigredv2/outside/medical) +"tBE" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"qJM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"qJV" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 +/area/bigredv2/outside/space_port) +"tBL" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump, +/obj/item/device/flashlight/lamp, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tBU" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"tCh" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"qKH" = ( +"tCl" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"qLk" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"qLD" = ( -/turf/open/floor/red, -/area/bigredv2/outside/lambda_cave_cas) -"qLV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"qMS" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/n) -"qNu" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"tCo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"qNH" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"qNP" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"tCu" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"tCS" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/objective{ dir = 8 }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"qNU" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"tCW" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"tDk" = ( +/obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/landing/console2) -"qOM" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"tDM" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"tDU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"tEI" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"tEK" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"tEM" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/se) +"tEW" = ( +/obj/item/tool/wrench{ + pixel_x = -7; + pixel_y = -14 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) -"qPT" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/eta) -"qQl" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"qQn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"qQr" = ( -/obj/item/stack/sheet/wood, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_north) -"qSj" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/plating, +"tFg" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 13; + pixel_y = 10 + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qTC" = ( +"tFj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"qUF" = ( -/obj/structure/machinery/computer/area_atmos{ +/obj/structure/machinery/camera/autoname{ dir = 1 }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"tFq" = ( /obj/structure/surface/table, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"qUS" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_sw) -"qVd" = ( -/obj/item/reagent_container/food/snacks/sausage, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"tFI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"tFW" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_cave_cas) +"tFZ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"tGj" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"tGv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/mars_cave/mars_dirt_4, -/area/space) -"qVi" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, /area/bigredv2/caves/mining) -"qVw" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/virology) -"qVB" = ( -/obj/item/weapon/shield/riot, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +"tGC" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/caves/eta/xenobiology) +"tGD" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"tGJ" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/outside/admin_building) +"tGK" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"tGT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/apc{ + dir = 1 }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"qWA" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/library) -"qWT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior" +"tGZ" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"tHf" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"tHz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Virology Quarantine" }, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"qXi" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/pinpointer, +/area/bigredv2/caves/lambda/virology) +"tHA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/camera_film, /turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"qYB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/area/bigredv2/outside/marshal_office) +"tHH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"tHI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/bananapeel, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"tHS" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/space_port_lz2) +"tIA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/mirror{ - pixel_x = -28 +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tIB" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/s) +"tJa" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"qYY" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, +/area/bigredv2/outside/general_offices) +"tKf" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"tKM" = ( +/obj/structure/window/framed/solaris/reinforced, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qZo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"tLq" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"tLU" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"tLW" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"qZU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"rat" = ( -/obj/structure/machinery/light, -/turf/open/floor/bcircuit, +"tMe" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"raQ" = ( -/obj/structure/barricade/handrail/wire{ +"tMm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/telecomm/lz2_cave) -"raU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor/red/east, -/area/bigredv2/outside/marshal_office) -"rbs" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lambda_cave_cas) -"rbD" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rbV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"rcc" = ( -/obj/structure/prop/almayer/missile_tube{ - desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; - name = "\improper Massive mining drill"; - pixel_y = 12 - }, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 - }, -/obj/structure/cable, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"rcN" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_research) -"rdr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"rdR" = ( -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"rem" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +"tMv" = ( +/obj/item/shard{ + icon_state = "small" }, -/turf/open/mars_cave/mars_cave_13, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"reL" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "vault_v2" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"rfe" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"rfX" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"rgm" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +"tMx" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = -3; + pixel_y = -5 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"rgp" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"rhP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/item/stack/cable_coil/cut{ + pixel_x = 9; + pixel_y = -8 }, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"rie" = ( -/obj/effect/decal/cleanable/blood/drip, /obj/item/stack/cable_coil/cut{ pixel_x = 6; pixel_y = 4 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rjw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/filtration_cave_cas) -"rjF" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 19 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"rkh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/red, -/area/bigredv2/outside/lambda_cave_cas) -"rkS" = ( -/obj/structure/cable{ - icon_state = "5-6" - }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) -"rml" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"rnc" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_research) -"rnK" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior" +"tMK" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Cell" }, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"rnV" = ( -/obj/item/stack/sheet/glass, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"row" = ( -/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) -"roP" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = -4 +"tNE" = ( +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"tNM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"tNQ" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"tNZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"rpl" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"rpI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_lambda) +"tOj" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/mauler, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"tOB" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/s) +"tOH" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"tOL" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Office" }, -/turf/open/floor/darkred2/east, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"rqa" = ( -/obj/structure/tunnel{ - id = "hole4" +"tOP" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Crew Habitation Complex" }, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"rqv" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"tPs" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"rrF" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/ne) -"rsv" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"rtL" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz2_west_cas) -"rtR" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/classic_baton, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"rtS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wetleather, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rtV" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/corpsespawner/miner, -/obj/item/weapon/gun/rifle/m16{ - pixel_x = 10 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"tPA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ruS" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"tPT" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tQg" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"tQv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"rvS" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"rxh" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"rxJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_east) -"rzb" = ( -/obj/structure/bed/chair, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"rzO" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"rzR" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/ne) -"rzT" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"rAs" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_east) -"rBn" = ( -/obj/structure/window, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"rBK" = ( -/obj/structure/fence, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/se) -"rCd" = ( +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"tQA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigred/ground/garage_workshop) -"rCA" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz1_telecomm_cas) -"rDa" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/lambda_cave_cas) -"rDl" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"tQK" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 + pixel_x = 6 }, /obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"rDO" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"rDP" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_virology) -"rDV" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"rGP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_virology) -"rHr" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"rHA" = ( +"tQL" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/s) +"tRc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/gm/river, -/area/bigredv2/outside/filtration_plant) -"rHD" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"rIl" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/oob) -"rJJ" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lz2_south_cas) -"rJR" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"rKe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"rKs" = ( -/obj/item/stack/medical/splint{ +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"tRo" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ pixel_x = 4; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder{ - pixel_x = -9; - pixel_y = -14 + pixel_y = 10 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"rKy" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"rKP" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/oob) -"rLM" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/ne) -"rLR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"rMg" = ( -/obj/structure/toilet{ - pixel_y = 8 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 }, -/obj/effect/decal/cleanable/vomit, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"rMw" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"rMG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"rMJ" = ( +"tRz" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/n) +"tRD" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"tRE" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tRH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "SW-out" }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 +/obj/structure/machinery/light/built{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"tRK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/turf/open/mars_cave/mars_cave_16, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"rNc" = ( +"tSr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"tSC" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"tTi" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"tTk" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/weapon/harpoon, -/turf/open/floor/plating, +/obj/effect/landmark/good_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"tUb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"rNd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, +"tUd" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"tUZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"tVm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/buritto, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"tVn" = ( +/obj/item/tool/lighter/zippo, /turf/open/floor, -/area/bigredv2/outside/hydroponics) -"rNs" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "tcomms_open" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"rOK" = ( +/area/bigred/ground/garage_workshop) +"tVA" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"tVS" = ( /obj/effect/landmark/corpsespawner/ua_riot, /obj/item/weapon/baton/loaded, /obj/item/weapon/twohanded/spear{ @@ -27880,481 +26519,533 @@ }, /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"rPh" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 13 - }, -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_dirt_5, +"tWc" = ( +/obj/structure/bed, +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"tWg" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"rQs" = ( -/obj/structure/bed/sofa/south{ - desc = "An old rusty ladder"; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "ladder11"; - name = "Old Ladder" +"tWI" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/oob) -"rRO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_cave_cas) -"rTq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"rTN" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"rUn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"tWN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"tWR" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/bigredv2/caves/lambda/research) +"tXe" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"rUs" = ( -/obj/structure/machinery/door_control{ - id = "safe_room"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 28; - req_access_txt = "106"; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"rUN" = ( -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"rUZ" = ( -/obj/structure/machinery/light/small{ +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"tXK" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"tXT" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/filtration_cave_cas) +"tYb" = ( +/obj/item/trash/burger, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tYo" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"tYN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"tYU" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"tZb" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"tZj" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/classic_baton, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"rVh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3" +/area/bigredv2/caves_research) +"tZz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"rVE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Lambda Checkpoint" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"ual" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/podhatch/southwest, +/area/bigredv2/caves/lambda/research) +"uam" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/n) -"rVT" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"rWF" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"uat" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"uaK" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"uaR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"rWN" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"ubh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_virology) +"ubk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"rXy" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/structure/surface/table, -/obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary{ - pixel_y = 12 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rXY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"ubV" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"rYr" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"rYt" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_north) -"rYD" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"uce" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"ucl" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"uct" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/caves/eta/research) +"ucx" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rYS" = ( -/obj/structure/machinery/light{ +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ucy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"ucH" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_virology) +"ude" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves) +"udl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"udu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"udP" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"rZn" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/w) -"rZQ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/csandwich, -/obj/item/toy/deck/uno{ - pixel_y = 18 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"ueD" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_sw) +"ufh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/mars_cave/mars_cave_15, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"rZU" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/north, +"ufn" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Lambda Lab Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"ufq" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"ufs" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"uft" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/n) -"sap" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"ufv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Lockers" }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"saX" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"sbk" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"sbm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, +"ufF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"uga" = ( +/obj/item/ore, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"sbz" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform_decoration/kutjevo/rock{ +/area/bigredv2/outside/filtration_plant) +"ugc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ugw" = ( +/obj/structure/platform_decoration/shiva{ dir = 1 }, -/turf/open/mars/mars_dirt_12, -/area/space) -"sbA" = ( -/obj/item/frame/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/decal/cleanable/dirt, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" +/obj/structure/platform_decoration/shiva{ + dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"sbQ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"ugx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"ugz" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"scK" = ( -/obj/structure/platform{ - dir = 8 +/area/bigredv2/outside/marshal_office) +"ugB" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"sdl" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"uha" = ( +/obj/structure/coatrack{ + pixel_x = 12 + }, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/storage/windbreaker/windbreaker_gray{ + pixel_x = 11; + pixel_y = 4 }, -/obj/structure/window, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"sdP" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"seO" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/area/bigredv2/outside/admin_building) +"uhl" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"uhm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"sfI" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_east) -"sgF" = ( -/obj/structure/cable{ - icon_state = "1-6" +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"uhU" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "6-8" +/obj/structure/machinery/door_control{ + id = "viro"; + name = "Virology Lockdown"; + pixel_x = -25 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sgT" = ( -/obj/item/trash/burger, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"shn" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"uiC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"uji" = ( +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/obj/effect/landmark/good_item, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"ujK" = ( +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/xenobiology) +"ujQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"ujY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"ukx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"ukC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"ukY" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 }, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"ulv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"ulH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/on, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"ulL" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"shK" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"shV" = ( -/turf/open/floor/asteroidwarning, -/area/bigred/ground/garage_workshop) -"siu" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/eta) -"siM" = ( /turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz1_telecomm_cas) -"ski" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_west_cas) -"sln" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +/area/bigredv2/caves_virology) +"ulU" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Canteen" }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"slC" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"slG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"smh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"smy" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"smF" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 13; - pixel_y = 10 +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"uml" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"umD" = ( +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"umL" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"umP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"smO" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/lz1_north_cas) -"snk" = ( -/obj/item/tank/air, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"snv" = ( -/obj/structure/machinery/light_construct{ +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"unc" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"und" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"sog" = ( -/obj/item/explosive/grenade/slug/baton{ - dir = 1; - pixel_y = -8 +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"une" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/item/explosive/grenade/baton{ - dir = 4; - pixel_x = 9; - pixel_y = -8 +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"unm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "4-10" +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"unu" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" }, -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"unv" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"unQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "4-5" +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"unS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"unW" = ( +/obj/structure/machinery/power/apc{ + dir = 1 }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sqc" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"sqj" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_research) -"sqt" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +"uoa" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"uoe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"sqQ" = ( -/obj/item/paper/bigred/them, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sso" = ( -/obj/structure/bed/chair, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"ssE" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves) -"ssI" = ( -/obj/structure/prop/dam/truck/damaged, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"ssO" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"stZ" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/lz2_cave) -"sus" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_research) -"suD" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" +/area/bigredv2/outside/space_port_lz2) +"uoy" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - desc = "A big air filter."; - icon = 'icons/obj/structures/props/almayer_props64.dmi'; - icon_state = "fuel_enhancer"; - layer = 5; - name = "Air filter"; - pixel_x = -3; - pixel_y = 1 +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/xenobiology) +"uoE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - desc = "Critical part of an HVAC system. Compresses refridgerant to send off to air cooling coils."; - icon = 'icons/obj/structures/props/almayer_props64.dmi'; - icon_state = "cooling_system"; - layer = 4; - name = "\improper Air Condenser"; - pixel_x = -5; - pixel_y = 25 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"uoN" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"uoP" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"suV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1; - name = "\improper Engineering Workshop" +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"uoR" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"upa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"upk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/delivery, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"upE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, /area/bigred/ground/garage_workshop) -"swk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/w) -"swJ" = ( +"upJ" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"sxs" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, +/obj/item/paper, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"uqi" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"syi" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"syu" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3" +"uql" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/space_port) +"uqm" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, -/turf/open/mars_cave/mars_cave_16, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"szi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uqq" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"szw" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"szy" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"uqz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"szZ" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/shower{ +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"uqU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"sAG" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"sAS" = ( -/obj/item/toy/prize/fireripley{ - pixel_y = 19 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"sBm" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"urb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"urj" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -28363,608 +27054,442 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"sBu" = ( -/obj/effect/landmark/hunter_secondary, +"urk" = ( +/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"sCj" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"sCt" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"sDs" = ( -/obj/structure/closet/crate/miningcar, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sDC" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_sw) -"sDO" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"sDZ" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"urD" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/welding, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"sEb" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 3 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"sEh" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/e) -"sEi" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"sFv" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_north) -"sFW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"sGi" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz1_telecomm_cas) -"sGT" = ( -/obj/item/tool/weldpack, -/obj/item/frame/rack, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"urK" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sHz" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 13 +"usd" = ( +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"usi" = ( +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/lambda/virology) +"uso" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/caves/eta/xenobiology) +"ust" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/mars_cave/mars_dirt_6, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"sHO" = ( -/obj/effect/landmark/crap_item, +"utb" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"utz" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"sIh" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lambda-cave-extratunnel" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"sIP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"sIY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/c) -"sJq" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_cave_cas) -"sLr" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_se) -"sLy" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"uvb" = ( +/obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"sLS" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"sNP" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"sNQ" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"sOi" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sOE" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz1_telecomm_cas) -"sON" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_east) -"sPv" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"uvq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"sQw" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/lz1_telecomm_cas) -"sRy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"uvG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Meeting Room" - }, -/turf/open/floor/delivery, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) -"sRV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"sSU" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/lz2_south_cas) -"sSY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/comfy{ - dir = 4 +"uvU" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/caves_north) +"uwt" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"uwR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/nw) +"uwV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/general_offices) +"uwX" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "clfship" }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"sUQ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"sVk" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lambda_cave_cas) -"sVB" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"sVM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/c) +"uxe" = ( +/obj/structure/machinery/computer/area_atmos{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"sWa" = ( -/obj/item/ore{ - pixel_x = 12; - pixel_y = 13 +/obj/structure/surface/table, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"uxf" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/turf/open/mars_cave/mars_dirt_7, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"sWh" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, +"uxk" = ( /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"sWS" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/virology) +"uxq" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/smes_coil, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"uxx" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"sXd" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "prison_breakout" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/marshal_office) -"sXv" = ( +"uxB" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/c) +"uxO" = ( +/obj/structure/largecrate, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 2; - pixel_y = 17 - }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sYL" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/outside/lambda_cave_cas) -"sYR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"sZh" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"sZi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"taf" = ( +"uxR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"uxV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"tap" = ( -/obj/structure/machinery/message_server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"taV" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"tbS" = ( -/obj/structure/morgue{ - dir = 1 - }, -/turf/open/floor/whiteblue, -/area/bigredv2/outside/medical) -"tcb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/meat, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"tcq" = ( -/obj/item/explosive/grenade/baton, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_research) -"tcP" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"tdp" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"tdz" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"tdB" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"tdN" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"tdZ" = ( -/obj/item/tool/pickaxe/drill, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheeseburger{ - pixel_y = 22 +/area/bigredv2/caves/eta/storage) +"uxX" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"uyw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"teV" = ( -/obj/structure/fence, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/outside/telecomm/warehouse) +"uyZ" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"uza" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"uzF" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_research) +"uAb" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/obj/item/device/flashlight/lamp{ + pixel_y = 15 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"tff" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +"uAG" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"uAT" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"uBj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"tfp" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - desc = "An old W-Y systems control computer that manages the air enviorment for a large area. Commonly used in mining operations in order to control O2 levels, alert of any dangerous gases and make the heat slightly more bearable."; - name = "W-Y Enviorment Control System Control Panel" +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"uBs" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "11-2" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"uBP" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"uBS" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "11-10" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"uCQ" = ( +/turf/open/floor/rampbottom/north, +/area/bigredv2/outside/marshal_office) +"uCR" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"uDn" = ( +/obj/structure/sign/safety/west, +/obj/structure/sign/safety/hazard{ + pixel_x = 12 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/closed/wall/wood, /area/bigredv2/caves/mining) -"tft" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_west_cas) -"tfz" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, +"uDp" = ( +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"tgf" = ( +"uEd" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"tgF" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/s) +"uEg" = ( +/obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"tgL" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_se) -"tiD" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -15 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/highpower, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"tju" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/outside/space_port) +"uEI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"uEP" = ( +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"uEV" = ( +/obj/structure/bed/chair, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/eta/research) +"uFa" = ( /turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"tjX" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/n) -"tkN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"tkY" = ( -/obj/structure/noticeboard{ - desc = "A board for pinning important items upon."; - dir = 1; - name = "trophy board"; - pixel_y = 30 +/area/bigredv2/caves/eta/living) +"uFi" = ( +/obj/item/paper/bigred/finance{ + pixel_x = -9 }, -/obj/item/oldresearch/Chitin{ - anchored = 1; - pixel_y = 27 +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"uFj" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"tlP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"tlU" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"uFl" = ( /obj/structure/surface/table, -/obj/structure/window, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 4 +/obj/structure/machinery/computer/pod/old{ + name = "Personal Computer" }, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"tmH" = ( -/obj/structure/closet/crate, +/area/bigredv2/caves/eta/living) +"uFn" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"uFp" = ( +/obj/structure/machinery/mill, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"uFt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/podhatch/northeast, +/area/bigredv2/caves/lambda/research) +"uFS" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"tnd" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"tnG" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"toA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/turf/open/floor, +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) -"tpR" = ( +"uGc" = ( /obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"uGv" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - pixel_x = 13; - pixel_y = 10 + id = "workshop_br_g"; + name = "\improper Workshop Garage" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"tpU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"tpY" = ( -/obj/structure/lz_sign/solaris_sign, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"tqi" = ( -/turf/open/mars_cave/mars_cave_19, +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"uGF" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"uGS" = ( +/obj/item/robot_parts/robot_component/diagnosis_unit{ + pixel_y = 15 + }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"tqS" = ( +"uHb" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"uHQ" = ( /turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves_north) -"trk" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_sw) -"trr" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"trW" = ( -/obj/item/clothing/suit/storage/hazardvest, +/area/bigredv2/caves/mining) +"uHW" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uIv" = ( /obj/effect/decal/cleanable/blood, -/obj/item/clothing/head/hardhat, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"uIC" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/obj/item/stack/sheet/wood{ + pixel_y = -8 + }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"tsc" = ( +"uIO" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"uIT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"tsy" = ( -/obj/effect/decal/cleanable/dirt{ - pixel_x = 8 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 15 +/obj/structure/machinery/light_construct{ + dir = 8 }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 14 +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"uJC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/obj/item/trash/cigbutt{ - pixel_x = 7 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"uJF" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 6; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"uJO" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"uKp" = ( +/turf/open/floor/darkgreen2, +/area/bigredv2/caves/lambda/virology) +"uLr" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, -/turf/open/floor/plating, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"tsB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, +"uMe" = ( +/obj/effect/landmark/hunter_primary, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"tsK" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/lz2_south_cas) -"tub" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"tuu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/bigredv2/outside/n) +"uMr" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor/loadingarea/west, -/area/bigredv2/outside/cargo) -"tuN" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"tvh" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/lz2_south_cas) -"tvH" = ( -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"tzJ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"uMw" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"uMB" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"tAe" = ( -/obj/structure/bed, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"tAW" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"tBb" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"tBf" = ( -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tBh" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"uMF" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_x = -1; - pixel_y = 14 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_y = 6 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"uMJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/tofu, -/obj/structure/cable{ - icon_state = "5-9" +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"uMK" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"uMU" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"uNm" = ( +/obj/effect/landmark/corpsespawner/miner, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"tBD" = ( -/turf/open/floor/almayer/w_y1/north, -/area/bigredv2/outside/admin_building) -"tBK" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe{ - pixel_y = -7 - }, -/obj/item/tool/pickaxe{ - pixel_y = -3 - }, -/obj/item/tool/pickaxe, -/obj/item/tool/pickaxe{ - pixel_y = 4 +"uNq" = ( +/obj/item/ore, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"tCh" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/floor/plating, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"tCH" = ( +"uNV" = ( +/obj/item/weapon/gun/rifle/m4ra, +/obj/effect/landmark/corpsespawner/ua_riot, /obj/effect/decal/cleanable/blood{ dir = 8; icon_state = "gib6"; @@ -28972,1178 +27497,1592 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"tDk" = ( -/obj/structure/machinery/light/double{ - dir = 1 +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_research) +"uOn" = ( +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"uOo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tDl" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"tDv" = ( +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"uOq" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_west_cas) -"tEc" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"tFt" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"tFO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"uOz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"uOE" = ( +/obj/structure/bed/chair{ dir = 1 }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"uOI" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"uPh" = ( +/turf/open/mars/mars_dirt_5, +/area/bigredv2/outside/w) +"uPT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"uPW" = ( +/obj/structure/surface/table, +/obj/item/toy/dice, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"uQb" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"uQe" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/lz1_north_cas) +"uQo" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"uQp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" + }, /turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"tHl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/office_complex) +"uQw" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"uQx" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"uQG" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/collectable/tophat/super, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"uRf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"uRr" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) -"tHB" = ( +"uRv" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"uRE" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "medbay-passage" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"uRK" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 5 }, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"tIq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"tIv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"tIA" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +/area/bigredv2/outside/space_port) +"uRW" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"tJn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"uSi" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"tJv" = ( -/obj/structure/tunnel{ - id = "hole3" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"uSk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"uSn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Toilet" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"uSG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "An exchange valve"; + dir = 8; + icon = 'icons/obj/pipes/filter.dmi'; + icon_state = "map"; + name = "Automated Valve" + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"tKr" = ( +"uTe" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/slugs, /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"tKC" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 1 +/area/bigredv2/outside/marshal_office) +"uTu" = ( +/obj/structure/machinery/vending/coffee{ + icon_state = "coffee-broken"; + stat = 1 }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 9; - pixel_y = 4 +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"uTB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"uTZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 8 +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"uUr" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engineering Secure Storage" }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"uUH" = ( +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/research) +"uUS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"tKR" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"tLt" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves_north) -"tLO" = ( -/obj/structure/machinery/computer/med_data{ - density = 0; - pixel_y = 16 - }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"uUU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/white, /area/bigredv2/outside/medical) -"tMa" = ( +"uUV" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"uVg" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"tNz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"uVq" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/caves_north) +"uVs" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/caves/eta/research) +"uVu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite/northwest, +/area/bigredv2/outside/virology) +"uVZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"tOh" = ( -/obj/structure/surface/table, -/obj/item/device/megaphone, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"tQg" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"tQj" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_lambda) -"tQo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = -7; - pixel_y = 4 +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"uWe" = ( +/obj/structure/machinery/photocopier, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"tQw" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"tRd" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 5; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"uWh" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lz2_south_cas) +"uWj" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"uWk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"uWr" = ( +/obj/structure/computer3frame/wallcomp, +/obj/structure/cable{ + icon_state = "11-2" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"tRI" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_research) -"tRV" = ( -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" +"uWF" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"uWN" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/scrubber/on{ + dir = 1 }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"tSI" = ( +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/lambda/virology) +"uWQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"uXF" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"uXH" = ( +/obj/structure/machinery/botany, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"uXX" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/n) +"uYP" = ( /obj/structure/platform/shiva{ - dir = 8 + dir = 4 + }, +/obj/item/shard{ + icon_state = "medium" }, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) -"tTI" = ( -/obj/effect/decal/cleanable/dirt, +"uYQ" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"uZy" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"uZX" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"vaD" = ( +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"vaP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"tUL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/plating/platingdmg3/west, +"vbn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"vbo" = ( +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"vbu" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"vbP" = ( +/obj/structure/largecrate/mule, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"vcd" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 9 + }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"tUY" = ( +"vcj" = ( +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/storage) +"vcp" = ( +/obj/structure/closet/secure_closet/RD, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"vcJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"tVn" = ( -/obj/item/tool/lighter/zippo, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"tVp" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"tVy" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"vdh" = ( +/obj/structure/surface/rack, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"vdF" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vdP" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 }, -/turf/open/mars_cave/mars_cave_15, +/obj/structure/machinery/recharge_station, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"vdV" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"vec" = ( +/obj/structure/pipes/standard/tank, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"tWf" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars_cave/mars_dirt_4, +"vex" = ( +/turf/closed/wall/wood, +/area/bigredv2/outside/lz2_south_cas) +"veO" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"vff" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) -"tWS" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"tZU" = ( +"vfB" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"vfL" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_lambda) +"vga" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"vgd" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/mineral/processing_unit, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"uaB" = ( -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"uaS" = ( +"vgj" = ( +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"vgK" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + req_one_access_txt = "19;200" + }, +/obj/structure/transmitter/colony_net{ + dir = 4; + phone_category = "Solaris Ridge"; + phone_color = "yellow"; + phone_id = "Communications"; + pixel_x = -18 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"vgV" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/n) +"vhc" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"vhm" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"vhw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"ubY" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ucl" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"ucH" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_virology) -"ucN" = ( -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves_se) -"ueL" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"vhQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"vhZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/paper_bin/wy{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"vit" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"viw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/caves/eta/xenobiology) +"viz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"viB" = ( +/obj/structure/machinery/optable, /obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"ufc" = ( +/obj/item/organ/heart/prosthetic, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"viH" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"viK" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"vjp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"vjs" = ( +/obj/structure/cryofeed, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"vjH" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"vjQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"vjW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"vkk" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) -"ufu" = ( +"vku" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ufB" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"ugc" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vkF" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, /turf/open/floor, /area/bigredv2/outside/cargo) -"ugW" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uij" = ( +"vkZ" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vlk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_cave_cas) -"uiE" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/area/bigredv2/outside/telecomm/lz2_cave) +"vlm" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_2, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"vlp" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/nw) +"vlx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"vlE" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"vlT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"vmC" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"vmL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"ujq" = ( -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/outside/medical) -"ujC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"ujD" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" +"vmV" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -12; + pixel_y = -4 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"ujU" = ( -/obj/item/ammo_magazine/handful/shotgun/custom_color{ - color = "#6666ff"; - desc = "A handful of ulta rare 12 gauge HE/FRAG ammunition to seriously fuck shit up with. Too bad its behind this indestructable window....."; - name = "handful of HE/FRAG shells (12g)"; - pixel_y = 3 +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 10; + pixel_y = 10 }, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"ukv" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_lambda) -"ukW" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/ne) -"ulk" = ( /obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; + desc = "Righty tighty, lefty loosey!"; dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ulH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/on, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"ume" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"vnf" = ( /obj/structure/machinery/door_control{ - id = "Medical"; + id = "Marshal Offices"; name = "Storm Shutters"; - pixel_y = 32 - }, -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"umK" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 + pixel_x = -32 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"vnj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"unC" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm/lz2_cave) -"unS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"uoj" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/asteroidwarning, -/area/bigredv2/caves_lambda) -"upE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"upV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"urn" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"usg" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"ust" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; +/obj/structure/machinery/teleport/station, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"vnm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_east) +"vnH" = ( +/obj/item/ore{ + pixel_x = -7; pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"usG" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_east) -"uuO" = ( -/obj/item/shard{ - icon_state = "small" - }, +"vnL" = ( /turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uvl" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/area/bigredv2/outside/space_port) +"vou" = ( +/obj/vehicle/train/cargo/trolley, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/lambda/xenobiology) -"uvz" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"uvZ" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/filtration_plant) -"uwV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/general_offices) -"uxx" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/turf/open/floor/plating, /area/bigredv2/caves/mining) -"uyd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"voI" = ( +/obj/item/tool/pickaxe{ + pixel_y = -7 }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/telecomm/lz2_cave) -"uyk" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_west_cas) -"uzv" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz1_north_cas) -"uzB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/device/flashlight/lantern, +/obj/item/tool/pickaxe{ + pixel_y = 4 + }, +/obj/item/tool/pickaxe{ + pixel_y = -3 + }, +/obj/item/tool/pickaxe, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"uBi" = ( +"vpp" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"vpz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"uBP" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"uCa" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uDn" = ( -/obj/structure/sign/safety/west, -/obj/structure/sign/safety/hazard{ - pixel_x = 12 +/area/bigredv2/outside/filtration_plant) +"vpN" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"uDt" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/turf/open/floor/whitegreen/north, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"vqb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"vqe" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) -"uDA" = ( -/obj/item/stack/sheet/glass, -/turf/open/floor/darkyellow2, +"vqm" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"uDI" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" +"vqr" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/filtration_plant) +"vqv" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"vqx" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_cave_cas) +"vqL" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vqR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uDZ" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/research) +"vrf" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"vri" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1 }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"uFi" = ( -/obj/item/paper/bigred/finance{ - pixel_x = -9 +"vrR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/w) +"vsh" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/plasmacutter{ + pixel_y = 5 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"uFp" = ( -/obj/structure/machinery/mill, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"uFD" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/obj/item/tool/pickaxe/plasmacutter{ + pixel_y = -5 }, -/turf/open/mars_cave/mars_cave_9, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"uFF" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +"vsG" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"uGs" = ( +/obj/item/trash/chips, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"vsU" = ( /obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"uGz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"uHE" = ( -/obj/item/tool/warning_cone{ - pixel_y = 19 - }, -/turf/open/floor/asteroidfloor/north, +/obj/item/storage/box/masks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"vtA" = ( +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"uHQ" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"uHT" = ( +"vtD" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_sw) +"vtV" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"vul" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"uIz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/telecomm/n_cave) -"uIB" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"uJj" = ( +"vuJ" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"vuM" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"vuU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"vuZ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkyellow2/east, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"uJu" = ( -/obj/item/robot_parts/robot_component/diagnosis_unit{ - pixel_y = 15 +"vvj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) +"vvq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"uJF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"vvB" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"vvG" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"vvH" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"vvJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"uJI" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"vvL" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; + dir = 1; + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"uKH" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" +"vvO" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whiteyellow/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"vvT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/item/prop/alien/hugger, /turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) -"uNW" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +"vwf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_sw) +"vwg" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"vwr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"vwy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"uPm" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"uPF" = ( -/obj/structure/machinery/filtration/console{ - pixel_y = 13 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"vwB" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/lz1_telecomm_cas) +"vwM" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"vxe" = ( +/mob/living/simple_animal/corgi/puppy{ + desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; + name = "\improper Mister Wiggles" }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"uPK" = ( -/obj/structure/platform/shiva{ - dir = 1 +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"vxn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/platform/shiva, -/obj/structure/machinery/light/small/built{ +/obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 4 }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"uRE" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "medbay-passage" +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/admin_building) -"uSf" = ( -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"uSt" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vxx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"vxB" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"vxD" = ( +/obj/structure/surface/table, +/obj/item/storage/box/gloves, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"vxI" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"vxQ" = ( +/obj/item/tool/pickaxe/gold, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"vyI" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"vyK" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"vyV" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"vyZ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"vza" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"vzl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 6 }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"uSC" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/space_port_lz2) -"uST" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"vzG" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - name = "\improper Medical Clinic Power Station" + name = "\improper Dormitories Tool Storage Maintenance" }, /turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"uTO" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"uUV" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"uVe" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/filtration_cave_cas) -"uVi" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/lightbrown, -/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) -"uVn" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"uWo" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, +"vzU" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 10; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vzY" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"vAo" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/e) +"vAr" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"vAs" = ( +/obj/structure/window/framed/solaris/reinforced/tinted, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"vAv" = ( +/obj/structure/inflatable/door, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"vAC" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"vAE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"uXW" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_research) -"uYb" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_sw) -"vbi" = ( -/turf/open/floor/darkpurple2/northeast, -/area/bigredv2/caves/lambda/research) -"vbp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"vct" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"vAI" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + name = "Virology APC" }, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"vcA" = ( -/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"vBe" = ( +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"vCa" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffee, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vCm" = ( /obj/effect/decal/cleanable/blood{ - icon_state = "gib6" + icon_state = "xgib1" }, -/obj/item/weapon/gun/rifle/mar40/lmg, -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"vdl" = ( -/obj/effect/decal/cleanable/liquid_fuel, +"vCx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"vdS" = ( -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -10; - pixel_y = 2 + icon_state = "S"; + pixel_y = -1 }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8; - pixel_y = 7 +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"vCS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"vCY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/cut, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vec" = ( -/obj/structure/pipes/standard/tank, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"vex" = ( -/turf/closed/wall/wood, -/area/bigredv2/outside/lz2_south_cas) -"vfo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 9; - pixel_y = -3 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"vfI" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/eta) -"vfQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"vgE" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"vgZ" = ( -/obj/structure/platform/shiva, -/obj/structure/platform/shiva{ +"vDd" = ( +/obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"vhw" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vDf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -30 }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"vhF" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"vin" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"viN" = ( -/obj/structure/machinery/door_control{ - id = "workshop_br_g"; - name = "Workshop Garage Lockdown"; - pixel_x = -28 - }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"vDM" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"vEc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"vjc" = ( -/obj/item/tool/warning_cone{ - pixel_x = -13; - pixel_y = 11 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"vkf" = ( -/obj/effect/landmark/crap_item, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"vkv" = ( -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"vkF" = ( +/area/bigredv2/caves/mining) +"vEj" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"vld" = ( -/obj/item/tool/warning_cone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vEm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"vEH" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves_north) +"vFq" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"vlr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/bigredv2/caves_lambda) +"vFD" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) -"vlA" = ( +"vFL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/eta/research) +"vFM" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 + pixel_x = -3; + pixel_y = 11 }, -/turf/open/mars_cave/mars_dirt_4, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 + }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"vmm" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"vmI" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_4, +"vFV" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"vGm" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"vGw" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"vmL" = ( +"vGG" = ( +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"vHp" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/w) +"vHw" = ( +/turf/closed/wall/wood, /area/bigredv2/caves/mining) -"vmV" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -12; - pixel_y = -4 +"vHF" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/eta/research) +"vHK" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, +/area/bigredv2/outside/marshal_office) +"vHT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 10; - pixel_y = 10 +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"vHW" = ( +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"vIf" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/n) +"vIh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"vIn" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/w) +"vIJ" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"vIR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"vJd" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"vJv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"vJH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" + name = "\improper General Store Security" }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"voz" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"voG" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"vJW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"vKl" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2/southeast, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"vKn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/xenobiology) +"vKQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/engineering) -"vpu" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_cave_3, +"vKS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"vLc" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"vLd" = ( +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"vLB" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) -"vpx" = ( -/obj/structure/platform, -/obj/structure/flora/jungle/planttop1{ - pixel_y = 10 +"vMC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"vpY" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vMW" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"vNd" = ( +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"vNu" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vNw" = ( +/obj/structure/showcase{ + icon_state = "mechfab1" }, -/turf/open/floor/delivery, -/area/bigredv2/outside/eta) -"vqY" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_research) -"vrt" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/eta) -"vsi" = ( -/obj/structure/pipes/vents/pump/on, +/turf/open/floor/carpet5_1/west, +/area/bigredv2/caves/eta/living) +"vNS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"vNW" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "red"; + phone_id = "Security" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"vNX" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"vti" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"vty" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Cell" +/area/bigredv2/outside/ne) +"vOb" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"vOc" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"vOj" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Meeting Room" }, /turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"vOI" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) -"vuz" = ( -/obj/structure/machinery/door_control{ - id = "eta"; - name = "Eta Lockdown"; - pixel_x = 30; - throw_range = 15 +"vOS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/darkblue2/east, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"vPa" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"vPq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"vvj" = ( +"vPu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"vvL" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"vPF" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"vPJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"vPL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"vPQ" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_lambda) +"vQd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"vQQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" + name = "\improper Dormitories Restroom" }, -/turf/open/floor/plating, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"vQW" = ( +/obj/structure/machinery/computer3/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"vRq" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"vRs" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"vvR" = ( -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 +"vRv" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/virology) +"vRL" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"vRO" = ( +/obj/item/storage/belt/grenade, +/obj/structure/closet/crate, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vxv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, +"vSj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"vSC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vTb" = ( /obj/structure/surface/table, -/obj/structure/machinery/light, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vTc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"vTB" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"vUa" = ( +/obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"vxQ" = ( -/obj/item/tool/pickaxe/gold, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"vyV" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"vzL" = ( -/obj/item/weapon/gun/boltaction, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vAs" = ( -/obj/structure/window/framed/solaris/reinforced/tinted, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"vBy" = ( -/obj/item/ammo_magazine/shotgun/beanbag/riot, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"vBI" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/n) -"vBT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_id = "Clinic Reception" +/area/bigredv2/outside/nw) +"vUA" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vUI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"vVf" = ( +/obj/structure/lamarr, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"vVq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = 32 }, +/obj/structure/bed, /turf/open/floor/white, /area/bigredv2/outside/medical) -"vCd" = ( -/obj/structure/surface/rack, -/obj/item/weapon/twohanded/lungemine{ - pixel_y = 8 - }, -/obj/item/weapon/twohanded/lungemine{ - pixel_y = -7 +"vVB" = ( +/obj/structure/closet/secure_closet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"vVP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vCf" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"vVZ" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_cave_cas) +"vWn" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/eta/research) +"vWo" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"vCU" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/lz2_south_cas) -"vEF" = ( +"vWp" = ( /obj/structure/surface/table, -/obj/item/clothing/head/hardhat/orange{ - pixel_y = 10 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"vEU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/s) -"vFA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"vFH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"vFS" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"vGE" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/space_port_lz2) -"vGN" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -7 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"vHw" = ( -/turf/closed/wall/wood, +/obj/item/tool/lighter/zippo{ + pixel_x = -1; + pixel_y = 14 + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vHU" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"vIQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"vWs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"vKv" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"vLd" = ( -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"vMj" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz2_west_cas) -"vMm" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 - }, -/obj/structure/closet/crate/miningcar/yellow, -/turf/open/mars_cave/mars_cave_9, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vNh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_virology) -"vNm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_virology) -"vOs" = ( -/obj/structure/coatrack{ - pixel_x = 12 +"vWO" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/janitor, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"vWV" = ( +/obj/structure/toilet{ + dir = 1 }, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/storage/windbreaker/windbreaker_gray{ - pixel_x = 11; - pixel_y = 4 +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"vWY" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Cell" }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"vPP" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/xenobiology) +"vXC" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"vPZ" = ( +/obj/structure/ore_box, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/research) +"vXG" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/telecomm/n_cave) +"vXP" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vXQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" + }, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/virology) +"vXZ" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vYg" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper General Store" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"vYj" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"vYy" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"vYO" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"vQZ" = ( +"vYX" = ( /obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_research) -"vRs" = ( -/obj/structure/sign/safety/high_voltage, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"vRK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves/lambda/xenobiology) -"vRR" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves_north) -"vTh" = ( -/obj/structure/machinery/light/small{ - dir = 1 + icon_state = "gib6"; + pixel_y = -8 }, -/turf/open/mars_cave/mars_cave_2, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"vTt" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"vUw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"vUy" = ( -/obj/structure/cargo_container/kelland/left, +"vZc" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"vZu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"vZv" = ( +/obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) -"vUN" = ( +"vZA" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"vZL" = ( +/obj/structure/surface/table, +/obj/item/trash/snack_bowl, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"vVl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Toilet" - }, +/area/bigredv2/outside/admin_building) +"vZM" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/eta/xenobiology) +"waf" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"wao" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/bigred/union, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vVF" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 +"wav" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering SMES" }, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/mining) -"vVZ" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_cave_cas) -"vWm" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"vXp" = ( +"way" = ( +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"waQ" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"vXJ" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_lambda) -"vYw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"vZh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 1 }, -/obj/item/clothing/under/darkred, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"waJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"waN" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"waX" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_2, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"wbl" = ( +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/mining) -"wbp" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves) "wbx" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "Righty tighty, lefty loosey!"; @@ -30154,33 +29093,67 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wbD" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"wbY" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"wcs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz1_north_cas) +"wci" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Bar" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"wcm" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) "wcw" = ( /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) -"wdM" = ( -/obj/structure/platform/kutjevo/rock{ +"wcI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/cell/hyper, +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/research) +"wdw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Kitchen" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"wea" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"wen" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform/kutjevo/rock{ +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"weA" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"weE" = ( +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"weH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/bigred/witness, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"weJ" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "weO" = ( /obj/structure/closet/secure_closet/medical_wall{ pixel_y = -5 @@ -30191,444 +29164,796 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"wfk" = ( -/obj/structure/filingcabinet/medical{ - density = 0; - pixel_x = -8; - pixel_y = 16 +"wgo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"wgq" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"wgQ" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 }, -/obj/structure/filingcabinet/medical{ - density = 0; - pixel_x = 7; - pixel_y = 16 +/obj/structure/platform_decoration/shiva, +/obj/item/stack/cable_coil, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"wgS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"wgX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"whf" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves/eta/xenobiology) +"whh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Bar Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"whJ" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"wiZ" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"wji" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"wjp" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/outside/lz2_west_cas) +"wju" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"wjy" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Lambda Checkpoint" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"wjN" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_east) +"wjQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"wkg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"wkp" = ( +/obj/effect/glowshroom, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/xenobiology) +"wks" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"wkw" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"wkZ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"wlz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"wlQ" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/mining) +"wmp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wmu" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wmx" = ( +/turf/open/mars_cave/mars_cave_12, +/area/bigredv2/caves/eta/research) +"wmz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"wmC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wmD" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"wmP" = ( +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"wnj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wnz" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_research) +"wnC" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/lz2_cave) +"wnN" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"wnQ" = ( +/obj/item/trash/raisins, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"wnZ" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"wod" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"woX" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"wpq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wpF" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_sw) +"wqm" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"wqv" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"wqy" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wqF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"wrc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"wrp" = ( +/obj/structure/surface/table, +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, +/obj/item/tool/pen, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"wrN" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 8 }, +/obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/close, +/obj/item/prop/magazine/book/starshiptroopers, /turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"wfm" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"wfx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"wfC" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"wfR" = ( -/obj/structure/cable{ - icon_state = "5-8" - }, -/obj/structure/cable{ - icon_state = "5-6" +/area/bigredv2/outside/library) +"wrS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/plating/platingdmg3/west, +/obj/structure/plasticflaps, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"whi" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_cave_cas) -"whw" = ( -/obj/effect/decal/cleanable/dirt, +"wrY" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/bigredv2/caves/eta/xenobiology) +"wsh" = ( /obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/tool, /turf/open/floor/wood, -/area/bigredv2/outside/library) -"whE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"whZ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidwarning, -/area/bigred/ground/garage_workshop) -"wix" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/bigredv2/outside/bar) +"wsi" = ( +/obj/structure/coatrack{ + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"wiK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"wjW" = ( -/obj/structure/platform/shiva{ - dir = 1 +/obj/item/clothing/shoes/black{ + pixel_y = -7 }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"wko" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"wsj" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_research) +"wsk" = ( +/obj/structure/machinery/processor, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"wso" = ( +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/xenobiology) +"wst" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"wlE" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"wmh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"wmN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/telecomm/n_cave) -"wni" = ( -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"woe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"wog" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"woK" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"wtc" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/red/southeast, -/area/bigredv2/outside/marshal_office) -"wpf" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves_north) -"wpn" = ( -/obj/structure/closet/radiation, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"wry" = ( -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Space Port" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"wrz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"wrS" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"wte" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/plasticflaps, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"wtj" = ( /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wss" = ( -/obj/item/tool/warning_cone{ - pixel_y = 20 +"wtv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/n_cave) -"wtj" = ( -/turf/open/floor/plating, +/obj/item/device/defibrillator, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"wtF" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_virology) +"wtY" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"wuv" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"wtC" = ( +"wuE" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"wuQ" = ( +/obj/structure/transmitter/colony_net{ + dir = 4; + phone_category = "Eta Labs"; + phone_id = "Observation"; + pixel_x = -18 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"wwm" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"wwH" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/virology) +"wwT" = ( /obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"wxc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"wtG" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"wtJ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2"; - pixel_x = -9; - pixel_y = 11 +/area/bigredv2/caves/eta/research) +"wxh" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1"; - pixel_x = 12; - pixel_y = 16 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"wxr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"wxt" = ( +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 + }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"wuz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; +"wxC" = ( +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"wxH" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"wxN" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_virology) +"wye" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"wyg" = ( +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -10; pixel_y = 2 }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"wuC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/flare{ - pixel_y = -7 +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8; + pixel_y = 7 }, +/obj/item/explosive/grenade/incendiary/molotov, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"wvk" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/virology) -"wvK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"wvR" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"wwT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"wxo" = ( +"wyq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreen2/east, +/area/bigredv2/caves/eta/xenobiology) +"wzl" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"wyF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"wzI" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_research) +"wAj" = ( +/obj/structure/machinery/light, /turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"wyP" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"wBi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"wBq" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"wBu" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/area/bigredv2/outside/filtration_plant) +"wBI" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"wCl" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 13 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"wBK" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"wCo" = ( -/turf/open/mars_cave/mars_dirt_4, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "wCs" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/carpet, /area/bigredv2/caves/lambda/breakroom) -"wDa" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +"wCL" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"wDj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_17, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"wDk" = ( +/obj/item/weapon/shield/riot{ + pixel_x = -6 + }, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"wDl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"wDm" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"wDG" = ( +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"wET" = ( -/obj/structure/machinery/light{ +"wDZ" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"wEe" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Machine room" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wEi" = ( +/obj/structure/machinery/computer/communications{ dir = 8 }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"wFL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/hazard{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/surface/table, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/outside/admin_building) +"wEy" = ( +/obj/structure/largecrate/guns/merc{ + icon_state = "case_double"; + name = "supply crate" }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"wFO" = ( -/turf/open/mars_cave/mars_cave_20, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"wFP" = ( +"wFa" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wFe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) -"wGr" = ( -/obj/structure/closet/firecloset/full, -/turf/open/mars, -/area/bigredv2/outside/c) -"wGD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"wFJ" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"wFM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wFT" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"wGF" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"wGV" = ( -/obj/item/tool/wrench, -/turf/open/floor/asteroidwarning/north, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"wGr" = ( +/obj/structure/closet/firecloset/full, +/turf/open/mars, /area/bigredv2/outside/c) +"wGw" = ( +/obj/structure/machinery/flasher/portable, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"wGS" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "wHg" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz1north_mining" }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) -"wHx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/outside/admin_building) -"wHM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +"wHD" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/warnplate/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"wHF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"wIj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"wHK" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"wHO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/e) -"wIw" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_east) +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) +"wIv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) "wJd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wKf" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"wKx" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz1_north_cas) -"wKA" = ( +"wJe" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"wJf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"wJv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"wJK" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/nw) +"wJO" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"wJP" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz2_west_cas) +"wKd" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"wKr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"wLD" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wLU" = ( +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"wKC" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) +"wKV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bar Backroom" + }, /turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"wMg" = ( -/obj/item/tool/warning_cone{ - pixel_x = 5; - pixel_y = 13 +/area/bigredv2/outside/bar) +"wKY" = ( +/obj/structure/machinery/door_control{ + id = "Office Complex 1"; + name = "Storm Shutters"; + pixel_x = -32 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"wMp" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_north) -"wMM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"wLB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"wLJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"wLM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cargo Offices" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"wLQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"wLW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"wMd" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/virology) +"wMu" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"wMy" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_virology) +"wMC" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) "wMQ" = ( /obj/structure/largecrate/random/secure, /turf/open/floor, /area/bigred/ground/garage_workshop) +"wNc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"wNn" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) "wNA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_magazine/pistol/m1911, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wOK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/caves_lambda) -"wPk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"wNH" = ( +/obj/structure/machinery/door_control{ + id = "General Store"; + name = "Storm Shutters"; + pixel_x = 32 }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"wOi" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_cave_cas) +"wOs" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/virology) +"wOA" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/core, +/obj/item/shard, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"wOC" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"wQa" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 9; - pixel_y = 11 +/area/bigredv2/outside/engineering) +"wOL" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_16, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"wQC" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) +"wPm" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"wPW" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wQf" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"wRa" = ( +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) "wRl" = ( /obj/effect/landmark/nightmare{ insert_tag = "admin_pmc" }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/admin_building) -"wRH" = ( +"wRn" = ( +/obj/structure/bed/stool, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"wRu" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"wRP" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"wRZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/radio/headset, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) "wSj" = ( /obj/structure/sign/safety/life_support, /obj/structure/sign/safety/maint{ @@ -30636,23 +29961,39 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) -"wUo" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -8 - }, -/turf/open/mars_cave/mars_cave_15, +"wTt" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"wTC" = ( +/obj/structure/janitorialcart, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"wTF" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"wUe" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"wUy" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"wUF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"wUD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"wVd" = ( -/obj/structure/largecrate/random/barrel/red, +"wUS" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"wVe" = ( +/obj/item/paper/bigred/final, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"wVw" = ( -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) "wVB" = ( /obj/structure/platform, /obj/structure/platform{ @@ -30663,243 +30004,519 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"wVQ" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"wWE" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/n) -"wWK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"wWN" = ( -/obj/structure/largecrate/random/barrel/green, +"wVH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"wVJ" = ( +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"wVP" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"wVY" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tool/hand_labeler, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"wWb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"wWh" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"wWj" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"wWp" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"wWy" = ( +/obj/item/weapon/shield/riot, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"wXg" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz1_north_cas) -"wXv" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/space_port_lz2) +"wXd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) "wXz" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/research) -"wXN" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"wYE" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 +"wXD" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/filtration_plant) +"wXO" = ( +/obj/structure/disposalpipe/segment, +/obj/item/frame/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/pipes/valve/open, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wXS" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wXV" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"wZv" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"wZC" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/eta) -"wZP" = ( -/obj/structure/cargo_container/arious/rightmid, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"xaE" = ( +/area/bigredv2/caves_research) +"wXW" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Lambda Checkpoint" }, /turf/open/floor/delivery, /area/bigredv2/outside/lambda_cave_cas) +"wXY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"wYq" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wYv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"wZs" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/bottle/toxin, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"wZZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/e) +"xaf" = ( +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"xaq" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Medical Clinic Power Station" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"xaG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) "xaH" = ( /turf/closed/wall/wood, /area/bigredv2/caves_sw) -"xbV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/lz1_north_cas) -"xck" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 +"xaX" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"xbs" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"xbt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"xbK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -6; - pixel_y = 12 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"xcf" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"xcA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"xcI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/cabinet, +/obj/item/disk/nuclear, +/obj/item/weapon/gun/pistol/mod88, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"xdg" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"xdh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"xdw" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xdx" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"xdy" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/s) +"xdz" = ( +/obj/structure/prop/invuln/minecart_tracks, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"xcz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor/plating/warnplate/east, -/area/bigredv2/outside/telecomm/warehouse) -"xej" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +"xdD" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/ne) +"xdP" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"xef" = ( +/obj/structure/largecrate/random, /turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"xeN" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/filtration_plant) -"xfx" = ( +/area/bigredv2/caves/lambda/xenobiology) +"xey" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"xeC" = ( /obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" + dir = 1 }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"xfN" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"xfW" = ( -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/living) -"xgi" = ( +"xeD" = ( /obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 + icon_state = "xgib4" }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"xgm" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"xeH" = ( +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/research) +"xfi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/ne) -"xgw" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/lz2_south_cas) -"xhy" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xhB" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/ammo_box/magazine/misc/flares/empty, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xhU" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 27 +"xfm" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"xfp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"xgG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"xgJ" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"xgT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/telecomm/n_cave) +"xhr" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/filtration_plant) +"xhs" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = -24 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"xjb" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "xjU" = ( /obj/structure/cargo_container/arious/right, /turf/open/mars, /area/bigredv2/outside/space_port_lz2) -"xkq" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_research) -"xkH" = ( -/obj/structure/cable{ - icon_state = "4-8" +"xjV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/cable{ - icon_state = "4-10" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/outside/admin_building) +"xkn" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/lz2_south_cas) +"xkA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/e) +"xkN" = ( +/obj/effect/landmark/crap_item, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"xlj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, -/obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xkR" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3"; - pixel_x = 17 - }, +"xlC" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; pixel_y = 13 }, -/turf/open/mars_cave/mars_cave_13, +/obj/structure/closet/crate/miningcar/yellow, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"xlI" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"xlY" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"xme" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"xmp" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/dice/d20, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"xmF" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"xmG" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"xmy" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"xmT" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ +"xnn" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"xnp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"xnI" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"xnT" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"xod" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/c) +"xoe" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"xoL" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"xoU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"xpb" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/lz2_south_cas) -"xpl" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cargo Bay Security" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"xpc" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"xpp" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/item/tool/lighter/random, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) "xpG" = ( /obj/structure/sign/safety/hazard, /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_plant) -"xpL" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) +"xpO" = ( +/obj/structure/surface/table, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"xpX" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) "xqf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/bigredv2/outside/general_offices) +"xqJ" = ( +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"xrl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) "xrp" = ( /obj/structure/largecrate/guns/merc{ name = "\improper dodgy crate" }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xrO" = ( +"xrz" = ( +/obj/structure/surface/table, +/obj/item/tool/weedkiller/D24, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"xrR" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 4; health = 25000 }, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, /obj/item/weapon/twohanded/spear{ pixel_x = 5 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"xrT" = ( +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"xsi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"xsn" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) "xsX" = ( /obj/structure/bed/chair{ dir = 8; @@ -30908,21 +30525,49 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor, /area/bigredv2/outside/lambda_cave_cas) -"xte" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xtB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xtm" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"xtA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"xtE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"xtG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" }, -/obj/item/tool/warning_cone, -/obj/structure/barricade/handrail/wire{ +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"xtK" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"xtX" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"xud" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3" + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"xux" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/eta) +"xuA" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz2_south_cas) "xuP" = ( /obj/item/trash/cigbutt/cigarbutt{ pixel_x = 16; @@ -30937,117 +30582,268 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xuU" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"xwo" = ( -/obj/structure/disposalpipe/junction, +"xuT" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xwy" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/bigredv2/caves_lambda) +"xva" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Bedroom" }, -/obj/structure/cable, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/general_air_control/large_tank_control, -/obj/structure/cable{ - icon_state = "11-2" +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"xvq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Abandoned Mining Storage" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xya" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +"xvO" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"xvW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"xww" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/medical) +"xxj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"xyu" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"xyz" = ( -/obj/structure/girder, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"xxl" = ( +/obj/structure/surface/table/woodentable{ + flipped = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xxt" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"xxD" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/s) +"xyl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xzb" = ( -/obj/structure/surface/rack, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"xzi" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"xyy" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) -"xzs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"xyC" = ( +/obj/structure/fence, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"xyD" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"xAh" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/area/bigredv2/outside/admin_building) +"xzp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, /turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"xAv" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_lambda) +"xzM" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"xzV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"xzY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xAC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wetleather, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xAX" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +"xAP" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/se) +"xAY" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"xBb" = ( +/obj/structure/barricade/wooden, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"xBw" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"xBx" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump, +/obj/item/trash/cheesie, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xBA" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"xBn" = ( -/obj/structure/platform{ +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"xBW" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"xCi" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"xBr" = ( -/obj/item/ore{ - pixel_x = 9 +/obj/structure/machinery/door_control{ + id = "Office Complex 2"; + name = "Storm Shutters"; + pixel_x = -32 }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"xBS" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/lz1_north_cas) -"xDO" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/oob) -"xDW" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"xCA" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves_east) +"xDl" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_lambda) +"xDE" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"xDH" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"xDP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xEr" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_north) +"xEz" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xES" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"xFa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"xFt" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"xFz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"xFA" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xFN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"xFX" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "xFZ" = ( /turf/open/mars_cave, /area/bigredv2/caves_lambda) -"xIo" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/oob) -"xIv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "\improper Abandoned Mining Storage" +"xGv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"xGw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Technical Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"xGG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Toilet" }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xIx" = ( -/obj/item/clothing/mask/gas, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/filtration_plant) +"xIB" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) "xIP" = ( /obj/structure/surface/table, /turf/open/floor, @@ -31056,22 +30852,33 @@ /obj/item/ore, /turf/open/mars, /area/bigredv2/outside/filtration_plant) -"xJP" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xJT" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) +"xJH" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/space_port_lz2) +"xJJ" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"xJK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"xJR" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) "xKb" = ( /obj/structure/prop/server_equipment/yutani_server, /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) +"xKn" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xKs" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) "xKG" = ( /obj/structure/bed/sofa/south/grey/right{ pixel_y = 6 @@ -31079,47 +30886,65 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) -"xLz" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1containers_scramble" - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"xLM" = ( -/obj/structure/machinery/light{ - dir = 1 +"xLf" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"xLG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 2; + pixel_y = 17 }, -/obj/structure/largecrate/supply/supplies/water, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"xLI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"xLS" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"xLZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) "xMr" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) -"xMx" = ( -/obj/structure/surface/table, +"xMs" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/pistol/holdout, -/obj/structure/machinery/light, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xMT" = ( -/obj/structure/closet, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xNL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"xMH" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"xMM" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/se) +"xNs" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"xNX" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/whitepurple/north, /area/bigredv2/caves/lambda/research) "xOk" = ( /obj/effect/landmark/nightmare{ @@ -31127,71 +30952,184 @@ }, /turf/closed/wall/solaris, /area/bigredv2/outside/cargo) -"xPg" = ( -/obj/structure/barricade/handrail/wire, +"xOw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"xOx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"xOF" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"xOR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"xPn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"xPu" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"xPK" = ( +/obj/item/device/flashlight/lantern, /turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) +/area/bigredv2/outside/ne) +"xPS" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) "xQb" = ( /obj/structure/pipes/vents/pump/on, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/cargo) -"xQd" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"xRl" = ( -/obj/item/weapon/gun/pistol/b92fs{ - pixel_x = 13; - pixel_y = -7 +"xQg" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"xRn" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_north) -"xSa" = ( -/obj/structure/prop/dam/crane, -/turf/open/mars_cave/mars_cave_13, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"xQH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) +"xQL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"xRi" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"xRz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"xRM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"xSg" = ( +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xSj" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"xSq" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"xSz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"xSG" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"xSI" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"xTe" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) "xTk" = ( /obj/limb/arm/l_arm, /obj/effect/decal/cleanable/blood/drip, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor, /area/bigredv2/outside/lambda_cave_cas) +"xTu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) "xTM" = ( /obj/structure/closet/medical_wall, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"xTV" = ( +"xTP" = ( +/obj/item/tool/pen, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) -"xUo" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"xUS" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/eta/research) +"xUb" = ( +/obj/item/device/reagent_scanner, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"xUD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Abandoned Mining Storage" + }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xWl" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda"; - name = "Lambda Lockdown" +"xUH" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"xUX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" }, /turf/open/floor/delivery, -/area/bigredv2/caves_north) -"xWm" = ( -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) +/area/bigredv2/outside/cargo) +"xVY" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"xWq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/telecomm/warehouse) "xWr" = ( /obj/item/ore/uranium{ desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; @@ -31208,252 +31146,320 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xWv" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"xWz" = ( -/obj/effect/decal/cleanable/dirt{ - pixel_x = 17 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xWH" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"xWR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/outside/telecomm/warehouse) -"xWV" = ( +"xWt" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/outside/admin_building) +"xWI" = ( /obj/structure/machinery/power/apc{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" + dir = 1; + name = "Bar APC" }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xWL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight/lantern, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xXg" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"xXq" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"xXP" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) +"xXc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"xXS" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves_north) "xXT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor, /area/bigredv2/outside/general_offices) -"xYc" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"xZf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"xYg" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"xYk" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, /turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"xZm" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"xZL" = ( -/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/space_port) +"xYp" = ( +/turf/open/floor/redcorner, /area/bigredv2/outside/lambda_cave_cas) -"yar" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"ybk" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"ybT" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Machine room" +"xYx" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"xYW" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/n) +"xZb" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"xZc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Break Room" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ycM" = ( -/turf/open/mars_cave/mars_cave_7, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) -"ycP" = ( +"xZi" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"xZk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"yda" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/bigredv2/outside/filtration_plant) +"xZn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"xZB" = ( +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"xZL" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/lambda_cave_cas) +"xZV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ydd" = ( -/obj/item/weapon/shield/riot{ - pixel_x = -6 +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"yak" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"yau" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"yaw" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"ybj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"ybD" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_lambda) +"ybJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"ydn" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/eta) -"yej" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"ybK" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/warnwhite/southwest, +/area/bigredv2/caves/lambda/virology) +"ybQ" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ycp" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"yfs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ycH" = ( +/turf/open/floor/bluegrid/damaged5, +/area/bigredv2/caves/lambda/research) +"ycV" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"ydc" = ( +/obj/item/clothing/shoes/galoshes, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"ydi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"yfz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"yfN" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ygN" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/brown, -/obj/structure/machinery/washing_machine{ - pixel_y = 13 +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"ydz" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/w) +"ydB" = ( +/obj/structure/machinery/computer/area_atmos/area, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"ydJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office Brig" }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"ygP" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"ydQ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"ydT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "NE-out" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"yha" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_y = 8 +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "viro_q"; + layer = 4; + name = "Qurantine Lockdown"; + normaldoorcontrol = 1; + pixel_x = -25; + req_access_txt = "7"; + specialfunctions = 4 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"yhc" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"yhG" = ( -/obj/structure/showcase{ - icon = 'icons/obj/structures/machinery/research.dmi'; - icon_state = "d_analyzer_la" +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"yee" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"yes" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"yeB" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"yfL" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"ygv" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"ygw" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat{ + pixel_x = 7; + pixel_y = 12 }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"yhN" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"yhj" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/rad, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"yhm" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"yiM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"yhV" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"yjU" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +"yiP" = ( +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"yiW" = ( +/obj/structure/surface/table, +/obj/item/weapon/baton, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"yjS" = ( +/obj/structure/platform/shiva{ + dir = 8 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "yjV" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/gm/river, /area/bigredv2/outside/engineering) +"ykp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/lz2_cave) +"ykq" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) "ykR" = ( /turf/closed/wall/mineral/uranium, /area/bigredv2/outside/engineering) -"ykW" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +"ykU" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"ylj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"ylo" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"ylD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/eta/research) +"ymf" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/window{ + dir = 8 }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"yln" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +/obj/structure/machinery/computer/emails{ dir = 4 }, -/obj/structure/closet/crate, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23/ap, -/obj/item/ammo_magazine/rifle/nsg23/ap, -/obj/item/ammo_magazine/rifle/nsg23/extended, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ymi" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"ymh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Robotics" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) (1,1,1) = {" aaa @@ -32111,8 +32117,8 @@ aaa aab aao aao -rfe -xmT +jbs +lTZ aao aao aao @@ -32175,10 +32181,10 @@ aao aao aao aao -jCY -fLj -fLj -fmn +ezh +jQw +jQw +wtF aao aao aao @@ -32193,14 +32199,14 @@ aao aao aao aao -jCY -fLj -fLj -fLj -fLj -fLj -fLj -fmn +ezh +jQw +jQw +jQw +jQw +jQw +jQw +wtF aao aao aao @@ -32327,10 +32333,10 @@ aaa aaa aab aao -cnk -ada +eYv +kPF qjO -gsW +xUH aao aao aao @@ -32350,19 +32356,19 @@ aao aao aao acA -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm acA aao aao @@ -32391,12 +32397,12 @@ aao aao aao aao -fxK -xmy -rDP -rDP -rDP -fmn +kFC +htU +pcd +pcd +pcd +wtF aao aao aao @@ -32409,18 +32415,18 @@ aao aao aao aao -jCY -rDP -rDP -rDP -rDP -iwG -rDP -rDP -rDP -rDP -rDP -rDP +ezh +pcd +pcd +pcd +pcd +fTb +pcd +pcd +pcd +pcd +pcd +pcd aao aao aao @@ -32545,10 +32551,10 @@ aaa aab aao aao -wdM -qVd -aVR -sbz +cWT +duG +maG +nev aao aao aao @@ -32567,19 +32573,19 @@ aao aao aao acA -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm +wwm acA aao aao @@ -32607,14 +32613,14 @@ aao aao aao aao -fxK -xmy -xmy -rDP -iwG -rDP -rDP -fmn +kFC +htU +htU +pcd +fTb +pcd +pcd +wtF aao aao aao @@ -32623,39 +32629,39 @@ aao aao aao aao -dIz +wMy aao -jCY -rDP -rDP -rDP -rDP -rDP -rDP +ezh +pcd +pcd +pcd +pcd +pcd +pcd ucH -rDP -rDP -rDP -rDP -rDP -rDP +pcd +pcd +pcd +pcd +pcd +pcd aao aao -dIz +wMy aao -jCY -fmn +ezh +wtF aao -jCY -icQ -icQ -icQ -icQ -icQ -icQ -icQ -icQ -oQI +ezh +sbS +sbS +sbS +sbS +sbS +sbS +sbS +sbS +pek aao aao aao @@ -32763,7 +32769,7 @@ aab aao aao aao -aVc +qYH aVQ nlW aao @@ -32784,8 +32790,8 @@ aao aao aao acA -aas -aas +wwm +wwm acQ acQ acQ @@ -32795,8 +32801,8 @@ acQ acQ acQ acQ -ahc -aas +dye +wwm ahN aao aao @@ -32824,56 +32830,56 @@ aao aao aao aao -rCA -xmy -xmy -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP +bWB +htU +htU +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd aao aao -jCY -rDP -fLj -rDP -rDP -rDP -rDP -rDP -rDP -mZC -rDP -rDP -rDP -rDP -rDP -rDP -rDP +ezh +pcd +jQw +pcd +pcd +pcd +pcd +pcd +pcd +rHF +pcd +pcd +pcd +pcd +pcd +pcd +pcd aao aao -fwa -fLj -rDP -rDP -fLj -rDP -wog -wog -wog -wog -wog -wog -wog -wog -wog -oQI +hIx +jQw +pcd +pcd +jQw +pcd +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +pek aao aao aao @@ -33001,19 +33007,19 @@ aao aao aao acA -aas -aas +wwm +wwm acQ -acY -aaK -adH -aea -aeB -afb -afI +nMw +eeB +rZv +vgK +gaV +jTA +kjv acQ -aas -aas +wwm +wwm aiv aao aao @@ -33037,31 +33043,31 @@ aao aao aao aao -xmy -xmy -xmy -fxK -xmy -xmy -xmy -rDP -rDP -rDP -oAf -rDP -rDP -rDP -rDP -rDP -rDP -rDP +htU +htU +htU +kFC +htU +htU +htU +pcd +pcd +pcd +bpv +pcd +pcd +pcd +pcd +pcd +pcd +pcd aao -fwa -rDP -rDP -rDP +hIx +pcd +pcd +pcd ucH -rDP +pcd aao aao aao @@ -33070,34 +33076,34 @@ aao aao aao aao -rDP -rDP -rDP -fLj -bcn -rDP -rDP -rDP -rDP -rDP -rDP -daf -wog -wog -hoQ -wog -wog -daf -wog -wog -wog -icQ -icQ -icQ -icQ -icQ -icQ -oQI +pcd +pcd +pcd +jQw +cTk +pcd +pcd +pcd +pcd +pcd +pcd +xzM +jYR +jYR +xES +jYR +jYR +xzM +jYR +jYR +jYR +sbS +sbS +sbS +sbS +sbS +sbS +pek aao aao aao @@ -33173,8 +33179,8 @@ aao aao aao aao -szw -szw +vAC +vAC aao aao aao @@ -33218,19 +33224,19 @@ aao aao aao acA -aas -aas +wwm +wwm acQ -ade -ade -ade -aeb -aeC -ade -aaV +hmS +hmS +hmS +bRx +qoy +hmS +ruB afv -ahd -ahd +nzF +nzF acA aao aao @@ -33249,34 +33255,34 @@ aao aao aao aao -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -rCA -xmy -xmy -xmy -rDP -rDP -rDP -oAf -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -oAf +htU +htU +htU +htU +htU +htU +htU +htU +bWB +htU +htU +htU +pcd +pcd +pcd +bpv +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +bpv aao aao aao @@ -33287,14 +33293,14 @@ aao aao aao aao -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd ucH ucH ucH @@ -33302,22 +33308,22 @@ iGK iGK iGK iGK -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -icQ -icQ -oQI +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +sbS +sbS +pek aao aao aao @@ -33348,12 +33354,12 @@ aao aao aao aao -fdr -icQ -icQ -icQ -icQ -oQI +hUX +sbS +sbS +sbS +sbS +pek aao aao aao @@ -33389,9 +33395,9 @@ aao aao aao aao -wCo -erA -tJv +cvS +hwZ +imW aao aao aao @@ -33435,19 +33441,19 @@ aao aao aao acA -aas -aas +wwm +wwm acQ aWz acZ -ade -ade -ade -afc -ade +hmS +hmS +hmS +dRE +hmS afv -ahd -ahd +nzF +nzF acA aao aao @@ -33462,38 +33468,38 @@ aao rNs aao aao -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -lrH -xmy -rCA -xmy -xmy -xmy -rDP -rDP -rDP -oAf -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -oAf +htU +htU +htU +htU +htU +htU +htU +htU +htU +htU +xfm +htU +bWB +htU +htU +htU +pcd +pcd +pcd +bpv +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +bpv aao aao aao @@ -33503,15 +33509,15 @@ aao aao aao aao -fLj -fLj -fLj -rDP -rDP -rDP -rDP -rDP -mZC +jQw +jQw +jQw +pcd +pcd +pcd +pcd +pcd +rHF aao aao aao @@ -33519,22 +33525,22 @@ aao aao aao aao -gxJ +jOV iGK iGK iGK iGK iGK iGK -wog -wog -wog -wog -daf -wog -wog -wog -feS +jYR +jYR +jYR +jYR +xzM +jYR +jYR +jYR +nkz aao aao aao @@ -33552,26 +33558,26 @@ aao aao aao aao -wog -wog -wog -wog -wog +jYR +jYR +jYR +jYR +jYR aao aao aao aao aao aao -fdr -icQ -uYb -uYb -uYb -uYb -uYb -uYb -oQI +hUX +sbS +may +may +may +may +may +may +pek aao aao aao @@ -33596,20 +33602,20 @@ aao aao aao aao -ixA -hfB -egI +cRt +rWR +uNq aao aao aao aao aao aao -wCo -fLR -wCo -gyL -nSP +cvS +fzG +cvS +wxt +bWz aao aao aao @@ -33652,19 +33658,19 @@ aao aao aao acA -aas -aas +wwm +wwm acQ aWz biQ -ade -ade -ade -adr -afJ +hmS +hmS +hmS +cNy +hJL afv -aas -aas +wwm +wwm acA acA acA @@ -33672,62 +33678,62 @@ acA acA ahN acA -sOE -csE -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy +msX +toh +htU +htU +htU +htU +htU +htU +htU +htU +htU +htU gda gda gda -xmy -xmy -xmy -csE -xmy -xmy -hcb -xmy -rDP -rDP -rDP -oAf -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -iwG -rDP -rDP -fLj -fLj -fLj -fLj -aao -aao -aao -aao -rDP -rDP +htU +htU +htU +toh +htU +htU +hOT +htU +pcd +pcd +pcd +bpv +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +fTb +pcd +pcd +jQw +jQw +jQw +jQw +aao +aao +aao +aao +pcd +pcd ucH ucH -rDP -rDP -rDP -rDP -oAf +pcd +pcd +pcd +pcd +bpv aao aao aao @@ -33743,20 +33749,20 @@ aao aao aao aao -gxJ +jOV iGK iGK iGK iGK -wog -wog -wog -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ +jYR +jYR +jYR +oMX +oMX +oMX +oMX +oMX +oMX aao aao aao @@ -33767,28 +33773,28 @@ aao aao aao aao -wog -wog -wog -sLy -wog -wog -wog -wog -wog +jYR +jYR +jYR +qac +jYR +jYR +jYR +jYR +jYR aao aao aao -fdr -wog -wog -cCr -uYb -uYb -uYb -uYb -uYb -feS +hUX +jYR +jYR +ljT +may +may +may +may +may +nkz aao aao aao @@ -33806,28 +33812,28 @@ aao aao aao aao -els -rxh -rxh -rxh -rxh -sZh -szw -wCo -fLR -qFh -sWa +lLV +hMV +hMV +hMV +hMV +mjQ +vAC +cvS +fzG +czG +jCQ vHw vHw aao aao aao -wCo -vmI -nSP -wCo -wCo -wCo +cvS +lrr +bWz +cvS +cvS +cvS vHw vHw aao @@ -33869,82 +33875,82 @@ aao aao aao acA -aas -aas +wwm +wwm acQ acQ acQ acQ -aec +eUv acQ acQ acQ acQ -aas -aas -aas -ahd -ahd -ahd -ahd -all +wwm +wwm +wwm +nzF +nzF +nzF +nzF +mve akl -bRm -xmy -xmy -csE -sQw -xmy -xmy -xmy -xmy -xmy -xmy -csE -xmy -xmy -csE -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -rDP -rDP -rDP -oAf +nVE +htU +htU +toh +vwB +htU +htU +htU +htU +htU +htU +toh +htU +htU +toh +htU +htU +htU +htU +htU +htU +htU +htU +pcd +pcd +pcd +bpv aao aao aao aao aao aao -rDP -fwa -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -mZC -rDP -rDP -rDP -rDP -rDP -rDP -oAf +pcd +hIx +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +rHF +pcd +pcd +pcd +pcd +pcd +pcd +bpv aao aao aao @@ -33965,47 +33971,47 @@ aao aao aao aao -gxJ +jOV ski -cYJ -cYJ -cYJ -vMj -vMj -vMj -cYJ -cYJ -cYJ -cYJ -cYJ +oMX +oMX +oMX +tes +tes +tes +oMX +oMX +oMX +oMX +oMX aao aao aao aao aao -wog -wog -wog -wog -wog -wog -gYt -gYt -wog -wog -sLy -boy -wog -wog -wog -wog -uYb -uYb -uYb -gcR -uYb -uYb -uYb +jYR +jYR +jYR +jYR +jYR +jYR +rHb +rHb +jYR +jYR +qac +vxx +jYR +jYR +jYR +jYR +may +may +may +iVF +may +may +may aao aao aao @@ -34022,30 +34028,30 @@ aao aao aao aao -rxh -rxh -rxh -rxh -kqV -cqZ -dUj -vMm -qot -xck -jYS -nSP -nSP -wVQ -sZh -jVN -wCo -tqi -owR -owR -owR -owR -owR -jXP +hMV +hMV +hMV +hMV +ioj +npE +kBJ +xlC +sDu +nrF +buq +bWz +bWz +jUF +mjQ +kiS +cvS +gRM +kXA +kXA +kXA +kXA +kXA +jkL vHw aao aao @@ -34086,82 +34092,82 @@ aao aao aao acA -aas -aas +wwm +wwm acQ -adb -ads -adf -aed -aeD -ade +ttk +fct +snq +kDZ +xBA +hmS afK acQ -aas -aas -ahd -aiW -aas -ahd -ahd -all +wwm +wwm +nzF +eVa +wwm +nzF +nzF +mve acA -bRm -xmy -xmy -xmy -sGi -xmy -xmy -xmy -xmy -xmy -csE -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -rDP -rDP -rDP -oAf -aao -aao -aao -aao -aao -aao -aao -fwa -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -iwG -rDP -rDP +nVE +htU +htU +htU +mcP +htU +htU +htU +htU +htU +toh +htU +htU +htU +htU +htU +htU +htU +htU +htU +htU +htU +htU +pcd +pcd +pcd +bpv +aao +aao +aao +aao +aao +aao +aao +hIx +pcd +pcd +pcd +pcd +pcd +pcd +pcd +pcd +fTb +pcd +pcd ucH -rDP -rDP -rDP +pcd +pcd +pcd aao aao -fwa -rDP -rDP -mZC +hIx +pcd +pcd +rHF aao aao aao @@ -34183,47 +34189,47 @@ aao aao aao aao -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -vMj -vMj -cYJ -cYJ -wog -wog -wog -wog -wog -wog -gYt -gYt -wog -wog -gYt -gYt -wog -wog -wog -boy -wog -wog -wog -wog -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb +oMX +oMX +oMX +oMX +oMX +oMX +oMX +oMX +oMX +tes +tes +oMX +oMX +jYR +jYR +jYR +jYR +jYR +jYR +rHb +rHb +jYR +jYR +rHb +rHb +jYR +jYR +jYR +vxx +jYR +jYR +jYR +jYR +may +may +may +may +may +may +may +may aao aao aao @@ -34238,32 +34244,32 @@ aao aao aao aao -wCo -wVQ -rxh -rxh -rxh -rxh -rxh -waX -rxh -owR -owR -igU -rWN -owR -rsv -sZh -jVN -wCo -kli -rxh -rxh -rxh -rxh -rsv -opK -rxh +cvS +jUF +hMV +hMV +hMV +hMV +hMV +gmi +hMV +kXA +kXA +qPp +kxv +kXA +nNj +mjQ +kiS +cvS +oSm +hMV +hMV +hMV +hMV +nNj +sbG +hMV aao aao aao @@ -34303,81 +34309,81 @@ aae aae aae acA -aas -aas +wwm +wwm acQ -aaV -adt -adt -adt -ade -ade +ruB +wgo +wgo +wgo +hmS +hmS acZ afv -ahd -ahd -aas -aas -aas -aas -aas -all +nzF +nzF +wwm +wwm +wwm +wwm +wwm +mve acA -bRm -xmy -xmy -xmy -xmy -csE -csE -xmy -csE -csE -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy +nVE +htU +htU +htU +htU +toh +toh +htU +toh +toh +htU +htU +htU +htU +htU +htU +htU +htU +htU +htU +htU gda gda -fOc -rDP -rDP -iwG -fmn +hdk +pcd +pcd +fTb +wtF aao aao aao aao aao aao -fwa +hIx ucH ucH ucH -rDP -rDP +pcd +pcd ucH ucH ucH ucH ucH -oAf +bpv aao -fwa -rDP +hIx +pcd aao aao aao -crQ +wxN ucH -mZC +rHF aao aao aao @@ -34397,51 +34403,51 @@ aao aao aao aao -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ +oMX +oMX +oMX +oMX +oMX +oMX +oMX +oMX +oMX ski eEy ski -cYJ -cYJ -cYJ -ovB -wog -icQ -gYt -gYt -wog -sLy -gYt -gYt -wog -wog -wog -wog -wog -wog -wog -boy -lwX -wog -wog -wog -wog -wog -wog -wog -uYb -uYb -uYb -uYb -wog +oMX +oMX +oMX +rPZ +jYR +sbS +rHb +rHb +jYR +qac +rHb +rHb +jYR +jYR +jYR +jYR +jYR +jYR +jYR +vxx +fWR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +may +may +may +may +jYR aao aao aao @@ -34454,34 +34460,34 @@ vHw aao aao aao -wCo -wCo -wFO -rxh -cqZ -rxh -rxh -rxh -sYR -rsv -rsv -vfQ -vfQ -rsv -rsv -rsv -sZh -jVN -wCo -wCo -wVQ -rxh -rxh -rxh -rsv -rsv -rxh -rxh +cvS +cvS +fBR +hMV +npE +hMV +hMV +hMV +emM +nNj +nNj +qsA +qsA +nNj +nNj +nNj +mjQ +kiS +cvS +cvS +jUF +hMV +hMV +hMV +nNj +nNj +hMV +hMV aao aao aao @@ -34506,68 +34512,68 @@ aao aao aao aae -abQ -aaf -aaf -aaf -aaf -abQ -aaf -aaf -aaf -aaf -aaf -aaf -abQ -aaf -aas -acH -acR -add -adu -adu -aee -ade -ade +jWq +tNQ +tNQ +tNQ +tNQ +jWq +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +jWq +tNQ +wwm +ooy +riu +qpm +utz +utz +fjd +hmS +hmS afL afv -aas -aas -aas -aas -aas -ahd -aaZ -all +wwm +wwm +wwm +wwm +wwm +nzF +kBf +mve acA -bRm -xmy -xmy -xmy -xmy -xmy -xmy -lrH -xmy -xmy -xmy -xmy -aao -aao -xmy -xmy -csE -csE -rCA +nVE +htU +htU +htU +htU +htU +htU +xfm +htU +htU +htU +htU +aao +aao +htU +htU +toh +toh +bWB gda -eci +jPW aao aao -fwa +hIx gJw gJw -vNh -vNm +cnu +ubh aao aao aao @@ -34577,9 +34583,9 @@ aao aao aao aao -fwa -fwa -mZC +hIx +hIx +rHF aao aao aao @@ -34587,8 +34593,8 @@ aao aao aao aao -fwa -oAf +hIx +bpv aao aao aao @@ -34613,54 +34619,54 @@ aao aao aao aao -cYJ -cYJ -vMj -vMj -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -uyk -cYJ -cYJ -cYJ -wog -wog -jAo -gYt -wog -wog -wog -wog -wog -wog -sLy -wog -wog +oMX +oMX +tes +tes +oMX +oMX +oMX +oMX +oMX +oMX +oMX +oMX +oMX +tva +oMX +oMX +oMX +jYR +jYR +rNn +rHb +jYR +jYR +jYR +jYR +jYR +jYR +qac +jYR +jYR aao aao aao -kvp -wog -wog -wog -wog -wog -wog -wog -wog -uYb -wog -uYb -uYb -dPC -rxh +hgi +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +may +jYR +may +may +nCl +hMV vHw vHw vHw @@ -34669,37 +34675,37 @@ vHw vHw vHw vHw -rsv -sZh -wCo -wCo -wCo -wFO -rxh -rxh -rxh -rxh -rxh -sZh -wVQ -vfQ -vfQ -rsv -rsv -mqX -sZh -iLs -wCo -wCo -wVQ -rxh -rxh -rxh -rxh -rxh -evX -rxh -rxh +nNj +mjQ +cvS +cvS +cvS +fBR +hMV +hMV +hMV +hMV +hMV +mjQ +jUF +qsA +qsA +nNj +nNj +plm +mjQ +tGv +cvS +cvS +jUF +hMV +hMV +hMV +hMV +hMV +xbt +hMV +hMV vHw aao aao @@ -34723,42 +34729,42 @@ aao aao aao aae -aaf -aaD -aaR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -acI +tNQ +dnd +tmV +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +iUy acQ -ade -ade -ade -adt -ade -ade +hmS +hmS +hmS +wgo +hmS +hmS acZ afv -aas -ahd -ahd -aas -aas -ahd -aas -all +wwm +nzF +nzF +wwm +wwm +nzF +wwm +mve acA aao -xmy +htU gda gda gda @@ -34766,26 +34772,26 @@ gda gda gda gda -xmy -xmy +htU +htU aao aao aao aao -rCA -xmy -xmy +bWB +htU +htU gda aao aao aao aao -mZC +rHF aao -wvk -aGo -aHf -aHf +eoK +vRv +bla +bla aao aao aao @@ -34794,9 +34800,9 @@ lFR aao aao aao -fwa -fwa -rDP +hIx +hIx +pcd aao aao aao @@ -34804,8 +34810,8 @@ aao aao aao aao -crQ -oAf +wxN +bpv aao aao aao @@ -34829,30 +34835,30 @@ aao aao aao aao -cYJ -cYJ -uyk -tDv -cYJ -cYJ -cYJ -cYJ -cYJ -oNu -cYJ -cYJ -cYJ -cYJ -uyk -cYJ -tDv -wog -wog -wog -wog -wog -icQ -oQI +oMX +oMX +tva +eHu +oMX +oMX +oMX +oMX +oMX +wjp +oMX +oMX +oMX +oMX +tva +oMX +eHu +jYR +jYR +jYR +jYR +jYR +sbS +pek aao aao aao @@ -34863,60 +34869,60 @@ aao aao aao aao -kvp -wog -wog -wog -wog -wog +hgi +jYR +jYR +jYR +jYR +jYR xaH xaH -wog -uYb -uYb -uYb -uYb -buj -rxh -rxh -xhy -rxh -rxh -waX -rsv -nxa -rsv -rsv -rsv -eql -wCo -nSP -wCo -wVQ -rxh -rxh -rxh -rxh -rxh -rsv -fnO -fnO -fnO -fnO -fnO -pJX -iLs -wCo -wCo -wVQ -rxh -rxh -rxh -rxh -rxh -rxh -rxh -rxh +jYR +may +may +may +may +wlQ +hMV +hMV +rdB +hMV +hMV +gmi +nNj +mSr +nNj +nNj +nNj +hBU +cvS +bWz +cvS +jUF +hMV +hMV +hMV +hMV +hMV +nNj +tuF +tuF +tuF +tuF +tuF +wDG +tGv +cvS +cvS +jUF +hMV +hMV +hMV +hMV +hMV +hMV +hMV +hMV vHw aao aao @@ -34940,58 +34946,58 @@ aao aao aao aae -aaf -aaf -aaf -aar -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -abi -aaf -aaf -acJ +tNQ +tNQ +tNQ +uFn +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tAE +tNQ +tNQ +lbY acQ -adf -adv -adI -aef -ade -ade +snq +lHk +mrp +nKh +hmS +hmS afL acQ -aas -ahd -ahd -aas -aas -ahd -aas -all +wwm +nzF +nzF +wwm +wwm +nzF +wwm +mve akl aao aao pQM -eOd -eOd +hvO +hvO pQM -eOd -eOd -eOd +hvO +hvO +hvO aao aao aao aao aao aao -siM +ecB gda -sGi +mcP aao aao aao @@ -34999,10 +35005,10 @@ aao aao aao aao -pdW -aGp -aGq -aFs +mnl +wwH +jTb +mqz aao aao aao @@ -35011,9 +35017,9 @@ aao aao aao aao -rGP -gYl -gKk +daa +ulL +lWn aao aao aao @@ -35022,7 +35028,7 @@ aao aao aao ozv -vNh +cnu aao aao aao @@ -35042,34 +35048,34 @@ aao aao aao aao -cYJ -cYJ -cYJ -cYJ -cYJ -vMj -cYJ -cYJ -cYJ +oMX +oMX +oMX +oMX +oMX +tes +oMX +oMX +oMX ski ski ski -oNu +wjp aao aao aao aao aao -bQb +jqC ski ski -wog -gYt -gYt -wog -wog -wog -feS +jYR +rHb +rHb +jYR +jYR +jYR +nkz aao aao aao @@ -35080,61 +35086,61 @@ aao aao aao aao -kvp -wog -wog -wog -wog -wog +hgi +jYR +jYR +jYR +jYR +jYR xaH xaH -wog -uYb -uYb -uYb -uYb -rxh -ced -rxh -pmN -rxh -rxh -rxh -rsv -rsv -rsv -rsv -rsv -sZh -nrj -wCo -wCo -wVQ -aao -aao -aao -aao -rxh -sZh -onh -wCo -wCo -nSP -wCo -mfw -iLs -wCo -wCo -wVQ -rxh -rxh -rxh -mOZ -rxh -rxh -rxh -pgi -pgi +jYR +may +may +may +may +hMV +cRE +hMV +dJk +hMV +hMV +hMV +nNj +nNj +nNj +nNj +nNj +mjQ +rWt +cvS +cvS +jUF +aao +aao +aao +aao +hMV +mjQ +nVF +cvS +cvS +bWz +cvS +cjm +tGv +cvS +cvS +jUF +hMV +hMV +hMV +nDM +hMV +hMV +hMV +jzO +jzO aao aao aao @@ -35157,22 +35163,22 @@ aae aae aae aae -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -abP -aaf -aaf -aaf -aaf -aaf -aaf -acJ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tBE +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +lbY acQ acQ acQ @@ -35216,14 +35222,14 @@ aao aao aao aao -aFs -aGq -aFs -aFt -aFu -aFu -aFt -aFt +mqz +jTb +mqz +gAG +sMX +sMX +gAG +gAG aoD aoD aoD @@ -35258,16 +35264,16 @@ aao aao aao aao -fSY -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cdA +wJP +oMX +oMX +oMX +oMX +oMX +oMX +oMX +oMX +fdz aao aao aao @@ -35280,15 +35286,15 @@ aao aao aao aao -kvp -gYt -gYt -wog -sLy -wog -wog -icQ -oQI +hgi +rHb +rHb +jYR +qac +jYR +jYR +sbS +pek aao aao aao @@ -35297,35 +35303,35 @@ aao aao aao aao -gxJ -wog -wog -wog -wog -wog -wog -wog -wog -uYb -uYb -uYb -uYb -rxh -fnO -fnO -fnO -fnO -cmC -waX -mFT -rsv -rsv -rsv -rsv -rsv -eql -onh -wCo +jOV +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +may +may +may +may +hMV +tuF +tuF +tuF +tuF +nHy +gmi +oqp +nNj +nNj +nNj +nNj +nNj +hBU +nVF +cvS aao aao aao @@ -35334,24 +35340,24 @@ uHQ uHQ uHQ uHQ -oKy -pSa -ogt -oKy +lpk +gwV +iFL +lpk uHQ uHQ uHQ -pLj -gHH -rxh -evX -jtL -rxh -fnO -fnO -rxh -pgi -pgi +tzV +bVF +hMV +xbt +wbl +hMV +tuF +tuF +hMV +jzO +jzO aao aao aao @@ -35371,34 +35377,34 @@ aao aao aao aae -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -abC +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tUZ aae -abZ -aaf -aaf -aaf -aaf -aaf -acJ -abQ -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +cmm +tNQ +tNQ +tNQ +tNQ +tNQ +lbY +jWq +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ aae aao aao @@ -35433,29 +35439,29 @@ aao aao aao aao -aFs -aFs -aFt -aHZ +mqz +mqz +gAG +evO aFv aFv -aGr -aHg +fIi +dAI aoD -aMZ -aNc +tvu +pOo aoD -aGP +uwt aRE -aSu +oIS arT -aGX -aVC -aWd -aWO -aXu +xrz +uhU +fcy +vyK +vZc aoD -aIc +xSG aRE aoD aao @@ -35475,16 +35481,16 @@ aao aao aao aao -kgw +mdZ tft -rtL -rtL -rtL +tat +tat +tat tft tft ski ski -oNu +wjp aao aao aao @@ -35497,15 +35503,15 @@ aao aao aao aao -gxJ +jOV iGK iGK -wog -wog -wog -wog -wog -feS +jYR +jYR +jYR +jYR +jYR +nkz aao aao aao @@ -35515,32 +35521,32 @@ aao aao aao aao -kvp -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -pcA -pOL -hmL -eju -rHr -wFO -rxh +hgi +may +may +may +may +may +may +may +may +may +may +may +rWh +jBN +cgY +rMd +pYW +fBR +hMV key jUY jUY jUY dHr hLp -drT +uDp vHw aao aao @@ -35548,27 +35554,27 @@ aao aao aao uHQ -rMg -jRi +gRg +rgV uHQ -rYD -rtS -kCe -pSa -jkn -xMx +wFM +xAC +vWs +gwV +vWp +dNz uHQ -wVd -fFG -fnO -fnO -cJA -sZh -wCo -wCo -wFO -pgi -pgi +nbA +dWj +tuF +tuF +vyI +mjQ +cvS +cvS +fBR +jzO +jzO aao aao aao @@ -35588,34 +35594,34 @@ aao aao aao aae -aaf -aaf -aaf -aaf -aaf -aaf -aaf -abi -aaf -aaf -aaf -abQ -aaf -aaf -aaf -aaf -aaf -aaf -acJ -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tAE +tNQ +tNQ +tNQ +jWq +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +lbY +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ aae aao aao @@ -35650,30 +35656,30 @@ aao aao aao aao -aFt -aFs -aFt -aFt -aFw -aFw -aFt -aLT +gAG +mqz +gAG +gAG +lEF +lEF +gAG +wOs aoD -aNa -aNc +ore +pOo aoD aQz -aRF -aSu +dyQ +oIS arT -aUM -aNc -aWe -aNc -bwr +gja +pOo +hCk +pOo +pFH aoD -aYA -aWe +dsQ +hCk aoD aao aao @@ -35717,12 +35723,12 @@ aao aao aao aao -gxJ -wog -wog -wog -sLy -feS +jOV +jYR +jYR +jYR +qac +nkz aao aao aao @@ -35732,60 +35738,60 @@ aao aao aao aao -kvp -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -cCr -khx -nSP -czV -xBr -gyU -nSP -wVQ +hgi +may +may +may +may +may +may +may +may +may +may +ljT +lKb +bWz +pxk +ttZ +vnH +bWz +jUF wtj -cRP +nMF krW kuu onR egS -xwo -lhh -iEj -eaW +oAC +kAt +txr +wXO uHQ uHQ uHQ uHQ rjF -vVl +xGG lBe -qeX -kCe -pDV -pSa -gnR -wWN +uxO +vWs +gsa +gwV +fxg +ika uHQ aao aao -szw -szw -wVQ -sZh -wCo -wCo -wCo -bPy -pgi +vAC +vAC +jUF +mjQ +cvS +cvS +cvS +fMK +jzO aao aao aao @@ -35805,34 +35811,34 @@ aao aao aao aae -aag -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aag -aaf -aaf -aaf -aaf -acJ -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +umL +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +umL +tNQ +tNQ +tNQ +tNQ +lbY +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ +tNQ aae aao qsE @@ -35867,30 +35873,30 @@ aao aao aao aao -aFt -aFt -aHg -aIa -aJg -aJg -aJg -aLU -aPt -aNb -aOr -aPt -aQA -aRG +gAG +gAG +dAI +hOq +oRm +oRm +oRm +iIt +tyI +eJV +lWv +tyI +bYF +eam aSv arT -aHa -aVD -aWf -aRG -aNc +hrQ +rVQ +xPn +eam +pOo aoD aYB -aZj +dBR aoD aao aao @@ -35935,11 +35941,11 @@ aao aao aao aao -kvp -wog -hoQ -wog -feS +hgi +jYR +xES +jYR +nkz aao aao aao @@ -35949,61 +35955,61 @@ aao aao aao aao -kvp -uYb -uYb -uYb -uYb -uYb -uYb -uYb -gcR -uYb +hgi +may +may +may +may +may +may +may +iVF +may iGK -iAF +huP vHw vHw -szw -szw -fMl -tqi -rWF +vAC +vAC +oqh +gRM +wqm wtj -gPE -nWD +rtv +dWB vmL -kCe -gPE -rxh -wBq -sGT -ugW +vWs +rtv +hMV +ebH +lYI +urK uHQ -nYC -npz -ioA -tpR -luA +wqy +tdm +voI +tFg +thg xTM -qeX -heG -pZe -pSa -wLD -kCe +uxO +hBu +hfH +gwV +keM +vWs uHQ -szw -szw -czV -nSP -wVQ -sZh -wCo -nSP -wCo -wVQ -rxh -rxh +vAC +vAC +pxk +bWz +jUF +mjQ +cvS +bWz +cvS +jUF +hMV +hMV aao aao aao @@ -36022,34 +36028,34 @@ aao aao aao aae -aaf -aaf -aan -aat -aaE -aaS -aba -aat -aaE -aaS -aba -aat -aaE -aaS -aba -aat -aaE -aaS -acK -acS -adg -adw -adJ -aeg -bgP -aeg -aeg -agn +tNQ +tNQ +pYU +hIp +haz +dxL +sWr +hIp +haz +dxL +sWr +hIp +haz +dxL +sWr +hIp +haz +dxL +iKK +kZW +tbe +wPm +goD +kgO +lzg +kgO +kgO +uRK aae aao qsE @@ -36084,30 +36090,30 @@ aao aao aao aoD -aFu -aFt -aHh -aIb -aHj -aHj -aHj -aLV +sMX +gAG +eSd +miR +uxk +uxk +uxk +xhs aoD -aNc -aNc +pOo +pOo aoD -aQB -aRH -aSu +jSF +pFU +oIS arT -aUO -aVE -aWg -aRH -aNc +ids +xOF +dpE +pFU +pOo aoD -itL -aRH +ogI +pFU aoD aao aao @@ -36152,11 +36158,11 @@ aao aao aao aao -kvp -wog -wog -wog -feS +hgi +jYR +jYR +jYR +nkz aao aao aao @@ -36166,16 +36172,16 @@ aao aao aao aao -lWE -boy -boy -cCr -uYb -uYb -uYb -uYb -trk -trk +fYh +vxx +vxx +ljT +may +may +may +may +pUq +pUq aao aao aao @@ -36186,41 +36192,41 @@ aao aao wtj tfz -kCe -kCe -kCe -iAy -tUL -rxh -wBq -eNN -kPu +vWs +vWs +vWs +doP +eQe +hMV +ebH +xKn +lgq uHQ -crv -bJz -lxQ -nXh -oOr +eXR +gWf +wao +gdm +dCE uHQ -yfN -tKC -kCe -oOr -gnR -gnR +jDY +kCG +vWs +dCE +fxg +fxg uHQ aao -oqr -sHz -kjT -wVQ -rxh -uFD -ncL -wCo -wVQ -evX -rxh +bTa +wuv +nDr +jUF +hMV +qeL +dWA +cvS +jUF +xbt +hMV aao aao aao @@ -36239,8 +36245,8 @@ aao aao aao aae -aaf -aai +tNQ +qfE aah aaF aah @@ -36262,11 +36268,11 @@ aah aah aaF aah -aeh -aaf -aaf -aaf -acJ +tPs +tNQ +tNQ +tNQ +lbY aae aao qsE @@ -36302,29 +36308,29 @@ aao aoD aoD aFv -aGr -aHh -aIb -aHj -aKg -aHj -aLW +fIi +eSd +miR +uxk +bsW +uxk +gDu aoD -aNd -aOs +bqQ +leD aoD -aQC -aRH -aSu +vAI +pFU +oIS apG arT arT apG -aWP +kUF apG aoD aoD -aZk +enK aoD aao aao @@ -36369,30 +36375,30 @@ aao aao aao aao -gxJ +jOV iGK iGK -wog -wog -oQI +jYR +jYR +pek aao aao aao aao aao -fdr -icQ -icQ -wog -wog -boy -uYb -uYb -uYb -uYb -jXX -dxV -dxV +hUX +sbS +sbS +jYR +jYR +vxx +may +may +may +may +npK +mwS +mwS aao aao aao @@ -36400,44 +36406,44 @@ aao aao aao aao -pxp -rie +tWg +oJC qux -sXv -kCe -bgZ -kCe -jhM -rxh -wBq -oJd -kMJ +xLG +vWs +cct +vWs +weH +hMV +ebH +bjv +tUb uHQ -bTm -kgn -rXy -nEV -hUh +uAb +igO +faT +rmg +pmZ nCT -xLM -mqf -kCe -sgT -kCe -fYJ +sch +rPs +vWs +tYb +vWs +sHG uHQ aao aao -nSP -szw -wVQ -sso -iph -wQa -wfm -rxh -rxh -rxh +bWz +vAC +jUF +dft +csZ +ttf +mcp +hMV +hMV +hMV aao aao aao @@ -36456,8 +36462,8 @@ aao aao aao aae -aaf -aaj +tNQ +nXW aah aah aah @@ -36479,11 +36485,11 @@ aah aah aah aah -aei -aaf -aaf -aaf -acJ +xIB +tNQ +tNQ +tNQ +lbY aae aao qsE @@ -36519,29 +36525,29 @@ aao aeI aoD aFv -aGr -aHh -aIb -aHj -aHj -aHj -aLX +fIi +eSd +miR +uxk +uxk +uxk +yhm aoD aoD aoD aoD -aRF -aRH -aSw -aTK -aTK -aTK -aTK -aWQ -aNc -aWd -aNc -aRH +dyQ +pFU +rcX +dYm +dYm +dYm +dYm +qQi +pOo +fcy +pOo +pFU aoD aao aao @@ -36560,8 +36566,8 @@ cVY cVY cVY cVY -hpg -mMf +smk +bbL cVY cVY cVY @@ -36589,26 +36595,26 @@ aao aao aao aao -kvp -sLy -feS +hgi +qac +nkz aao aao aao aao aao -gxJ -wog -wog -sLy -wog -boy -uYb -uYb -uYb -hiY -dxV -pYt +jOV +jYR +jYR +qac +jYR +vxx +may +may +may +wpF +mwS +mOD uHQ uHQ uHQ @@ -36618,43 +36624,43 @@ uHQ uHQ gSB dwO -dBa -pSa -gGO +qHb +gwV +pso wNA cVd -kCe -tUL -rxh -wBq -ulk -kSt +vWs +eQe +hMV +ebH +gsX +ijm uHQ -eWG -jCg -qwy -xzi -lLf -xyz -rbD -kCe -ufu -vdS -rbD -kCe +csY +fwC +khm +qGT +mBO +jeP +cQq +vWs +kmd +wyg +cQq +vWs uHQ aao aao -hSP -szw -wVQ -ssO -tOh -syi -dwL -rxh -rxh -rxh +lEl +vAC +jUF +noS +qsR +rvk +jQe +hMV +hMV +hMV aao aao aao @@ -36673,8 +36679,8 @@ aao aao aao aae -aaf -aak +tNQ +fxN aah aah aah @@ -36696,17 +36702,17 @@ aah aah acx aah -aej -aaf -aaf -aaf -acJ +oHm +tNQ +tNQ +tNQ +lbY aae aao qsE qsE -aTs -suV +sXF +rNK qsE qsE qsE @@ -36736,29 +36742,29 @@ aeI aeI aoD aFv -aGr -aHh -aIb -aHj -aJh -aJh -aHj +fIi +eSd +miR +uxk +lAl +lAl +uxk aoD -aNe -aNc -aNc -aNc -aRH -aNc -aNc -aUP -aNc -aNc -aRH -aNc -aRF -aNc -aRH +sGu +pOo +pOo +pOo +pFU +pOo +pOo +hyk +pOo +pOo +pFU +pOo +dyQ +pOo +pFU aoD aoD aoD @@ -36772,30 +36778,30 @@ ayf mkt cVY cVY -hpg -bgW +smk +hsZ cVY -hpg -mMf -tVp -tVp -mMf -mMf -mMf -mMf +smk +bbL +rDA +rDA +bbL +bbL +bbL +bbL ayf ayf -bsa +eNJ ayf ayf -qcQ -tVp -fFO +pEW +rDA +tHS cVY cVY -uSC -tVp -fFO +scy +rDA +tHS cVY cVY cVY @@ -36806,72 +36812,72 @@ aao aao aao aao -kvp -wog -wog -icQ -wog +hgi +jYR +jYR +sbS +jYR aao aao aao -wog -pHb -gYt -wog -wog -iAF +jYR +qvh +rHb +jYR +jYR +huP aao -uYb -uYb -hiY -dxV -pYt +may +may +wpF +mwS +mOD uHQ sAS tdZ kBE gTJ nZK -dsh +naT qVi wtj qhk cVd -jGQ -gGO +iDj +pso kZG -kCe -uzB -rxh -wBq -teV -ugW +vWs +xWL +hMV +ebH +cQd +urK uHQ uHQ uHQ -oma -kCe -oma +tKM +vWs +tKM wfd -jOS -kjr -kCe -uCa -oTL -eER +vsh +bSs +vWs +uNm +jpW +iHm uHQ aao aao aao -owR -rxh -sso -pmk -waN -dwL -rxh -rxh -rxh +kXA +hMV +dft +clN +miu +jQe +hMV +hMV +hMV aao aao aao @@ -36890,8 +36896,8 @@ aao aao aao aae -aaf -aal +tNQ +tFZ aah aah aah @@ -36913,25 +36919,25 @@ aah aah aah aah -aek -aaf -aaf -aaf -acJ +bEa +tNQ +tNQ +tNQ +lbY aae aao qsE -acu -uvz -clB -wix -clB -clB -uIB -shV +pWW +oYu +shj +kvs +shj +shj +pBV +pDM qsE -aTs -suV +sXF +rNK qsE qsE qsE @@ -36952,33 +36958,33 @@ aeI aeI aoD aoD -aFw -aFt -aHh -aIb -lQU -aFt -aFt -aHh +lEF +gAG +eSd +miR +lrw +gAG +gAG +eSd aoD -aNf -aNc -aNc -aNc -aRI -aSx -aSx -aSx -aSx -aWh -aWR -aXw -aXw -aXw -aZl +qlx +pOo +pOo +pOo +cGw +oWU +oWU +oWU +oWU +uVu +mgc +wJf +wJf +wJf +oWE aoD -bRV -bRV +ljR +ljR aoD aoD aoD @@ -36989,106 +36995,106 @@ ayf ayf cVY cVY -tVp -feN -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -eWd -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -jlS -tVp +rDA +otW +qvt +qvt +qvt +qvt +qvt +qvt +qvt +qvt +qvt +qvt +qvt +hQS +qvt +qvt +qvt +qvt +qvt +qvt +qvt +qvt +qvt +qvt +qvt +qvt +xJH +rDA ayf ayf aao aao aao aao -kvp -daf -wog -wog -wog -wog +hgi +xzM +jYR +jYR +jYR +jYR aao -wog -wog -pHb -gYt -wog -feS +jYR +jYR +qvh +rHb +jYR +nkz aao aao aao aao aao -sDC -pYt +vtD +mOD uHQ cyv jPm uFi wtj jPX -gps +jnn qVi wtj pbZ wtj -ofu -fmL -gGO -gGO -kCe -rxh -rxh -kdp -rxh -rxh -rxh -oKy -pSa -lIe -wuC -nkW -kCe -kCe -xWz -pSa -lSH -yln +hdz +dFn +pso +pso +vWs +hMV +hMV +pKA +hMV +hMV +hMV +lpk +gwV +pAL +nzM +mWK +vWs +vWs +hrq +gwV +wEy +fst uHQ aao -rxh -rxh -rxh -rxh -rxh -uiE -uiE -rxh -rxh -rxh -rxh +hMV +hMV +hMV +hMV +hMV +fkd +fkd +hMV +hMV +hMV +hMV aao aao aao @@ -37107,8 +37113,8 @@ aao aao aao aae -aaf -aai +tNQ +qfE aah aah aah @@ -37130,25 +37136,25 @@ aah aah aah aah -aeh -aaf -aaf -aaf -acJ +tPs +tNQ +tNQ +tNQ +lbY aae aao qsE -qiA -uvz -clB -uvz -clB -clB -rMw -whZ -lwT -pVP -rCd +fmD +oYu +shj +oYu +shj +shj +xtX +pxR +dDi +tuo +jkk qsE aao aao @@ -37169,90 +37175,90 @@ aeI aeI aeI aoD -aFt -aFt -aHh -aIb -lQU -aFt -aFu -qVw +gAG +gAG +eSd +miR +lrw +gAG +sMX +wMd aoD -aNg -aNc -aNc -aQE -aRJ -aSy -aNc -aNc -hYI -aWi -aNc -aNc -aSw -aNc -aNc -aNc -aNc -aRF -aNc -bco -aNc +fqq +pOo +pOo +xoL +wLQ +gXK +pOo +pOo +mhl +pJl +pOo +pOo +rcX +pOo +pOo +pOo +pOo +dyQ +pOo +jgA +pOo aoD aao aao ayf cVY cVY -hpg -tVp -bgX -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -dAX -tVp -tVp +smk +rDA +hUg +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +gET +rDA +rDA ayf aao aao aao aao -kvp -wog -wog -wog -sLy -icQ -wog -wog -baN -wog -wog -wog -iAF +hgi +jYR +jYR +jYR +qac +sbS +jYR +jYR +vwf +jYR +jYR +jYR +huP aao aao aao @@ -37261,51 +37267,51 @@ aao aao aao uHQ -qGg +ngg vxQ mtL pUi eWy -qOM +tjC hZl ust -qJV -emC -hEz -omX -qhH -qhH -qhH -oWC -oWC -oTM -sZh -wVQ -rxh -oKy -lSm -ifF -bRK -dJM -kVY -hKl -pDV +wXS +cmu +faJ +tMx +rxX +rxX +rxX +pQh +pQh +fTS +mjQ +jUF +hMV +lpk +tjy +xfi +qdD +eUq +jzy +fkJ +gsa uHQ uHQ uHQ uHQ -tsc -rxh -rxh -rxh -rxh -rxh -rxh -rsv -rsv -rxh -rxh -rxh +vgd +hMV +hMV +hMV +hMV +hMV +hMV +nNj +nNj +hMV +hMV +hMV aao aao aao @@ -37324,8 +37330,8 @@ aao aao aao aae -aaf -aaj +tNQ +nXW aah aah aah @@ -37347,25 +37353,25 @@ aah aah aah aah -aei -aaf -aaf -aaf -acJ +xIB +tNQ +tNQ +tNQ +lbY aae aao qsE -aun -uvz -clB -msS -clB -clB -clB -whZ -pVP -pVP -shV +typ +oYu +shj +pYz +shj +shj +shj +pxR +tuo +tuo +pDM qsE aao aao @@ -37386,14 +37392,14 @@ aeI aeI aeI aoD -aFt -aFt -aHh -aIb -aJi -aHZ +gAG +gAG +eSd +miR +sBp +evO aFv -aLY +gWd aoD apG apG @@ -37401,74 +37407,74 @@ apG apG apG apG -aTL -aNc -aNc -aWi -aNc -aNc -aNc -aNc -aNc -aNc -aNc -aNc -aNc -aNc -aNc +ldF +pOo +pOo +pJl +pOo +pOo +pOo +pOo +pOo +pOo +pOo +pOo +pOo +pOo +pOo aoD aao aao ayf cVY cVY -uSC -tVp -bgX -bsa -bid -biH -bjd -bjn -bid -biH -bjd -bjn -bid -biH -bjd -bjn -bid -biH -bjd -bjn -bid -biH -bjd -bjn -bid -bsa -eWd -dAX -vUy -tVp +scy +rDA +hUg +eNJ +hKN +iYB +mYc +vTB +hKN +iYB +mYc +vTB +hKN +iYB +mYc +vTB +hKN +iYB +mYc +vTB +hKN +iYB +mYc +vTB +hKN +eNJ +hQS +gET +stG +rDA ayf aao aao aao aao -gxJ +jOV iGK -wog -wog -wog -wog -wog -icQ -wog -wog -wog -wog +jYR +jYR +jYR +jYR +jYR +sbS +jYR +jYR +jYR +jYR aao aao aao @@ -37478,51 +37484,51 @@ aao aao aao weO -pSa +gwV wtj rKs wJd -erG -pSa +tRE +gwV qVi eup enD tsy -lrW -lrW -jWF -fnO -jWF -fnO -fnO -mYW -fnO -fnO -rxh -xIv -dOu -oud -oxh -kvB -oTv -kCe -xte +bkj +bkj +qKq +tuF +qKq +tuF +tuF +pGZ +tuF +tuF +hMV +xUD +cGI +iDs +wUF +rbJ +lxk +vWs +gIZ uHQ -sWS -pSa -oKy -wRH -rxh -rxh -rxh -rxh -rxh -rxh -jtL -jtL -rxh -rxh -rxh +jpo +gwV +lpk +hRI +hMV +hMV +hMV +hMV +hMV +hMV +wbl +wbl +hMV +hMV +hMV aao aao aao @@ -37541,8 +37547,8 @@ aao aao aao aae -aaf -aak +tNQ +fxN aah aah aah @@ -37564,25 +37570,25 @@ aah aah aah aah -aej -aaf -aaf -aaf -acJ +oHm +tNQ +tNQ +tNQ +lbY aae aao qsE -aEY -uvz -clB -uvz -pVP -pVP -clB -rCd -exc -exc -dNn +cPm +oYu +shj +oYu +tuo +tuo +shj +jkk +bwe +bwe +lto qsE aao aao @@ -37603,46 +37609,46 @@ aeI aeI aoD aoD -aFt -aFt -aHh -aIb -lQU -aHZ +gAG +gAG +eSd +miR +lrw +evO aFv aFv aoD -aNi -aNi -aNi -aNi -aOt +tjZ +tjZ +tjZ +tjZ +uvb arT -aNc -aNc -aRF -aWi -aNc -aNc -aNc -aNc -aNc -aNc -aUP -aNc -aNc -aNc -aNc +pOo +pOo +dyQ +pJl +pOo +pOo +pOo +pOo +pOo +pOo +hyk +pOo +pOo +pOo +pOo aoD aao aao ayf ayf cVY -uSC -tVp -bgX -bhu +scy +rDA +hUg +gse bie bje bie @@ -37664,11 +37670,11 @@ bie bie bje bie -bsb -eWd -dAX -wyP -tVp +lrj +hQS +gET +vkk +rDA ayf aao aao @@ -37676,16 +37682,16 @@ aao aao aao aao -gxJ +jOV iGK -wog -wog -wog -wog -daf -feS -wog -wog +jYR +jYR +jYR +jYR +xzM +nkz +jYR +jYR aao aao aao @@ -37705,41 +37711,41 @@ uHQ jlg vvL xuP -rxh -pJX -wCo -wCo -wCo -wCo -wCo -xfx -wCo -wCo -wVQ -pSa -kCe -gTS -ieD -pSa -pZu -ggC -ymi -tZU -pSa -sqQ -oKy -uJI -rxh -rxh -jtL -uDZ -rxh -rxh -rsv -rsv -rxh -rxh -rxh +hMV +wDG +cvS +cvS +cvS +cvS +cvS +lDC +cvS +cvS +jUF +gwV +vWs +cTn +kkF +gwV +jkS +izp +ppy +gDj +gwV +lEV +lpk +lru +hMV +hMV +wbl +xFN +hMV +hMV +nNj +nNj +hMV +hMV +hMV aao aao aao @@ -37758,8 +37764,8 @@ aao aao aao aae -aaf -aal +tNQ +tFZ aah aah aah @@ -37781,24 +37787,24 @@ aah aah aah aah -aek -aaf -aaf -aaf -acJ +bEa +tNQ +tNQ +tNQ +lbY aae aao qsE qsE -kFe -lMC -uvz -clB -pVP -pVP -shV -qaK -bWl +xJR +fqM +oYu +shj +tuo +tuo +pDM +rdY +gTI qsE qsE aao @@ -37820,46 +37826,46 @@ aeI aeI aeI aoD -aFt -aFt -aHh -aIb -lQU -aHZ +gAG +gAG +eSd +miR +lrw +evO aFv aFv aoD -aNi -aOt -aNj -aNi -aNi +tjZ +uvb +lJb +tjZ +tjZ arT -aNc -aNc -aNc +pOo +pOo +pOo aoD asl -aXx +liD aoD asl -aXx +liD aoD asl -aXx +liD aoD asl -aXx +liD aoD aao aao ayf tpY cVY -uSC -tVp -bgX -bhv +scy +rDA +hUg +cox bie bie bie @@ -37881,11 +37887,11 @@ bie bie bie bie -bsc -eWd -dAX -tVp -tVp +kkt +hQS +gET +rDA +rDA ayf aao aao @@ -37895,14 +37901,14 @@ aao aao aao aao -kvp -wog -wog -wog -wog -wog -wog -sLy +hgi +jYR +jYR +jYR +jYR +jYR +jYR +qac aao aao aao @@ -37912,51 +37918,51 @@ aao aao aao uHQ -xMT +dSS wtj wtj mBo wtj xrp rzT -hEK +iKD vmV bss -sZh -wCo -wCo -nSP -nSP -yhc -wCo -xfx -nSP -szw -wVQ -oKy -kCe -kCe -pSa -pSa -pSa -pSa -pSa -iLu -pSa -pSa -sOi -tsc -evX -rxh -rsv +mjQ +cvS +cvS +bWz +bWz +rTy +cvS +lDC +bWz +vAC +jUF +lpk +vWs +vWs +gwV +gwV +gwV +gwV +gwV +oCC +gwV +gwV +psm +vgd +xbt +hMV +nNj vHw vHw -vTh -rsv -mqX -rxh -rxh -rxh +dPp +nNj +plm +hMV +hMV +hMV aao aao aao @@ -37975,8 +37981,8 @@ aao aao aao aae -aaf -aai +tNQ +qfE aah aah aah @@ -37998,23 +38004,23 @@ aah aah aah aah -aeh -aaf -aaf -aaf -acJ +tPs +tNQ +tNQ +tNQ +lbY aae aao aao qsE qsE qsE -uvz -clB -rMw -clB -rCd -ecX +oYu +shj +xtX +shj +jkk +iQd qsE qsE aao @@ -38024,8 +38030,8 @@ aeI aeI aeI aeI -aiz -ahO +qWQ +wJK aeI aeI aeI @@ -38037,46 +38043,46 @@ aeI aeI aeI aoD -aFt -aFt -aHh -aIb -lQU -aHZ +gAG +gAG +eSd +miR +lrw +evO aFv aFv aoD -aNi -aNi -aNi -aNi -aNi -aSA -aNc -aNc -aNc +tjZ +tjZ +tjZ +tjZ +tjZ +tlL +pOo +pOo +pOo asl -aWS -aNi +wZs +tjZ asl -aYC -aNi +gQf +tjZ asl -swJ -aNi +pLc +tjZ asl -aYC -aNi +gQf +tjZ aoD aao aao ayf cVY cVY -uSC -tVp -bgX -bhw +scy +rDA +hUg +hMU bie bie bie @@ -38098,11 +38104,11 @@ bie bie bie bie -bsd -eWd -dAX -tVp -tVp +dCM +hQS +gET +rDA +rDA ayf aao aao @@ -38112,14 +38118,14 @@ aao aao aao aao -kvp -wog -sLy -wog -wog -gYt -gYt -feS +hgi +jYR +qac +jYR +jYR +rHb +rHb +nkz aao aao aao @@ -38133,47 +38139,47 @@ cZj mIu fML eUs -pSa -kSm +gwV +vRO lIL fBc -pvk -dBE -sZh -wCo -wCo -nSP -yhc -wCo -wCo -xfx -wCo -wCo -wVQ -oKy -lSH -xhU -vCd -hCT -pSa -tBK -kCe -pSa -yjU -pSa -oKy -tsc -rxh -rxh -pMB +eHF +arh +mjQ +cvS +cvS +bWz +rTy +cvS +cvS +lDC +cvS +cvS +jUF +lpk +wEy +ouj +bLN +kWH +gwV +ppR +vWs +gwV +enl +gwV +lpk +vgd +hMV +hMV +mXI vHw vHw -rxh -rsv -rsv -rxh -rxh -rxh +hMV +nNj +nNj +hMV +hMV +hMV aao aao aao @@ -38192,8 +38198,8 @@ aao aao aao aae -aaf -aaj +tNQ +nXW aah aah aah @@ -38215,22 +38221,22 @@ aah aah aah aah -aei -aaf -aaf -aaf -acJ +xIB +tNQ +tNQ +tNQ +lbY aae aao aao aao aao qsE -nMB -clB -clB -rMw -shV +jXh +shj +shj +xtX +pDM qsE qsE aao @@ -38240,60 +38246,60 @@ aeI aeI aeI atQ -aiz -ahP -ahP -aog -axu +qWQ +uml +uml +mSe +iLg aeI aeI aeI -aiz -aog -ahO +qWQ +mSe +wJK aeI aeI aoD -aFt -aGs -aHj -aIb -aHj -aJj -aHZ +gAG +hNl +uxk +miR +uxk +rLp +evO aFv aoD -aNi -aNi -aNi -aOt -aNj +tjZ +tjZ +tjZ +uvb +lJb arT -aNc -aNc -aNc +pOo +pOo +pOo asl -aWT -aXy +rDo +qko asl -aWT -aXy +rDo +qko asl -aWT -aXy +rDo +qko asl -aWT -aXy +rDo +qko aoD aao aao ayf ayf cVY -wXv -tVp -bgX -bhx +rbC +rDA +hUg +bdf bie bie bie @@ -38315,11 +38321,11 @@ bie bie bie bie -bse -eWd -dAX -tVp -tVp +ktv +hQS +gET +rDA +rDA ayf aao aao @@ -38329,14 +38335,14 @@ aao aao aao aao -kvp -wog -wog +hgi +jYR +jYR iGK -wog -gYt -gYt -wog +jYR +rHb +rHb +jYR aao aao aao @@ -38354,42 +38360,42 @@ uHQ uHQ vHw fBc -pvk -nKL -sZh -onh -wCo -nSP -yhc -wCo -nSP -oUs -nSP -wCo -erX +eHF +uSG +mjQ +nVF +cvS +bWz +rTy +cvS +bWz +lQh +bWz +cvS +raS cOt -jhj -kCe -ekV -pSa -kCe -kCe -uHT -pSa -csB -lKw -oKy -tsc -rxh -rxh -rxh -sZh -rUZ -wFO -fnO -rxh -rxh -rxh +fvB +vWs +oQX +gwV +vWs +vWs +vCY +gwV +iLO +ppc +lpk +vgd +hMV +hMV +hMV +mjQ +jKJ +fBR +tuF +hMV +hMV +hMV aao aao aao @@ -38409,8 +38415,8 @@ aao aao aao aae -aaf -aak +tNQ +fxN aah aaF aah @@ -38432,11 +38438,11 @@ aah aah aaF aah -aej -aaf -aaf -aaf -acJ +oHm +tNQ +tNQ +tNQ +lbY aae aao aao @@ -38444,63 +38450,63 @@ aao aao qsE qsE -qEJ -qEJ -qEJ -qEJ +uGv +uGv +uGv +uGv qsE aao aao aeI aeI aeI -aiz -aog -aog -ahP -ahP -ahP -ahP -ahP -aog -aog -aog -ahP -ahP -ahP -aog -aog +qWQ +mSe +mSe +uml +uml +uml +uml +uml +mSe +mSe +mSe +uml +uml +uml +mSe +mSe aoD -aFt +gAG aoD -grU -aIg -hTO +xdP +gyI +liE aoD -aHZ +evO aFv aoD -aNj -aOu -aPu -aNi -aNi +lJb +uSk +wjQ +tjZ +tjZ arT -aNc -aNc -aNc +pOo +pOo +pOo asl -aWU -aXz +uSi +kMX asl -aWU -aXz +uSi +kMX asl -aWU -aXz +uSi +kMX asl -aWU -aXz +uSi +kMX aoD aao aao @@ -38508,9 +38514,9 @@ ayf cVY cVY cVY -uSC -bgX -bhu +scy +hUg +gse bie bie bie @@ -38532,11 +38538,11 @@ bie bie bie bie -bsb -eWd -dAX -tVp -tVp +lrj +hQS +gET +rDA +rDA ayf aao aao @@ -38546,15 +38552,15 @@ aao aao aao aao -kvp -wog -feS +hgi +jYR +nkz aao -gxJ -wog -wog -wog -wog +jOV +jYR +jYR +jYR +jYR aao aao aao @@ -38573,39 +38579,39 @@ vHw vec wbx bss -rJR +mea vHw -lYi -nSP -qLk -nSP -wCo -jJH -opz -szw -wCo +rYc +bWz +fvR +bWz +cvS +jTe +mzn +vAC +cvS uHQ -pXn +fvZ rNc -vzL -pSa -vvR -oTL -pSa -pSa -pSa +dmq +gwV +scn +jpW +gwV +gwV +gwV uHQ uHQ wfd uHQ -rxh -rxh -sZh -wCo -wCo -wCo -wFO -rxh +hMV +hMV +mjQ +cvS +cvS +cvS +fBR +hMV aao aao aao @@ -38626,73 +38632,73 @@ aao aao aao aae -aaf -aaf -aap -aav -aaG -aaT -aap -abj -abt -aaT -aap -aav -aaG -aaT -aap -aav -aaG -aaT -aap -aav -aaG -aaT -aap -aaf -aag -aaf -aaf -acJ +tNQ +tNQ +dZS +jcG +cqi +ggq +dZS +sxW +iFt +ggq +dZS +jcG +cqi +ggq +dZS +jcG +cqi +ggq +dZS +jcG +cqi +ggq +dZS +tNQ +umL +tNQ +tNQ +lbY aae aao aao aeI aeI aeI -viN -ajx -ajx -aoN -ajx -vXp +nAU +wmD +wmD +bJf +wmD +iMP oVq aeI aeI aeI -aoO -aiw -aqp -aqp -aqp -aiw -aqp -aqp -aiw -aiw -aiw -aiw -aiw -aqp -aiw -aqp -aDw +gvT +eru +gcI +gcI +gcI +eru +gcI +gcI +eru +eru +eru +eru +eru +gcI +eru +gcI +uwR aoD aoD aoD -aHj -aIb -aHj +uxk +miR +uxk aoD aoD aoD @@ -38724,10 +38730,10 @@ ayf ayf cVY cVY -hpg -tVp -bgX -bhy +smk +rDA +hUg +nMt bie bie bie @@ -38749,11 +38755,11 @@ bie bie bie bie -bsc -eWd -dAX -tVp -tVp +kkt +hQS +gET +rDA +rDA ayf aao aao @@ -38763,16 +38769,16 @@ aao aao aao aao -kvp -wog -feS +hgi +jYR +nkz aao aao -gxJ -wog -wog -wog -wog +jOV +jYR +jYR +jYR +jYR aao aao aao @@ -38792,37 +38798,37 @@ aao aao aao aao -hfB -dXs -uJu -uPF -wCo -jJH -yhc -nSP -nSP +rWR +eZf +uGS +iuA +cvS +jTe +rTy +bWz +bWz uHQ wtj ohY -pSa -lSH -pSa -sWS -pSa -pSa -pSa -dIG +gwV +wEy +gwV +jpo +gwV +gwV +gwV +vxn ipf sdP uHQ -rxh -hEz -hEz -owR -eql -wCo -wCo -wVQ +hMV +faJ +faJ +kXA +hBU +cvS +cvS +jUF aao aao aao @@ -38843,75 +38849,75 @@ aao aao aao aae -aag -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aag -aam -acw -aam -acw -acw -aam -aam -xLz -aam -aam -aam -aam -aam -ago +umL +qzs +qzs +qzs +qzs +qzs +qzs +qzs +qzs +qzs +qzs +qzs +qzs +umL +qzs +oDS +qzs +oDS +oDS +qzs +qzs +fAu +qzs +qzs +qzs +qzs +qzs +lhH aae -ahR +vGm aeI aeI aeI aeI -auF -ajx -aoN -ajx -ajx -ahT +wKC +wmD +bJf +wmD +wmD +geq aeI aeI aeI aeI -ajy -ajx -aoN -akd -akd -akd -aiy -aoN -ajx -amc -aix -aix -aix -aix -aix -aix -aDx -aDw -ahP +fQg +wmD +bJf +iHM +iHM +iHM +uWF +bJf +wmD +sjV +oTj +oTj +oTj +oTj +oTj +oTj +wYv +uwR +uml aoD -grU -aIg -grU +xdP +gyI +xdP aoD -aln +nQx aoD aEu aEu @@ -38931,20 +38937,20 @@ aoD aEu aEu aoD -aSB -aSB +vIn +vIn aoD -aSB -aSB +vIn +vIn rZn -aSB -tVp -mMf -mMf -tVp -tVp -bgX -bhw +vIn +rDA +bbL +bbL +rDA +rDA +hUg +hMU bie bie bie @@ -38966,11 +38972,11 @@ bie bie bie bie -bsd -eWd -dAX -tVp -tVp +dCM +hQS +gET +rDA +rDA ayf aao aao @@ -38980,18 +38986,18 @@ aao aao aao aao -kvp -wog -iAF +hgi +jYR +huP aao aao aao -kvp -wog -sLy -wog -wog -wog +hgi +jYR +qac +jYR +jYR +jYR aao aao aao @@ -39008,37 +39014,37 @@ aao aao aao aao -nwS -rPh -mWt -klp -kPP -wCo -ecy -smF -iaX -eql +kii +wCl +iKu +cJL +nqu +cvS +mmb +gmo +sXU +hBU uHQ wtj qSj -pSa +gwV uHQ -dNr -buY -uuO -xhB -pSa -qYY +aRw +ljf +tMv +kAX +gwV +rwz dKo -pSa +gwV uHQ -fnO -fnO -fnO -fnO -sZh -wCo -wCo +tuF +tuF +tuF +tuF +mjQ +cvS +cvS aao aao aao @@ -39073,7 +39079,7 @@ abk aah abu aaH -ace +fsc aah aah aah @@ -39089,79 +39095,79 @@ aah aah aeG aae -ahR +vGm aeI aeI aeI aeI aeI -ajy -ajx -ajx -ahR +fQg +wmD +wmD +vGm aeI aeI aeI aeI -aiz -ajy -ajx -ahR -ahP -aqJ -ahP -ahP -ajy -ajx -ajY -ajx -ajx -ajx -ajx -ajx -ajx -ajY -akK -ahP -auF -ajx -ajY -ajx -ahT -aln +qWQ +fQg +wmD +vGm +uml +rmu +uml +uml +fQg +wmD +qjq +wmD +wmD +wmD +wmD +wmD +wmD +qjq +jiV +uml +wKC +wmD +qjq +wmD +geq +nQx aEu aEu aEu aEu aEu -aQF -aQG -aQG +uPh +ydz +ydz aEu aEu aEu aEu aEu aEu -aSB +vIn aEu aEu aEu aEu -aSB -aSB -aSB -aSB -beP -beP -beP -tVp -tVp -tVp -tVp -tVp -bgX -bhz +vIn +vIn +vIn +vIn +mSC +mSC +mSC +rDA +rDA +rDA +rDA +rDA +hUg +mXJ bie bie bie @@ -39183,11 +39189,11 @@ bie bie bie bie -bse -eWd -dAX -tVp -tVp +ktv +hQS +gET +rDA +rDA ayf aao aao @@ -39197,20 +39203,20 @@ aao aao aao aao -gxJ -iAF +jOV +huP aao aao aao aao -kvp -wog -wog -wog -wog -wog -wog -oQI +hgi +jYR +jYR +jYR +jYR +jYR +jYR +pek aao aao aao @@ -39226,36 +39232,36 @@ aao aao aao aao -iXN -nkY -dQF -nSP -wCo -xYc +kdo +mjC +lXR +bWz +cvS +jMr lCR -myc -lPh +hER +eAI uHQ wtj qmm -lEw +jGk lBe -pSa -pSa -iLu -xhB -kCe +gwV +gwV +oCC +kAX +vWs nqr -kCe +vWs xWr uHQ vHw -owR -owR -owR -sZh -wCo -nSP +kXA +kXA +kXA +mjQ +cvS +bWz aao aao aao @@ -39290,7 +39296,7 @@ abl aah abv aaI -acf +xJJ aah aah aah @@ -39306,79 +39312,79 @@ aah aah aeG aae -ahR +vGm aeI aeI aeI aeI aeI -ajy -aoN -aoN -ahR +fQg +bJf +bJf +vGm aeI aeI aeI aeI -aiA -ajy -aoN -akK -aqJ -aoO -aiw -aiw -ajx -ajx -ajY -ajx -ajx -ajx -ajx -ajx -ajx -aDz -aEv -ahP -ahP -ajy -ajY -ahR -ahP -ama +vlp +fQg +bJf +jiV +rmu +gvT +eru +eru +wmD +wmD +qjq +wmD +wmD +wmD +wmD +wmD +wmD +sgS +qbJ +uml +uml +fQg +qjq +vGm +uml +kpi aeI aEu aEu aEu aEu -fjF +cqf aEu -aQF -aQG +uPh +ydz aEu -aVF -aWk -aWk -aWk -aWk -aWk -aVI -aWk -aWk -aWk -aVI -aWk -aWk -aVI -aWk -aWk -iHe -iHe -vKv -vKv -vKv -eWd -bhA +lcB +hGH +hGH +hGH +hGH +hGH +kkx +hGH +hGH +hGH +kkx +hGH +hGH +kkx +hGH +hGH +uUS +uUS +qvt +qvt +qvt +hQS +rFf bie bie bie @@ -39400,11 +39406,11 @@ bie bie bie bjo -bsb -eWd -dAX -tVp -tVp +lrj +hQS +gET +rDA +rDA ayf aao aao @@ -39420,14 +39426,14 @@ aao aao aao aao -kvp -wog -daf -wog -wog -wog -wog -feS +hgi +jYR +xzM +jYR +jYR +jYR +jYR +nkz aao aao aao @@ -39445,34 +39451,34 @@ aao aao aao aao -eql -wCo -wCo -fQv +hBU +cvS +cvS +xFt ene -rZQ -dPb +lUI +mku uHQ uHQ uHQ uHQ uHQ -pSa -cDx +gwV +xvq uHQ -oKy -oKy +lpk +lpk wrS -qkw +mqE uHQ uHQ uHQ -fnO -fnO -fnO -pJX -eSu -wCo +tuF +tuF +tuF +wDG +mRf +cvS aao aao aao @@ -39507,7 +39513,7 @@ abm aah abw aaJ -acg +hrD aah aah aah @@ -39523,45 +39529,45 @@ aah aah aeG aae -ahR -ahO +vGm +wJK aeI aeI aeI aeI -ajy -aoN -ajx -ahR +fQg +bJf +wmD +vGm aeI aeI aeI aeI -aiA -ajz -ajx -akK -ahP -ajy +vlp +xZn +wmD +jiV +uml +fQg anp anp anp -axv -axY -axv +sbT +xRM +sbT anp anp anp gri -ajx -ajY -akK -ahP -ahP -ajy -ajY -ahR -aln +wmD +qjq +jiV +uml +uml +fQg +qjq +vGm +nQx aeI aeI aeI @@ -39571,31 +39577,31 @@ aEu aEu aEu aEu -aQF -aQF -aVG -bdZ -aWV -aXA -aXA -aWV -aXA -aXA -aWV -bba -aXA -bdZ -aUQ -bdZ -bdZ -bdZ -bmN -ufc -bmN -bmN -bmN -eWd -bhv +uPh +uPh +sAe +oLO +sou +qyu +qyu +sou +qyu +qyu +sou +llP +qyu +oLO +vrR +oLO +oLO +oLO +qoe +dSe +qoe +qoe +qoe +hQS +cox bie bie bie @@ -39617,11 +39623,11 @@ bie bie bie bie -bsc -eWd -dAX -tVp -tVp +kkt +hQS +gET +rDA +rDA ayf aao aao @@ -39637,58 +39643,58 @@ aao aao aao aao -kvp -wog -wog -wog -wog -wog -wog -wog -kvp +hgi +jYR +jYR +jYR +jYR +jYR +jYR +jYR +hgi aao aao xMr -hFP +qGf lbZ maF sbA pcf -qzY -hzP -fnO -xkR -tWS -uNW -iJF -omG -pJX -wCo -yhc -ozf -rDO -cJh -pJX -rUZ -wCo -wCo -wCo -wCo -wVQ -rxh -xhy -sZh -wCo -nRS -nSP +fXO +wVe +tuF +ouO +vGw +knX +mry +jSp +wDG +cvS +rTy +obz +jFF +diN +wDG +jKJ +cvS +cvS +cvS +cvS +jUF +hMV +rdB +mjQ +cvS +wOL +bWz nCX uHQ uHQ -wCo -wCo -wCo -wCo -wCo +cvS +cvS +cvS +cvS +cvS aao aao aao @@ -39724,7 +39730,7 @@ aah aah aah aah -ach +cVa aah aah aah @@ -39740,26 +39746,26 @@ aah aah aeG aae -ahR -ahP -ahO +vGm +uml +wJK aeI aeI aeI -ajy -ajx -ajx -akK +fQg +wmD +wmD +jiV aeI aeI aeI aeI -aiA -ajy -ajx -akK -aln -ajy +vlp +fQg +wmD +jiV +nQx +fQg anp avT bZp @@ -39770,15 +39776,15 @@ azn avT avT anp -ajx -ajY -ahR -ahP -ahP -ajy -ajY -ahR -aln +wmD +qjq +vGm +uml +uml +fQg +qjq +vGm +nQx aeI aeI aEu @@ -39787,32 +39793,32 @@ aEu aEu aEu aEu -aSB -aSB -aSB -aVH -beQ -aSB -aSB -aSB -aYE -aYE -aYE -aYE -aYE -aSB -aVG -bdZ -bdZ -bdZ -beu -woe -tVp -tVp -tVp -tVp -bgX -bhw +vIn +vIn +vIn +ePf +tmu +vIn +vIn +vIn +dKv +dKv +dKv +dKv +dKv +vIn +sAe +oLO +oLO +oLO +ihU +rvP +rDA +rDA +rDA +rDA +hUg +hMU bie bje bie @@ -39834,11 +39840,11 @@ bie bie bje bie -bsd -eWd -dAX -tVp -tWf +dCM +hQS +gET +rDA +iuM ayf aao aao @@ -39854,58 +39860,58 @@ aao aao aao aao -gxJ +jOV iGK iGK -wog -wog -sLy -wog -wog -kvp -wog -eGf +jYR +jYR +qac +jYR +jYR +hgi +jYR +sXi fYH -fcG +oOI dCA cAN -yfs +eRC mhG -fOo -iDJ -jPV -sln -wtJ -dFz -jVW -qmG -wCo -tiD -wmh -xfx -seO -igM -wCo -nSP -vmI -wCo -wCo -wCo -wVQ -rxh -rxh -sZh -yhc -dqy -dvB +nTz +rjx +nBg +wkZ +mam +kOX +uIC +fah +cvS +kuV +vYX +lDC +mWM +uqi +cvS +bWz +lrr +cvS +cvS +cvS +jUF +hMV +hMV +mjQ +rTy +aBx +lxW nCX uHQ uHQ -jVN -iLs -jVN -bII -iLs +kiS +tGv +kiS +ttP +tGv aao aao aao @@ -39926,7 +39932,7 @@ aao aao aao aao -wcs +lKO aae aae aae @@ -39941,7 +39947,7 @@ aah aah aah aah -ach +cVa aah aah aah @@ -39957,48 +39963,48 @@ aah aah aeG aae -ahR -ahP -ahP -ahO +vGm +uml +uml +wJK ahi aeI -ajy -ajx -ajx -ahR +fQg +wmD +wmD +vGm aeI aeI aeI aeI -aiA -ajy -ajx -ahR -aln -ajy +vlp +fQg +wmD +vGm +nQx +fQg bFw -xWR -xWR -iTN +oNk +oNk +uyw axZ avT azo aAq aAZ anp -ajx -ajY -ajx -aiw -aiw -aHl -ajY -ahR -aln +wmD +qjq +wmD +eru +eru +vUa +qjq +vGm +nQx aeI -aoO -aqp +gvT +gcI aEu aEu aEu @@ -40006,56 +40012,56 @@ aEu aEu aEu aEu -aWk -aUQ -bdZ -aWk -aWk -aWk -aWk -aWk -aWk -aXY +hGH +vrR +oLO +hGH +hGH +hGH +hGH +hGH +hGH +awf aYF -bbJ -aVG -bdZ -aUQ -bdZ -bev -woe -tVp -wbD -tVp -tVp -bgX -bsa -bpu -bqd -bqE -bjp -bjO -bqd -bqE -brb -bpu -bqd -bqE -brb -bpu -bqd -bqE -brb -bpu -bqd -bqE -brb -bpu -bsa -eWd -dAX -tVp -wZP +hpa +sAe +oLO +vrR +oLO +vHp +rvP +rDA +vZv +rDA +rDA +hUg +eNJ +lIc +ciD +tYU +eoj +nPt +ciD +tYU +qDq +lIc +ciD +tYU +qDq +lIc +ciD +tYU +qDq +lIc +ciD +tYU +qDq +lIc +eNJ +hQS +gET +rDA +kZR ayf aao aao @@ -40074,55 +40080,55 @@ aao aao aao aao -kvp -wog -wog -wog -wog -wog -wog -jMm +hgi +jYR +jYR +jYR +jYR +jYR +jYR +eFy uxx fOM ulH -lYC -yfs +fgI +eRC uxx -yda -nBb -gki -paz -eBn -rVh -ubY -ubY -xXg -wCo -wCo -jJH -wCo -sqc -quQ -fMT -wCo -nSP -wCo -wCo -wVQ -rxh -rxh -sZh -wCo -dqy -nSP -ugW +eyl +pUf +grt +vCm +fDP +gBK +kOy +kOy +kYl +cvS +cvS +jTe +cvS +mbn +qpP +mLP +cvS +bWz +cvS +cvS +jUF +hMV +hMV +mjQ +cvS +aBx +bWz +urK uHQ uHQ -tqi -owR -owR -owR -owR +gRM +kXA +kXA +kXA +kXA aao aao aao @@ -40142,11 +40148,11 @@ aao aao aao aao -wXg -pow -pow -mGq -rgp +aDR +iii +iii +tsH +ofa aae aah aah @@ -40158,7 +40164,7 @@ aah abD aah aah -ach +cVa aah aah aah @@ -40173,48 +40179,48 @@ aah aah aah aeG -ahK -ajx -aiw -aiw -aiw -aiw -aiw -ajx -ajx -ajx -ajx -aiw -aiw -aiw -aqp -aqp -ajx -ajx -akK -aln -ajy +srA +wmD +eru +eru +eru +eru +eru +wmD +wmD +wmD +wmD +eru +eru +eru +gcI +gcI +wmD +wmD +jiV +nQx +fQg bFw -hyC -iNE -pPh +gSe +iWQ +xWq axZ avT avT avT avT anp -ajx -aDA -alm -alm -alm -aHm -aIi -ahT -aln +wmD +dXL +lRz +lRz +lRz +jUv +jFh +geq +nQx aeI -ajy +fQg aoH aoH aoH @@ -40224,55 +40230,55 @@ aoH aoH aoH asj -aVJ -aVJ +vYg +vYg asj aoH aoH asK -jUd +jMT asK -beQ +tmu aYF aYF -aVG -bdZ -aUQ -bdZ -bev -woe -tVp -tVp -tVp -tVp -bgX -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -dAX -tVp -shK +sAe +oLO +vrR +oLO +vHp +rvP +rDA +rDA +rDA +rDA +hUg +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +gET +rDA +qEv ayf aao aao @@ -40291,56 +40297,56 @@ aao aao aao aao -kvp -wog -wog -wog -wog -xXP -euP -oWc +hgi +jYR +jYR +jYR +jYR +tkP +msy +ccz tCh eZw cVh -fvb -kek +dVh +oaF tCh -sZi -iPE -iPE -iPE -iPE -jrA -jZy -obB -iPE -iPE -jrA -cSu -iPE -iPE -iPE -rqv -iPE -iPE -iPE -tBb -ilO -pVp -pVp -bvD -iqF -xJT -wCo +vEc +xeC +xeC +xeC +xeC +daP +xgG +rMf +xeC +xeC +daP +ljp +xeC +xeC +xeC +vFD +xeC +xeC +xeC +xyy +vLB +ogd +ogd +mWw +xdz +uqm +cvS nCX uHQ aao -rsv -rsv -rsv -rsv -rsv -rsv +nNj +nNj +nNj +nNj +nNj +nNj aao aao aao @@ -40358,12 +40364,12 @@ aab aao aao aao -hgT -wXg -pMv -wXg -wKx -rgp +iDo +aDR +uQe +aDR +sAU +ofa aaq aah aah @@ -40375,7 +40381,7 @@ aah aah aah aah -ach +cVa aah aah aah @@ -40390,105 +40396,105 @@ aah aah aah agr -fSJ -aix -aix -aix -aix -ajX -ajx -ajx -ajx -ajx -ajx -ajx -aoN -ajx -aoN -aoN -ajx -aoN -ahR -aln -ajy +kGn +oTj +oTj +oTj +oTj +uce +wmD +wmD +wmD +wmD +wmD +wmD +bJf +wmD +bJf +bJf +wmD +bJf +vGm +nQx +fQg bFw -hyC -hyC -pPh +gSe +gSe +xWq axZ avT avT avT avT anp -ahR -ahV -ahV -ahV -ahP -ahP -ahP -ahP -ama +vGm +gzL +gzL +gzL +uml +uml +uml +uml +kpi aeI -ajz +xZn apt -aNk -aOv -aPv -aOv -aOv -aSC -aPv -aNm -aOv -aOv -aWX -aXB +oFF +sHv +uTB +sHv +sHv +cDS +uTB +vqL +sHv +sHv +oym +tOj aoH aXH aXH asK -beQ +tmu aYF aYF -aVG -bdZ -aUQ -bdZ -bev -tVp -aao -aao -tVp -tVp -bgX -sbm -kHK -kHK -bmN -bmN -bmN -eWd -eWd -eWd -bmN -bmN -eWd -bmN -bmN -bmN -bmN -bmN -bmN -eWd -eWd -eWd -bmN -bmN -bmN -vGE -tVp +sAe +oLO +vrR +oLO +vHp +rDA +aao +aao +rDA +rDA +hUg +uIO +bus +bus +qoe +qoe +qoe +hQS +hQS +hQS +qoe +qoe +hQS +qoe +qoe +qoe +qoe +qoe +qoe +hQS +hQS +hQS +qoe +qoe +qoe +mGV +rDA ayf ayf aao @@ -40508,56 +40514,56 @@ aao aao aao aao -gxJ +jOV iGK iGK -wog -wog -wog -wog -jMm +jYR +jYR +jYR +jYR +eFy uxx -jsL -tQo +qFc +hWO kKx -vlr +dxv uxx -rMJ -tff -tdp -syu -owR -owR -dFR -xWH -eql -wCo -wCo -xfx -wCo -wCo -szw -tqi -owR -owR -owR -eql -wCo -wCo -wCo -onh -nSP -wCo -tqi -pSa +pJw +sSk +lrR +xud +kXA +kXA +trj +qIC +hBU +cvS +cvS +lDC +cvS +cvS +vAC +gRM +kXA +kXA +kXA +hBU +cvS +cvS +cvS +nVF +bWz +cvS +gRM +gwV uHQ aao aao -rsv -rsv -mqX -rsv -rsv +nNj +nNj +plm +nNj +nNj aao aao aao @@ -40574,13 +40580,13 @@ aaa aab aao aao -wXg -wXg -wXg -wXg -wXg -wKx -rgp +aDR +aDR +aDR +aDR +aDR +sAU +ofa aae aah aah @@ -40592,7 +40598,7 @@ aah adL aah aah -ach +cVa aah acx aah @@ -40607,50 +40613,50 @@ acx aah aah aeG -ahK -ajx -aiy -aiy -ajx -ajY -ajx -aiy -aiy -aiy -aiy -aiy -aiy -aiy -aiy -aiy -aiy -akd -atm -aln -ajy +srA +wmD +uWF +uWF +wmD +qjq +wmD +uWF +uWF +uWF +uWF +uWF +uWF +uWF +uWF +uWF +uWF +iHM +tgm +nQx +fQg bFw -ccI -xcz -dws +fXG +lBi +iGJ aya avT azo aAq aAZ anp -ahR +vGm aeI aeI ahi -aiB -ahV -ama +qQA +gzL +kpi aeI aeI aeI -ajz +xZn apt -aNk +oFF aNo aOB aOB @@ -40661,51 +40667,51 @@ aNo aOB aOB aNo -aXC +xbs aoH aXH aXH asK -beQ +tmu aYF aYF -bcq -bdZ -bdZ -bdZ -bev -tVp -tVp -aao -aao -tVp -bgX -sbm -eWd -dAX -kOv -qNH -mDt -bgX -eWd -cpQ +kiP +oLO +oLO +oLO +vHp +rDA +rDA +aao +aao +rDA +hUg +uIO +hQS +gET +qxZ +wxH +efq +hUg +hQS +loN ayf ayf -bsa +eNJ ayf ayf -qcQ -tVp -tVp -tVp -bgX -eWd -dAX -tVp -qcQ -tVp -tVp -tVp +pEW +rDA +rDA +rDA +hUg +hQS +gET +rDA +pEW +rDA +rDA +rDA aao aao aao @@ -40728,54 +40734,54 @@ aao aao aao aao -fus -kgx -qEs -hEE -wBi +mol +tAL +gBx +gCu +hWZ uxx fOM kcx pbX -yfs +eRC uxx -jZM -dUz -vVF +xQH +oqT +qqn vHw vHw uHQ uHQ -oKy -oKy -ybT +lpk +lpk +wEe vRs -xfx -nSP -wCo -yhc -wVQ -aao -aao -fnO -fnO -nSP -wCo -kSH +lDC +bWz +cvS +rTy +jUF +aao +aao +tuF +tuF +bWz +cvS +gyi uHQ -hRy -ezQ -pSa -sDs +fEZ +oRe +gwV +gpn uHQ aao aao -rxh -fnO -fnO -rxh -rxh -rxh +hMV +tuF +tuF +hMV +hMV +hMV aao aao aao @@ -40791,17 +40797,17 @@ aaa aab aao aao -geC -wXg -wXg -jIQ -iuu -pXu -rgp +oKa +aDR +aDR +jmn +sxM +hvf +ofa aae aaw -ahK -aaW +srA +cqO aaw aaw abx @@ -40809,7 +40815,7 @@ abx aaw aaw aah -ach +cVa aah aah aah @@ -40825,26 +40831,26 @@ aah aah aeG aae -ahU -ahP -ahP -ajy -ajY -ahR -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ajy +xSj +uml +uml +fQg +qjq +vGm +uml +uml +uml +uml +uml +uml +uml +uml +uml +uml +uml +uml +uml +fQg anp avT avT @@ -40855,7 +40861,7 @@ avT avT avT anp -ahR +vGm aeI aeI aeI @@ -40865,65 +40871,65 @@ aeI aeI aeI aeI -ajz +xZn apt -aNk +oFF aOw -aPw -aQH -aRK -aSD -aTM -aUS +lOH +rBk +tcY +nUC +tlt +mNb aNo -aNm +vqL aWY -aXD +ccr aoH aXH aXH asK -beQ +tmu bbb aYF -aVG -bdZ -bdZ -bdZ -bev -tVp -tVp -jDo -tVp -tVp -bgX -eWd -eWd -eWd -vKv -vKv -vKv -eWd -eWd -qNU +sAe +oLO +oLO +oLO +vHp +rDA +rDA +fbO +rDA +rDA +hUg +hQS +hQS +hQS +qvt +qvt +qvt +hQS +hQS +eaN ayf ayf ayf ayf ayf -tVp -tVp -qcQ -tVp -bgX -eWd -dAX -tVp -tVp -tVp -tVp -tVp -qcQ +rDA +rDA +pEW +rDA +hUg +hQS +gET +rDA +rDA +rDA +rDA +rDA +pEW aao aao aao @@ -40945,39 +40951,39 @@ aao aao aao aao -fus -kgx -kgx -kgx -vct -bvV +mol +tAL +tAL +tAL +tWN +eNC rUn dSg pQE jDy -nMZ -ovZ -nFB +gFF +ufh +vul vHw vHw vHw uHQ -hoY -mOW -pvk -tRd +oWD +wPW +eHF +iss qVi -xfx -wCo -nSP -wCo -wVQ +lDC +cvS +bWz +cvS +jUF vHw vHw -owR -owR -wCo -wCo +kXA +kXA +cvS +cvS aao uHQ uHQ @@ -40987,12 +40993,12 @@ uHQ uHQ aao aao -pJX -wCo -wCo -wVQ -rsv -rsv +wDG +cvS +cvS +jUF +nNj +nNj aao aao aao @@ -41009,24 +41015,24 @@ aab aao aao aao -wXg -jIQ -pXu -pXu -pXu -xbV +aDR +jmn +hvf +hvf +hvf +hlc aae -aax -aaO -aaP -abe -abn -aby -wry -abE +nzs +gJV +huF +dln +pTC +qoG +glX +qzF aaw aca -ach +cVa aah aah aah @@ -41042,26 +41048,26 @@ aah aah aeG aae -ahR -ahP -ahP -ajy -ajY -ahR -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ard -ahP -ahP -ahP -ahP -ajy +vGm +uml +uml +fQg +qjq +vGm +uml +uml +uml +uml +uml +uml +uml +uml +kWk +uml +uml +uml +uml +fQg anp avU avT @@ -41072,7 +41078,7 @@ avT avT aBa anp -ahR +vGm aeI aeI aeI @@ -41082,66 +41088,66 @@ aeI aeI aeI aeI -ajz +xZn apt -aNk +oFF aOx -aPx +ctw aoH aoH aoH aoH -aUT +kBv aNo -aNm +vqL aOB -aXE +sCa aoH aXH aXH asK -beQ +tmu aYF -bbc -aVG -bdZ -bdZ -bdZ -beQ -tVp -tVp -tVp -tVp -tVp -bgX -eWd -eWd -kHK -bmN -bmN -bmN -eWd -eWd -gpA +eoZ +sAe +oLO +oLO +oLO +tmu +rDA +rDA +rDA +rDA +rDA +hUg +hQS +hQS +bus +qoe +qoe +qoe +hQS +hQS +pSH ayf aFc aFc aFc ayf -quX -quX +gmg +gmg axX -tVp -bgX -eWd -dAX -tVp -tVp -tVp -tVp -tVp -tVp -fsY +rDA +hUg +hQS +gET +rDA +rDA +rDA +rDA +rDA +rDA +kYK lzI aao aao @@ -41162,11 +41168,11 @@ aao aao aao aao -fus -kgx -kgx -kgx -fvu +mol +tAL +tAL +tAL +qIm uHQ tBf qjA @@ -41174,26 +41180,26 @@ bJS iaN uHQ tDk -nub +tRo gNH aao aao uHQ -khl -hzg -pSa -kmb +sDP +cUM +gwV +xlj qVi -qZU -wCo -wCo -wCo -wFO -fnO -fnO -fnO -pJX -tqi +nwu +cvS +cvS +cvS +fBR +tuF +tuF +tuF +wDG +gRM aao aao aao @@ -41203,13 +41209,13 @@ aao aao aao aao -pJX -wCo -jVN -jVN -wVQ -rsv -rsv +wDG +cvS +kiS +kiS +jUF +nNj +nNj aao aao aao @@ -41226,24 +41232,24 @@ aab aao aao aao -iuu -pXu -pXu -pXu -xBS -pow +sxM +hvf +hvf +hvf +pBA +iii aae -aay -aaO -aaO -aaO -aaO -aaO -abA -abF +hpK +gJV +gJV +gJV +gJV +gJV +kdj +tnW abR aah -ach +cVa aah aah acB @@ -41257,29 +41263,29 @@ aah aeF afg afg -adl +goI aae -ahR -ahV -ahP -ajy -ajY -ajx -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -ajx -axv +vGm +gzL +uml +fQg +qjq +wmD +eru +eru +eru +eru +eru +eru +eru +eru +eru +eru +eru +eru +eru +wmD +sbT avT avT avT @@ -41289,7 +41295,7 @@ avT avT avT anp -ahR +vGm aeI aeI aeI @@ -41299,71 +41305,71 @@ aeI aeI aeI aeI -aLZ +vtV aoH -aNl +ceh aOy -aGT -aPy -aRL -aSE -aTN -aUU +cYp +uat +wmp +vUA +nIy +fxP aNo -aWs +tAv aQM aPG -aXZ +jsk aYG aXH asK -beQ -bbc -aSB -aVG -bdZ -bdZ -bdZ -beQ -tVp -tVp -tVp -tVp -tVp -mAY -vsi -dIH -dAX -mDt -jrN -kOv -bgX -eWd -lTV +tmu +eoZ +vIn +sAe +oLO +oLO +oLO +tmu +rDA +rDA +rDA +rDA +rDA +cnB +uAG +eMe +gET +efq +iQL +qxZ +hUg +hQS +sTh gWD aFc aFc -bsI +rOt azb -vkv -kVT +sqB +hJA azb -vKv -eWd -eWd -eWd -vKv -vKv -vKv -vKv -vKv -vKv -vKv -qzO -cHn -cHn -cHn -hqD +qvt +hQS +hQS +hQS +qvt +qvt +qvt +qvt +qvt +qvt +qvt +imL +cim +cim +cim +nHI keg keg keg @@ -41379,11 +41385,11 @@ aao aao aao aao -lQN -kgx -kgx -kgx -dVA +jot +tAL +tAL +tAL +wRP uHQ uHQ uHQ @@ -41396,20 +41402,20 @@ aao aao aao uHQ -eNN -mOW -kMs -uDI +xKn +wPW +toF +tRK uHQ vHw vHw -eql -wCo -wCo -wCo -tqi -owR -owR +hBU +cvS +cvS +cvS +gRM +kXA +kXA aao aao aao @@ -41420,13 +41426,13 @@ aao aao aao aao -wCo -wCo -hyv -jVN -wFO -rsv -rsv +cvS +cvS +dqU +kiS +fBR +nNj +nNj aao aao aao @@ -41443,24 +41449,24 @@ aab aao aao aao -iyY -iyY -pXu -mDN -wXg -wcs +kbP +kbP +hvf +sAl +aDR +lKO aae -aaz -aaP -aaP -aaO -aaP -aaO -aaO -abG +mCU +huF +huF +gJV +huF +gJV +gJV +cxF abR aah -ach +cVa aah aah aah @@ -41473,30 +41479,30 @@ aah aah aeG afh -afM -agv -ahg -ahW +vnL +uql +wMu +vqv ahX -aiA -ajy -ajY -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -axv +vlp +fQg +qjq +wmD +wmD +wmD +wmD +wmD +wmD +wmD +wmD +wmD +wmD +wmD +wmD +wmD +wmD +wmD +sbT avT avT avT @@ -41506,7 +41512,7 @@ avT avT avT anp -ahR +vGm aeI aeI aeI @@ -41516,9 +41522,9 @@ aeI aeI aeI aeI -ajy +fQg aoH -aNm +vqL aOx aNo aNo @@ -41529,58 +41535,58 @@ aUV aVK aOy aNo -aHK +qif aoH aYH aXH asK -bdZ -aWk -swk -aUQ -aUQ -aUQ -aUQ -bdZ -tUY -vKv -vKv -vKv -vKv -dVp -kHK -crl -kHK -vKv -vKv -vKv -eWd -eWd -okt +oLO +hGH +lGe +vrR +vrR +vrR +vrR +oLO +hBe +qvt +qvt +qvt +qvt +uoe +bus +oyX +bus +qvt +qvt +qvt +hQS +hQS +lTJ gWD aFc aFc -bsI +rOt azb -hhK -nVq -bqf -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -qzO -bGL -bGL -bGL -qCK +qLQ +vdF +qjD +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +hQS +imL +uWh +uWh +uWh +lte keg xIP bvF @@ -41590,17 +41596,17 @@ bvS bvS bvS keg -euF +vxB aao aao aao aao aao vex -oQz -gpT -kgx -fvu +gLG +qGn +tAL +qIm vex aao aao @@ -41613,20 +41619,20 @@ aao lOY aao uHQ -oRK -bSw -wfR -jUW +uWr +khw +ldG +qWJ uHQ vHw hLS -sZh -wCo -nSP -wCo -wVQ -rxh -rxh +mjQ +cvS +bWz +cvS +jUF +hMV +hMV aao aao aao @@ -41637,13 +41643,13 @@ aao aao aao aao -eql -wCo -wCo -nSP -wCo -wVQ -rsv +hBU +cvS +cvS +bWz +cvS +jUF +nNj aao aao aao @@ -41661,23 +41667,23 @@ aao aao aao aao -wXg -wKx -mDN -wXg -uzv +aDR +sAU +sAl +aDR +dLl aae -aaA -aaP -aaP -abf -aaP -aaP -aaO -abH +vdP +huF +huF +ikZ +huF +huF +gJV +dQI aaw aah -ach +cVa acn aah aah @@ -41690,30 +41696,30 @@ aah aah aeH aah -afM -agw -agv -akK +vnL +iGs +uql +jiV ahX -aiA -ajy -ajZ -aix -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -aix -avt +vlp +fQg +fHt +oTj +lRz +lRz +lRz +lRz +lRz +lRz +lRz +lRz +lRz +lRz +lRz +lRz +lRz +oTj +yau avV avV avV @@ -41723,7 +41729,7 @@ avT avT avT anp -ahR +vGm aeI aeI aeI @@ -41733,9 +41739,9 @@ aeI aeI aeI aeI -ajy +fQg aoH -fmd +ucx aOx aOB aOB @@ -41744,60 +41750,60 @@ aOB aOB aUW aVL -aWt -aHK -aXG +hIv +qif +ftz aoH aYI aXH asK -bdZ -bdZ +oLO +oLO asK -aUQ -bdZ -bdZ -iCu -bdZ +vrR +oLO +oLO +kSS +oLO asK -eWd -eWd -eWd +hQS +hQS +hQS asK -eWd -eWd -crl -kHK -tMa -tMa +hQS +hQS +oyX +bus +vff +vff gWD -eWd -eWd -ice +hQS +hQS +wmP gWD aFc aFc -bsI +rOt azb -hhK -sCt +qLQ +qSx azb -bmN -bmN -bmN -bmN -bmN -bmN -bmN -bmN -bmN -bmN -bmN -qzO -bGL -bGL -bGL -qCK +qoe +qoe +qoe +qoe +qoe +qoe +qoe +qoe +qoe +qoe +qoe +imL +uWh +uWh +uWh +lte keg rdR rdR @@ -41807,17 +41813,17 @@ btw btw btw keg -euF +vxB aao aao aao aao aao aao -fus -kgx -kgx -dVA +mol +tAL +tAL +wRP aao aao aao @@ -41830,19 +41836,19 @@ aao aao aao lBe -eNN -xkH -pvk -jnV +xKn +dqX +eHF +rFd uHQ aao -xhy -sZh -wCo -wCo -wCo -wVQ -rxh +rdB +mjQ +cvS +cvS +cvS +jUF +hMV aao aao aao @@ -41854,12 +41860,12 @@ aao aao aao aao -rsv -eql -wCo -vYw -tqi -rsv +nNj +hBU +cvS +iXc +gRM +nNj aao aao aao @@ -41877,24 +41883,24 @@ aab aao aao aao -wXg -wXg -wKx -mDN -pMv +aDR +aDR +sAU +sAl +uQe aao aae -aaL -aaO -aaO -aaO -abo -aaO -aaO -abI +fpy +gJV +gJV +gJV +dlJ +gJV +gJV +uQx abS aah -ach +cVa aco aah aah @@ -41908,28 +41914,28 @@ aah aah aah aah -agx -agv -ahY +psS +uql +dvX aeI -aiA -ajy -ajx -ahR -ahP -ahP -ahV -ahV -ahP -ahP -ahP -ahP -ahV -ahV -ahP -ahP -ahP -ajy +vlp +fQg +wmD +vGm +uml +uml +gzL +gzL +uml +uml +uml +uml +gzL +gzL +uml +uml +uml +fQg anp avT avT @@ -41940,7 +41946,7 @@ avT avT avT anp -ahR +vGm aeI aeI aeI @@ -41950,18 +41956,18 @@ aeI aeI aeI aeI -ajy +fQg aoH -aNm +vqL aOz -aPz -aQI -aRN -aSF -aTO -aUX +lns +ikv +lnS +bRJ +lcO +tpQ aQM -aWu +liF aoH aoH aoH @@ -41971,11 +41977,11 @@ asK atw atU asK -bct -bct -bct -bct -bct +mvM +mvM +mvM +mvM +mvM asK atw atw @@ -41983,21 +41989,21 @@ atw asK asK asK -wLU -bbg +smL +iPY asK asK asK asK -bkz +rHl asK xOk aFc -ftY -kcH +lLI +sdk azb -hhK -sCt +qLQ +qSx axX azB axX @@ -42007,34 +42013,34 @@ azB azB axX axX -bpx -bpy -bpy +ewE +rMO +rMO glB -rJJ -bGL -bGL -bGL -bvK +cZF +uWh +uWh +uWh +bIJ rdR rdR -bvK +bIJ btw btw dAi hEC keg -euF +vxB aao aao aao aao aao -kgx -fus -kgx -kgx -dVA +tAL +mol +tAL +tAL +wRP aao aao aao @@ -42047,18 +42053,18 @@ aao aao aao uHQ -xWV -sgF -rkS -oXH +unW +fbr +lQm +vzU hiP -iep -rxh -rxh -owR -owR -owR -rxh +ems +hMV +hMV +kXA +kXA +kXA +hMV aao aao aao @@ -42069,14 +42075,14 @@ aao aao aao aao -wCo -wCo -wVQ -rsv -owR -owR -rsv -rsv +cvS +cvS +jUF +nNj +kXA +kXA +nNj +nNj aao aao aao @@ -42094,24 +42100,24 @@ aab aao aao aao -wXg -jIQ -pXu -pXu -iuu +aDR +jmn +hvf +hvf +sxM aao aae -aaL -aaO -aaO -abg -aaO -aaO -aaP -abJ +fpy +gJV +gJV +unQ +gJV +gJV +huF +kpw abT aah -ach +cVa aah aah aah @@ -42125,28 +42131,28 @@ aah aah aah aah -afM -agw -ahR +vnL +iGs +vGm ahX -aiA -ajy -ajx -ahR -ahP -ama +vlp +fQg +wmD +vGm +uml +kpi aeI aeI -aiB -ahV -ahV -ama +qQA +gzL +gzL +kpi aeI aeI -aiB -ahV -ahV -ajy +qQA +gzL +gzL +fQg anp avU avT @@ -42157,7 +42163,7 @@ avT avT aBa anp -ahR +vGm aeI aeI aeI @@ -42167,32 +42173,32 @@ aeI aeI aeI aeI -ajy +fQg aoH -aNn +cPe aOy -aPA +iOu aoH aoH aoH aoH -aUY +vCa aNo -aNm +vqL aoH aXH aXH aYJ aZm -aZL +xUX bay aZu asK -bcu -bdg -bdg -bcu -bdg +jyX +xLf +xLf +jyX +xLf asK aZu aZu @@ -42209,29 +42215,29 @@ aZw aZu bld asK -ftY -kcH +lLI +sdk bme azb -hhK -mSS -btr -kVT +qLQ +eZq +qkG +hJA azb -bqI -bre -maH -hdc -bsJ +knJ +iCO +cxA +dFc +uTu axX -bsI +rOt bme aao glB -rJJ -bGL -bGL -qCK +cZF +uWh +uWh +lte keg bvv lmg @@ -42241,17 +42247,17 @@ btw btw btw keg -euF -euF +vxB +vxB aao aao aao aao -kgx -kgx -kgx -kgx -kgx +tAL +tAL +tAL +tAL +tAL aao aao aao @@ -42264,17 +42270,17 @@ aao aao aao uHQ -pao -bSw -tBh -eVo -fZg -rxh -fnO -rxh -fnO -rxh -rpl +rJt +khw +rph +ijV +mIO +hMV +tuF +hMV +tuF +hMV +qRz vHw aao aao @@ -42285,15 +42291,15 @@ aao aao aao aao -wCo -tqi -owR -rsv -rsv -rsv -rsv -rsv -rsv +cvS +gRM +kXA +nNj +nNj +nNj +nNj +nNj +nNj aao aao aao @@ -42311,24 +42317,24 @@ aab aao aao aao -wXg -wKx -pXu -pXu -pXu +aDR +sAU +hvf +hvf +hvf aao aae -aaC -aaQ -aaY -abh -abp -aaN -abB -abK +cUK +xYk +tTi +qHA +och +phT +lAK +uEg abR aah -ach +cVa aah aah aah @@ -42341,16 +42347,16 @@ aah aah aah aah -agv +uql afh -agv -ahZ +uql +ffh aeI -aiA -ajy -ajx -ahR -aln +vlp +fQg +wmD +vGm +nQx aeI aeI aeI @@ -42363,7 +42369,7 @@ aeI aeI aeI aeI -ajy +fQg anp avT avT @@ -42374,7 +42380,7 @@ avT avT avT anp -ahR +vGm aeI aeI aeI @@ -42384,18 +42390,18 @@ aeI aeI aeI aeI -ajy +fQg apt -aNk +oFF aOy -aPB -aQJ -aRO -aSG -aTP -aUZ +qSi +fom +qjp +lfW +vTb +dYe aNo -aNm +vqL aoH aXH aXH @@ -42410,45 +42416,45 @@ aZu aZu aZu aZu -hah -bfy -bfV -bgq +igt +muF +olY +dUt atA gMC -bhb -bik -bhb -bhb +dPf +iHc +dPf +dPf aZu asK aZu bkA hzy axL -bsI +rOt bme bme azb -hhK -nVq -nVq -sCt +qLQ +vdF +vdF +qSx azb -hhK -nVq -nVq -nVq -sCt +qLQ +vdF +vdF +vdF +qSx azb bme bme aao glB -jOc -jOc -jOc -jOc +taX +taX +taX +taX keg xIP xIP @@ -42458,16 +42464,16 @@ bvS bvS bvS keg -euF -sSU +vxB +xkn aao aao -qHY -hEE -kgx -kgx -kgx -kgx +jxT +gCu +tAL +tAL +tAL +tAL aao aao aao @@ -42481,17 +42487,17 @@ aao aao aao uHQ -xwy -sog -pZe -mmg -lBx -tVy -oJO -wVQ -owR -rxh -rxh +qUL +fmw +hfH +mFQ +nmt +uxf +dtZ +jUF +kXA +hMV +hMV vHw aao aao @@ -42500,17 +42506,17 @@ aao aao aao aao -rsv -rsv -owR -rsv -rsv -rsv -rsv -rsv -rsv -rsv -rsv +nNj +nNj +kXA +nNj +nNj +nNj +nNj +nNj +nNj +nNj +nNj aao aao aao @@ -42528,11 +42534,11 @@ aab aao aao aao -wXg -cGZ -pXu -pXu -pXu +aDR +jzS +hvf +hvf +hvf aao aae aae @@ -42545,7 +42551,7 @@ aae aae aae aah -acj +jXM aah aah aah @@ -42559,15 +42565,15 @@ aah aah aah aah -afM +vnL ahh -akK +jiV aeI -aiA -ajy -ajx -ahR -aln +vlp +fQg +wmD +vGm +nQx aeI aeI aeI @@ -42580,7 +42586,7 @@ aeI aeI aeI aeI -ajy +fQg anp qaR avT @@ -42591,7 +42597,7 @@ azo aAq aAZ anp -ahR +vGm aeI aeI aeI @@ -42601,9 +42607,9 @@ aeI aeI aeI aeI -ajy +fQg apt -aNk +oFF aOy aNo aNo @@ -42612,7 +42618,7 @@ aNo aNo aNo aOC -aNm +vqL aoH aXH aXH @@ -42633,39 +42639,39 @@ aZO aZu atA bkn -bhb +dPf bfB bgD -eYK +tdU bbe -bjR +jdN bbe bbe aLo axL -bsI +rOt bme bme azb -hhK -nVq -nVq -nVq -bqf -nVq -nVq -tTI -rzb -bsK +qLQ +vdF +vdF +vdF +qjD +vdF +vdF +tRc +fVN +kmn axX bme -nra +mTz aao glB -xpb -tvh -tvh -krx +hHs +lCw +lCw +ocd keg keg keg @@ -42675,17 +42681,17 @@ keg keg keg keg -vCU -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx +qTk +tAL +tAL +tAL +tAL +tAL +tAL +tAL +tAL +tAL +tAL aao aao aao @@ -42698,36 +42704,36 @@ aao aao aao uHQ -tfp -okh -dCb -pJS -cPZ -rxh -umK -rxh -pmN -rxh -rxh -waX -rxh +dJj +sCf +oSN +hiG +lkT +hMV +dcv +hMV +dJk +hMV +hMV +gmi +hMV aao aao aao aao aao -kDs -yha -rsv -rsv -rsv -qeZ -rsv -rsv -rsv -rsv -rsv -rsv +hBH +fmb +nNj +nNj +nNj +qcz +nNj +nNj +nNj +nNj +nNj +nNj aao aao aao @@ -42745,11 +42751,11 @@ aab aao aao aao -pMv -wXg -cGZ -pXu -pXu +uQe +aDR +jzS +hvf +hvf aao aao aao @@ -42778,14 +42784,14 @@ aae aae aae aae -atm +tgm aeI -aiA -ajz -ajx -akK -ahP -ahO +vlp +xZn +wmD +jiV +uml +wJK aeI aeI aeI @@ -42797,7 +42803,7 @@ aeI aeI aeI aeI -ajy +fQg anp avT avT @@ -42808,7 +42814,7 @@ avT avT avT anp -ahR +vGm aeI aeI aeI @@ -42818,9 +42824,9 @@ aeI aeI aeI aeI -aMa +nqV apu -aNm +vqL aOy aPC aNo @@ -42829,7 +42835,7 @@ aNo aTQ aRM aNo -aWv +vXP aoH aXH aXH @@ -42844,66 +42850,66 @@ aZu bdK aZM aZu -beU -hVP -bgE -baF +gsU +bfx +gQy +fGf asK aZu -bhb -bik -bhb -bhD +dPf +iHc +dPf +wRu ugc atA bkl aZO blg axL -bsI +rOt bme bme azb -hhK -nVq -nVq -sCt +qLQ +vdF +vdF +qSx azb -hhK -nVq -tTI -rzb -bsL +qLQ +vdF +tRc +fVN +nKi azb -nra -bpx +mTz +ewE aao -euF -dEV -euF -buR -euF -nTG -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -nEl -nEl -nEl -kgx -kgx -kgx -kgx -kgx -kgx -kgx +vxB +sow +vxB +ylo +vxB +rWB +tAL +tAL +tAL +tAL +tAL +tAL +tAL +tAL +tAL +tAL +mCX +mCX +mCX +tAL +tAL +tAL +tAL +tAL +tAL +tAL aao aao aao @@ -42916,34 +42922,34 @@ aao rIl rIl rIl -gTN -xIo -xIo +bXg +uQb +uQb wSj -rxh -rxh -jYD -fnO -fnO -xJP -rxh -rxh -rxh -aao -aao -aao -szw -ruS -fRo -rsv -rsv -pMB +hMV +hMV +vcd +tuF +tuF +gwR +hMV +hMV +hMV +aao +aao +aao +vAC +fRy +tmE +nNj +nNj +mXI vHw -ddt -rsv -rsv -fnO -xSa +vri +nNj +nNj +tuF +pNk aao aao aao @@ -42962,11 +42968,11 @@ aab aao aao aao -geC -wXg -wXg -wKx -pXu +oKa +aDR +aDR +sAU +hvf aao aao aao @@ -42997,12 +43003,12 @@ aao aao aeI aeI -aiA -ajy -aoN -akK -ahP -aln +vlp +fQg +bJf +jiV +uml +nQx aeI aeI aeI @@ -43014,18 +43020,18 @@ aeI aeI aeI aeI -ajy +fQg anp anp alX -ayN -ayd +nru +pQA alX anp anp anp anp -ahR +vGm aeI aeI ahi @@ -43035,18 +43041,18 @@ aeI aeI aeI aeI -aMb +hLL apu -aNl +ceh aOy -aPD -hOS -aPD -hOS -aTR -aVa +jpj +uQG +jpj +uQG +jXo +xxt aNo -aNm +vqL aoH aXH aXH @@ -43065,7 +43071,7 @@ aZu bfB bbe bbe -bjR +jdN bbe bhE bbR @@ -43077,50 +43083,50 @@ bkl aZu aZu axL -bsI +rOt bme bme azb -fLl -btu -btu -gdx +eZH +syq +syq +wxC azb -fLl -nVq -btu -nVq -bsM +eZH +vdF +syq +vdF +wRa axX -bpx -bpx +ewE +ewE aao -euF -euF -euF -euF -euF -euF -jWA -kgx -kgx -nEl -kgx -kgx -kgx -kgx -kgx -tsK -euF -euF -euF -nTG -kgx -kgx -kgx -kgx -kgx -kgx +vxB +vxB +vxB +vxB +vxB +vxB +bjU +tAL +tAL +mCX +tAL +tAL +tAL +tAL +tAL +rGL +vxB +vxB +vxB +rWB +tAL +tAL +tAL +tAL +tAL +tAL aao aao aao @@ -43131,36 +43137,36 @@ aao aao aao rIl -pYE -ujU -mrS -fwO -fwO +eom +cSr +efW +jaC +jaC rIl aao -rxh -uFF -wCo -wCo -wFO -rxh -ohg -rxh +hMV +kgE +cvS +cvS +fBR +hMV +vou +hMV aao aao aao -cCu -wlE -dNd -wVQ -rsv -rsv -nxa -rsv -rsv -sZh -nSP -wCo +kaJ +xvO +iVk +jUF +nNj +nNj +mSr +nNj +nNj +mjQ +bWz +cvS aao aao aao @@ -43179,11 +43185,11 @@ aab aao aao aao -wXg -wXg -wXg -wKx -pXu +aDR +aDR +aDR +sAU +hvf aao aao aao @@ -43214,12 +43220,12 @@ aao aao aeI aeI -aiA -ajy -aoN -akK -ahP -aln +vlp +fQg +bJf +jiV +uml +nQx aeI aeI aeI @@ -43231,18 +43237,18 @@ aeI aeI aeI aeI -ajy -ajx -ajx +fQg +wmD +wmD alu -aqw -azv +xSg +eBa alu -ajx -ajx -ajx -ajx -ahR +wmD +wmD +wmD +wmD +vGm aeI aeI aeI @@ -43252,18 +43258,18 @@ aeI aeI aeI aeI -ajy +fQg apt -aNk +oFF aOy -aPE +dYb aoH aoH aoH aoH -aPD +jpj aNo -aWw +uJC aoH aXH aXH @@ -43278,15 +43284,15 @@ aZO bdL aZu aZu -beU -bfC -bfX -bhe +gsU +eyD +jJc +rWS asK asK asK -wLU -bbg +smL +iPY asK asK asK @@ -43294,8 +43300,8 @@ aLl aZu blh asK -ftY -fbf +lLI +lkO bme axX azB @@ -43304,40 +43310,40 @@ azB axX axX axX -brf +lSU ayr -brf +lSU axX axX -bpx -kdh +ewE +sCK aao aao aao -euF -euF -njf -euF -jWA -kgx -lWA -euF -nTG -kgx -kgx -nEl -tsK -euF -euF -euF -euF -euF -puU -kgx -kgx -kgx -kgx -kgx +vxB +vxB +gIE +vxB +bjU +tAL +xuA +vxB +rWB +tAL +tAL +mCX +rGL +vxB +vxB +vxB +vxB +vxB +hiJ +tAL +tAL +tAL +tAL +tAL aao aao aao @@ -43348,35 +43354,35 @@ aao aao aao rIl -uSf -ldh -llS -suD -ijU +enr +fNv +hAp +swt +nTe rIl aao aao -sZh -vlA -oMd -trW -ktE -rxh -rxh +mjQ +dJv +rSQ +ipK +tEW +hMV +hMV aao aao aao aao -mXw -nQl -sFW -hWM -rsv -rsv -rsv -rsv -sZh -wCo +jMh +lDI +pbV +fXy +nNj +nNj +nNj +nNj +mjQ +cvS aao aao aao @@ -43396,12 +43402,12 @@ aab aao aao aao -wXg -wXg -jIQ -pXu -pXu -pXu +aDR +aDR +jmn +hvf +hvf +hvf aao aao aao @@ -43431,56 +43437,56 @@ aao aeI aeI aeI -aiA -ajy -ajx -ahR -ahP -ama +vlp +fQg +wmD +vGm +uml +kpi aeI aeI aeI -aoO -aiw -aiw -aiw -aiw -aiw -aiw -aiw -ajx -ajx -ajx +gvT +eru +eru +eru +eru +eru +eru +eru +wmD +wmD +wmD alu -aqw -aye +xSg +obP alu -ajx -ajx -ajx -ajx -ajx -aiw -aiw -aiw -aiw -aiw -aiw -ahQ +wmD +wmD +wmD +wmD +wmD +eru +eru +eru +eru +eru +eru +cMM aeI aeI -ajz +xZn apt -aNk +oFF aOy -aPF -aQL -aPF -aSH -aTS -aVb +utb +qtk +utb +lRE +gGG +khb aNo -aWx +jli aoH aXH aYc @@ -43508,51 +43514,51 @@ aZu aZu asK atA -bkz +rHl atA asK axX axX axX axX -boj -boG -boj +iVD +moz +iVD axX -jYF -sap -nVq -brI -sCt +rnW +kRw +vdF +cNQ +qSx azb -bpx -bpx -bpx -bpx +ewE +ewE +ewE +ewE aao aao aao -euF -euF -euF -nTG -nEl -tsK -euF -njf -nTG -tsK -euF -euF -euF -euF -euF -dEV -euF -jWA -kgx -kgx -kgx +vxB +vxB +vxB +rWB +mCX +rGL +vxB +gIE +rWB +rGL +vxB +vxB +vxB +vxB +vxB +sow +vxB +bjU +tAL +tAL +tAL aao aao aao @@ -43565,34 +43571,34 @@ aao aao aao hHb -tgF -gXs -jQS -fwO -fwO +lwK +qAK +xLS +jaC +jaC rIl aao aao -rxh -eql -igM -wCo -wCo -wFO -fnO +hMV +hBU +uqi +cvS +cvS +fBR +tuF aao aao aao -oqr -sHz -rcc -oZA -lhE -rsv -fnO -rsv -rsv -rsv +bTa +wuv +sUe +saE +pxN +nNj +tuF +nNj +nNj +nNj aao aao aao @@ -43614,11 +43620,11 @@ aao aao aao aao -iuu -pXu -pXu -pXu -pXu +sxM +hvf +hvf +hvf +hvf aao aao aao @@ -43647,17 +43653,17 @@ aao aao aeI aeI -aiz -ahP -ajy -aoN -ahR -aln +qWQ +uml +fQg +bJf +vGm +nQx aeI aeI aeI aeI -ajy +fQg alu alu alu @@ -43669,8 +43675,8 @@ alu alu alu alu -ayN -ayd +nru +pQA alu alu alu @@ -43683,12 +43689,12 @@ alu alu alu alu -cQi +hab aCM aBR -aMc +eXq apt -aNk +oFF aOy aOB aNo @@ -43697,7 +43703,7 @@ aOy aNo aOB aOB -aNm +vqL aoH cec aXH @@ -43712,12 +43718,12 @@ bdi aZu aZu aZu -beU -bfD -bfF -bfF -bgE -baF +gsU +wKr +ycV +ycV +gQy +fGf aZu baz biL @@ -43728,47 +43734,47 @@ aZu aZu beA axX -bmf -bmf -bmf -bnQ -ygP -cud -bpe +pTK +pTK +pTK +tBU +eNP +wIv +kzE axX -jYF -sap -nVq -tTI -sCt +rnW +kRw +vdF +tRc +qSx azb -kdh -bpx -bpx -bpx -bpx +sCK +ewE +ewE +ewE +ewE aao aao -euF -euF -euF -bvw -euF -euF -euF -euF -euF -dEV -euF -euF -sSU -vCU -xgw -euF -euF -jWA -kgx -kgx +vxB +vxB +vxB +fNE +vxB +vxB +vxB +vxB +vxB +sow +vxB +vxB +xkn +qTk +nGS +vxB +vxB +bjU +tAL +tAL aao aao aao @@ -43782,33 +43788,33 @@ aao aao aao rIl -uSf -olT -llS -suD -ijU +enr +xBw +hAp +swt +nTe rIl aao aao -rxh -dHH -jVr -wCo -szw -wCo -wCo +hMV +tSC +aJk +cvS +vAC +cvS +cvS aao aao aao aao -roP -szw -wVQ -rxh -sZh -wCo -wVQ -rsv +tyy +vAC +jUF +hMV +mjQ +cvS +jUF +nNj aao aao aao @@ -43831,12 +43837,12 @@ aao aao aao aao -pXu -pXu -pXu -pXu -xBS -wXg +hvf +hvf +hvf +hvf +pBA +aDR aao aao aao @@ -43864,48 +43870,48 @@ aao aao aeI aeI -aiA -ahP -ajy -aoN -ahR -alo +vlp +uml +fQg +bJf +vGm +bOs aeI aeI aeI aeI -ajy +fQg alu -aqq -are -aim -asy -ajk -are -auG +qnX +mjZ +qte +ukY +gNX +mjZ +iZj alu -avW -awL -avw -aFB -ayG -azp +nAn +dwD +usd +eeh +ijk +dZV alu -aBb -aBI +hdw +cqU amj -aqC -aEw -wuz -aFx -aHo +xpO +xdx +oFd +nqb +kRI alu -aHD +fTX aBR aBR -aMc +eXq aoH -aNm +vqL aOA aPG aQM @@ -43914,15 +43920,15 @@ aSI aOB aNo aNo -aNm +vqL aoH hmJ aXH asK asK atA -bdg -bbg +xLf +iPY auk asK asK @@ -43944,48 +43950,48 @@ bfz aZO aZu bli -bsX -bmg -bmO -vdl -vdl -rhP -tTI -sCt +oZi +ojW +rAC +rKr +rKr +vvq +tRc +qSx axX ayr ayr -brg -tTI -sCt +fcI +tRc +qSx axX axX axX -bpx -bpx -bpx +ewE +ewE +ewE aao aao aao -euF -euF -euF -euF -euF -euF -euF -euF -euF -euF -sSU -kgx -kgx -kgx -vCU -vCU -kgx -kgx -kgx +vxB +vxB +vxB +vxB +vxB +vxB +vxB +vxB +vxB +vxB +xkn +tAL +tAL +tAL +qTk +qTk +tAL +tAL +tAL aao aao aao @@ -43999,33 +44005,33 @@ aao aao aao rIl -rKP -fxn -fxn +jjy +rBC +rBC rIl rIl rIl aao aao -rxh -rxh -rDl -eql -wCo -dNd -wCo +hMV +hMV +vFM +hBU +cvS +iVk +cvS aao aao aao -khR -ngJ -szw -sCj -rxh -sZh -nSP -wFO -rsv +daX +mHY +vAC +rXg +hMV +mjQ +bWz +fBR +nNj aao aao aao @@ -44048,12 +44054,12 @@ aao aao aao aao -pXu -pXu -pXu -mDN -wXg -wXg +hvf +hvf +hvf +sAl +aDR +aDR aao aao aao @@ -44081,48 +44087,48 @@ aao aao aeI aeI -aiA -ahP -ajz -aoN -ahR -ahP -ahO +vlp +uml +xZn +bJf +vGm +uml +wJK aeI aeI aeI -ajy +fQg alu -fyO -aqr -aqr -asz -aqr -atR -atR -avu -auL -arR -aqw -azv -aqw -azq +lnE +son +son +xUb +son +czv +czv +dDA +lNY +hWt +xSg +eBa +xSg +vqe alu -aBb -aBb +hdw +hdw amj -aDC -arR -arR -ari -aFx +cxO +hWt +hWt +mEQ +nqb alu -aHD +fTX aBR aBR -aMc +eXq apt -aNk +oFF aOB aOB aOB @@ -44131,7 +44137,7 @@ aOy aOB aOB aNo -aNm +vqL aoH odw aXH @@ -44146,12 +44152,12 @@ asK bee aZu baz -beU -bfF -bfY -bfY -bfY -baF +gsU +ycV +rkK +rkK +rkK +fGf aZu baz aZu @@ -44161,49 +44167,49 @@ bfB bbe bbe blj -dvC -bmh -bmP -bnq -qGY -qGY -boH -bpf -bpz -lck -bqJ -tTI -brJ -niQ -bsN -bsZ +xLI +vOb +eZz +fBF +kUt +kUt +oqy +dvi +cok +mAv +bUZ +tRc +iBm +vOS +fDb +fGL axX -bpx -bpx -bpx +ewE +ewE +ewE aao aao aao aao -njf -euF -euF +gIE +vxB +vxB aao aao -buz -ibZ -ibZ -ibZ -wog -trk -wog -wog -wog -trk -trk -trk -wog -wog +pUF +nXV +nXV +nXV +jYR +pUq +jYR +jYR +jYR +pUq +pUq +pUq +jYR +jYR aao aao aao @@ -44218,32 +44224,32 @@ aao rIl bRd rQs -xDO +gXL rIl aao aao aao -wCo -wVQ -mPF -mPF -rxh -wCo -dNd +cvS +jUF +jrF +jrF +hMV +cvS +iVk aao aao aao aao aao aao -jEx -gyJ -rxh -pJX -wCo -xUS -wVQ -rsv +gcL +fIE +hMV +wDG +cvS +ppP +jUF +nNj aao aao aao @@ -44267,11 +44273,11 @@ aao aao aao aao -pXu -mDN -wXg -geC -hgT +hvf +sAl +aDR +oKa +iDo aao aao aao @@ -44298,61 +44304,61 @@ agu aeI aeI aeI -aiA -ahP -ajz -aoN -ajx -aiw -aiw -ahQ +vlp +uml +xZn +bJf +wmD +eru +eru +cMM aeI aeI -ajz +xZn alu -aqs -aqs -arO -asA -aqs -aqs -aqs +xOR +xOR +bUv +mEw +xOR +xOR +xOR amj -avX -awQ -atr -ayg -aqw -awO -aAr -aBc -aBc +vzl +sCw +vSC +bCB +xSg +fTL +cPa +vGG +vGG amj -aDD -arR -aFy -aGt -aHp +vsU +hWt +viB +eXv +iqR alu -aHD +fTX aBR aBR -aMc +eXq apt aNo aNo -aNm -aQN -aPv -aSJ -aNm -aPv -aNm -aWB +vqL +aQs +uTB +bWS +vqL +uTB +vqL +dlm aoH aXH aXH -mOc +iiW aZu aZO aZO @@ -44379,50 +44385,50 @@ aZu aZu aZr axX -bmi +tln ayr ayr ayr ayr -boI -bor +kWK +izL ayr -tTI -tTI -tTI -brK -cla -tTI -sCt +tRc +tRc +tRc +mvP +tkE +tRc +qSx axX -bpx -bpx -bpx +ewE +ewE +ewE aao aao aao aao -euF +vxB aao aao aao aao -wog -wog -wog -wog -jXX +jYR +jYR +jYR +jYR +npK aao aao aao aao aao -dxV -dxV -qgY -wog -hiY -dxV +mwS +mwS +jgQ +jYR +wpF +mwS aao aao aao @@ -44439,14 +44445,14 @@ rIl rIl aao aao -szw -wCo -wDa +vAC +cvS +tQK jUY jUY jUY -jXP -owR +jkL +kXA aao aao aao @@ -44455,13 +44461,13 @@ aao aao aao aao -pJX -wCo -nSP -wCo -wVQ -rsv -rsv +wDG +cvS +bWz +cvS +jUF +nNj +nNj aao aao aao @@ -44484,11 +44490,11 @@ aao aao aao aao -pXu -pXu -smO -wXg -wXg +hvf +hvf +ehy +aDR +aDR aao aao aao @@ -44515,55 +44521,55 @@ aeI aeI aeI aeI -aiB -ahP -ajy -aoN -aoN -aoN -ajx -ahR +qQA +uml +fQg +bJf +bJf +bJf +wmD +vGm aeI aeI -aoP +eSl alu -aqt -arf -arP -asB -ato -atS -auH -avv -avY -arR -aqw -aqw -aqw -azr +kjz +eSU +gUn +ksV +ism +ebj +fvp +frV +chR +hWt +xSg +xSg +xSg +uZy alu -aBb -aBb +hdw +hdw amj -aDE -aEx -aqw -aGu -aFx +jAI +hpZ +xSg +hJe +nqb alu -aHD +fTX aBR aBR -aMc +eXq aoH -aVJ -aVJ +vYg +vYg aoH -aQO +iHd aOC -aSK +eFa aNo -aVd +uPW aOB aoH aoH @@ -44572,8 +44578,8 @@ aXH asK asK atA -bdg -bbg +xLf +iPY auk asK asK @@ -44596,25 +44602,25 @@ aZO aZu aZr axX -bmj -bmQ -tju -bnR -ewv -bYW -bpO -bpA -eSm -bqK -kNK -slG -bqN -tTI -bta +xQg +oDr +sjm +heJ +lCB +uPT +iKp +ufv +eXp +oTz +eiB +jYW +pat +tRc +fMx azb -nLw -bpx -bpx +eGw +ewE +ewE aao aao aao @@ -44622,25 +44628,25 @@ aao aao aao aao -wog -oQI -wog -wog -wog -wog +jYR +pek +jYR +jYR +jYR +jYR aao bRC aao aao aao aao -qUS -dxV -qgY -wog -jXX -dxV -dxV +ueD +mwS +jgQ +jYR +npK +mwS +mwS aao aao aao @@ -44656,9 +44662,9 @@ aao aao aao aao -wCo -nSP -bqc +cvS +bWz +dCN jUY jUY tuN @@ -44672,13 +44678,13 @@ aao aao aao aao -wCo -wCo -wCo -wCo -wVQ -rsv -rsv +cvS +cvS +cvS +cvS +jUF +nNj +nNj aao aao aao @@ -44702,11 +44708,11 @@ aao aao aao aao -pXu -mDN -wXg -pMv -wXg +hvf +sAl +aDR +uQe +aDR aao aao aao @@ -44722,9 +44728,9 @@ aao aao aao acp -adh -ady -adh +twl +vHK +twl acp aao aao @@ -44733,54 +44739,54 @@ aeI ahi aeI aeI -aiA -ajA -akd -aiy -aiy -ajx -akK -ahO +vlp +wHO +iHM +uWF +uWF +wmD +jiV +wJK aeI -ajz +xZn alu -aqu -arg -arQ -arg -aqu -atT -auI +uYQ +noY +ndG +noY +uYQ +wVY +tpb alu -avZ -awN -axx -axx -axx -azs +bPX +lOx +cFb +cFb +cFb +iJv alu -aBd -aBb +pai +hdw amj -aDF -arW -aFz -aGv -aHq +niN +dWq +eQh +iwK +bLT alu -aHD +fTX aBR aBR -aMc -aME +eXq +qDa aNq aOC apQ -aQP +hSH aNo -aSL +rHi aNo -aVe +hEW aVM aoH aXb @@ -44822,41 +44828,41 @@ ayr ayr ayr ayr -nPz -bri -nVq -bsm -nVq -btb +mCD +dVU +vdF +seE +vdF +pVX azb -nLw -bpx -bpx +eGw +ewE +ewE aao aao aao -wog -wog -wog -wog -sAG -wog -oQI -wog -wog -wog +jYR +jYR +jYR +jYR +gfT +jYR +pek +jYR +jYR +jYR aao aao aao aao aao aao -pYt -buz -wog -hiY -dxV -dxV +mOD +pUF +jYR +wpF +mwS +mwS aao aao aao @@ -44873,9 +44879,9 @@ aao aao aao aao -nSP -drq -hwe +bWz +wnZ +xme jUY jUY jUY @@ -44889,13 +44895,13 @@ aao vHw aao aao -wCo -nSP -wCo -wCo -wVQ -rsv -rsv +cvS +bWz +cvS +cvS +jUF +nNj +nNj aao aao aao @@ -44919,11 +44925,11 @@ aao aao aao aao -pXu -pXu -iuu -smO -wXg +hvf +hvf +sxM +ehy +aDR aao aao aao @@ -44937,11 +44943,11 @@ aao aao aao aao -asc +lNe acp -adh -adh -adh +twl +twl +twl acp aao aeI @@ -44950,27 +44956,27 @@ aeI aeI aeI aeI -aiB -ahV -ahV -ahV -ahP -ajy -ahR -aln +qQA +gzL +gzL +gzL +uml +fQg +vGm +nQx aeI -aoQ +hzv alu alu -bgJ +stC amj -bgJ +stC alu alu alu alu -awa -awO +kmh +fTL alu alu alu @@ -44981,23 +44987,23 @@ alu alu alu alu -aFA +saF alu alu alu -aHD +fTX aBR aBR -aMc -aME +eXq +qDa aNq aNo apQ -aQQ +xpp aNo -aSM +bWa aNo -aVf +gUL aOB aoH jiS @@ -45010,7 +45016,7 @@ aZO aZO baz aZu -bdj +kgB aZO bbO beA @@ -45030,37 +45036,37 @@ aZu aZu bdN axX -bml -bmR -bnr -bnr -bok -bnr -bpi -mfQ +isw +lgy +his +his +hlW +his +naw +cOw ayr -nPz -nVq -brL -nVq -nVq -btc +mCD +vdF +wOC +vdF +vdF +fvt axX -nLw -bpx -bpx +eGw +ewE +ewE aao aao aao -wog -wog -wog -wog -wog -wog -wog -icQ -wog +jYR +jYR +jYR +jYR +jYR +jYR +jYR +sbS +jYR aao aao aao @@ -45068,12 +45074,12 @@ aao aao aao aao -buz -wog -wog -hiY -dxV -pYt +pUF +jYR +jYR +wpF +mwS +mOD aao aao aao @@ -45090,31 +45096,31 @@ aao aao aao aao -wCo -jWj -qVB +cvS +hlY +wWy jUY -rsv -rsv -rsv -rxh -rxh -rxh -rxh -rxh +nNj +nNj +nNj +hMV +hMV +hMV +hMV +hMV aao vHw vHw -rxh -owR -owR -owR -owR -rxh -rxh -rxh -rxh -rxh +hMV +kXA +kXA +kXA +kXA +hMV +hMV +hMV +hMV +hMV aao aao aao @@ -45137,11 +45143,11 @@ aao aao aao aao -pXu -pXu -pXu -iuu -iuu +hvf +hvf +hvf +sxM +sxM aao aao aao @@ -45152,69 +45158,69 @@ aao aao aao aao -dQR -dXK -asc +jxg +gyV +lNe acp -adi +sXK adz adz acp aao -aiw -aiw -aiw -aiw -aiw -ahQ +eru +eru +eru +eru +eru +cMM aeI aeI aeI aeI -aiA -ajy -akK -ahP -aog -aoR +vlp +fQg +jiV +uml +mSe +bsp alu -atq -aqw -aqw -aqw -hbx +uUU +xSg +xSg +xSg +fYg amj -ujq -avw -awb -awP +egX +usd +wte +elK amj -ayh -ayH -avw -aAs +ukx +xFz +usd +jOH amj -ayh -axz -axz -axz -aFB -aGw -aHr +ukx +qMQ +qMQ +qMQ +eeh +cDY +iRk alu -aHD +fTX aBR aBR -aMc +eXq aoH -aVJ -aVJ +vYg +vYg aoH -aQR +uMB aNo -aSN +cYq aNo -aVg +kHh aNo aoH aXd @@ -45231,11 +45237,11 @@ atA aZO beg bbe -beV +wLM baC bfZ bbe -beV +wLM bbe baC bit @@ -45247,24 +45253,24 @@ aZu aZu bll axX -bmm -bmS -tTI -tTI -iQC -boK -nVq -cKu +pzP +vEj +tRc +tRc +oVR +fbP +vdF +cEF ayr -nPz -brj -brM -aMB -gwg -btd +mCD +nhw +jud +goL +iiM +dCr axX -nLw -nLw +eGw +eGw aao aao aao @@ -45283,15 +45289,15 @@ aao aao aao aao -qUS -dxV -qgY -wog -wog -hiY -dxV -dxV -dxV +ueD +mwS +jgQ +jYR +jYR +wpF +mwS +mwS +mwS aao aao aao @@ -45308,31 +45314,31 @@ aao aao aao aao -wCo -wVQ +cvS +jUF jkO -rsv -fnO -jbU -rsv -rxh -rxh -rxh -fnO -smy -xhy -rxh -rxh -rxh -rxh -rxh -hKt -jAN -rxh -rxh -rxh -tCH -rxh +nNj +tuF +nEh +nNj +hMV +hMV +hMV +tuF +ilN +rdB +hMV +hMV +hMV +hMV +hMV +piN +oTP +hMV +hMV +hMV +dtd +hMV aao aao aao @@ -45354,11 +45360,11 @@ aao aao aao aao -pXu -pXu -pXu -pXu -pXu +hvf +hvf +hvf +hvf +hvf aao aao aao @@ -45368,10 +45374,10 @@ aao aao aao aao -dXK -hQO -aqL -asc +gyV +plL +hls +lNe acp adj adA @@ -45383,56 +45389,56 @@ acp agy agy acp -ahR +vGm aeI aeI aeI aeI -aiA -ajy -akK -ahP -ahP -ajz +vlp +fQg +jiV +uml +uml +xZn alD -atq -aqw -arR -arR -ark +uUU +xSg +hWt +hWt +sQB amj -kXV -aqw -awc -awQ -axy -atr -ayI -azt -awQ -aBe -atr -azt -atr -aEz -aFC -aGx -aHs +kIA +xSg +nXm +sCw +qgx +vSC +iuR +nfN +sCw +cuR +vSC +nfN +vSC +wnj +nnu +giW +ocQ alu -aHD +fTX aBR aBR -aMc +eXq apt aNq aOB -aPI -aQS -aQS -aRR -aQS -aQS -aVN +szv +jEZ +jEZ +kce +jEZ +jEZ +dLK aoH aXH aXH @@ -45448,11 +45454,11 @@ asK aZu beh aZO -bdg +xLf aZO bbO aZu -bdg +xLf aZu aZO biq @@ -45464,16 +45470,16 @@ aZu aZu blm axX -mhZ -pgk -btu -bnS -tTI -boL -bpj -bpC +ncB +uyZ +syq +jBW +tRc +xpX +rjA +enf ayr -bqL +hne ayZ ayZ ayZ @@ -45501,14 +45507,14 @@ aao aao aao aao -buz -wog -wog -wog -wog -sDC -dxV -dxV +pUF +jYR +jYR +jYR +jYR +vtD +mwS +mwS aao aao aao @@ -45525,31 +45531,31 @@ aao aao aao vHw -jXP -opK -rsv -pJX -wCo -wCo -wVQ -cmG -opK -sZh -nSP -wCo -wVQ -rxh -fnO -rsv -rsv -rxh -yhN -rxh -rxh -rxh -rxh -vcA -hqC +jkL +sbG +nNj +wDG +cvS +cvS +jUF +nxN +sbG +mjQ +bWz +cvS +jUF +hMV +tuF +nNj +nNj +hMV +vpp +hMV +hMV +hMV +hMV +fJL +xrT aao aao aao @@ -45571,12 +45577,12 @@ aao aao aao aao -pXu -iyY -pXu -pXu -pXu -pXu +hvf +kbP +hvf +hvf +hvf +hvf aao aao aao @@ -45584,64 +45590,64 @@ aao aao aao aao -kfx -aqL -nnz -aqL -asc +hrV +hls +gvC +hls +lNe acp adk adk adk ael -aeJ +sNo afi -afO +vKS adk adS acp -ahR +vGm aeI aeI aeI aeI -aiA -ajy -ahR -ahP -ahP -ajz +vlp +fQg +vGm +uml +uml +xZn alD -atq -aqw -arR -asC -ark +uUU +xSg +hWt +rAh +sQB amj -auK -aqw -azv -arR -ayN -arR -arR -azu -aAt +tYN +xSg +eBa +hWt +nru +hWt +hWt +foA +nAs amj -aBJ -aCB -aDG -aEA -axB -aGy -aHt +mNP +qUx +cPY +tpu +oMS +vhQ +mSK alu -aHD +fTX aBR aBR -aMc +eXq aoH -aNr +fNa aNo aOB aOB @@ -45649,10 +45655,10 @@ aNo aOy aNo aOB -aVO +cqE aoH asK -jUd +jMT asK asK aZu @@ -45661,7 +45667,7 @@ baD aZu aZu bcC -bdj +kgB aZu aZu aZu @@ -45684,47 +45690,47 @@ axX ayr ayr ayr -bnT -bnT +uUr +uUr ayr ayr ayr ayr -cla -btr -lck -kVT +tkE +qkG +mAv +hJA ayZ -bsP +epc ayZ -ouh -lck -jXJ -btr -sDO -pOg -saX -pVv -saX -eIN -lck -btr +dIk +mAv +uIT +qkG +kRj +nbt +fkP +rca +fkP +vqm +mAv +qkG ayZ -btr -kVT +qkG +hJA axX axX aao aao -wog -wog -wog -wog -wog -wog -wog -jXX -dxV +jYR +jYR +jYR +jYR +jYR +jYR +jYR +npK +mwS aao aao aao @@ -45741,33 +45747,33 @@ aao aao aao aao -rsv -rsv -rsv -dhS -wCo -dNd -dNd -wVQ -rxh -rsv -sZh -wCo -tqi -rxh -rxh -owR -rsv -rsv -rxh -fHF -miD -omw -rxh -pmN -dUj -sZh -nSP +nNj +nNj +nNj +eko +cvS +iVk +iVk +jUF +hMV +nNj +mjQ +cvS +gRM +hMV +hMV +kXA +nNj +nNj +hMV +rtm +tGj +piy +hMV +dJk +kBJ +mjQ +bWz aao aao aao @@ -45789,88 +45795,88 @@ aao aao aao aao -wXg -cGZ -iyY -pXu -pXu -pXu +aDR +jzS +kbP +hvf +hvf +hvf aao aao aao aao aao -dQR -kfx -aqL -aqL -aqL -asc +jxg +hrV +hls +hls +hls +lNe acp aaX adB adk adk -aeJ +sNo adS -aeJ +sNo adS adk acp -ajx -ahQ +wmD +cMM aeI aeI -aiz -ahP -ajy -ahR -ahP -ahP -ajy +qWQ +uml +fQg +vGm +uml +uml +fQg alD -aqw -ari -arS -asD -atr -aBe -atr -atr -arU -awO +xSg +mEQ +vMC +pDO +vSC +cuR +vSC +vSC +ioH +fTL amj -ayi -aqw -azv -aAu +sRQ +xSg +eBa +tGD alu amj -aCC +skE alu alu alu alu alu alu -aHD +fTX aBR aBR -aMc +eXq apt -aNs +pse aNo aOB aQT -aRQ -aSO -aQS -aQS -aQS +vVP +ozL +jEZ +jEZ +jEZ aoH -aHF -aHF -aHF +vzY +vzY +vzY asK aZv aZR @@ -45884,7 +45890,7 @@ atA asK asK atA -bga +xoU atA asK aZu @@ -45901,46 +45907,46 @@ axX bmn bmT ayr -nzN -tTI -boM +eqq +tRc +xSq ayr -bpD -btr -bqM -rnV -nVq -tTI -nIi -bte -nIi -btu -gwg -gwg -gwg -tTI -btu -gwg -gwg -tTI -btu -btu -ndw -fUp -nVq -sCt -wpn +fpb +qkG +qbf +ikE +vdF +tRc +dkt +lRk +dkt +syq +iiM +iiM +iiM +tRc +syq +iiM +iiM +tRc +syq +syq +kar +pvh +vdF +qSx +lYw axX aao -wog -wog -wog -wog -wog -trk -trk -jXX -dxV +jYR +jYR +jYR +jYR +jYR +pUq +pUq +npK +mwS aao aao aao @@ -45958,34 +45964,34 @@ aao aao aao aao -rsv -rsv -oIc +nNj +nNj +uLr vHw -ciY -xRl -sbk -wVQ -rxh -rxh -rxh -owR -rxh -vhF -fnO -fnO -fnO -rxh -rxh +foD +qih +gVW +jUF +hMV +hMV +hMV +kXA +hMV +trB +tuF +tuF +tuF +hMV +hMV aao aao -rxh -rxh -rxh -rxh -sZh -nSP -nSP +hMV +hMV +hMV +hMV +mjQ +bWz +bWz aao aao aao @@ -46006,23 +46012,23 @@ aao aao aao aao -pMv -wXg -wXg -wKx -pXu -pXu -pXu +uQe +aDR +aDR +sAU +hvf +hvf +hvf aao aao aao -dQR -dQR -hQO -aqL -agq -ahe -ahS +jxg +jxg +plL +hls +tqK +lsa +tdM acp acp acp @@ -46031,67 +46037,67 @@ acp acp acp acp -agz -ahj +rZB +vjW acp acp -ajx -aiw -aiw -aiw -aiw -ajx -ajx -aiw -aiw -ajx -apE -aqw -aqw -azv -aqw -aqw +wmD +eru +eru +eru +eru +wmD +wmD +eru +eru +wmD +eXl +xSg +xSg +eBa +xSg +xSg amj -auL -aqw -azA -awP +lNY +xSg +bVb +elK alu alu -ayJ -azw +dLa +xww alu alu -aBK -aCD -aDH -arX -axw -aGz -axw +lqL +und +ykq +lAk +ocm +ieb +ocm alu -aHD +fTX aBR aFL -aMc +eXq apt -aNt +nDf aOB aNo aNo -aRR +kce aoH apQ apQ apQ aoH -aHF -aHF -aHF +vzY +vzY +vzY asK aZu aZu -baF +fGf aZu aZu aZu @@ -46117,46 +46123,46 @@ asK axX bmn bmV -bns -hhK -tTI -boN +wav +qLQ +tRc +pXQ ayr -bpE -nVq -cla -nVq -nVq -gfX +rAu +vdF +tkE +vdF +vdF +ctr axX axX axX iig iig iig -mqh -fEv +tie +doM iig iig ayZ -fEv -ueL -ueL +doM +eBb +eBb ayZ axX -fEv +doM ayZ axX axX aao -wog -wog -wog -wog -jXX -dxV -dxV -dxV +jYR +jYR +jYR +jYR +npK +mwS +mwS +mwS aao aao aao @@ -46174,35 +46180,35 @@ aao aao aao aao -rsv -rsv -rxh -qvI -gzG -wCo -wCo +nNj +nNj +hMV +lzS +kCP +cvS +cvS aao aao aao aao aao -fnO -tRV -nSP -wCo -wCo -wCo +tuF +xqJ +bWz +cvS +cvS +cvS aao aao aao aao aao -rsv -rsv -xgi -sZh -nSP -nSP +nNj +nNj +htM +mjQ +bWz +bWz aao aao aao @@ -46224,87 +46230,87 @@ aao aao aao aao -hgT -wXg -cGZ -pXu -pXu -pXu -rgp -dQR -dXK -dQR -agq -ahe -ahe -ahS +iDo +aDR +jzS +hvf +hvf +hvf +ofa +jxg +gyV +jxg +tqK +lsa +lsa +tdM acp acp acp -adm -adm -adm +vFV +vFV +vFV acr -aeK -afj +faI +oHX acp -agz +rZB adk -aia +fwq acp acr acr acr acr acr -amc -aix -aix -aix -aix -apF -atr -arj -arU -aqw -aqw +sjV +oTj +oTj +oTj +oTj +iJC +vSC +nSg +ioH +xSg +xSg amj -auM -aqw -azA -awP +ltS +xSg +bVb +elK amj -ayj -ayK -azv -awk +ljF +kIR +eBa +faD alu -asq -aCE -aDI -awN -awN -aDJ -aHu +iEi +rar +tbo +lOx +lOx +dZR +feB alu -aHD +fTX aBR aBR -aMc +eXq apt -aNu +run aNo aNo aNo -aRR +kce apQ -aGV +qSl aVh -aVP +sZg aoH -aHF -aHF -wZv +vzY +vzY +bHW asK aZw aZu @@ -46328,25 +46334,25 @@ asK aZu aZO aZO -bko +vRL aZO aZu axX bmn bmV ayr -bnV -tTI -eYy +kcO +tRc +oEA ayZ -bpF -slG -bqN -nVq -nVq -uDA -bsP -bsP +tpH +jYW +pat +vdF +vdF +fbi +epc +epc axX hYB iAI @@ -46361,19 +46367,19 @@ pog iAI wVB ayZ -ndw -sCt +kar +qSx axX aao aao -wog -wog -wog -jXX -dxV -dxV -dxV -buz +jYR +jYR +jYR +npK +mwS +mwS +mwS +pUF aao aao aao @@ -46390,22 +46396,22 @@ aao aao aao aao -nSP -wVQ -rsv -rsv -sZh -rtV -wCo +bWz +jUF +nNj +nNj +mjQ +pxq +cvS mKM aao aao aao aao aao -lYi -lYi -lYi +rYc +rYc +rYc aao aao aao @@ -46415,12 +46421,12 @@ aao aao aao fpa -pCR -rem -pxv -xZm -nSP -nSP +tdl +xrR +eMV +oCv +bWz +bWz aao aao aab @@ -46442,86 +46448,86 @@ aao aao aao aao -wXg -wXg -wKx -pXu -pXu -tnG -hQO -aqL -lOL -asc +aDR +aDR +sAU +hvf +hvf +jWU +plL +hls +lBb +lNe acp acp agy acp -acL -acT -acD -acC -acC -aem -acC -acC -afP -agA +hVD +uOo +jFj +uOn +uOn +vmC +uOn +uOn +qJx +tMe adk -aib +cDV acp -aiX -ajB -aiX -aiX +vIJ +tby +vIJ +vIJ acr -amd -ana +qYm +iNy acp acp acp sXd -ume -aqv -bOZ -aqv -aqv +vVq +clL +kuR +clL +clL amj -auL -avx -azA -awP +lNY +xEz +bVb +elK alu -ayk -ayL -azx -awl +cBe +dYE +slV +qeH alu -aBM -azv -aqw -aqw -aFE -arR -aHv +jTp +eBa +xSg +xSg +rEx +hWt +qni alu -aHD +fTX aBR aBR -aMc +eXq apt -aNv -aOD -aPJ -aQU -aRS -aSP -aSO -aVi -aVO +hbg +nvq +vJv +nXl +oZx +vJH +ozL +wNH +cqE aoH -aHF -aHF -aHF +vzY +vzY +vzY asK aZx aZx @@ -46538,9 +46544,9 @@ bfH bgb bei asK -bdg -gkD -biw +xLf +cUa +mkv asK eLq eWP @@ -46552,18 +46558,18 @@ axX ayr ayr ayr -xAX -tTI -eYy +dkq +tRc +oEA ayZ -nPz -tTI -tTI -tTI -dsm -mSS -mij -kVT +mCD +tRc +tRc +tRc +buP +eZq +cbc +hJA dhN duA iNR @@ -46578,19 +46584,19 @@ duA ykR iaC ayZ -hhK -sCt +qLQ +qSx axX aao -wog -qgY -wog -hiY -dxV -pYt -dxV -dxV -qgY +jYR +jgQ +jYR +wpF +mwS +mOD +mwS +mwS +jgQ aao aao aao @@ -46607,13 +46613,13 @@ aao aao aao aao -szw -wVQ -lom -vpu -dZO -ndy -wCo +vAC +jUF +fxH +wDZ +cst +coy +cvS aao aao aao @@ -46632,12 +46638,12 @@ aao aao aao vHw -cfr -jCq -wCo -nSP -nSP -nSP +oqK +drD +cvS +bWz +bWz +bWz aao aao aab @@ -46659,43 +46665,43 @@ aao aao aao aao -geC -wXg -wKx -pXu -pXu -hgO -aqL -nnz -aqL -asc +oKa +aDR +sAU +hvf +hvf +eTP +hls +gvC +hls +lNe acp -acy -cGc -cGc -acC -acU -acC -acD -acD +qyl +uXH +uXH +uOn +kRQ +uOn +jFj +jFj acr -aeL -aeL +hXH +hXH acp -agB +inA adk -aic +qia acp -aiX -afS -afS -afS +vIJ +tpK +tpK +tpK acr -ame -aic +lsN +qia aer -afS -cLZ +tpK +nRV acp amj amj @@ -46703,28 +46709,28 @@ amj alu alu alu -auN -aqw -azv -awR +xxj +xSg +eBa +wUS amj -ayl -ayL -azx -aAv +lSZ +dYE +slV +dRN alu -aBN -aCF -ari -aEC -aqw -arR -aHw +nTH +kcC +mEQ +mRH +xSg +hWt +prI alu -aHD +fTX aBR aBR -aMc +eXq aoH aoH aoH @@ -46736,16 +46742,16 @@ aoH aoH aoH aoH -aHF -aHF -aHF +vzY +vzY +vzY asK atw atw atw asK -bdg -bcD +xLf +rUf asK atw atw @@ -46755,9 +46761,9 @@ asK asK asK asK -fwD -fwD -tuu +gzt +gzt +iaH asK asK asK @@ -46766,21 +46772,21 @@ asK asK asK axX -dWl -btr -btr -bnW -slG -ksO -bpk -bpM -slG -slG -slG -slG -slG -dWd -sCt +gCG +qkG +qkG +cei +jYW +gdf +nqs +qiT +jYW +jYW +jYW +jYW +jYW +unm +qSx dhN duA iNR @@ -46795,19 +46801,19 @@ duA iNR iaC ayZ -hhK -sCt +qLQ +qSx axX aao -wog -wog -wog -hiY -dxV -dxV -dxV -dxV -qgY +jYR +jYR +jYR +wpF +mwS +mwS +mwS +mwS +jgQ aao aao aao @@ -46824,13 +46830,13 @@ aao aao aao aao -szw -wVQ -eGb -wUo -xrO -xya -nTF +vAC +jUF +gsr +nEv +apI +nMX +eoH aao aao aao @@ -46849,12 +46855,12 @@ aao aao aao vHw -eql -wCo -wCo -nSP -lsq -nSP +hBU +cvS +cvS +bWz +rVM +bWz aao aao aab @@ -46876,128 +46882,128 @@ aao aao aao aao -wXg -wXg -wKx -dQR -kfx -idn -gdK -aqL -aqL -asc +aDR +aDR +sAU +jxg +hrV +cse +cXp +hls +hls +lNe acq -acz -acC -acC -acM -acM -acM -acD -adM +ifY +uOn +uOn +cbZ +cbZ +cbZ +jFj +sOk acr acr acr acp -agB +inA adk -aic +qia acp -aiZ -afS -afS -afS -alp -ame -ahj -anx -afS -akM +hmj +tpK +tpK +tpK +mkh +lsN +vjW +ruz +tpK +jzj acp -agY -arl -arl -arl -arl +txs +hpS +hpS +hpS +hpS amj -auL -aqw -azv -awO +lNY +xSg +eBa +fTL alu -ayk -ayM -azy -awk +cBe +mRJ +wxh +faD alu -aBO -awN -aDJ -aDJ -aDJ -awN -aBP +nuq +lOx +dZR +dZR +dZR +lOx +irx alu -aHD +fTX aBR aBR -aMd -aMg -aNw -aNw -aMg -aMg -aMg -aMg -aMg -aMg -aNw -aNw -bhU -bhU -aHF -aMg -aNw -aNw -aNw -aMg -aMg -aNw -aNw -aNw -aMg -aMg -aMg -aMg -aMg -aMg -bgF -bgF -bgF -bhR -biR -aMg -bjx -bjx -bjx -bjx -bjw +omM +cfE +xZi +xZi +cfE +cfE +cfE +cfE +cfE +cfE +xZi +xZi +cYY +cYY +vzY +cfE +xZi +xZi +xZi +cfE +cfE +xZi +xZi +xZi +cfE +cfE +cfE +cfE +cfE +cfE +pca +pca +pca +riU +eLb +cfE +dOH +dOH +dOH +dOH +gQO axX -lmi -nVq -tTI -tTI -tTI -cKu +sjL +vdF +tRc +tRc +tRc +cEF ayZ -bpH -kmx -gwg -gwg -brO -gwg -cla -gdx +tjv +vKQ +iiM +iiM +jbx +iiM +tkE +wxC dhN nug yjV @@ -47012,21 +47018,21 @@ duA ykR iaC ayZ -hhK -sCt +qLQ +qSx axX -uVn -wog -wog -wog -hiY -dxV -dxV -dxV -buz -wog -wog -wog +jZE +jYR +jYR +jYR +wpF +mwS +mwS +mwS +pUF +jYR +jYR +jYR aao aao aao @@ -47042,12 +47048,12 @@ aao aao aao muP -hnh -xkq -nXC -nny -gpB -tEc +bZB +lYu +rkH +frT +rnG +cin muP aao aao @@ -47065,13 +47071,13 @@ aao aao aao aao -rxh -xAv -wCo -nSP -wCo -nSP -nSP +hMV +xmG +cvS +bWz +cvS +bWz +bWz aao aao aab @@ -47094,68 +47100,68 @@ aao aao aao aao -nlB -dQR -dQR -dQR -idn -nnz -aqL -wWE -asc +ltb +jxg +jxg +jxg +cse +gvC +hls +fbs +lNe acr -acz -acC -acC -acM -acM -acM -acD -acD +ifY +uOn +uOn +cbZ +cbZ +cbZ +jFj +jFj acr -aeK -afj +faI +oHX acp -agB +inA ahk -aic +qia acp -aja -ajC -ake -rat +sVO +iFP +eTF +oBX acr -ame -ahj +lsN +vjW aer -afS -aoT +tpK +gkH acp -tLO -arm -aip -asE -atr -atV -atr -atr -arU -awO +gjk +oHB +tBL +xdw +vSC +rOf +vSC +vSC +ioH +fTL amj -aqw -aqw -azv -awl +xSg +xSg +eBa +qeH alu -ans -awN -asq -asq -aFF -aGA -aHy +vxD +lOx +iEi +iEi +ssV +weA +yhj alu -aHD +fTX aKk aBR aBR @@ -47170,50 +47176,50 @@ aBR aBR aBR aBR -aMc -aHF -aHD -aYK -aIp +eXq +vzY +fTX +oRz +opE aBR aBR -aVo -aIn -aIn -aIn -aIn -aIp +gqN +mRj +mRj +mRj +mRj +opE aBR aBR aBR aBR aBR aBR -aVo -aIn -biy -biS -aIn -bjy -bjy -bjy -bjB -blq +gqN +mRj +rYY +wgX +mRj +fFQ +fFQ +fFQ +jRs +vdV axX -bmp -nVq -tTI -bnX -tTI -aLP +eWX +vdF +tRc +skB +tRc +qOs ayZ -bpI -cKu +kvj +cEF axX axX axX axX -uaS +kBG axX axX axX @@ -47229,21 +47235,21 @@ duA iNR iaC ayZ -hhK -sCt +qLQ +qSx axX -dQw -wog -qgY -wog -wog -ibZ -ibZ -ibZ -wog -wog -wog -wog +nPD +jYR +jgQ +jYR +jYR +nXV +nXV +nXV +jYR +jYR +jYR +jYR aao aao aao @@ -47259,13 +47265,13 @@ aao aao aao aao -xkq -xkq -nXC -guM -nny -guM -ybk +lYu +lYu +rkH +rUa +frT +rUa +hJP aao aao aao @@ -47281,14 +47287,14 @@ aao aao aao aao -wVQ -ykW -rOK -wCo -wCo -nSP -nSP -nSP +jUF +nFo +tVS +cvS +cvS +bWz +bWz +bWz aao aao aab @@ -47311,68 +47317,68 @@ aao aao aao aao -dQR -dQR -dQR -dQR -hFV -aqL -aqL -lbh -asc +jxg +jxg +jxg +jxg +acc +hls +hls +rPF +lNe acs -acz -acC -acD -vPZ -acC -adn -adC -adN -aen -adN -adN -afQ -agC +ifY +uOn +jFj +nJG +uOn +cqo +vjH +oEo +xtG +oEo +oEo +lUA +hQN ahl -aid +diS acp acr acr acr acr acr -pXm -ahj +sdR +vjW acp acp acp acp -efK -arl -aiY -asF -arl +dIy +hpS +wtv +kbZ +hpS amj -auL -aqw -awg -awS +lNY +xSg +kuN +obC alu alu -ayN -azz +nru +mNL alu alu amj -aCG +ugB alu alu alu alu alu alu -aHD +fTX aBR aLc aBR @@ -47387,81 +47393,81 @@ aBR aBR aFL aBR -aMc -aHF -aHD +eXq +vzY +fTX aBR aBR aBR -aLd -aIn -aIn -aIn -bdk -aWJ +bHi +mRj +mRj +mRj +mqs +uxB aBR aBR aBR aBR aBR aBR -aLd -aIn -aIn -biz -aTh -aIn -bjy -bjy -bjy -bkp -blq +bHi +mRj +mRj +isi +omh +mRj +fFQ +fFQ +fFQ +tQL +vdV axX -bmq -nVq -bnt -tTI -nVq -boR +wNn +vdF +hpR +tRc +vdF +loH ayr -nPz -sCt +mCD +qSx axX -brn -jDT -vTt -cla -btr -jTk +gez +duk +jAb +tkE +qkG +tfR dhN duA ykR iaC pWs -lCt -lCt -lCt +oxO +oxO +oxO jxA duA ykR iaC -ueL -nzN -sCt +eBb +eqq +qSx tcP -dQw -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +nPD +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR aao aao aao @@ -47476,13 +47482,13 @@ aao aao aao aao -xkq -xkq -nXC -tnd -tnd -guM -ybk +lYu +lYu +rkH +bQC +bQC +rUa +hJP aao aao aao @@ -47498,13 +47504,13 @@ aao aao aao aao -pXB -yhN -sZh -wCo -tqi -eql -nSP +sMn +vpp +mjQ +cvS +gRM +hBU +bWz aao aao aao @@ -47528,42 +47534,42 @@ aao aao aao aao -dQR -dQR -dQR -dQR -tnG -nlB -nlB -dQR -asc +jxg +jxg +jxg +jxg +jWU +ltb +ltb +jxg +lNe acq -acz -acD -acF -acO -acC -ado -acC -acC +ifY +jFj +jXz +oQh +uOn +oNL +uOn +uOn acr -aeL -aeL +hXH +hXH acp -agz +rZB ahm -ahj +vjW acp -jWR -cGi -kCR -aWj -biA -ame -ahj +qZp +sbZ +eSf +scH +tpP +lsN +vjW aer -afS -bNE +tpK +uOI acp anZ anZ @@ -47571,114 +47577,114 @@ alu alu alu alu -auL -aqw -azv -awT -axz -aym -aqw -azv -avw -ayH -avw -avw -aDK -aED -aFG -aFG -aHz +lNY +xSg +eBa +cxK +qMQ +fsR +xSg +eBa +usd +xFz +usd +usd +wJe +qyK +imT +imT +fSB alu -aHF -aFM -aFM -aFM -aFM -aFM -aOE -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aHF -aHF -aHF -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aHC +vzY +unv +unv +unv +unv +unv +fcX +unv +unv +unv +unv +unv +unv +unv +unv +vzY +vzY +vzY +unv +unv +unv +unv +unv +unv +unv +unv +unv +unv +eeZ aBR aBR aBR aBR -aYK -aIn -aIn -biz -biT -aIn -bjz -bjz -bkp +oRz +mRj +mRj +isi +dgm +mRj +fcN +fcN +tQL bjA -blq +vdV axX -trr -tTI -tTI -nVq -nVq -wyF +uWQ +tRc +tRc +vdF +vdF +bXr ayZ -bpH -cKu +tjv +cEF axX -bro -brP -slG -bqN -btt -uGs +eUp +eGo +jYW +pat +xnn +kAT gmm duA iNR iaC -gUD -btr -jxS -btr -oWp +dwd +qkG +luY +qkG +kjb duA iNR iaC -ueL -nzN -cKu +eBb +eqq +cEF tcP -rvS -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +uAT +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR aao aao aao @@ -47693,14 +47699,14 @@ aao aao aao aao -xkq -xkq -nXC -qFg -irM -guM -eGa -xkq +lYu +lYu +rkH +dSr +fek +rUa +xsn +lYu aao aao aao @@ -47713,15 +47719,15 @@ aao aao aao aao -szw -yhc -sxs -vPP -sZh -wCo -wVQ -rxh -nSP +vAC +rTy +pkC +eqQ +mjQ +cvS +jUF +hMV +bWz aao aao aao @@ -47747,70 +47753,70 @@ aao aao aao aao -dQR -dQR -tnG -dQR -dQR -dQR -asc +jxg +jxg +jWU +jxg +jxg +jxg +lNe acq -acz -acD -acD -acM -acM -acM -acC -acD +ifY +jFj +jFj +cbZ +cbZ +cbZ +uOn +jFj acr acr acr acp -agz +rZB ahm -aie +qYX acp -eFr -aiX -qQl -iis -afS -ame -ahj -anx -afS -akM +nWi +vIJ +eep +eDG +tpK +lsN +vjW +ruz +tpK +jzj acp -eKm -rbV -rbV -rbV -vxv +ppu +lJM +lJM +lJM +mML alu -auN -aqw -awh -awU -aqw -aqw -ayO -azA -arR -aqw -aqw -avx -aDL -aqw -aqw -aqw -awO +xxj +xSg +xzY +rFr +xSg +xSg +nwP +bVb +hWt +xSg +xSg +xEz +tPT +xSg +xSg +xSg +fTL alu -aHF -aHF -aHF -aHF -aHF +vzY +vzY +vzY +vzY +vzY apC apC apJ @@ -47822,7 +47828,7 @@ apC apC apC apJ -lrs +gIr apJ apC apC @@ -47833,70 +47839,70 @@ apC apC apC wRl -aHF -aHD +vzY +fTX aBR aBR aBR aBR aFL -aVo -aIn -aMc -biU -aWJ +gqN +mRj +eXq +nZO +uxB bjA bjA bjA bjA -blq +vdV axX -bms -gwg -bnu -bnY -hcH -boS +cVU +iiM +qBF +uWe +sXl +mwe ayZ -btK -tTI -bqP -fXm -wMM -gVl -tTI -nVq -qUF +ird +tRc +gAY +lbU +sVI +swv +tRc +vdF +uxe dhN duA ykR iaC -dBU -guu +gKm +tfx axX -cNb -nuz +waQ +gcl duA ykR iaC ayZ -hhK -cKu +qLQ +cEF axX -rvS -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +uAT +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR aao aao aao @@ -47911,13 +47917,13 @@ aao aao aao aao -xkq -lvh -vQZ -rtR -guM -vBy -xkq +lYu +uNV +bPz +tZj +rUa +ktL +lYu aao aao aao @@ -47930,14 +47936,14 @@ aao aao aao aao -szw -yhc -wVQ -rxh -sZh -wCo -wVQ -lZV +vAC +rTy +jUF +hMV +mjQ +cvS +jUF +efo aao aao aao @@ -47967,106 +47973,106 @@ aao aao aao aao -dQR -dQR -kfx -asc +jxg +jxg +hrV +lNe acp -acz -acC -acC -acM -acV -acV -acC -acC +ifY +uOn +uOn +cbZ +xey +xey +uOn +uOn acr -aeK -afj +faI +oHX acp -agz +rZB ahn -ahj +vjW acp -eFr -aiX -aiX -iis -afS -amg -ahj +nWi +vIJ +vIJ +eDG +tpK +fYV +vjW aer -afS -aoT +tpK +gkH acp -aqM -gdK -gdK -aqL -yej -vGN -atr -atr -arU -arR -aqw -aqw -arR -azA -arR -aBf -avy -axB -aDM -aEE -aEE -aGB -aHA +tvZ +cXp +cXp +hls +ppt +hXF +vSC +vSC +ioH +hWt +xSg +xSg +hWt +bVb +hWt +tqU +rZf +oMS +ltP +oMw +oMw +ifg +lhK alu -aHF -aHF -aHF -aHF +vzY +vzY +vzY +vzY apC apC -aOF -aPK -aQV -aRT +hTa +sIr +upJ +jgl aof -aTV -mIc -tap +aLL +gul +eio aof -aNK -aXL -bdo +lAz +vwr +smM aof -aZz -aOO -aOO -aOO -aOO -cXG -aOO +rgz +ltn +ltn +ltn +ltn +kFg +ltn apC apC -aHD +fTX aBR aBR aBR aBR aBR -aVo -aIn -xpL -biU -aIn -bjB +gqN +mRj +fiZ +nZO +mRj +jRs bjA bjA -bkC -blq +xxD +vdV axX axX axX @@ -48075,47 +48081,47 @@ ayr ayr ayr ayr -bpK -bqk +ciL +tuQ axX -wiK -fgE -sap -tTI -btt -nmU +bcp +ckn +kRw +tRc +xnn +uVg dhN duA iNR iaC -xXq -btu -uJj -gwg -voG +wWj +syq +nUS +iiM +cDn duA iNR iaC ayZ -hhK -sCt +qLQ +qSx axX -rvS -wog -wog -trk -trk -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +uAT +jYR +jYR +pUq +pUq +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR aao aao aao @@ -48129,11 +48135,11 @@ aao aao aao aao -xkq -xkq -rcN -rcN -tcq +lYu +lYu +kJO +kJO +qrs aao aao aao @@ -48147,14 +48153,14 @@ aao aao aao aao -szw -nSP -wVQ -rxh -sZh -wCo -wVQ -lZV +vAC +bWz +jUF +hMV +mjQ +cvS +jUF +efo aao aao aao @@ -48184,54 +48190,54 @@ aao aao aao aao -dQR -elh -kfx -asc +jxg +jVf +hrV +lNe acq -acz -acC -acC -acC -vPZ -acD -acD -acD -aem -acC -acC -afP -agz +ifY +uOn +uOn +uOn +nJG +jFj +jFj +jFj +vmC +uOn +uOn +qJx +rZB ahn -aic +qia acp -jTa -raU -raU -woK -afS -amg -aic +faM +nLP +nLP +lsn +tpK +fYV +qia acp acp acp acp -aqM -gdK -aqL -aqL -asc -ayN -auL -aqw -azv -aqw -arR -arR -ayP -azv -aAw -awP +tvZ +cXp +hls +hls +lNe +nru +lNY +xSg +eBa +xSg +hWt +hWt +sWe +eBa +nMk +elK alu alu alu @@ -48241,23 +48247,23 @@ alu alu alu alu -aKm -aHF -aHF +mLv +vzY +vzY uRE -aGD -aMf -aPL -aMf -aXk +qnx +ryH +oam +ryH +iMo aof -aTV -aTV -din +aLL +aLL +tDM aof -aWH -aOM -jna +ctY +hkb +cbj asT aZC aZC @@ -48265,74 +48271,74 @@ baG aZC baG aZC -aOO -bdO +ltn +tGK apC -aHD +fTX aBR aBR aBR aBR aBR lBc -eRI -aMc +jRT +eXq biV -sIY +muC bjC -bjB +jRs bkq -bjH -blq +gWG +vdV axX -bmt -btr -fOK -pKP -egL +jZJ +qkG +xPS +bwq +mQd ayZ -bpl -bpL -cKu +kZB +tjS +cEF axX -jAJ -brR -nnU -nVq -btu -gHV +pww +uZX +hyP +vdF +syq +hqL dhN duA ykR iaC pWs -lCt -lCt -lCt +oxO +oxO +oxO jxA duA ykR iaC ayZ -nzN -sCt +eqq +qSx axX -rvS -wog -jXX -pYt -dxV -qgY -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +uAT +jYR +npK +mOD +mwS +jgQ +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR aao aao aao @@ -48346,11 +48352,11 @@ aao aao aao aao -sqj -kNc -jcR -jrD -ydd +tjV +dhq +pji +pqe +wDk aao aao aao @@ -48366,10 +48372,10 @@ aao aao aao uDn -vTh -rxh -sZh -fRW +dPp +hMV +mjQ +nCe vHw aao aao @@ -48401,80 +48407,80 @@ aao aao aao aao -tjX -dQR -kfx -asc +oIe +jxg +hrV +lNe acp -acy -cGc -cGc -acC -acC -adp -adD -adD +qyl +uXH +uXH +uOn +uOn +vcJ +wWb +wWb acr -aeL -aeL +hXH +hXH acp -agz +rZB ahm -aib +cDV acp -afS -afS -afS -afS -afS -amg -aic +tpK +tpK +tpK +tpK +tpK +fYV +qia aer -afS -eLp +tpK +sCE acp -aqM -aqL -aqL -aqL -asc +tvZ +hls +hls +hls +lNe alD -auL -arR -awi -awV -awQ -awQ -awQ -arU -aqw -aBg +lNY +hWt +iwS +wFa +sCw +sCw +sCw +ioH +xSg +xGv alu -aaM -aqw -arl -aqw -aGC -aHB -aIj +ndS +xSg +hpS +xSg +qah +jXm +jAr alu aof -aLe +ruV aof apC -aNy -aOG -aMf -aQW -aRU +lof +dHy +ryH +uWj +yiP aof -aTU -wGD -aTV +ufs +gAt +aLL aof -aYU -aOM -aUb +cjD +hkb +tNE asT aZB aZT @@ -48482,40 +48488,40 @@ aIY bbj caN bcE -aOO -aOO +ltn +ltn apC -aHD +fTX aBR aBR aBR aBR aBR -aVo -aIn -aMc -aHD -aIn -bjD -bka +gqN +mRj +eXq +fTX +mRj +knd +jrg bjA -bjH -blq +gWG +vdV axX -bmu -nVq -bnw -bnZ -boq +dBX +vdF +bTR +lkB +pFz azE -hhK -cla -bql +qLQ +tkE +rDX axX axX axX axX -tzJ +esX axX axX axX @@ -48531,25 +48537,25 @@ duA iNR iaC ayZ -nzN -sCt +eqq +qSx axX aao aao aao -dxV +mwS aao -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR aao aao aao @@ -48563,11 +48569,11 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -48582,12 +48588,12 @@ aao aao aao aao -guM -fGN -jrD -nXC -ncv -guM +rUa +pcR +pqe +rkH +wXV +rUa aao aao aao @@ -48617,81 +48623,81 @@ aao aao aao aao -gdK -lOL -dQR +cXp +lBb +jxg iXx -asc +lNe acp acp agy acp acp -acX +wJO acp -adE -adO +lqq +tCu acr acr acr acp -agz +rZB ahm -ahj -aiC -ajb -ajE -ajE -ajE -ajb +vjW +ydJ +sRr +hBS +hBS +hBS +sRr ahm -aic -anx -afS -akM +qia +ruz +tpK +jzj acp -aqM -aqL -aqL -aqL -asc +tvZ +hls +hls +hls +lNe alD -uDt -arR -arR -aqw -axA -arR -arR -azA -aAx -awO +ilf +hWt +hWt +xSg +kVc +hWt +hWt +bVb +wYq +fTL amj -aCI -aDN -arS -aFH -awV -aFH -awQ -aJl -aKo -aKo -aSX -aMF -aNz -aKo -aKo -aQX -aRV +uHW +lkI +vMC +bWe +wFa +bWe +sCw +jfX +jnj +jnj +rKB +kIJ +ctP +jnj +jnj +kow +rYV aof -aTV -gWU -aVS +aLL +vlx +oLh aof -aXg -aOM -aUb +uji +hkb +tNE aof aZC aZU @@ -48699,41 +48705,41 @@ aZC aZU aZC bcF -aOO -aOO +ltn +ltn apD -aHD +fTX aBR aBR aBR aBR bhi bhi -bhI -wGV -usg -aIn -bjD -jdQ +isn +dGe +vrf +mRj +knd +mZj bjA -bjH -blr +gWG +gvM axX -aLJ -bmW -bnx -boa -bor +seg +dID +gYh +vXZ +izL ayZ -hhK -cla -bZJ -btr -btr -jMn -btr -tTI -kVT +qLQ +tkE +jQW +qkG +qkG +vuZ +qkG +tRc +hJA dhN hYB ojD @@ -48748,8 +48754,8 @@ duA ykR iaC iig -nzN -sCt +eqq +qSx axX aao aao @@ -48757,17 +48763,17 @@ aao aao aao aao -wog -wog -wog +jYR +jYR +jYR aao aao -wog -wog -wog -wog -wog -wog +jYR +jYR +jYR +jYR +jYR +jYR aao aao aao @@ -48780,12 +48786,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -48799,12 +48805,12 @@ aao aao aao aao -nny -guM -ybk -nXC -guM -gpB +frT +rUa +hJP +rkH +rUa +rnG aao aao aao @@ -48834,123 +48840,123 @@ aao aao aao aao -aqL -aqL -lbh -dQR -ags -alF -alF -alF +hls +hls +rPF +jxg +moJ +deY +deY +deY aao acp acp acp -adF -adP -aeo -aeM -afk +kOr +sjH +sAj +mxr +hMA acp -agz +rZB aho -aif -aiD -ajc -aif -aif -aif +wzl +nCi +mpG +wzl +wzl +wzl alr ami -anb +qvn aer -afS -aoT +tpK +gkH acp -aqM -aqL -aqL -aqL -asc +tvZ +hls +hls +hls +lNe alD -rfX -avy -aqw -avy -axB -ayn -ayQ -azD -aqw -awO +cNJ +rZf +xSg +rZf +oMS +jXU +eTU +wmu +xSg +fTL amj -aCJ -arR -aEG -arR -arl -arR -aDN -ayN -aKp -aQW -aTb -kmm -aNA -aMf -aMf -aQY -aMf -aSQ -tJn -pyU -tJn -cJa -iZc -aOM -aOM -aYN +mQt +hWt +dEc +hWt +hpS +hWt +lkI +nru +pJW +uWj +vlE +uHb +pmE +ryH +ryH +gae +ryH +hYo +hrP +dYJ +hrP +jVB +cbX +hkb +hkb +vOj aZC aZC aZC aZC aZC bcG -aOO -aOO +ltn +ltn apD -aHD +fTX aBR aBR -aLd +uwX bhi bhi bhi -raQ -aMc -aHD -aIn -bjD -bka +tfi +eXq +fTX +mRj +knd +jrg bjA -bjH -blr +gWG +gvM axX -bmw -bmX -bAo -tTI -bos -boU -slG -cZB -cOa -lEi -lEi -tTI -nVq -tTI -sCt +oAd +lqh +vku +tRc +eLx +svF +jYW +vaP +eve +cln +cln +tRc +vdF +tRc +qSx dhN duA iNR @@ -48965,8 +48971,8 @@ duA iNR iaC ayZ -hhK -sCt +qLQ +qSx axX aao aao @@ -48974,18 +48980,18 @@ aao aao aao aao -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR aao aao aao @@ -48998,12 +49004,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -49016,13 +49022,13 @@ aao aao aao aao -guM -guM -ybk -nXC -guM -nny -guM +rUa +rUa +hJP +rkH +rUa +frT +rUa aao aao aao @@ -49051,13 +49057,13 @@ aao aao aao aao -aqL -aqL -lbh -dQR -kfx -aqL -arp +hls +hls +rPF +jxg +hrV +hls +vgV acP aao aao @@ -49074,100 +49080,100 @@ acp acp acp aer -ajF +kPS aer acp -als +eYq ajL -anc +wCL acp acp acp acp -aqM -aqL -aqL -aqL -hGv +tvZ +hls +hls +hls +oRi alu alu pzC -fni +hPk pzC alu alu -ayR -azv -aqw -awO +ceV +eBa +xSg +fTL amj -aCK -aDO -aEH -aFI -vBT +fCk +vbn +quN +tVm +oOp amj amj alu aof -aLe +ruV aof apC -aNB -aOG -aPM -aQZ -aRX +wgq +dHy +iBR +eLX +cWE aof -mrH -aVj -mrH +vQW +uvG +vQW aof -uKH -aOM -aUb +qZc +hkb +tNE aof -aOO -aOO -aOO -aOO -aOO -bcH -aOO -aOO +ltn +ltn +ltn +ltn +ltn +vUI +ltn +ltn apC -aHD +fTX aBR aBR -tHl +qnZ bhi dbi -oWk -oWk -fTg -aHD -aIn -bjD -bka +vlk +vlk +leT +fTX +mRj +knd +jrg bjA -bjH -blr +gWG +gvM axX -bmx -rdr -bnz -bob -gdx +tfu +rzW +ctF +uGc +wxC ayZ -bcg -cla -bpm -izb -rYr -tTI -iQC -nVq -vWm +hNX +tkE +mQm +tkJ +fEq +tRc +oVR +vdF +ctA dhN duA iNR @@ -49182,8 +49188,8 @@ duA ykR iaC ayZ -hhK -sCt +qLQ +qSx axX aao aao @@ -49192,17 +49198,17 @@ aao aao aao aao -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR aao aao aao @@ -49213,15 +49219,15 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -49234,12 +49240,12 @@ aao aao aao aao -guM -ybk -nXC -guM -guM -guM +rUa +hJP +rkH +rUa +rUa +rUa aao aao aao @@ -49267,108 +49273,108 @@ aao aao aao aao -aqL -aqL -aqL -lbh -dQR -bGC -aqL -arp +hls +hls +hls +rPF +jxg +nJx +hls +vgV acP acP aao aao aao aao -alF -buB +deY +mJz acp -afl -afR -afR -afR +wGw +jDa +jDa +jDa acp -aiE -afS -afS -aki +ibC +tpK +tpK +oxQ aer -agB +inA ahn -aic +qia aer -afS -bNE +tpK +uOI acp -aqM -aqL -aqL -aqL -cBq +tvZ +hls +hls +hls +kNs alu -pIl -avz -aqw -auP -qoQ +mmm +jMF +xSg +rtn +oRD alu -ayS -azv -aqw -aqw -apE -arl -aqw -aEI -aFJ -aGE -aqw -aIk +ifx +eBa +xSg +xSg +eXl +hpS +xSg +edk +cgx +oyF +xSg +czN alu -aKq -aHF -aHF +sLg +vzY +vzY apD -aNC -aMf -aPN -aRa +osj +ryH +cgC +mWZ aof aof aof aof aof aof -aNL -aOM -aUb +pLT +hkb +tNE aof aof asT asT asT aof -sRy +oFM aof aof apC -wxo +crb aBR aBR bhi bhi dbi -qby -stZ -cHz -aHD -eRI +qbZ +wnC +nBo +fTX +jRT ofX -bjy -bkr -bjy -bls +fFQ +hBZ +fFQ +tFj axX ayr ayZ @@ -49376,15 +49382,15 @@ ayZ ayr ayr ayr -ktY -cla -vCf -mlV -lqo -nVq -eGM -btu -dyH +xJK +tkE +vWo +iQa +oZw +vdF +eho +syq +jOA axX nug rUN @@ -49399,8 +49405,8 @@ nug rUN oIK ayZ -slC -sCt +cJi +qSx axX aao aao @@ -49410,53 +49416,53 @@ aao aao aao aao -wog -wog -wog -wog -wog -wog -wog -wog -wog -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -tRI -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +obt +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao aao aao -jrD -jrD -jrD -moE -guM -guM +pqe +pqe +pqe +sgJ +rUa +rUa aao aao aao @@ -49483,15 +49489,15 @@ aao aao aao aao -aqL -nnz -aqL -rVE -dQR -dXK -hQO -aqL -arp +hls +gvC +hls +oxH +jxg +gyV +plL +hls +vgV ldD acP acP @@ -49499,107 +49505,107 @@ acP acP acP acP -asc +lNe acp -afm -afS -afS -afS +psT +tpK +tpK +tpK acp -aiF -afS -afS -aki +vYO +tpK +tpK +oxQ aer -alt +lTh ahn -ahj -anx -afS -akM +vjW +ruz +tpK +jzj acp -aqM -aqL -aqL -aqL -asc +tvZ +hls +hls +hls +lNe alu -oji -avA -aqw -awW -tbS +mYD +gex +xSg +luH +nNo alu -ayT -awi -aAy -atr -apF -atr -aDP -arU +jTj +iwS +duV +vSC +iJC +vSC +vsG +ioH alu -aqw -arl -aqw +xSg +hpS +xSg alu -aHF -aHF -aHF +vzY +vzY +vzY apD -aND -aXk -aMf -aZS +unu +iMo +ryH +bHz aof -aSR -aTY -aTY -aTY -aWC -aXj -aOI -aYh -oDW -oFY -bcI -bcJ -aRd -aVl -qoN -bdo +uaK +jbN +jbN +jbN +rSg +sEG +fYv +kNB +uqU +gCj +dUi +lYj +xrl +gfO +sLF +smM apD -bhU -wxo +cYY +crb aBR aBR bhi bhi dbi -qby -qby -kWW -aHF -mSn -bjE -bkb -bkb -bks -bjw -bsX -bmy -bmZ -bmZ -mPK -lck -boV -slC -bpN -bqo -bqo -sBm -tTI -wFL +qbZ +qbZ +tsC +vzY +sAH +shr +mYi +mYi +xvW +gQO +oZi +rHa +suU +suU +wTt +mAv +gSG +cJi +krl +lqE +lqE +urj +tRc +mcO axX axX axX @@ -49607,16 +49613,16 @@ ayZ ayZ ayZ ayZ -fEv +doM ayZ -sNP -ueL -gPh -sNP +hkO +eBb +mck +hkO ayZ ayZ axX -fEv +doM ayZ axX axX @@ -49627,53 +49633,53 @@ aao aao aao aao -wog -wog -wog -wog -wog -wog -wog -wog -wog -jrD -jrD -jrD -jrD -jrD -jrD -phi -jrD -jrD -iQG -phi -jrD -jrD -jrD -jrD -iml -oxp -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +jYR +pqe +pqe +pqe +pqe +pqe +pqe +uzF +pqe +pqe +bur +uzF +pqe +pqe +pqe +pqe +hHS +nfL +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao -jrD -jrD -jrD -jrD -jrD -rcN -rcN +pqe +pqe +pqe +pqe +pqe +kJO +kJO aao aao aao @@ -49700,142 +49706,142 @@ aao aao aao aao -aqL -aqL -wWE -dQR -eWv -fPe -fPe -wss -akP -fPe -fPe -aus +hls +hls +fbs +jxg +bFE +kyZ +kyZ +cQF +nDv +kyZ +kyZ +vXG acP acP acP acP -asc +lNe acp -xyu -afS -agD -afS +qMw +tpK +qVq +tpK acp -aiG -afS -afT -afS -akQ -agB +aWr +tpK +vPu +tpK +nWo +inA ahm -ahj +vjW aer -afS -aoT +tpK +gkH acp -aqM -aqL -aqL -aqL -asc +tvZ +hls +hls +hls +lNe alu -oji -avA -aqw -awW -tbS +mYD +gex +xSg +luH +nNo alu -ayU -aqw -aAz -aBh +fmT +xSg +eBN +phb alu -arl -aqw -aEJ -aFK -arl -aqw -aIl +hpS +xSg +fMi +cgq +hpS +xSg +ndb alu -aHF -aHF -aHF +vzY +vzY +vzY apD -aNE -aOH -aPO -aQZ +cRI +dLz +gCz +eLX aof -aSS -aTZ -aVk -bMa +wqv +sKa +hUN +ddu aof -mEH -aOM -aYi -xBn -nZD -aPS -aOM -aOM -aOM -aPS -bdl +rxV +hkb +bGM +rAL +dtE +eSi +hkb +hkb +hkb +eSi +eIc apD -bhU -aHD +cYY +fTX aBR aBR -eTj +mue bhi dbi -pTo -uyd -gMj -aHF -aMg -bjF -bkc -bkc -bkc -blt -xDW -bmz -bna -bmz -boc -bmz -xDW -eSm -jXf -eSm -ebr -bpO -bpf -tTI -nIi -gZc -nIi -btr -lck -lck -lck -tTI -lck -lck -ouh -tTI -btr -btr -slC -fUp -nVq -sCt -wpn +oQU +ykp +wtc +vzY +cfE +eMR +vuU +vuU +vuU +lOE +pth +mJb +gNR +mJb +cpS +mJb +pth +eXp +iuV +eXp +xtA +iKp +dvi +tRc +dkt +sXq +dkt +qkG +mAv +mAv +mAv +tRc +mAv +mAv +dIk +tRc +qkG +qkG +cJi +pvh +vdF +qSx +lYw axX aao aao @@ -49845,51 +49851,51 @@ aao aao aao aao -wog -wog -wog -wog -wog -wog -wog -jrD -jrD -jrD -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -phi -phi -phi -phi -jrD -phi -yfz -phi -phi -sus -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +jYR +jYR +jYR +jYR +jYR +jYR +jYR +pqe +pqe +pqe +pqe +pji +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +uzF +uzF +uzF +uzF +pqe +uzF +pGG +uzF +uzF +wsj +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -49917,55 +49923,55 @@ aao aao aao aao -wWE -nlB -dQR -dQR -nZB +fbs +ltb +jxg +jxg +xgT pRP -iRf -akh -mhV -oMf +tOH +pPn +qHN +xyC pRP -aWy +sms acP acP acP -jeO -asc +rBa +lNe acp -afn -afT -agE -afS +oUg +vPu +owv +tpK acp -aiH -afT -ajG -akk +spQ +vPu +wLJ +wuE aer -agB +inA ahm -ahj +vjW acp acp acp acp -aqM -aqL -aqL -aqL -asc +tvZ +hls +hls +hls +lNe alu -gts -avA -aqw -awW -tbS +cVx +gex +xSg +luH +nNo alu alu -azH +qcT alu alu alu @@ -49977,49 +49983,49 @@ alu alu alu alu -aHF -aHF -aHF +vzY +vzY +vzY apC -aOM -aOM -aPP -aRb +hkb +hkb +rac +cpt aof aof aof aof aof aof -mEH -aOM -vpx +rxV +hkb +dnh aFd -khP -aZW -aOK -bbk -aOK -aPS -bdp +fWp +ruE +hos +xYg +hos +eSi +cnO apD -aHF -aHD +vzY +fTX aBR aBR aBR bhi bhi auW -unC -aMc -aHD -eRI +jJU +eXq +fTX +jRT ofX -bjy -bjy -bjy -blr +fFQ +fFQ +fFQ +gvM axX axX axX @@ -50030,28 +50036,28 @@ axX axX axX axX -wYE -lTM -bqM -pMi +vYj +mYM +qbf +rpH ayZ -bsP +epc ayZ -btu -iFa -snv -btu -gFR -tvH -gML -tvH -gML -gFR -btu -btu +syq +tHI +qng +syq +hrS +szD +tiH +szD +tiH +hrS +syq +syq ayZ -btu -gdx +syq +wxC axX axX aao @@ -50064,15 +50070,15 @@ aao aao aao aao -wog -wog -wog -jrD -jrD -jrD -jrD -phi -jrD +jYR +jYR +jYR +pqe +pqe +pqe +pqe +uzF +pqe rnc rnc rnc @@ -50082,31 +50088,31 @@ rnc rnc rnc rnc -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -phi -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +uzF +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -50134,123 +50140,123 @@ aao aao aao aao -tjX -dQR -dQR -dXK -aaB +oIe +jxg +jxg +gyV +bKL pRP -sWh -hFv -hFv -kAs -oMf -aWy +iUa +riN +riN +ezw +xyC +sms acP acP acP -bJQ +vIf aao acp -afo -afT -agF -ahp +mcl +vPu +uTe +koI acp -aiI -afT -afT -akk +eyu +vPu +vPu +wuE aer -agz +rZB ajL -ahj -any -aoh -aoU +vjW +dms +vnf +faS acq -aqM -aqL -aqL -aqL -asc +tvZ +hls +hls +hls +lNe alu -oji -avA -vfo -awW -tbS +mYD +gex +iVO +luH +nNo alu kRy ayV ayV alu -aHF -aMg -aMg -aMg -aBS -aMg -aMg -aMg -aMg -aMg -aMg -aHF +vzY +cfE +cfE +cfE +cWL +cfE +cfE +cfE +cfE +cfE +cfE +vzY apC -aOM -aOM -aPP -aQZ +hkb +hkb +rac +eLX aof -aST -aRd -aVl -aRd -bcJ -aSW -aOM -aYk -dBm -pxH -aZX +fmr +xrl +gfO +xrl +lYj +hxT +hkb +une +bCL +scU +lnT aof aof aof -bcK +ekB aof aof apC -aHD +fTX aBR aBR aBR -aVo -aIn -xPg -bhL -aMc -aHD -aIn -giY -bjy -bjy -bjy -blu -bjx -bmA -bjx -bjx -bjx -bjx -bjx -bjx -bjw +gqN +mRj +cGC +xYx +eXq +fTX +mRj +cor +fFQ +fFQ +fFQ +gdB +dOH +oLJ +dOH +dOH +dOH +dOH +dOH +dOH +gQO axX axX -bru -bqM -sDZ +kAU +qbf +tDU axX axX axX @@ -50282,24 +50288,24 @@ aao aao aao aao -jrD -jrD -jrD -bzo -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +wnz +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao aao aao aao -cOl +sFR rnc rnc rnc @@ -50309,21 +50315,21 @@ rnc hAj rnc rnc -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe rnc -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -50351,58 +50357,58 @@ aao aao aao aao -qMS -dQR -kfx -fsT -aaB -oMf -dkY -qDZ -hJH -lqp -iRf -aWy +tRz +jxg +hrV +cRH +bKL +xyC +ioP +nda +bdT +dMv +tOH +sms acP acP -jeO -aqL +rBa +hls aao acp -afp -afT -agG -akM +oBE +vPu +nKW +jzj acp -aiJ -afT -ajH -afS +dlt +vPu +mvE +tpK aer -agz +rZB ahm -ahj +vjW aer -aoi -aoV +rtk +tPA acq -aqM -aqL -aqL -asa -hGv +tvZ +hls +hls +iZT +oRi alu -jRH -avB -pOt -awX -gej -uST +tBq +oNO +qOh +oWg +mVO +xaq vhw ayV ayV alu -aHD +fTX aBR aBR aBR @@ -50413,73 +50419,73 @@ aBR aBR aBR aFL -aMc +eXq apC -aNG -aOI -aPQ -aRc +phr +fYv +qKs +hpz aof -aSU -aUa -aXM -aOK -aOK -aOK -hkY -aYl -aYS -aOM -aZX +vjp +xWt +ujY +hos +hos +hos +sBW +dxu +aGS +hkb +lnT aof -aOO -bbV -bcL -aOO -bdP +ltn +hEw +mqG +ltn +qBC apC -aHD +fTX aBR aFL aBR -aVo -aIn -xPg -aIn -aMc -aHD -aIn -xtB -bjy -bjy -bjz -bjy -bjy -bmB +gqN +mRj +cGC +mRj +eXq +fTX +mRj +eYE +fFQ +fFQ +fcN +fFQ +fFQ +sCT bjA bjA bjA bjA bjA bjA -blu -bjw +gdB +gQO axX -brv -bos -szy -vbp -vbp -vbp -vbp -tub +tey +eLx +lDB +nZa +nZa +nZa +nZa +gUi axX -bjY +xdy bjA bjA bjA -bjH -bjy +gWG +fFQ azO azO azO @@ -50498,15 +50504,15 @@ aao aao aao aao -jrD -jrD -jrD -sqj -jcR -jrD -jrD +pqe +pqe +pqe +tjV +pji +pqe +pqe rnc -vqY +wzI aao aao aao @@ -50526,21 +50532,21 @@ aao aao aao aao -uXW +ftk aao aao -cOl -vqY +sFR +wzI aao -cOl -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD +sFR +pqe +pji +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -50569,45 +50575,45 @@ aao aao aao aao -tjX -kfx -aqL -nZB -oMf -dkY -qDZ -qDZ -cnG -iRf -aWy +oIe +hrV +hls +xgT +xyC +ioP +nda +nda +weJ +tOH +sms acP -jeO -aqL +rBa +hls aao aao acp -afo -afT -agH -ahr -aih -ahr -ahr -ajI -akm -aih -agC +mcl +vPu +goN +jcE +ebv +jcE +jcE +iIa +xDE +ebv +hQN amo -ahj +vjW acp aer aer acp -aqM -aqL -arp +tvZ +hls +vgV acP -asc +lNe alu alu alu @@ -50619,7 +50625,7 @@ alu alu alu alu -aHD +fTX aBR aBR aBR @@ -50630,48 +50636,48 @@ aBR aBR aBR aBR -aMc +eXq apC -aNH +sUM aof aof aof aof -aSV -bdl +vvT +eIc aof aof kRK kRK aof aof -aYT -aOM -aZX +rRX +hkb +lnT aof -bbl -bbW -bcM +rrp +kgG +nCN aof aof apC -aHD -aIm +fTX +gtP aBR aBR -aVo -aIn -xPg -aIn -aMc -aHD -aIn -giY -bjy -bjy +gqN +mRj +cGC +mRj +eXq +fTX +mRj +cor +fFQ +fFQ bjA -blv -bkp +rTO +tQL bjA bjA bjA @@ -50680,34 +50686,34 @@ bjA bjA bjA bjA -blq +vdV axX -brw -btu -pRG -brO -bti -idM -ndw -bor +wnN +syq +dBL +jbx +pnW +rih +kar +izL axX -bjY +xdy bjA bjA -bkC -bjy -btD +xxD +fFQ +iZt azO -ydn -ydn -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +aYD +aYD +aYD +aYD +nta +rNi +rNi +rNi +rNi +rNi qPT aao aao @@ -50716,12 +50722,12 @@ aao aao aao aao -jrD -vqY +pqe +wzI ibP -tRI -jrD -oxp +obt +pqe +nfL aao aao aao @@ -50750,14 +50756,14 @@ aao aao aao aao -tRI -jrD -jrD -jrD -jrD -jrD -jrD -jrD +obt +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -50786,57 +50792,57 @@ aao aao aao aao -tjX -kfx -aqL -nZB +oIe +hrV +hls +xgT pRP -iXs -scK -scK -oUY -oMf -wmN +qXp +lFj +lFj +dNU +xyC +kUG acP -agq +tqK aao aao aao acp -afq -afS -afT -afS +wFJ +tpK +vPu +tpK acp -aiK -afS -ajJ -akn +bQk +tpK +sjd +tkQ acp -agz +rZB amp -and -anz +vSj +qXR aoj aoj -apH -kVR -aqL -arp +tbs +kfi +hls +vgV acP -ags -alF -alF -alF -alF -alF -axF -asf -alF -akw -alF -alF -axW +moJ +deY +deY +deY +deY +deY +sIp +pFl +deY +nWd +deY +deY +iIC aBR aBR aBR @@ -50847,45 +50853,45 @@ aBR aBR aBR aBR -aMc +eXq apD -aNI -aRd -bcI -bcJ -aRY -aSW -bdl +xjV +xrl +dUi +lYj +eYo +hxT +eIc kRK -aVT -aWD -aWD -aXN +hql +tGJ +tGJ +eTX kRK -aWH -aOM -aZY +ctY +hkb +qHm aof -bbm -aJb -bcN +sxz +njk +pnC aof -wfk +hgQ apC -aHD -aIn -aIm +fTX +mRj +gtP aBR bhi bhi auW -dgy -aMc -aHD -dgy +osG +eXq +fTX +osG ofX -ssI -bkp +lpT +tQL bjA bjA bjA @@ -50897,7 +50903,7 @@ bjA bjA bjA bjA -blq +vdV axX axX axX @@ -50905,26 +50911,26 @@ axX axX axX axX -maD -btH +hjD +qME axX -bjY +xdy bjA -bkC -bjy -bjy -bjy +xxD +fFQ +fFQ +fFQ azO -ydn -ydn -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +aYD +aYD +aYD +aYD +nta +rNi +rNi +rNi +rNi +rNi qPT aao aao @@ -50932,13 +50938,13 @@ aao aao aao aao -bye +bTS ibP ibP -tRI +obt rnc rnc -vqY +wzI aao aao aao @@ -50967,14 +50973,14 @@ aao aao aao aao -cOl -jrD -jrD -jrD -jrD -jrD -jrD -jrD +sFR +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -51003,43 +51009,43 @@ aao aao aao aao -qMS -qMS -vBI -aaB +tRz +tRz +bTY +bKL pRP -oMf -iRf -oMf -oMf +xyC +tOH +xyC +xyC pRP -wmN +kUG acP -asc +lNe acp acp acp acp acp acp -agI +mjf acp acp acp aer -ajK +hRB aer acp -alv +thq amq -ahj -aeJ +vjW +sNo adS aoW -aeJ -aqH -aqL -arZ +sNo +jfS +hls +ioi amD acP acP @@ -51064,44 +51070,44 @@ aBR aBR aBR aBR -aMc +eXq apD -aUd -aXM -aPS -aOM -aOK -aOK -aUc -aYm -aVU -aOM -aOM -aXO +mHO +ujY +eSi +hkb +hos +hos +qex +tOL +osO +hkb +hkb +hZv kRK -aNL -aOM -aZX +pLT +hkb +lnT aof -fhy -aZA -bcN -kIv -aOO +sKC +hgV +pnC +eyJ +ltn apC -aHD -beY -aIp +fTX +ehd +opE aBR bhi bhi wGr aBR -aMc -aHD -aIn -bjD -bjy +eXq +fTX +mRj +knd +fFQ bjA bkq bjA @@ -51114,34 +51120,34 @@ bjA bjA bjA bjA -blu -bjx -bjx -bjx -bjw +gdB +dOH +dOH +dOH +gQO ayr -tdN -maH -slC -bor +ivN +cxA +cJi +izL ayr -bjY -bkr -bjy -bjy -bkd +xdy +hBZ +fFQ +fFQ +jyG azO azO azO -fJH -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +kDE +aYD +aYD +nta +rNi +rNi +rNi +rNi +rNi aAp aAp aAp @@ -51184,13 +51190,13 @@ aCe aCe gWv aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -51221,18 +51227,18 @@ aao aao aao aao -tjX -kfx -cgO -pJt -pJt -gPc -gPc -gPc -pJt -uIz +oIe +hrV +sKw +nor +nor +oEf +oEf +oEf +nor +mrq acP -asc +lNe acp adQ aep @@ -51247,16 +51253,16 @@ adS ajL adS acr -agz +rZB ahn -aid +diS acp acp acp acp -aqH -aqL -asa +jfS +hls +iZT acP acP acP @@ -51281,45 +51287,45 @@ aBR aBR aBR aBR -aMc +eXq apC aof aof -aPS -aRe +eSi +mGU aof aof aof aof -aVV -aOM -aOM -aOM -aYm -aOM -aOM -aZX +iaR +hkb +hkb +hkb +tOL +hkb +hkb +lnT aof aof aof aof aof -fST +rPV apC -aHD -aWJ +fTX +uxB aBR aBR aBR aBR aBR aBR -aMc -aHD -aIn -bjD -bjy -bjB +eXq +fTX +mRj +knd +fFQ +jRs bjA bjA bjA @@ -51333,32 +51339,32 @@ bkq bjA bjA bjA -bjH -bjy -blq +gWG +fFQ +vdV ayr -bmq -bqo -nVq -btJ +wNn +lqE +vdF +mtF ayr -bjw -bun -btD -btD -blq -vpY -jBq -vpY -siu -bvH -ihW -epe -kdr -kdr -kdr -kdr -kdr +gQO +fCJ +iZt +iZt +vdV +eAx +wVP +eAx +rHU +wye +dyZ +nta +rNi +rNi +rNi +rNi +rNi aAp bwK bxc @@ -51370,23 +51376,23 @@ byg bxd kGw aBE -bzp -ebZ +ckM +viH aAp -bAf -bAv -bAN +nCE +loo +tAB aCe -bBb -bBq -bBq -bBJ +viw +kkS +kkS +tGC aCe -bCa -bCo -bCx -bCx -bCx +iRl +kEj +vOI +vOI +vOI aCe dyv bDk @@ -51396,19 +51402,19 @@ dyv bDk dyv aCe -bvO -bEf +dzE +elU jJB aCe aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -sus +pqe +pqe +pqe +pqe +pqe +pqe +pqe +wsj aao aao aao @@ -51439,17 +51445,17 @@ aao aao aao aao -dQR -nlB -nlB -vBI -arp +jxg +ltb +ltb +bTY +vgV acP acP acP acP acP -asc +lNe acp adR aeq @@ -51458,152 +51464,152 @@ aeq adk adk adS -aii +giC adS adS ahm adS -akR -agz +hjS +rZB amr -aic +qia aer -afS -cLZ +tpK +nRV acp -aqH -arp -agq -ahe -ahe -ahe -ahe -ahe -ahe -ahe -ahe -atl -ahe -ahe -auE -ahe -aFM -aCN -aCN -aCN -aFM -aCN -aHC +jfS +vgV +tqK +lsa +lsa +lsa +lsa +lsa +lsa +lsa +lsa +olu +lsa +lsa +eDf +lsa +unv +xyl +xyl +xyl +unv +xyl +eeZ aBR aBR aBR aBR -aMc +eXq apD -aNK -aXL -aPS -aOM +lAz +vwr +eSi +hkb aof aTa aTa aof -oWe -aOM -aXl -aXP +bil +hkb +qMt +bJB aof -aNL -aOM -szi +pLT +hkb +sxa aof -aNQ -aOO -aOO -aOO -aOO +clO +ltn +ltn +ltn +ltn apC -aHD -aWJ +fTX +uxB aBR aBR aBR aBR aBR bhO -biY -dzY -bpT -bjG -bjy -bjy -bkr -bjB +jVz +riz +gEi +fQf +fFQ +fFQ +hBZ +jRs bjA -bkC -bkr -bkr -bkr -bkr -bkr -bjB +xxD +hBZ +hBZ +hBZ +hBZ +hBZ +jRs bjA -bkC -bkr -bjy -bjy -blq -bsX -nVq -nVq -nVq -uBi -bua -buo -buo -buJ -buJ -buo -bvz -dXu -bvz -qLV -oXr -oXr -qLV -qLV -qLV -qLV -bwc -qLV -bwG -bwL +xxD +hBZ +fFQ +fFQ +vdV +oZi +vdF +vdF +vdF +huf +pYV +lMG +lMG +nwF +nwF +lMG +deU +hWf +deU +pFu +qps +qps +pFu +pFu +pFu +pFu +rbm +pFu +rZR +lBY bxc bxd -bxB +jVS bxc bxU bxc -byw +vbP bxd aBE -bzp -ebZ +ckM +viH aAp -bAg -bAh -bAg +dNJ +pjq +dNJ aCe -bBc -bBr -bBs -aKi -bBS -aKi -aKi -aKi -aKi -tDl +uGF +tdW +cOH +tEK +vWY +tEK +tEK +tEK +tEK +rZY aCe dyv dyv @@ -51614,17 +51620,17 @@ dyv dyv aCe dyv -bEg -bEk -bEr -phi -sus -jrD -tRI -jrD -jrD -jrD -jrD +uso +tdw +whf +uzF +wsj +pqe +obt +pqe +pqe +pqe +pqe aao aao aao @@ -51657,16 +51663,16 @@ aao aao aao aao -dQR -dQR -kfx -arp +jxg +jxg +hrV +vgV acP acP aao aao acP -asc +lNe acp adS adS @@ -51681,16 +51687,16 @@ adS ahm adS acr -agz +rZB ahm -aic -anx -afS -akM +qia +ruz +tpK +jzj acp -aqH -arp -asc +jfS +vgV +lNe amn amV amV @@ -51710,117 +51716,117 @@ amn amn amn amn -aHD +fTX aBR aBR aBR aBR -aMc +eXq apD -aNL -aOM -aPS -aOM -aRZ +pLT +hkb +eSi +hkb +cNj aTa aTa -aRZ -aVU -aWE -aXm -aXQ +cNj +osO +hIK +pdY +eiU kRK -aYV -aOM -szi +tcI +hkb +sxa aof -aOO -bbY -bcO -aOO -aOO +ltn +jDb +eBh +ltn +ltn apC -aHD -aIn -aIm +fTX +mRj +gtP aBR aBR aBR aBR bhP -aMc -gpt -aKt -bjy -bjy -bjy -bjy -bjy -bkr -bjy -bjy -bjy -bjy -bjy -bjy -bjy -bkr -bjy -bjy -bjy -bjy -blq -maD -nVq -nVq -iQC -cla -maD -bjw -bjw -bjx -bjx -bjw -vpY -jBq -vpY -kdr -bvQ -eAU -kdr -kdr -kdr -kdr -kdr -kdr -bwH -bwM +eXq +qFZ +hRc +fFQ +fFQ +fFQ +fFQ +fFQ +hBZ +fFQ +fFQ +fFQ +fFQ +fFQ +fFQ +fFQ +hBZ +fFQ +fFQ +fFQ +fFQ +vdV +hjD +vdF +vdF +oVR +tkE +hjD +gQO +gQO +dOH +dOH +gQO +eAx +wVP +eAx +rNi +sJN +qXW +rNi +rNi +rNi +rNi +rNi +rNi +puF +sHV bxd bxd -bxC +lTW bxc -bxV +tGZ byh byx byg aBE -bzp -bzw +ckM +gFj aAp -bAh -bAh -bAh +pjq +pjq +pjq aCe -bBc -aKi -aKi -bBK +uGF +tEK +tEK +gOp aCe -bCb -qTC -pvg -aKi -aPZ +qfG +cGA +gjy +tEK +mrl aCe dyv dyv @@ -51831,17 +51837,17 @@ dyv dyv aCe dyv -bwj -bwx +kyJ +sba vvj -tRI -jrD -jrD -jcR -jrD -iRG -jrD -jrD +obt +pqe +pqe +pji +pqe +gnI +pqe +pqe aao aao aao @@ -51872,54 +51878,54 @@ aao aao aao aao -tjX -dQR -dQR -dQR -hQO -arp +oIe +jxg +jxg +jxg +plL +vgV acP acP acP aao acP -asc +lNe acp -adT -adT -adT -adT -afV -adT -adT +cVR +cVR +cVR +cVR +qed +cVR +cVR aer aiM adS ajL akp acr -alw -ams -ane +fts +dki +oRP aer -afS -aoT +tpK +gkH acp -aqH -aqL -asc +jfS +hls +lNe amn -vti -atY -atY -atY -atY -atY -atY -atY -atY -azM -atY +pyD +lCJ +lCJ +lCJ +lCJ +lCJ +lCJ +lCJ +lCJ +gxz +lCJ amn atn atn @@ -51927,139 +51933,139 @@ atn atn atn amn -aHD +fTX aBR aBR aBR aBR -aMc +eXq apC -aNM -aOM -aPS -aUb +uFS +hkb +eSi +tNE aof aSZ czS aof -aVW -aWF +cfx +imM aof kRK aof -aYU -aOM -aZX +cjD +hkb +lnT aof -bbn -bbZ -bcP -bdq -aJT +moy +ifp +btU +vZL +oMF apC -aHD -aIn -aIn -aIm +fTX +mRj +mRj +gtP aBR aBR aBR bhP -aMc -aHD +eXq +fTX aBR -bjH -bkd -bks -bks -bks -bks -bkb -bkb -bkb -bkb -bkb -bks -bks -bkb -bkb -bkb -bkb -bkb -bjw +gWG +jyG +xvW +xvW +xvW +xvW +mYi +mYi +mYi +mYi +mYi +xvW +xvW +mYi +mYi +mYi +mYi +mYi +gQO ayr -btj -nVq -nVq -bor +qMG +vdF +vdF +izL ayr -bjw -bjY -bjy -bjy -blq -vpY -jBq -vpY -siu -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +gQO +xdy +fFQ +fFQ +vdV +eAx +wVP +eAx +rHU +aYD +aYD +nta +rNi +rNi +rNi +rNi +rNi aAp bwN bxe bxd -bxB +jVS bww -bxV +tGZ bxc -byy +iAq byH aBE -bzq -ebZ +mwu +viH aAp aBy -bAw +llu aBy aCe -bBd -aKi -aKi -bBK +ltR +tEK +tEK +gOp aCH -bCc -cvi -bCy -eHA -bCM +vuJ +gNB +rpY +lFn +miB aCe aCH -vty +oqk aCH aCe aCH -vty +oqk aCH aCe aCH -vty +oqk fin vvj -jcR -jrD -jrD -jrD -oxp -jrD -jrD -jrD -jrD +pji +pqe +pqe +pqe +nfL +pqe +pqe +pqe +pqe aao aao aao @@ -52089,18 +52095,18 @@ aao aao aao aao -tjX -vHU -dQR -hQO -aqL -aqL -lUa +oIe +uMe +jxg +plL +hls +hls +hlm acP acP acP acP -asc +lNe acp acr aer @@ -52116,27 +52122,27 @@ ajL akq acr acr -amt +bIC acr acp acp acp acp -aqH -aqL -asc +jfS +hls +lNe amn -aty -atY -aoF -aty -atX -aAB -aty -ajl -atY -aty -atY +npi +lCJ +mKE +npi +ogX +afX +npi +xgJ +lCJ +npi +lCJ amn aua aua @@ -52144,29 +52150,29 @@ aua aEK aFN amn -aHD +fTX aBR aBR aBR aBR -aMc +eXq apC -aNN -aOM -aPS -bdl +hmk +hkb +eSi +eIc aof sLS aUe aof -aVX -aWG +suP +wEi kRK -aNK -mST -iDT -nuw -aZX +lAz +reS +lTS +pXK +lnT aof aof aof @@ -52174,27 +52180,27 @@ aof aof aof apC -beB -beZ -bfI -bfI -bfI -bfI -bfI -bhQ -aHF -aHF -aFM -aFM -aHF +aGM +lmx +hkt +hkt +hkt +hkt +hkt +loG +vzY +vzY +unv +unv +vzY awp awp axr axr axr awp -gad -bnA +mBL +gbw awp awp awp @@ -52205,28 +52211,28 @@ awp awp awp ayr -btk -nVq -nVq -bor +xTe +vdF +vdF +izL ayr -bjw -bjY -bjy -bjy -blu +gQO +xdy +fFQ +fFQ +gdB azO azO azO -lms -ihW -ydn -epe -kdr -kdr -kdr -kdr -kdr +mMb +dyZ +aYD +nta +rNi +rNi +rNi +rNi +rNi aAp bwO bxf @@ -52238,46 +52244,46 @@ bxf bxf byI aBE -bzp -bzx +ckM +mQv aAp -bAh -bAh -bAO +pjq +pjq +xlI aCe -bBe -aKi -aKi -bBK +pZR +tEK +tEK +gOp aCH -bCd -qTC -jgw -eEm -aKi +fxQ +cGA +hgd +dCp +tEK aCL -bDb -aKi -bDb +tqu +tEK +tqu aCL -bDb -aKi -bDb +tqu +tEK +tqu aCL -bDb -aKi +tqu +tEK vvj -mUy -jrD -jrD -jrD -jrD -oxp -jrD -jrD -jrD -jrD -jrD +jVZ +pqe +pqe +pqe +pqe +nfL +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -52306,24 +52312,24 @@ aao aao aao aao -qMS -dQR -kfx -aqL -aqL -aqL -arp +tRz +jxg +hrV +hls +hls +hls +vgV acP acP acP acP -asc +lNe acp -acl -aes -aeO -adW -afW +rEY +nXX +ciw +qHy +uqq aer ahs adS @@ -52339,21 +52345,21 @@ anB alx alx acr -aqH -aqL -asc +jfS +hls +lNe amn -atY -atY -jpT -aty -atB -cHI -aty -vti -mhF -azN -atY +lCJ +lCJ +dTq +npi +cMG +vlm +npi +pyD +sfn +ecb +lCJ amn aua aua @@ -52361,17 +52367,17 @@ aua aua aws amn -aHD +fTX aBR aBR aBR aBR -aMc +eXq apD -aWH -aOM -aPS -aRh +ctY +hkb +eSi +gFW aof aof aof @@ -52379,75 +52385,75 @@ aof kRK kRK aof -aWH -xej -ole -eSN -aPS -baI +ctY +oJx +pij +rEo +eSi +wqF aYO bca bcQ bdr nky apC -beC -aNw -aNw -aNw -aNw -aHF -aHF -bhR -aHF -aHF -aHF -aHF -aHF +uMF +xZi +xZi +xZi +xZi +vzY +vzY +riU +vzY +vzY +vzY +vzY +vzY awp -bkD -blx -aZV -bmC -bnb -bnB -bmF -bku -bmF -bmF -bpP -fBo -nEP -brx -brU -aCO +hjl +eoc +rYL +gXQ +rTE +ciH +peW +ewy +peW +peW +jnD +iZQ +lsY +oLo +dVi +nJW ayr -btk -nVq -btA -bor +xTe +vdF +tVA +izL ayr -bjw -bjY -bjz -bjz -bjz -bjz +gQO +xdy +fcN +fcN +fcN +fcN azO meT -vrt -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +xux +aYD +aYD +nta +rNi +rNi +rNi +rNi +rNi aAp aAp aAp -bxr +ymh aBy aBy aBy @@ -52455,46 +52461,46 @@ aAp aAp aAp aAp -bzp -ebZ +ckM +viH aAp -bAh -bAx -bAO +pjq +udu +xlI aCe -bBd -aKi -aKi -bBK +ltR +tEK +tEK +gOp aCH -bCe -aKi -wPk -qTC -aKi -kyz -aKi -aKi -aKi -bDr -aKi -aKi -aKi -lUd -aKi -qTC -aKi -mUy -jrD -jrD -jrD -jrD -oxp -jrD -jrD -jrD -jrD -jrD +oDJ +tEK +wDl +cGA +tEK +wuQ +tEK +tEK +tEK +cHi +tEK +tEK +tEK +nVf +tEK +cGA +tEK +jVZ +pqe +pqe +pqe +pqe +nfL +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -52524,23 +52530,23 @@ aao aao aao aao -tjX -kfx -aqL -nnz -aqL -arp +oIe +hrV +hls +gvC +hls +vgV acP acP acP acP -asc +lNe acq -acv -adW -aeP -afs -adW +pWG +qHy +qfX +uOE +qHy acp adS adS @@ -52556,11 +52562,11 @@ adk alx alx alZ -aqH -aqL -asc +jfS +hls +lNe amn -atZ +xva amn amn amn @@ -52570,82 +52576,82 @@ amn amn amn amn -atZ +xva amn -aBT +qOp amn amn amn -aFO +jFI amn -aHD +fTX aBR aBR aBR aBR -aMc +eXq apD -aNL -aOM -aPV -aRi -aXL -aXL -aUf -aVm -aOL -aOL -aOL -aYW -xej -tBD -eSN -aZZ -upV +pLT +hkb +xyD +ezs +vwr +vwr +way +sAm +nBr +nBr +nBr +oEs +oJx +qES +rEo +qbW +hmH baJ -bcb -bcR -bcc +dUh +soD +oIt toA apC -aTh -aIn -aIn -aIn -aKt -aMc -aHF -tHB -aVp -aVp -aVp -aVp -vIQ -bku -bmF -wtC -blT -bmD -pPo -bpp -boe +omh +mRj +mRj +mRj +hRc +eXq +vzY +gEr +qRB +qRB +qRB +qRB +qul +ewy +peW +vKl +iVf +gUv +vAE +dpU +yak awp awp awp -bpQ -wvK -bqT -wvK -wvK -wvK -bsY -slC -nVq -nVq -bor +yiM +uOz +jQz +uOz +uOz +uOz +fXH +cJi +vdF +vdF +izL ayr -bjw -bjY +gQO +xdy bkq bjA bjA @@ -52653,65 +52659,65 @@ bjA azO meT meT -fZm -ydn -epe -kdr -kdr -bvZ -kdr -kdr +ewa +aYD +nta +rNi +rNi +iGv +rNi +rNi aAp -bwP -bDi -bxs -bxE -cqj -bxW -byi -cqj -byJ +dtV +laJ +uEI +hTP +rEU +cwF +uRW +rEU +uBs aAp -bzp -bzy -bzQ -bAh -bAy -bAP +ckM +jfm +nuG +pjq +vPL +wKd aCe -bBc -aKi -bBr -bBK +uGF +tEK +tdW +gOp aCH -bCf -aKi -xZf -qTC -pvg -bCV -qTC -qTC -qTC -nXw -qTC -qTC -qTC -nUK -qTC -aKi -aKi +kBd +tEK +hMQ +cGA +gjy +ind +cGA +cGA +cGA +gYs +cGA +cGA +cGA +mOb +cGA +tEK +tEK vvj -tRI -jrD -jrD -jrD -oxp -jrD -jcR -jrD -jrD -jrD +obt +pqe +pqe +pqe +nfL +pqe +pji +pqe +pqe +pqe aao aao aao @@ -52741,24 +52747,24 @@ aao aao aao aao -tjX -ciG -vBI -aqL -aqL -aqL -lUa +oIe +otH +bTY +hls +hls +hls +hlm acP acP acP -asc +lNe adG -adW -aet -akA -adW -adW -agJ +qHy +uCR +emD +qHy +qHy +nCY adS adk adS @@ -52773,9 +52779,9 @@ adS cLq cLq acr -aqK -arq -asd +oGX +fLQ +eSh asI ayY ayY @@ -52795,74 +52801,74 @@ aDQ eYH aws amI -aHD -aIm +fTX +gtP aBR aKr aBR -aMc +eXq apC -aUd -aYL -aYM -aOK -aOK -aOM -aOK -aOK -aOK -aYL -aXM -aOK -wHx -eoU -eSN -bdl +mHO +lWS +guB +hos +hos +hkb +hos +hos +hos +lWS +ujY +hos +vCx +fAR +rEo +eIc aof bbo -bcc -bcS -bcc +oIt +rTS +oIt bQe apD -aTh -aIn -aKt -aIp +omh +mRj +hRc +opE aBR -aMc -aHF -aHF -aHF -aHF -aHF -aHF -aHF +eXq +vzY +vzY +vzY +vzY +vzY +vzY +vzY awp -bkE -bly -bly -bly -wvK -fBo -boe +dpQ +lPn +lPn +lPn +uOz +iZQ +yak ayF -boW -lTi -bpR -bnF -bnF -bry -bnF -bof -dvC -eSm -eSm -btB -btN +nVQ +cJS +vpz +qTf +qTf +ydi +qTf +sdT +xLI +eXp +eXp +jVv +smV ayr -bjw -bjY +gQO +xdy bjA bjA bjA @@ -52870,65 +52876,65 @@ bjA azO meT meT -vrt -ydn -epe -kdr -kdr -kdr -kdr -kdr +xux +aYD +nta +rNi +rNi +rNi +rNi +rNi aAp -bwP -bxh -bxt -bxF -bxF -bxF -bxv -byz -byK +dtV +jtO +qqJ +mVe +mVe +mVe +dZK +vcj +fqw aAp -bzp -fyp +ckM +gqK aAp aAp aAp aAp aCe -bBc -bBs -aKi -bBK +uGF +cOH +tEK +gOp aCH -bCg -bCp -xZf -qTC -qTC -bCW -bDc -qTC -bDc -kxi -bDc -qTC -bDc -bDS -wni -aKi -bDc +wrp +mmr +hMQ +cGA +cGA +bTu +iyt +cGA +iyt +fbk +iyt +cGA +iyt +tCl +gHY +tEK +iyt fin ibP -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pji +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -52958,23 +52964,23 @@ aao aao aao aao -tjX -tjX -kfx -aqL -aqL -aqL -arp +oIe +oIe +hrV +hls +hls +hls +vgV acP acP acP -asc +lNe acq -jAR -aeu -adc -afs -adW +sMa +hwa +jdU +uOE +qHy acp adS adk @@ -52983,16 +52989,16 @@ ajf ajN akt acr -alz -amw +hot +jEl adS anC -alz -alz +hot +hot amb -aqM -aqL -ase +tvZ +hls +rsz asJ asJ aua @@ -53012,74 +53018,74 @@ asJ awn aws amI -aHD -aIn -aIm +fTX +mRj +gtP aBR -aLd -aMc +bHi +eXq apC aof -aON +psB aof aof aof -aON +psB aof aof aof -aON +psB aof aof -aYo -rpI -qyi -bdl +tQv +dZe +gJF +eIc aof bbp -bcc -bcT -bcc +oIt +vAr +oIt aYO apD -aTh -aWJ +omh +uxB aBR aBR aBR -aMc -aHF -aMg -lID -lID -aMg -aHF -aHF +eXq +vzY +cfE +hpT +hpT +cfE +vzY +vzY awp -bkG -wvK -wvK -tKr -vin -fBo -boe +rKv +uOz +uOz +jQj +xZk +iZQ +yak ayF -orZ -lTi -bpS -wvK -wvK -brz -brV -boe +oHJ +cJS +ieu +uOz +uOz +bQB +auJ +yak ayr ayr ayr ayr ayr ayr -bjw -bjY +gQO +xdy bjA bjA bjA @@ -53088,65 +53094,65 @@ azO meT meT meT -fZm -epe -kdr -kdr -kdr -kdr -kdr +ewa +nta +rNi +rNi +rNi +rNi +rNi aAp -bwP -bxi -bxu -bxu -bxu -bxX -byj -byA -byK +dtV +ncG +pSj +pSj +pSj +qqu +neZ +cZv +fqw aAp -bzp -bzw +ckM +gFj aBE -bAi -bAz -bAQ +kbW +wkg +iWI aCe -bBf -bBt -bBt -bBL +eix +nyS +nyS +nlh aCH -aPg -uGz -taf -uGz -bCN +dbc +ncC +nyN +ncC +mLk aCL -bDd -aKi -bDd +uoy +tEK +uoy aCL -bDd -aKi -bDd +uoy +tEK +uoy aCL -bDd -aKi -bDd +uoy +tEK +uoy aCe aao -cOl +sFR rnc rnc -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -53175,23 +53181,23 @@ aao aao aao aao -tjX -tjX -hQO -aqL -aqL +oIe +oIe +plL +hls +hls aao -aqL -lUa +hls +hlm acP acP -asc +lNe acp -mtM -jGn -adW -adW -adW +kPk +bAt +qHy +qHy +qHy aer adS adS @@ -53200,16 +53206,16 @@ ajg adU akt acr -alA -amx +ugz +gUH adS anD -alA -alA +ugz +ugz sVB -aqM -aqL -ase +tvZ +hls +rsz amn amn amn @@ -53228,107 +53234,107 @@ ayY aAC aAC aFP -aGF -aHD -aIn -aIn -aKl -aIn -aMc +dkn +fTX +mRj +mRj +dSD +mRj +eXq apC -aNO -aOO -aPW +sUy +ltn +cxS aof -bdm -aOO -vOs +nkr +ltn +uha aof -jAm -aOO -hxs +wsi +ltn +wkw aof -aYp +grh aof -aWH -aUb +ctY +tNE aof bbq bcd bcU -bds +ozP aYO apC -aTh -aIn -aKl -aIm +omh +mRj +dSD +gtP aBR -aMc -aHD +eXq +fTX dPJ gpR gpR dPJ -nvn -bkf +mkI +iAs awp -bkH -blA -wtG -jRn -bnd -wtG -wVw +pdj +hwp +viK +myX +szU +viK +huy ayF -boW -lTi -bpo -fBo -bqV -brA -brW -urn +nVQ +cJS +fWC +iZQ +hTs +ogG +yiW +qWX awp -bjw -bjx -bjx -bjx -bjw -bjw -bjY +gQO +dOH +dOH +dOH +gQO +gQO +xdy bjA bjA bjA bjA azO meT -vfI -wZC -ydn -bvW -kdr -kdr -kdr -kdr -kdr +con +aAh +aYD +uhl +rNi +rNi +rNi +rNi +rNi aAp -bwQ -bxj -bDi -bDi -bxL -bDi -byk -bDi -byL +emd +tCW +laJ +laJ +ssJ +laJ +ojU +laJ +jZQ aAp -bzp -bzz -bzR -bAj -rTq -rTq +ckM +kGt +ePK +trh +jaQ +jaQ aCe aCe aCe @@ -53337,33 +53343,33 @@ aCe aCe aCL aDj -bCz +hHf aDj aCL aCe aCH -vty +oqk aCH aCe aCH -vty +oqk aCH aCe aCH -vty +oqk aCH aCe aao aao aao aao -uXW -jrD -jrD -jrD -jrD -jrD -jrD +ftk +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -53391,18 +53397,18 @@ aao aao aao aao -nEH -dQR -hQO -aqL -aqL -aqL +lFw +jxg +plL +hls +hls +hls aao aao -arp +vgV acP acP -asc +lNe acp acp acp @@ -53424,12 +53430,12 @@ adk adk adS acr -aqM -qwm -asc +tvZ +uXX +lNe amI -aty -atY +npi +lCJ amn asJ asJ @@ -53445,50 +53451,50 @@ asJ aua aua asJ -cgt -aHD -aIn -aIn -aIn -aIn -aMc +shm +fTX +mRj +mRj +mRj +mRj +eXq apC -aNP -aOO -aOO +rnR +ltn +ltn aof -bdn -aOO -aOO +rVx +ltn +ltn aof -aNP -pdG -qXi +rnR +iPw +sGL aof -aYq +fmc aof -aWH -aUb +ctY +tNE aof xKG aTa bcV bdt baJ -bej -beE -aFM -aFM -aHC +die +eNc +unv +unv +eeZ aBR -aMc -fHw +eXq +cTh gpR gpR gpR gpR -wBu -aHF +uMU +vzY awM awM awM @@ -53500,87 +53506,87 @@ awM awM awp awp -yhV -bnA +ukC +gbw awp awp awp awp awp -bjY +xdy bjA bjA bjA -caD -bjw -bjY +ogN +gQO +xdy bjA bjA bjA bjA azO -wZC -ihW -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +aAh +dyZ +aYD +aYD +nta +rNi +rNi +rNi +rNi +rNi aAp -bwR -bxh -bxv -bxG -bxF -bxF -bxv -byB -byM +lNq +jtO +dZK +mVu +mVe +mVe +dZK +rMU +uxV aBy -bzp -bzA +ckM +loQ aBE -byM -ycP -rTq +uxV +wmz +jaQ aBE dmO bww bww hkv aCL -bCi -bCq -xZf -bCq -bCO +nhU +hNB +hMQ +hNB +opn aCe -bDe -fWw -fWw +klz +vvH +vvH aCe -dPs -fWw -fWw +oBQ +vvH +vvH aCe -fWw -bDe -fWw +vvH +klz +vvH aCe aao aao aao aao -uXW +ftk aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aao aao @@ -53608,24 +53614,24 @@ aao aao aao aao -tjX -kfx -aqL -aqL -aqL -aqL -aqL +oIe +hrV +hls +hls +hls +hls +hls aao -arp +vgV acP acP -ags -alF -alF -alF -alF -alF -ahS +moJ +deY +deY +deY +deY +deY +tdM acr ahu adS @@ -53635,19 +53641,19 @@ ajQ akt acr adk -amy -ang -anE -aok +dhb +gWY +nqf +enT adk alZ -aqM +tvZ acP -asc +lNe amI -atB -atY -auU +cMG +lCJ +eFx asJ asJ asJ @@ -53658,134 +53664,134 @@ azS amn amn amn -cgt -eqr +shm +vQQ amn amn amn -aHD -aIn -aJm -aKt -aKt -aMc +fTX +mRj +rdc +hRc +hRc +eXq apC -aNQ -aGG -aPX +clO +fuj +oZP aof -pNU -aOO -aUg +hqp +ltn +sZN aof -aNQ -aOO -aXn +clO +ltn +sUU aof -aYr +ggX aof -aNJ -aUc +wVJ +qex aof bbr toA aYO fPB bQe -bek -bjZ -aMg -aHF -aHD +jsi +dVb +cfE +vzY +fTX aBR -aMc -fHw +eXq +cTh gpR gpR gpR gpR -wBu -aHF +uMU +vzY awM -bkI -bkI -bkI -bkI -bkI -bkI -bkI +rsk +rsk +rsk +rsk +rsk +rsk +rsk awM -boX -bpn -bpp -fBo -bnb -brB -bkN -bsB +fKe +oPn +dpU +iZQ +rTE +kFk +cAd +nea awp -bjY +xdy bjA bjA bjA -blq -bjw -bjY +vdV +gQO +xdy bjA bjA -bkd +jyG azO azO azO -fJH -ydn -ydn -epe -kdr -kdr -bwa -kdr -kdr +kDE +aYD +aYD +nta +rNi +rNi +qSe +rNi +rNi aAp -bwS -bxi -bxu -bxu -bxu -bxu -bxu -byC -byN -byZ -cqj -bzB +oag +ncG +pSj +pSj +pSj +pSj +pSj +ogH +uoE +dDo +rEU +brG aBQ -aNx -bAA -bDi +fRU +uBS +laJ aBE hHG bBv bww bBN aCL -bCj -aKi -bCA -bCG -bCP +vZM +tEK +eyp +wcm +wrY aCe -fWw -fWw -fWw +vvH +vvH +vvH aCe -fWw -fWw -bDe +vvH +vvH +klz aCe -fWw -fWw -fWw +vvH +vvH +vvH aCe aao aao @@ -53795,9 +53801,9 @@ aao aao aao aao -jrD -jrD -jcR +pqe +pqe +pji aao aao aao @@ -53825,15 +53831,15 @@ aao aao aao aao -dQR -dQR -vBI -aqL -aqL -aqL -aqL -aqL -arp +jxg +jxg +bTY +hls +hls +hls +hls +hls +vgV acP acP acP @@ -53842,7 +53848,7 @@ acP acP acP acP -asc +lNe acr ahu adS @@ -53852,18 +53858,18 @@ ajL ajj acr adk -amz -anh -anF -aol +uCQ +tfn +wDj +nVl adS acr -aqM +tvZ acP -asc +lNe amn -atz -atY +cdw +lCJ amn pvj asJ @@ -53873,19 +53879,19 @@ asJ asJ azT amn -aBj -qYB -aBk -aBk -aBj -rKy +dwV +sEn +wju +wju +dwV +siE amn -aHD -aIp +fTX +opE aBR aBR aBR -aMc +eXq apC apJ apJ @@ -53901,8 +53907,8 @@ apJ apC apC apC -kmm -mWg +uHb +gjO apC apC apC @@ -53910,99 +53916,99 @@ apC apC apC apC -beF -bfb -aMc -aHD -aIm -aMc -aHD +lFD +han +eXq +fTX +gtP +eXq +fTX dPJ gpR oOw dPJ -aMc -aHF +eXq +vzY awM -bkJ -bkJ -bkJ -bkJ -bne -bkJ -bkJ +vjs +vjs +vjs +vjs +mRN +vjs +vjs awM -boY -bpo +tbz +fWC bpU bqv bpU -wvK -wvK -bsC +uOz +uOz +xAY awp -bjY +xdy bjA bjA bjA -blq -bjw -bjY +vdV +gQO +xdy bjA bjA -blq -vpY -jBq -vpY -siu -ydn -ihW -epe -kdr -kdr -kdr -kdr -kdr +vdV +eAx +wVP +eAx +rHU +aYD +dyZ +nta +rNi +rNi +rNi +rNi +rNi aAp -bwT -bxk -bxw -bxH -bxM -bxM -byl -cqj -byO +rWc +qJC +qZk +iPr +nmp +nmp +hZM +rEU +kTl aBy -bzp -bzC +ckM +xZV aBQ -ofJ -aOP -aOP +vNW +rgv +rgv aBE hHG bww bww bBO aCL -bCk -bCr -taf -bCr -bCQ +nCR +wyq +nyN +wyq +hNj aCe -fWw -bDl -fWw +vvH +cLI +vvH aCe -fWw -cxi -fWw +vvH +nKn +vvH aCe -dPs -cxi -bDe +oBQ +nKn +klz aCe aao aao @@ -54012,9 +54018,9 @@ aao aao aao aao -jrD -jrD -jrD +pqe +pqe +pqe aao aao aao @@ -54041,25 +54047,25 @@ aao aao aao aao -nEH -dQR -dQR -dQR -vBI -aqL -gdK -aqL -aqL -arp +lFw +jxg +jxg +jxg +bTY +hls +cXp +hls +hls +vgV acP acP lPg -mtS -mtS -mtS +nal +nal +nal lPg acP -asc +lNe acr acr acr @@ -54075,12 +54081,12 @@ acr acr acr acr -aqM +tvZ acP -asc +lNe amn -aty -atY +npi +lCJ amn asJ awo @@ -54090,56 +54096,56 @@ ayp asJ azU amn -aBk -aBW -aCR -aBW -aEM -eWB +wju +jnv +bWX +jnv +cXC +gsn amn -aHD +fTX aBR aBR aBR aBR -aMd -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aHF -aHF -aMg -aMg -aMg -aMg -aMg -aMg -aMg -beG -aIn -vmm -aHF -aFM -aHF -aHF -aCN -lRC -bSy -aCN -aHF -aHF +omM +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +vzY +vzY +cfE +cfE +cfE +cfE +cfE +cfE +cfE +mGC +mRj +gUQ +vzY +unv +vzY +vzY +xyl +dgK +udP +xyl +vzY +vzY awM awM awM @@ -54149,37 +54155,37 @@ awM awM awM awM -uTO -bpo +oSB +fWC bpV bkU bqX -wvK -brY -bsD +uOz +rjz +cdd awp -bjY +xdy bjA bjA bjA -blq -bjw -bjw -bkb -bkb -bjw -vpY -jBq -vpY -kdr -erJ -erJ -kdr -kdr -kdr -kdr -kdr -kdr +vdV +gQO +gQO +mYi +mYi +gQO +eAx +wVP +eAx +rNi +dQU +dQU +rNi +rNi +rNi +rNi +rNi +rNi aAp aAp aAp @@ -54191,21 +54197,21 @@ aAp aAp aAp aAp -bzr -bzC +lyK +xZV aBE aBQ aBQ aBQ aBE aBE -bBx +ixB aBE aBE aCL aCL aDj -bCz +hHf aDj aCL aCe @@ -54229,9 +54235,9 @@ aDY aDY aao aao -jrD -jrD -jrD +pqe +pqe +pqe aao aao aao @@ -54258,46 +54264,46 @@ aao aao aao aao -lOL -dQR -dQR -cPg -dQR -nlB -vBI -aqL -aqL -arp +lBb +jxg +jxg +rft +jxg +ltb +bTY +hls +hls +vgV acP acP -rZU -khK -taV -dVM -rVT +pAF +eIF +lGU +dvN +mIj acP -ags -alF -alF -ahS +moJ +deY +deY +tdM acr adS ajL akc -akS -adW -amA -ani -aom -aoX -apb +ygv +qHy +tac +xCi +lFb +lAS +tHA acr -aqM +tvZ acP -asc +lNe amn -tmH -atY +cjl +lCJ amn asJ awo @@ -54307,14 +54313,14 @@ ayq ayY azV amn -aBl -aBX -aBk -aBk +lYn +xMH +wju +wju amn amn amn -aHD +fTX aBR aBR aBR @@ -54331,125 +54337,125 @@ aBR aBR aBR aBR -aVo -aIn -aWJ +gqN +mRj +uxB aBR -aMc -aHD +eXq +fTX aBR aBR -aVo -aIn -aIn -aWJ +gqN +mRj +mRj +uxB aBR aBR -bfc -vmm -aHF -aMg -aHF -aHF -aHF -aHF -aHF -aHF -aHF -aHF +xBb +gUQ +vzY +cfE +vzY +vzY +vzY +vzY +vzY +vzY +vzY +vzY awp -bkK -blB -tIv -nwB -bnf -bnf -bnf -bou -qHc -bpo +kBK +rIY +gRs +tsg +tXK +tXK +tXK +cuT +xhr +fWC bpU bkU bpU -wvK -wvK -bsE +uOz +uOz +ppY awp -bjY +xdy bjA bjA bjA -blu -bjx -bjx -bjx -bjx -bjw -vpY -jBq -vpY -kdr -eAU -bvQ -kdr -kdr -kdr -kdr -kdr -kdr +gdB +dOH +dOH +dOH +dOH +gQO +eAx +wVP +eAx +rNi +qXW +sJN +rNi +rNi +rNi +rNi +rNi +rNi aBv -bwU -bwU -bwU -bwU +bkt +bkt +bkt +bkt aBA -oKc -bxY -bxY -bxY -bza -xpl -qZo -bzT -bzT -bAB -sEi -bxY -bxY -xpl -bxY -bxY -bBT -bCl -bzT -qZo -bxY +iho +qdr +qdr +qdr +myU +cKP +nTh +exK +exK +qrD +htX +qdr +qdr +cKP +qdr +qdr +nJp +drp +exK +nTh +qdr aDv -bCX -bCX -bDm -bCX -bDs -bCX -bCX -iDW -bDT -bDW -bDW -bDW -bDm -bCX -bCX -bCX -bCX -bDm +nJz +nJz +oND +nJz +rtH +nJz +nJz +uiC +ifh +oCL +oCL +oCL +oND +nJz +nJz +nJz +nJz +oND aDY aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aao aab @@ -54475,47 +54481,47 @@ aao aao aao aao -aqL -lOL -dXK -dQR -dQR -dQR -bGC -aqL -aqL -arp +hls +lBb +gyV +jxg +jxg +jxg +nJx +hls +hls +vgV acP acP -rZU -khK -ahS -dVM -rVT +pAF +eIF +tdM +dvN +mIj acP acP acP acP -asc +lNe acr adS ajR acr -akS -alB -alB -alB -alB -alB -adW +ygv +uoR +uoR +uoR +uoR +uoR +qHy acr -aqM +tvZ acP -asg +mzK amI -atB -atY -auU +cMG +lCJ +eFx asJ awo dJc @@ -54524,14 +54530,14 @@ ayp asJ jph amn -aBm -mBc -aBk -aBk -aEN -ibV +uFj +bqG +wju +wju +uSn +vWV amn -aHD +fTX aBR aBR aBR @@ -54545,128 +54551,128 @@ aBR aBR aBR aBR -aLd -aKl -aKl -aIn -aIn -aIn -aKl -aMc -aHD -aKl -aKl -aIn -aIn -aIn -aIn -aKl -aKl -aIn -aMc -aHD -aIn -aMc -aHF -aMg -lID -lID -aMg -aHF -aHF +bHi +dSD +dSD +mRj +mRj +mRj +dSD +eXq +fTX +dSD +dSD +mRj +mRj +mRj +mRj +dSD +dSD +mRj +eXq +fTX +mRj +eXq +vzY +cfE +hpT +hpT +cfE +vzY +vzY awp -bkK -bBg -wvK -wvK -wvK -bnE -wvK -wvK -boZ -bpo +kBK +xXc +uOz +uOz +uOz +idJ +uOz +uOz +uam +fWC bpV bkU bqX -fBo -brZ -bsF +iZQ +hUU +nZf azG -btn +ixX bjA bjA bjA bjA bjA -bjH -bjy -bjy -blq -vpY -jBq -vpY -siu -ihW -ydn -epe -kdr -kdr -bvZ -kdr -kdr -bwI -bwV -bxl -bwV -bwV -bwI -csC -bxA -bxo -byP -bzb -bzb -bzD -bzU -bxn -bAC -oqM -bAZ -bzb -bzb -bAC -bxn -bzb -bzb -bzb -bzD -bxn -bCR -bCY -bBU -bBU -bDn -qwx -qwx -bDG -fLA -bCY -xzs -bEh -bEh -bEh -bEw -bEA -bEh -bEJ -bCZ +gWG +fFQ +fFQ +vdV +eAx +wVP +eAx +rHU +dyZ +aYD +nta +rNi +rNi +iGv +rNi +rNi +oSl +yee +vZu +yee +yee +oSl +kuo +ess +tLW +kgD +feA +feA +jaw +eJY +kkD +miq +pIX +kPh +feA +feA +miq +kkD +feA +feA +feA +jaw +kkD +fRb +xtE +udl +udl +toQ +iQe +iQe +dQd +xzV +xtE +fzX +bwk +bwk +bwk +hMl +gXW +bwk +szj +rGy aDY aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aao aab @@ -54692,46 +54698,46 @@ aao aao aao aao -aqL -aqL -aqL -lbh -dQR -dQR -kfx -aqL -aqL -arp +hls +hls +hls +rPF +jxg +jxg +hrV +hls +hls +vgV acP acP -rZU -ahS -ahS -qse -rVT +pAF +tdM +tdM +qDU +mIj acP acP acP acP -asc +lNe acr adS ajS -akv -akT -alC -amB -alC -alC -aon -aoY +iqS +erj +qBm +qTh +qBm +qBm +uTZ +fhw acr -aqM +tvZ acP -ash +hJJ amI -aty -atY +npi +lCJ amn asJ awo @@ -54741,14 +54747,14 @@ ayp asJ azW amn -aBn -jOj -aBk -aBk +wVH +txb +wju +wju amn amn amn -aHD +fTX aBR aBR aBR @@ -54762,129 +54768,129 @@ aBR aBR aBR aBR -aVn -aFM -aFM -aFM -aFM -aFM -aFM -aHF -baa -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aHF -aHD -aWJ -aMc -aHD +ezJ +unv +unv +unv +unv +unv +unv +vzY +ulv +unv +unv +unv +unv +unv +unv +unv +unv +unv +vzY +fTX +uxB +eXq +fTX dPJ gpR gpR dPJ -nvn -aHF +mkI +vzY awp -bkL -qHc -fBo -bly -bng -bnF -bof -bov -whE -bpp +aTo +xhr +iZQ +lPn +upk +qTf +sdT +nnR +dte +dpU bpU bqw bpU -brC -nlJ -bsG +wea +iRo +ufq azG -btn +ixX bjA bjA bjA bjA bjA -bjH -bjy -buc -blu +gWG +fFQ +oSr +gdB azO azO azO -lms -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +mMb +aYD +aYD +nta +rNi +rNi +rNi +rNi +rNi aBv -bwW -bwW -bxx -bwW +oiH +oiH +eZU +oiH aBA -ufB -bya -bya -byQ -xpl -bya -bya -bya -bya -iDL -wfx -bBa -bxo -bBA -qZo -bxo -bBV -xpl -bCs -xpl -xpl -lGt -ioS -ioS -ioS -ioS -bDt -sbQ -ioS -vFS -sbQ -bDX +oCb +tZb +tZb +vPq +cKP +tZb +tZb +tZb +tZb +uvq +fUI +djg +tLW +gsH +nTh +tLW +dUc +cKP +gia +cKP +cKP +uza +lzn +lzn +lzn +lzn +tTk +nTM +lzn +fTw +nTM +wFe aDX aDv aDv aDv aDv aDX -bEK -bCZ +wLB +rGy aDY aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -54909,43 +54915,43 @@ aao aao aao aao -aqL -gdK -aqL -lbh -dQR -dQR -hQO -aqL -aqL -arp +hls +cXp +hls +rPF +jxg +jxg +plL +hls +hls +vgV acP acP -ase -ahS -ahS -ahS -aqM +rsz +tdM +tdM +tdM +tvZ acP acP acP acP -asc -aiQ +lNe +nOH adS adk acr -adW -alB -alB -alB -alB -alB -aoZ +qHy +uoR +uoR +uoR +uoR +uoR +qet acr -aqN +ovz acP -ash +hJJ amn amn amn @@ -54957,15 +54963,15 @@ awZ ayp asJ aws -enJ -aBo -aBW -aBk -aBk -aEN -ozO +fnK +feI +jnv +wju +wju +uSn +vRq amn -aHD +fTX aBR aBR aBR @@ -54979,75 +54985,75 @@ aBR aBR aBR aBR -aMc -aHF -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -axW -aIp -aMc -fHw +eXq +vzY +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cfE +iIC +opE +eXq +cTh gpR gpR gpR gpR -wBu -aHF +uMU +vzY awp -bkM -fBo -blV -bmF -bnh -wvK -wvK -bly -bpa -bpq -wvK -wvK -fBo -wvK -qqw -bsG +lkJ +iZQ +tLU +peW +rcf +uOz +uOz +lPn +eFi +lGK +uOz +uOz +iZQ +uOz +mTc +ufq azG -bjY +xdy bjA bjA bjA bjA bjA -bjH -bub -bub -buc -buc +gWG +tOB +tOB +oSr +oSr azO meT -vrt -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +xux +aYD +aYD +nta +rNi +rNi +rNi +rNi +rNi aBv aBv aBv @@ -55057,51 +55063,51 @@ aBv aBv aBv aBv -byR -bxY +sIF +qdr aBv aBw aBw aBw -bAD +dNA aBv aBv -bya -bya -qZo -kGm -kGm -bya -bya -bya -bya +tZb +tZb +nTh +sUI +sUI +tZb +tZb +tZb +tZb aDv -bCZ -bDf -bCZ -bCZ -bCZ -bDz -bDH -ctT -sbQ -knN +rGy +rmk +rGy +rGy +rGy +qoL +mGN +glL +nTM +uaR aDv -xfW -pbs -bEx -xfW +nEG +dei +dOz +nEG aDv -bEK -bEO +wLB +pDe aDY aao aao -jrD -jcR -jrD -jrD -jrD +pqe +pji +pqe +pqe +pqe aao aab aaa @@ -55126,46 +55132,46 @@ aao aao aao aao -aqL -aqL -aqL -lbh -dQR -kfx -aqL -aqL -aqL -arp +hls +hls +hls +rPF +jxg +hrV +hls +hls +hls +vgV acP acP -rZU -ahS -ahS -khK -rVT +pAF +tdM +tdM +eIF +mIj acP acP acP acP -asc -aeJ +lNe +sNo adS adk akc -akS -agt -amC -alB -anH -agt -apa +ygv +dtA +eGc +uoR +eNM +dtA +tmF acr -ajT +scO acP -asc +lNe amI -aty -atY +npi +lCJ amn asJ asJ @@ -55174,15 +55180,15 @@ axd asJ asJ azY -qus -aBp -aBW -aBk -aBk +vEm +xsi +jnv +wju +wju amn amn amn -aHD +fTX aBR aBR aBR @@ -55196,96 +55202,96 @@ aBR aBR aBR aBR -aMc -aHD -aIn -aIn -aIn -aIn -aIn -aIn -aIn -aKt -aKt -aKt -aIp +eXq +fTX +mRj +mRj +mRj +mRj +mRj +mRj +mRj +hRc +hRc +hRc +opE aBR aBR aBR -aYK -aKt -aKt -aIp +oRz +hRc +hRc +opE aBR -aMc -fHw +eXq +cTh gpR gpR gpR gpR -wBu -aHF +uMU +vzY awp -qeK -ccP -blW -ccP -bpo -bnH -yar -box -yar -nzB -nzB -eKU -yar -yar -aZJ -bsG +bew +xNs +cUC +xNs +fWC +bKx +vtA +sKG +vtA +kkE +kkE +sjt +vtA +vtA +vTc +ufq awp -bjY +xdy bjA bjA nYV bjA bjA -vEU -gke -buc -bud -bvk +uEd +orM +oSr +onw +rCh azO meT meT -vrt -ihW -epe -kdr -kdr -kdr -kdr -kdr +xux +dyZ +nta +rNi +rNi +rNi +rNi +rNi aBw -bwX -aMG -bxy -bxI -bxO -bxy -byn +nEB +gxp +kLP +hQq +dHG +kLP +quz aBv -byR -bxY +sIF +qdr aBw -jnR -lst -lst -bAE -bAR +bwC +pJg +pJg +xOw +sdO aBv aBA aCh -cOJ +dNi aCh aBA aBA @@ -55301,24 +55307,24 @@ aDX aDX aDX aDX -bDU -knN +vit +uaR aDX aDX aDX aDX aDX aDX -bEK -bCZ +wLB +rGy aDY aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -55344,46 +55350,46 @@ aao aao aao aao -nnz -wWE -dQR -dQR -kfx -aqL -aqL -aqL -arp +gvC +fbs +jxg +jxg +hrV +hls +hls +hls +vgV acP acP -rZU -ahS -khK -taV -rVT +pAF +tdM +eIF +lGU +mIj acP acP acP acP -asc +lNe acr ajj adk akc -akS -agO -agO -adW -akS -agO -aCk +ygv +vga +vga +qHy +ygv +vga +bWT acr -aqM +tvZ acP -asc +lNe amI -atB -atY -auU +cMG +lCJ +eFx asJ asJ aua @@ -55392,36 +55398,36 @@ awn aua ltK amn -aBq -aBq -szZ -aBk -aEN -nOe +cHS +cHS +rxA +wju +uSn +fLw amn -aHF -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aOR -aFM -aFM -aFM -aHC +vzY +unv +unv +unv +unv +unv +unv +unv +sLz +unv +unv +unv +eeZ aBR -aMc -aHD -aIn -aXo -aKt -aKt -aKt -aKt -aIp +eXq +fTX +mRj +ibW +hRc +hRc +hRc +hRc +opE aBR aBR aBR @@ -55434,20 +55440,20 @@ aBR aBR aBR aBR -aWW -aHD +dxr +fTX dPJ gpR oOw dPJ -aMc -aHF +eXq +vzY awp awp awp awp awp -bnj +bfg awp awp ayF @@ -55460,82 +55466,82 @@ ayF ayF awp awp -bMf -bkr -bkr -bkr -bkr -bkr -buc -buc -buc -buu -ejp +sZp +hBZ +hBZ +hBZ +hBZ +hBZ +oSr +oSr +oSr +tIB +jrh azO meT meT meT -fZm -epe -kdr +ewa +nta +rNi bvY -kdr -bwb -kdr +rNi +bul +rNi aBw -bwY -bxn -bxn -bxn -bxn -bxn -byo +gCJ +kkD +kkD +kkD +kkD +kkD +hSI aBv -byS -bzc +ocx +qzT aBw -bzE -xpl -bAn -xpl -bAS +rQv +cKP +xcf +cKP +cif aBv -bBh -row -qZo -row -row -bBY -bCt -bCt -bCt -bCS -row -pNa +qju +lBX +nTh +lBX +lBX +luR +eFZ +eFZ +eFZ +dvo +lBX +frA aDX -kqS -bDu -bDA -aRf +cyp +fSi +uFl +kfw aDX -bDU -elM +vit +qKx aDX -bDo -aQy -aRf -aRf +wMC +hJx +kfw +kfw aDX -bEK -bEP +wLB +lsT aDY aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -55561,27 +55567,27 @@ aao aao aao aao -aqL -lbh -dQR -dQR -kfx -fsT -aqL -aqL -aqL -lUa +hls +rPF +jxg +jxg +hrV +cRH +hls +hls +hls +hlm acP -rZU -hDK -xQd -eVM -rVT +pAF +cIA +vvB +hUf +mIj acP acP acP acP -asc +lNe acr acr acr @@ -55594,19 +55600,19 @@ akj akj akj acr -aqM +tvZ acP -asc +lNe amn -atB -atY +cMG +lCJ amn asJ -awq -axe -axM -axM -axM +uXF +cZm +rMV +rMV +rMV azZ amn amn @@ -55628,12 +55634,12 @@ anJ aoz anJ anJ -aHD +fTX aBR -aMc -aHD -aIn -aWJ +eXq +fTX +mRj +uxB aBR aBR aBR @@ -55651,108 +55657,108 @@ aBR aBR aBR aBR -aMc -aHF -aCN -lRC -bSy -aCN -aHF -aHF +eXq +vzY +xyl +dgK +udP +xyl +vzY +vzY awp -bkO -blC +drC +bJo awp -bmG -bpo -lYH +tql +fWC +wUe awp -bWk -bWk -bWk -bWk -bWk -bWk -bWk -bWk -bWk -bWk -bMf -uvZ -bjy -aao -aao -bKY -bKY -bKY -bKY -dij +wBI +wBI +wBI +wBI +wBI +wBI +wBI +wBI +wBI +wBI +sZp +qwA +fFQ +aao +aao +ley +ley +ley +ley +xlY aao azO meT meT meT -fZm -bvX -kdr -kdr -kdr -kdr -kdr +ewa +bZq +rNi +rNi +rNi +rNi +rNi aBv -bwZ -bxo -bxo -xpl -bxP -bxo -byp +iUw +tLW +tLW +cKP +fyy +tLW +eNS aBw -byT -bzd +mkz +xbK aBv -bzF -bEB -aOl -bAF -bAS +qXq +nEF +eMt +aqE +cif aBv -aPd -xpl -qZo -bxo -bxo -bxo -xpl -xpl -xpl -xpl -xpl -kKB +vwg +cKP +nTh +tLW +tLW +tLW +cKP +cKP +cKP +cKP +cKP +vbo aDX -ocG -kqS -bDB -kqS +gnJ +cyp +iGL +cyp aDX -bDU -fnh +vit +gmW aDX -kqS -kqS -bDB -kqS +cyp +cyp +iGL +cyp aDX -bEK -bCZ +wLB +rGy aDY aao aao -jrD -jrD -jrD -jcR -jrD +pqe +pqe +pqe +pji +pqe aao aab aaa @@ -55780,196 +55786,196 @@ aao aao aao aao -tjX -dQR -hQO -aqL -aqL -aqL -aqL -arp +oIe +jxg +plL +hls +hls +hls +hls +vgV acP lPg -vgE -vgE -vgE +gBs +gBs +gBs lPg acP acP acP acP -ags -alF -alF -alF -akw -akw -alF -alF -akw -akw -akw -akw -alF -aqI +moJ +deY +deY +deY +nWd +nWd +deY +deY +nWd +nWd +nWd +nWd +deY +xYW amD -asc +lNe amn -aty -atY +npi +lCJ amn avG -awq -awq -tdz -awq -axM +uXF +uXF +pvG +uXF +rMV aws amn -aBr -alT -aCS -aDU -alT -aFT +fId +wiZ +dzU +xjb +wiZ +qtd amn -aHG -aIq -aJn -aEO -aLp -aEO -aMH -aEO -aLp -aEO -aEO +dqo +kcG +gpo +bRU +iTR +bRU +ycp +bRU +iTR +bRU +bRU anJ -aTc +knC aBR -aMc -aHD -aIn -aWJ -aWI -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aHF -aHF -aHF -aHF -aHF -jdj -aHF -aHF +eXq +fTX +mRj +uxB +xod +unv +unv +unv +unv +unv +unv +unv +unv +unv +unv +unv +unv +unv +unv +unv +unv +vzY +vzY +vzY +vzY +vzY +gur +vzY +vzY awp -bkE -hsF +dpQ +sYp awp -bmG -bpo -bnI +tql +fWC +wAj awp -bWk -bWk -nVx -pGP -pGP -nVx -bWk -bWk -bWk -bWk -bMf -uvZ -uvZ -aao -aao -fOx -jGT -fOx -fOx -fOx +wBI +wBI +mBm +cXz +cXz +mBm +wBI +wBI +wBI +wBI +sZp +qwA +qwA +aao +aao +jEF +oMe +jEF +jEF +jEF aao azO meT meT meT -fZm -epe +ewa +nta bvY -kdr +rNi bvY -kdr -kdr +rNi +rNi aBv -efh -bxo -bxz -bxo -xpl -xpl -byq -byE -byU -bze +rdS +tLW +eAM +tLW +cKP +cKP +rqb +xGw +hfP +qEw aBv -bzG -bzW -bAp -aOQ -bAS +lcn +qbt +kJC +hUI +cif aBv -bBj -xpl -uSt -kfY -bBW -kfY -bxn -bzK -hNg -xpl -xpl -kKB +vNS +cKP +jRd +wxc +xTP +wxc +kkD +qSd +tQA +cKP +cKP +vbo aDX -bDp -bDv -wFP -bDv -bDO -qwx -uWo -bDO -bDv -bDv -wFP -bEC +xcI +vza +tSr +vza +kPn +iQe +ydQ +kPn +vza +vza +tSr +inH aDX -bEK -bCZ +wLB +rGy aDY aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -55997,15 +56003,15 @@ aao aao aao aao -qMS -kfx -aqL -aqL -aqL +tRz +hrV +hls +hls +hls aao -aqL -aqL -lUa +hls +hls +hlm acP acP acP @@ -56030,45 +56036,45 @@ acP acP acP acP -asc +lNe amn -lyx -atY +srw +lCJ amn asJ -awq -mnv -axN -ays -axN +uXF +pQC +kgk +viz +kgk aAa -aAE -atY -atY -aCT -atY -atY -atY -aAE -aHG -aIr -aJn -aEQ -aLq -aMh -aER -aNR -wXN -aGI -aEO +ecq +lCJ +lCJ +cMn +lCJ +lCJ +lCJ +ecq +dqo +lNC +gpo +uQw +xBx +vDd +mTw +ehg +qpF +oMW +bRU aqz -aHD -aKl -aMc -aHD -aIn -aWJ -aMc +fTX +dSD +eXq +fTX +mRj +uxB +eXq asv asv asv @@ -56087,106 +56093,106 @@ atJ atJ asv asv -aHF -aHF -aHF -aHF -aHF -aHF +vzY +vzY +vzY +vzY +vzY +vzY awp -bkE -blC +dpQ +bJo awp -bmG -bpo -boe +tql +fWC +yak awp -bWk -bMf +wBI +sZp oZQ wcw wcw oZQ -hOx -bWk -bWk +sQm +wBI +wBI ofn -bMf -uvZ -mIr +sZp +qwA +gYW aao -fOx -jGT -fOx -jGT -fOx +jEF +oMe +jEF +oMe +jEF aao aao azO azO meT -vfI -ihW -epe -kdr -ihW -bwb +con +dyZ +nta +rNi +dyZ +bul bvY -kdr +rNi aBw -bxa -xpl -bxA -bxo -bxo -byb -byr +dYu +cKP +ess +tLW +tLW +qVS +sJd aBw -byT -bzf +mkz +uRf aBv -bzH -bzX -bxn -bxn -bAT +vcp +fue +kkD +kkD +dmM aBv -bBk -xpl -xpl -xpl -xpl -xpl -bCu -qZo -bCu -xpl -bxo -kKB +noE +cKP +cKP +cKP +cKP +cKP +ybJ +nTh +ybJ +cKP +tLW +vbo aDX -kqS -kqS -kqS -kqS +cyp +cyp +cyp +cyp aDX -bDU -elM +vit +qKx aDX -kqS -bEt -bEy -kqS +cyp +vbu +lbw +cyp aDX -bEK -bCZ +wLB +rGy aDY aao aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aab aaa @@ -56215,14 +56221,14 @@ aao aao aao aao -kfx -nnz -aqL +hrV +gvC +hls aao aao aao -aqL -arp +hls +vgV acP acP acP @@ -56247,163 +56253,163 @@ acP acP acP acP -asc +lNe amI -vti -atY -auU +pyD +lCJ +eFx asJ -awq -awq -axM -ayt -axM +uXF +uXF +rMV +urD +rMV aAb amn -atY -atY -atY -atY -atY -aFU +lCJ +lCJ +lCJ +lCJ +lCJ +meS amn -aHG -aHG -aJn -aEO -aLr -aEO -aGH -aNS -aLr -aEO -aEO +dqo +dqo +gpo +bRU +kcl +bRU +wlz +aFZ +kcl +bRU +bRU anJ -aTd -aIn -aMc -aHD -aIn -aWJ -aMc +dum +mRj +eXq +fTX +mRj +uxB +eXq asv -aYX -aZE -aYY -baK -bbs -bce +mPg +tut +oMN +aEk +uMr +gDX asv -bdu -bdu -bel +itu +itu +oVA asv -bfd -wKf -bgc -bfe -bgI +lUl +hco +rqQ +dIJ +lLd asv -aHF -aHF -aHF +vzY +vzY +vzY asv atJ atJ awp -bkP +dkQ awp awp awp -bnj +bfg awp awp -bWk -bpc +wBI +oco wcw iQw wcw wcw -rDV -bWk -bWk -rTN -bMf -uvZ -uvZ -nGm -jGT -jGT -jGT -fOx -fOx +ykU +wBI +wBI +ilI +sZp +qwA +qwA +gxc +oMe +oMe +oMe +jEF +jEF aao aao aao azO azO -ydn -ydn -epe -nEJ +aYD +aYD +nta +jAW bvY -kdr -nEJ -kdr +rNi +jAW +rNi aBw -bxb -bxp -bxp -bxJ -bxQ -bxp -bys +uVs +rdP +rdP +jwL +nCf +rdP +nrN aBv -byV -bzf +lud +uRf aBv -bzI -vuz -bAq -bAH -gVm +kgp +ntf +crF +vVf +thy aBv -bBl -bBB -xpl -bBP -bBX -bCm -bCv -bCC -aPT -bCT -pBD -bDg +eJT +urk +cKP +oHk +ojq +sKK +lQl +iId +gbP +ooB +edz +mib aDX -fyz -kqS -kqS -bDJ +xmF +cyp +cyp +kAD aDX -bDU -knN +vit +uaR aDX -bEl -kqS -kqS -bED +vNw +cyp +cyp +gYv aDX -bEK -bCZ +wLB +rGy aDY aao aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aab aaa @@ -56432,14 +56438,14 @@ aao aao aao aao -kfx -aqL -aqL -aqL -aqL -aqL -aqL -arp +hrV +hls +hls +hls +hls +hls +hls +vgV acP acP acP @@ -56457,103 +56463,103 @@ acP acP acP acP -agq -ahe -ahe -ahe -ahe -ahe -ahe -ahS +tqK +lsa +lsa +lsa +lsa +lsa +lsa +tdM amI -aty -atY +npi +lCJ amn pvj -awr -axg -axO -ayu -aza +dst +oNE +mER +jKC +mgs aws -aAE -atY -aBZ -aBZ -aBZ -aBZ -aBZ -aAE -aHG -aIs -aJo -aEO -aEO -aEO -psE -aNS -aEO -aEO -aRj +ecq +lCJ +fja +fja +fja +fja +fja +ecq +dqo +lMK +txB +bRU +bRU +bRU +lsz +aFZ +bRU +bRU +dUG aqz -aHD -aUh -aMc -aHD -aIn -aWJ -aWW +fTX +xeD +eXq +fTX +mRj +uxB +dxr asH -aYY -aZE -bac -baL -bbt -bac -bac -bac -aYY -aYY +oMN +tut +urb +cSp +uVZ +urb +urb +urb +oMN +oMN asv -wKf -bfJ -bgd -bgd -aLf +hco +wnQ +gFS +gFS +eyF asH -aHF -aHF -aHF +vzY +vzY +vzY asv -bjJ -bgx -bkw -blX -blD -cGT -bmH -bnl -pBv +lCp +qBA +sdp +lhz +fDn +cqR +jho +mfZ +qVD ayF -vjc -bpc +qIJ +oco wcw wcw wcw wcw -rDV -bWk -bWk -rTN -bMf -eLQ -uvZ -nGm -jGT -fOx -fOx -jGT -fOx +ykU +wBI +wBI +ilI +sZp +jMl +qwA +gxc +oMe +jEF +jEF +oMe +jEF aao aao aao @@ -56576,8 +56582,8 @@ aBv aBv aBv aBv -byT -bzg +mkz +pkr aBv aBv aBv @@ -56585,10 +56591,10 @@ aBv aBv aBv aBv -aPf -xpl -xpl -bBQ +lPG +cKP +cKP +axC aBA aCh aCh @@ -56603,24 +56609,24 @@ aDX aDX aDX aDX -fKW -bEc +tsS +fXF aDX aDX aDX aDX aDX aDX -bEL -bDN +eIz +iru aDY aao aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aab aaa @@ -56649,15 +56655,15 @@ aao aao aao aao -dQR -vBI -aqL -aqL -aqL -aqL -aqL -aqL -lUa +jxg +bTY +hls +hls +hls +hls +hls +hls +hlm acP acP acP @@ -56674,7 +56680,7 @@ acP akV acP acP -asc +lNe ako ako ako @@ -56694,84 +56700,84 @@ ayv asJ aws amn -alT -aCa -aCa -aCa -aCa -aCa +wiZ +xDH +xDH +xDH +xDH +xDH amn -aHH -aHG -aJn -aEO -aLs -aEO -aEO -aNS -aLp -aEO -aEO +koP +dqo +gpo +bRU +nnE +bRU +bRU +aFZ +iTR +bRU +bRU anJ -aHD -aIn -aMc -aHD -aIn -aWJ -aMc +fTX +mRj +eXq +fTX +mRj +uxB +eXq asH -aYZ -aZE -bac -aYY -bbt -bac -bac -bdv -bac -bcf +lUN +tut +urb +oMN +uVZ +urb +urb +oqz +urb +hoi asv -lNp -gAX -bge -bgs -bfM +eIP +pdg +eGe +ufF +rsq avr -bhT -aHF -aHF +oSJ +vzY +vzY asv -beI -bgx +pvI +qBA awp -bBg -wvK -blY -wvK -bnm -bnK +xXc +uOz +jqj +uOz +hra +dkO ayF -bWk -kdf +wBI +pHd oZQ wcw rHA oZQ -acm -bWk -bWk -rTN -bMf -uvZ -xIx -nGm -fOx -fOx -fOx -jGT -fOx -fOx +nFn +wBI +wBI +ilI +sZp +qwA +nmB +gxc +jEF +jEF +jEF +oMe +jEF +jEF aao aao aao @@ -56789,55 +56795,55 @@ aao aao aao aBv -bxR -bxS -byt +eXK +dZp +vYy aBA -byT -bzf +mkz +uRf aBv -bzJ -bzJ -bzJ -bzJ -bzJ +ttm +ttm +ttm +ttm +ttm aBv -bBl -xpl -xpl -bBR -bBY -bCn -bCw -aPH -bCI -bCU -pNa -bDh +eJT +cKP +cKP +xeH +luR +mvq +sCY +tuO +nSW +lpC +frA +vnj aDX -tAe -kqS -kqS -bDK +rxU +cyp +cyp +gcw aDX -bDU -elM +vit +qKx aDX -bEm -kqS -kqS -fyz +hyl +cyp +cyp +xmF aDX -bEM -bDN +bNK +iru aDY aao aao aao -jrD -jcR -jrD -jrD +pqe +pji +pqe +pqe aao aab aaa @@ -56866,32 +56872,32 @@ aao aao aao aao -dQR -tjX -nlB -dOZ -nlB -vBI -aqL -aqL -aqL -bQh -bQh -lUa +jxg +oIe +ltb +kUP +ltb +bTY +hls +hls +hls +cam +cam +hlm acP acP acP acP acP -agq -ahe -ahe -ahe -ahe -ahe -ahe -ahe -ahS +tqK +lsa +lsa +lsa +lsa +lsa +lsa +lsa +tdM aku aoo apc @@ -56904,12 +56910,12 @@ atC ars amn amn -jZp -axh +nsS +qbS amn amn anJ -mbz +dCy anJ anJ anJ @@ -56918,77 +56924,77 @@ amn amn amn amn -aHI -aHI -aJp -aKv -aLt -aGI -aEO -aNT -aOS -aGI -aRk +pno +pno +otd +jZX +xxl +oMW +bRU +cPG +pZl +oMW +rns anJ -aTe -aFM -aHF -aHD -aIn -aWJ -aMc +hcL +unv +vzY +fTX +mRj +uxB +eXq asH aZa -aZE -bac -baM -bbu -bcf +tut +urb +fmp +ioq +hoi asv -aJI -bac -bem +dNO +urb +pEJ asv -bgd -bfL -bgc -bgc -bgK +gFS +vhm +rqQ +rqQ +pgn asH -aHF -aHF -aHF +vzY +vzY +vzY asv -bjK -aZF -bkx -bmJ -blE -blZ -bly -bnn -bnL +fvT +dqv +jNq +loT +oHV +tkV +lPn +sEI +oTo ayF -bWk -bWk -dnV -oTf -mIZ -dnV -bWk -bWk -bWk -rTN -bMf -uvZ -uvZ -nGm -fOx -fOx -fOx -fOx -fOx -fOx +wBI +wBI +fuI +sDB +ttq +fuI +wBI +wBI +wBI +ilI +sZp +qwA +qwA +gxc +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -57006,55 +57012,55 @@ aao aao aao aBv -bxS -bxS -byu -byF -byU -bzh -bzs -bzK -bxo -xpl -xpl -xpl +dZp +dZp +wxr +qkB +hfP +uxX +ffb +qSd +tLW +cKP +cKP +cKP aBv -fDr -xpl -xpl -bxo -bxo -xpl -xpl -xpl -xpl -bxo -bDa -xpl +mMa +cKP +cKP +tLW +tLW +cKP +cKP +cKP +cKP +tLW +xSz +cKP aDX -kqS -kqS -kqS -kqS +cyp +cyp +cyp +cyp aDX -bDV -elM +upa +qKx aDX -kqS -kqS -bEt -kqS +cyp +cyp +vbu +cyp aDX -bEM -bEQ +bNK +jGg aDY aao aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aab aaa @@ -57083,32 +57089,32 @@ aao aao aao aao -dQR -dQR +jxg +jxg iXx -dQR -dQR -dQR -vBI -aqL -aqL -aqL -aqL -aqL -lUa +jxg +jxg +jxg +bTY +hls +hls +hls +hls +hls +hlm acP acP acP acP -asc +lNe lPg -hHa -hHa -hHa -hHa -ahS -ahS -ahS +lRP +lRP +lRP +lRP +tdM +tdM +tdM aku aop apc @@ -57131,81 +57137,81 @@ aAg aAg aAg anJ -aDV -aEO -aEO -aEO -aEO -aEO -aEO -aKw -aLr -aEO -aEO -aNS -aLr -aPY -aEO -aSc -aHF -aHF -aHF -aHD -aIn -aWJ -aMc +xDP +bRU +bRU +bRU +bRU +bRU +bRU +iCm +kcl +bRU +bRU +aFZ +kcl +fnF +bRU +fOA +vzY +vzY +vzY +fTX +mRj +uxB +eXq asv -aYY -aZE -bad -aYY -bbv -bac +oMN +tut +lqS +oMN +tXe +urb asv -bdx -bdx -bdx +xPu +xPu +xPu asv -bfK -bfM -bgc -bgt -bgL +tHH +rsq +rqQ +nKv +rCz asv -bhU -aHF -rHD +cYY +vzY +fSz asv -bjL -bkg +tjd +pSI awp -bBg -bly -bma -pPo -pPo -bnM +xXc +lPn +xMs +vAE +vAE +gPw ayF -bWk -bWk -iYR -nVx -nVx -nVx -bWk -bWk -bWk +wBI +wBI +rNS +mBm +mBm +mBm +wBI +wBI +wBI awp -inx -mIr -uvZ -nGm -fOx -fOx -snk -fOx -fOx -fOx +iiG +gYW +qwA +gxc +jEF +jEF +nUE +jEF +jEF +jEF aao aao aao @@ -57223,55 +57229,55 @@ aao aao aao aBv -bxT -byc -byv +tWc +qai +qyx aBA -byT -bzd +mkz +xbK aBv -bzL -bzY -bAr -bAI -bAU +qfz +lve +uWk +ubV +qSD aBv -bBn -xpl -xpl -xpl -bBZ -bxo -bxo -bxo -bxo -xpl -kKB +qJT +cKP +cKP +cKP +fCy +tLW +tLW +tLW +tLW +cKP +vbo aBA aDX -bDq -bDv -bDC -bDv -bDO -qwx -uWo -bDO -bDv -wFP -bDv -bEC +kWy +vza +sCR +vza +kPn +iQe +ydQ +kPn +vza +tSr +vza +inH aDX -bEK -bDN +wLB +iru aDY aao aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aab aaa @@ -57301,31 +57307,31 @@ aao aao aao aao -dQR -dQR -qMS -dQR -dQR -dXK -elh -elh -vBI -aqL -aqL -aqL -lUa +jxg +jxg +tRz +jxg +jxg +gyV +jVf +jVf +bTY +hls +hls +hls +hlm acP acP acP -asc -hHa -hDK -hDK -khK -ahS -ahS -ahS -ahS +lNe +lRP +cIA +cIA +eIF +tdM +tdM +tdM +tdM aku aop apc @@ -57347,43 +57353,43 @@ hhX cYy aCb aCb -aCU -aDW -aEP -aER -aER -aER -aIt -aER -aER -aER -aER -aER -aNU -aEO -aEO -aRl -cNH -aTf -aHF -aHF -aHD -aIn -aWJ -aMc +whh +oSd +uqz +mTw +mTw +mTw +wGS +mTw +mTw +mTw +mTw +mTw +cBP +bRU +bRU +rmn +nan +miV +vzY +vzY +fTX +mRj +uxB +eXq asv -aZb -aZE -aYY -aYY -bbw -aYY +oeU +tut +oMN +oMN +gMP +oMN asv asv asv asv asv -bfi +qPd asv asv asv @@ -57393,36 +57399,36 @@ avS asv asv asv -bjL -bgx +tjd +qBA awp -bkS -bly -bly -wvK -bno -bnN +dcP +lPn +lPn +uOz +ePG +qYk ayF -uHE -bMf +pbj +sZp oZQ rzO bkU oZQ -kuw -bWk -bWk -rTN -bMf -uvZ -uvZ -nGm -fOx -fOx -fOx -fOx -fOx -fOx +vwM +wBI +wBI +ilI +sZp +qwA +qwA +gxc +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -57440,55 +57446,55 @@ aao aao aao aBv -bxS -aNh -bxS +dZp +ljO +dZp aBA -byT -bzf +mkz +uRf aBw -bxo -bxo -xpl -xpl -xpl +tLW +tLW +cKP +cKP +cKP aBv -bBo -pBD -xpl -pBD -pBD -plx -pBD -pBD -xpl -pBD -iUe -bDj +hBE +edz +cKP +edz +edz +bIu +edz +edz +cKP +edz +gCd +mFa aDX -kqS -kqS -bDD -kqS +cyp +cyp +eAK +cyp aDX -bDU -knN +vit +uaR aDX -kqS -kqS -bDD -kqS +cyp +cyp +eAK +cyp aDX -bEK -bDN +wLB +iru aDY aao aao aao -jrD -jrD -jrD -jcR +pqe +pqe +pqe +pji aao aab aaa @@ -57519,30 +57525,30 @@ aao aao aao aao -dQR -dQR -dQR -hQO -aqL -lOL -dXK -bGC -aqL -aqL -aqL -arp +jxg +jxg +jxg +plL +hls +lBb +gyV +nJx +hls +hls +hls +vgV acP acP acP -asc -hHa -taV -khK -ahS -ahS -khK -ahS -ahS +lNe +lRP +lGU +eIF +tdM +tdM +eIF +tdM +tdM aku aoq apd @@ -57565,81 +57571,81 @@ aAH aAg aAg anJ -aNS -aEO -aEO -aGH -aEO -aEO -aEO -aEO -aEO -aGH -aEO -aNV -aEP -aDW -aRm +aFZ +bRU +bRU +wlz +bRU +bRU +bRU +bRU +bRU +wlz +bRU +mTF +uqz +oSd +vkZ anJ -aTg -aHF -aHF -aHD -aIn -aWJ -aMc +sod +vzY +vzY +fTX +mRj +uxB +eXq asv asv asv -bae -bac -bbx -bwz +czs +urb +tFI +bGe aul bdy bdy asv -beH -bfj -aZF -aZF -aZF -aZF -aZF -bbA -aZF -aZF -aZF +nXb +dmU +dqv +dqv +dqv +dqv +dqv +nMO +dqv +dqv +dqv bjM -bgx +qBA awp -dQZ -haT -bmb -gCx -bnp -bnO +loF +phR +iAj +paX +ydB +cEM awp -bWk -bMf +wBI +sZp mDk bkU bkU irN -kuw -ntX -hsJ -rTN -bMf -uvZ -eLQ -nGm -mts -fOx -vld -fOx -fOx -fOx +vwM +oVS +uga +ilI +sZp +qwA +jMl +gxc +xVY +jEF +hGs +jEF +jEF +jEF aao aao aao @@ -57657,55 +57663,55 @@ aao aao aao aBv -bxR -bxS -bxR +eXK +dZp +eXK aBA -byT -bzi +mkz +wks aBw -lDp -bzM -iRw -iYN -iRw +vVB +fTK +cIJ +ecf +cIJ aBv aBw aBw -bBH +tMK aBw aBw aBv aBw aBw -bBH +tMK aBw aBw aBv aDY aDY -fjz -bDA -bDL +tCS +uFl +ujQ aDX -bDU -knN +vit +uaR aDX -bEn -aQD -bDA -bEE +vgj +uxq +uFl +cgp aDX -bEK -bER +wLB +cEo aDY aao aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aab aaa @@ -57738,32 +57744,32 @@ aao aao aao aao -kfx -aqL -aqL -aqL -aqL -lbh -vBI -aqL -aqL -aqL -lUa +hrV +hls +hls +hls +hls +rPF +bTY +hls +hls +hls +hlm acP acP -asc -hHa -xQd -ahS -ahS -khK -khK -ahS -ahS +lNe +lRP +vvB +tdM +tdM +eIF +eIF +tdM +tdM ako ako ako -apM +nIe ako ako ako @@ -57782,53 +57788,53 @@ aAH aAg aAg anJ -aNS -aEQ -jUM -aGI -aEQ -jUM -aJq -aKx -aKx -aKx -aKx -aNW -aEO -aNS -aEO +aFZ +uQw +lba +oMW +uQw +lba +jnU +snz +snz +snz +snz +xFX +bRU +aFZ +bRU anJ -bhR -aUi -aHF -aHD -aIn -aIp -aMc -aHF -aHF +riU +gHu +vzY +fTX +mRj +opE +eXq +vzY +vzY asv -baf -bac -bbu -bch +dEb +urb +ioq +vvG aul aXU aXr asv -beI +pvI bfk -bai -bai -bai -bgM -bbB -bbB -bcj -bbB -bjk -bbB -bbB +xQL +xQL +xQL +kwG +oSK +oSK +lmR +oSK +dDx +oSK +oSK awp awp blF @@ -57837,25 +57843,25 @@ ayF ayF ayF awp -bWk -bMf +wBI +sZp bkU bkU boA bkU -vEF -bWk -ntX -rTN -bMf -uvZ -uvZ -nGm -fOx -fOx -fOx -fOx -fOx +kqb +wBI +oVS +ilI +sZp +qwA +qwA +gxc +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -57878,8 +57884,8 @@ aBv aBv aBv aBv -byT -bzf +mkz +uRf aBv aBv aBv @@ -57887,11 +57893,11 @@ aBv aBv aBv aBv -bBp -bBp -bBp -bBp -bBp +hGi +hGi +hGi +hGi +hGi aBv bvP bvP @@ -57905,24 +57911,24 @@ aDX aDX aDX aDX -bDU -knN +vit +uaR aDX aDX aDX aDX aDX aDX -bEM -bDN +bNK +iru aDY aao aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aab aaa @@ -57955,34 +57961,34 @@ aao aao aao aao -kfx -aqL -gdK -aqL -aqL -lbh -dQR -vBI -aqL -aqL -arp +hrV +hls +cXp +hls +hls +rPF +jxg +bTY +hls +hls +vgV acP acP -asc -hHa -ahS -ahS -ahS -khK -ahS -ahS -khK +lNe +lRP +tdM +tdM +tdM +eIF +tdM +tdM +eIF ako -eNe -ape -apN -ape -uVi +hdu +fZp +sfS +fZp +mih ako asL atD @@ -57999,45 +58005,45 @@ aAI anJ anJ anJ -aDZ +wKV anJ anJ anJ anJ anJ anJ -aKy -aLu -aMi -aMI -aNX -aKx -aNS -aRn +hrC +tax +wsh +keO +naW +snz +aFZ +xFA aqz -bhR -aHF -aHF -aHF -aFM -aFM -aHF -aHF -aHF +riU +vzY +vzY +vzY +unv +unv +vzY +vzY +vzY asv -bag -bac -bby -bci +nto +urb +sBQ +kxF bcX bdz bcX -ben -beJ -bfl +cuU +clr +qFd asv asv -bdC +qEH asv asv asv @@ -58054,25 +58060,25 @@ bkU bkT bkU awp -bWk -bMf +wBI +sZp oZQ bkU boA oZQ -fUk -bWk -bWk -rTN -bMf -uvZ -uvZ +ygw +wBI +wBI +ilI +sZp +qwA +qwA ppp -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -58095,20 +58101,20 @@ aao aao aao aBv -byW -bzj -bzt -bzN -bzZ -bAs -bAJ -bAV +ihB +haQ +lZW +eMm +icL +fNF +nij +uct aBv -bBp -bBC -bBp -bBp -bBC +hGi +uJO +hGi +hGi +uJO aBv bvP bvP @@ -58121,25 +58127,25 @@ aDY bDx bDE fdy -bDP -ioS -bEd -bEi -bEo -bEo -bEo -bEo -bEG -fxh -bDN +ulU +lzn +xnp +onL +cKl +cKl +cKl +cKl +spI +cSJ +iru aDY aao aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aab aaa @@ -58172,34 +58178,34 @@ aao aao aao aao -dQR -vBI -aqL -fsT -aqL -lbh -dQR -bGC -aqL -aqL -aqL -lUa +jxg +bTY +hls +cRH +hls +rPF +jxg +nJx +hls +hls +hls +hlm acP -asc -ahS -ahS -ahS -ahS -ahS -ahS -ahS -khK +lNe +tdM +tdM +tdM +tdM +tdM +tdM +tdM +eIF ako -xzb -ape -apN -ape -pgP +vdh +fZp +sfS +fZp +dcD ako asM atE @@ -58208,61 +58214,61 @@ ako tgf aop apc -axR -ayw -azc +jkR +cUW +vlT ako -aAJ -apo -sqt +cbg +ncn +rpG anJ -aEa -aER -aFX -aEO -aHJ -aIu +iDq +mTw +saG +bRU +bLb +oAW anJ -aEO -aEO -aMj -aEO -aFW -aKx -aNS -aEO +bRU +bRU +rjm +bRU +jdT +snz +aFZ +bRU anJ -bhR -aHF -aHF -aHF -aHF +riU +vzY +vzY +vzY +vzY asv asv asv asv asv -bah -aYY -bbz -aZE +nie +oMN +pdn +tut aXr aXr aXU -bET -beI -bft +jwy +pvI +tcp asv -bgf -bgg -bgN -bgg -bhX +liO +cbQ +khU +cbQ +bdc asv -bqa -bep -bep -bqa +gsv +hSo +hSo +gsv awp bkU bkU @@ -58271,28 +58277,28 @@ bkU bkU bkU awp -bWk -bWk -qpn -pMm -pMm -wMg -bWk -bWk -bWk +wBI +wBI +hEA +aro +aro +ibd +wBI +wBI +wBI awp -bMf -eLQ -uvZ +sZp +jMl +qwA aao aao -fOx -fOx -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -58313,19 +58319,19 @@ aao aao aBv wXz -bzk -bxo +uhm +tLW wXz -xpl -xpl +cKP +cKP bAK -bAW +dIU aBv -bBp -bBp -bBp -bBp -bBp +hGi +hGi +hGi +hGi +hGi aBv bvP bCE @@ -58339,24 +58345,24 @@ bDy bDF bDM aDX -bDz -bDN -ioS -bDN -bEv -bDN -bDN -fnh -bCZ -bDz +qoL +iru +lzn +iru +dAJ +iru +iru +gmW +rGy +qoL aDY aao aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aab aaa @@ -58389,34 +58395,34 @@ aao aao aao aao -dQR -kfx -aqL -aqL -wWE -dQR -cPg -hQO -aqL +jxg +hrV +hls +hls +fbs +jxg +rft +plL +hls aao -aqL -arp +hls +vgV acP -asc -ahS -khK -khK -ahS -ahS -ahS -khK -taV +lNe +tdM +eIF +eIF +tdM +tdM +tdM +eIF +lGU ako -ape -ape -vZh -ape -ied +fZp +fZp +ogb +fZp +ffY ako asN atE @@ -58426,34 +58432,34 @@ xXT aop apc ako -ayx -azd +jBc +gYO ako -aAJ -apo -apo +cbg +ncn +ncn anJ -aEb -aEO -aEO -aEO -aEO -aEO -aJr -aEO -coT -aEO -aEO -aNY -aKx -aNS -aRk +xWI +bRU +bRU +bRU +bRU +bRU +rDw +bRU +gxu +bRU +bRU +kgZ +snz +aFZ +rns anJ -bhR -aHF -aHF -aHF -aHF +riU +vzY +vzY +vzY +vzY asv aXS aYs @@ -58467,19 +58473,19 @@ asv asv asv asv -beK -bfn +kNz +lKt asv -bgg -bgg -bgO -bgf -bgg +cbQ +cbQ +nbD +liO +cbQ asH -bjb -bfw -bfw -bpX +oRr +pXa +pXa +eBv awp bkT blG @@ -58488,28 +58494,28 @@ bkU bkT bkU awp -bWk -bWk -bWk +wBI +wBI +wBI awp -rTN -rTN -rTN -rTN +ilI +ilI +ilI +ilI awp awp -bMf -uvZ -uvZ +sZp +qwA +qwA aao -dov -fOx -fOx -fOx -fOx -fOx -fOx -fOx +cOy +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -58529,20 +58535,20 @@ aao aao aao aBv -byX -bzl +pDF +kig ocp wXz bAa aOJ bAu -bAX +jSn aBv -bBp -bBp -bBp -bBp -bBC +hGi +hGi +hGi +hGi +uJO aBv bvP bvP @@ -58558,22 +58564,22 @@ aDY aDX aDX aDX -bEj +exm aDX aDX aDX aDX -bEH +hvm aDX aDX aDY aao aao aao -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aab aaa @@ -58607,33 +58613,33 @@ aao aao aao aao -dQR -nlB -nlB -dQR -dQR -kfx -fsT -aqL +jxg +ltb +ltb +jxg +jxg +hrV +cRH +hls aao aao -aqL -lUa -asc -hHa -ahS -khK -ahS -ahS -khK -xQd -xQd +hls +hlm +lNe +lRP +tdM +eIF +tdM +tdM +eIF +vvB +vvB ako -ape -mfG -apO -aqR -tFt +fZp +kzr +coQ +gfH +cVK ako asO atE @@ -58646,57 +58652,57 @@ ako ako ako ako -aAJ -apo -apo +cbg +ncn +ncn anJ -aEc -aEc -aFY -aGJ -aCP -aIv +vNu +vNu +ogQ +oeq +gHN +ybQ anJ -aKz -aLv +ldv +clm anJ -aMJ -aFW -aKx -aNS -aEO +hPf +jdT +snz +aFZ +bRU aqz -aTi -aVp -aVp -aVp -aVp -aXq +suS +qRB +qRB +qRB +qRB +fNb bcX bcX bcX -aZF -aZF -aZF -bbA -bbA -bbA -aZF -bdU -aZF +dqv +dqv +dqv +nMO +nMO +nMO +dqv +pWb +dqv beL -bfo +iWb asv -bgh -bgu -bgh -bgf -bgf +jHf +tKf +jHf +liO +liO asv -bjb +oRr bes bes -bpX +eBv awp awp awp @@ -58705,29 +58711,29 @@ awp awp awp awp -bWk -bWk -ntX -nVx -nVx -nVx -nVx -nVx -nVx -nVx -eRc -uvZ -uvZ -kcZ -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +wBI +wBI +oVS +mBm +mBm +mBm +mBm +mBm +mBm +mBm +nUx +qwA +qwA +tuI +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -58746,20 +58752,20 @@ aao aao aao aBv -byX +pDF bzm -bzu -bzO -bAb +vHF +vFL +uEV bAu bAL -bAX +jSn aBv -bBp -bBC -bBI -bBp -bBp +hGi +uJO +xTu +hGi +hGi aBv bvP bvP @@ -58772,11 +58778,11 @@ aao aao aao aDY -bDQ -bDQ -bEe -bDQ -bEp +uFa +uFa +sMc +uFa +iAV aDX fdy fdy @@ -58787,9 +58793,9 @@ aDY aao aao aao -jrD -jrD -jrD +pqe +pqe +pqe aao aao aab @@ -58822,50 +58828,50 @@ aao aao aao aao -nEH -elh -elh -dQR -dQR -dQR -dQR -hQO -aqL -aqL -aqL +lFw +jVf +jVf +jxg +jxg +jxg +jxg +plL +hls +hls +hls aao -aqL -arp -asc -hHa -ahS -ahS -ahS -dVM +hls +vgV +lNe +lRP +tdM +tdM +tdM +dvN aao aao aao ako -jNE -ape -eJU -aqS -ape +pID +fZp +tJa +lGS +fZp ako asP apc apc -auV +nLG apc aop apc -axR -ayw -azc +jkR +cUW +vlT ako -aAJ -apo -apo +cbg +ncn +ncn anJ anJ anJ @@ -58880,51 +58886,51 @@ anJ anJ anJ anJ -sPv -aRo +sYl +wci anJ -aTj -aMg -aMg -aMg -aHF -bET +uRr +cfE +cfE +cfE +vzY +jwy aXr aXr aXU -aZG -bai -bai -bbB -bcj -bbB -bai -bai -bbB +eMj +xQL +xQL +oSK +lmR +oSK +xQL +xQL +oSK beM -bfp +oZF asv -bgi -bgv -aLg -bgg -bgg +tFq +xpc +veO +cbQ +cbQ asH -bjb -bjl +oRr +erH bes -jfr -bep -bep -bep -bep -bep -bep -bep -bep -bqa -bWk -bMf +xMM +hSo +hSo +hSo +hSo +hSo +hSo +hSo +hSo +gsv +wBI +sZp xJC mzV mzV @@ -58932,19 +58938,19 @@ mzV mzV mzV mzV -pcI -uvZ -uvZ -kcZ -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +vqr +qwA +qwA +tuI +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -58964,12 +58970,12 @@ aao aao aBv byY -bzn -bzv +hhq +pEU wXz -bAc +vWn wXz -bAM +wmx bAY aBv aBv @@ -58989,11 +58995,11 @@ aao aao aao aDY -bDR -bDR -bDR -bDR -bEq +rEJ +rEJ +rEJ +rEJ +xdg aDX bEz bEF @@ -59004,9 +59010,9 @@ aDY aao aao aao -jrD -yfz -jrD +pqe +pGG +pqe aao aao aab @@ -59038,73 +59044,73 @@ aao aao aao aao -dXK -dXK -wbY -dQR -dQR -dQR -dQR -kfx -aqL -aqL -aqL -aqL -aqL -aqL -arp -asc -hHa -xQd -hDK +gyV +gyV +xaX +jxg +jxg +jxg +jxg +hrV +hls +hls +hls +hls +hls +hls +vgV +lNe +lRP +vvB +cIA aao aao aao aao aao ako -ygN -apg -apP -ape -ape +eDL +mSQ +iuy +fZp +fZp ako asQ atE atE -ovq +osI apc aop apc ako -ayx -azd +jBc +gYO ako -aAK -apo -apo -kMk -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo +qmW +ncn +ncn +woX +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn anT aQa aCZ anT -aTk -aQu -aQu -aQu -aTr +wZZ +waf +waf +waf +goX asH aXU aYt @@ -59118,20 +59124,20 @@ asv asv asv asv -beI -bft +pvI +tcp asv -bgj -bgw -bgQ -bgg -bhY +lIE +mVc +fPW +cbQ +eoY asv -bjb -bjm +oRr +iMi bes bes -ber +rEd bes bes bes @@ -59139,9 +59145,9 @@ bes bes bes bes -bpX -bWk -bMf +eBv +wBI +sZp mzV mzV mzV @@ -59149,19 +59155,19 @@ mzV mzV mzV mzV -pcI -uvZ -mIr -kcZ -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +vqr +qwA +gYW +tuI +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -59183,8 +59189,8 @@ aBv aBv aBv aBv -bzP -bAd +ylD +rmH aBv aBv aBv @@ -59196,10 +59202,10 @@ aao aao aao aao -sqj -phi -phi -vqY +tjV +uzF +uzF +wzI aao aao aao @@ -59221,9 +59227,9 @@ aDY aao aao aao -jrD -jrD -jrD +pqe +pqe +pqe aao aao aab @@ -59255,23 +59261,23 @@ aao aao aao aao -nnz -aqL -lOL -dXK -dQR -dQR -wbY -kfx -aqL -gdK -aqL -aqL -aqL -aqL -aqL -asc -hHa +gvC +hls +lBb +gyV +jxg +jxg +xaX +hrV +hls +cXp +hls +hls +hls +hls +hls +lNe +lRP aao aao aao @@ -59280,11 +59286,11 @@ aao aao aao ako -jNE -ape -apN -aqT -ape +pID +fZp +sfS +rYv +fZp ako asR atF @@ -59297,31 +59303,31 @@ ako ako ako ako -aAK -apo -apo -apo -apo -apo -apo -apo -apo -iOR -apo -apo -apo -apo -apo -apo -aOU +qmW +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +mOB +ncn +ncn +ncn +ncn +ncn +ncn +tOP aQa aCZ -aOU -aTk -aQu -aVq -aVq -aTr +tOP +wZZ +waf +eNv +eNv +goX asv aXV aYu @@ -59335,8 +59341,8 @@ bcY bcY aKn asv -beI -bft +pvI +tcp asv asv asv @@ -59344,9 +59350,9 @@ asv asv asv asv -bqa -kwQ -bjl +gsv +arv +erH bes bes bes @@ -59356,9 +59362,9 @@ bes bes bes bes -bpX -bqa -bMf +eBv +gsv +sZp mzV mzV mzV @@ -59366,18 +59372,18 @@ mzV mzV mzV mzV -pcI -uvZ -ltu -mPC -fOx -fOx -dov -fOx -fOx -fOx -fOx -fOx +vqr +qwA +tjs +imS +jEF +jEF +cOy +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -59388,8 +59394,8 @@ aao aao aao aao -jrD -jrD +pqe +pqe aao aao aao @@ -59400,9 +59406,9 @@ aao aao aao aao -tRI -jrD -jrD +obt +pqe +pqe aao aao aao @@ -59413,9 +59419,9 @@ aao aao aao aao -tRI -jrD -oxp +obt +pqe +nfL aao aao aao @@ -59427,20 +59433,20 @@ aao aao aao aao -euO -phi -phi -phi -phi -phi -sus +ppE +uzF +uzF +uzF +uzF +uzF +wsj aao aao aao aao -jrD -jrD -jrD +pqe +pqe +pqe aao aao aab @@ -59472,21 +59478,21 @@ aao aao aao aao -aqL -aqL -aqL -aqL -lOL -dQR -dQR -kfx -aqL -aqL +hls +hls +hls +hls +lBb +jxg +jxg +hrV +hls +hls aao aao aao aao -aqL +hls aao aao aao @@ -59510,35 +59516,35 @@ ako atE aop apc -axR -ayw -azc +jkR +cUW +vlT ako -aAJ -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo +cbg +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn +ncn anT aQb aCZ anT -aTk -aUk +wZZ +sfQ aKP aKP -aTr +goX asv asv asv @@ -59547,23 +59553,23 @@ asv aXr baO aXr -bck +hdF aXU aXr bdW asv -beN +nau bfq -bfO -bgk -bgx -bgR -bhk -bgx -biD -bqa -bja -beq +lOS +exG +qBA +wKY +lrT +qBA +uQp +gsv +wDm +hog bhr bes bes @@ -59573,9 +59579,9 @@ bes bes bes bes -bpX -bqa -bMf +eBv +gsv +sZp mzV eWo mzV @@ -59583,18 +59589,18 @@ dmB mzV mzV mzV -pcI -mIr -ktN -mPC -fOx -fOx -kVS -fOx -fOx -fOx -fOx -fOx +vqr +gYW +oNb +imS +jEF +jEF +nsL +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -59604,11 +59610,11 @@ aao aao aao aao -jrD -jcR -jrD -jrD -jrD +pqe +pji +pqe +pqe +pqe aao aao aao @@ -59616,10 +59622,10 @@ aao aao aao aao -phi -jrD -jrD -jrD +uzF +pqe +pqe +pqe aao aao aao @@ -59630,9 +59636,9 @@ aao aao aao aao -tRI -iml -oxp +obt +hHS +nfL aao aao aao @@ -59645,19 +59651,19 @@ aao aao aao aao -tRI -jrD -jcR -jrD -jrD -vqY +obt +pqe +pji +pqe +pqe +wzI aao aao aao aao -jrD -jrD -jrD +pqe +pqe +pqe aao aao aab @@ -59689,15 +59695,15 @@ aao aao aao aao -aqL -aqL -aqL -aqL -aqL -lbh -aad -alJ -akX +hls +hls +hls +hls +hls +rPF +jto +bvh +ceb aao aao aao @@ -59728,11 +59734,11 @@ atE aop apc ako -ayx -azd +jBc +gYO ako -aAJ -apo +cbg +ncn anT anX anX @@ -59748,18 +59754,18 @@ anT anT anT anT -cYI -aRp +cTV +wdw anT -aTk -aUk +wZZ +sfQ aKP aVY -aXW -aSg -aTq -aTq -aTq +oWG +jyb +rqZ +rqZ +rqZ asv asv asv @@ -59768,19 +59774,19 @@ asv bcZ bdA aXU -bck -beI +hdF +pvI bfr -bfP -bgl -bfP -bfP -bhl -bbB -bET -bqa -bja -beq +qNr +hxS +qNr +qNr +xtK +oSK +jwy +gsv +wDm +hog bes bes bes @@ -59790,9 +59796,9 @@ bes bes bes bes -bpX -bqa -bja +eBv +gsv +wDm mzV mzV mzV @@ -59800,18 +59806,18 @@ mzV mzV mzV mzV -pcI -ltu -ktN -mPC -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +vqr +tjs +oNb +imS +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -59819,24 +59825,24 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao -tRI -jrD -jrD -sus +obt +pqe +pqe +wsj aao aao aao @@ -59846,10 +59852,10 @@ aao aao aao aao -sqj -jrD -jrD -oxp +tjV +pqe +pqe +nfL aao aao aao @@ -59862,20 +59868,20 @@ aao aao aao aao -tRI -jrD -jrD -jrD -oxp +obt +pqe +pqe +pqe +nfL aao aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -59906,15 +59912,15 @@ aao aao aao aao -gdK -aqL -dka -fsT -aqL -hKM -aad -aad -dTi +cXp +hls +uft +cRH +hls +jiX +jto +jto +hYD aao aao aao @@ -59936,7 +59942,7 @@ api apS aqV aqV -asi +vzG apd atH aud @@ -59948,35 +59954,35 @@ ako ako ako ako -aAK -apo +qmW +ncn anU -nWG -tpU -jay -aCf -ilH +xaG +qpE +oUS +ehE +mpc anT -aIw -msq -aID -aLw +wtY +yfL +fBV +hkM aMl -aMK +sSv aCZ -aOV +fNo aQd -aIE +vPF anT -aTk -aUk +wZZ +sfQ aKP aKP aKP -aSh -aTr -aTq -aTq +fZd +goX +rqZ +rqZ asH baj baP @@ -59986,8 +59992,8 @@ bda aXr bdY asv -beI -bfs +pvI +rKz asv asv asv @@ -59995,65 +60001,65 @@ asv asv asv asv -bqa -bqa -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bqa -bqa -bja +gsv +gsv +gMi +gMi +gMi +gMi +gMi +gMi +gMi +gMi +gMi +gMi +gsv +gsv +wDm bes mzV eWo mzV mzV mzV -pvp -mIr -ktN +wXD +gYW +oNb aao aao -fOx -fOx -fOx -kSL -fOx -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +kxW +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -oxp +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +nfL aao aao aao @@ -60063,10 +60069,10 @@ aao aao aao aao -tRI -jrD -jrD -oxp +obt +pqe +pqe +nfL aao aao aao @@ -60079,20 +60085,20 @@ aao aao aao aao -tRI -jrD -jrD -jrD -jrD -vqY +obt +pqe +pqe +pqe +pqe +wzI aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -60123,15 +60129,15 @@ aao aao aao aao -akX -akX -akX -akX -wpf -aad -aad -aad -abV +ceb +ceb +ceb +ceb +cQu +jto +jto +jto +sTR aao aao aao @@ -60149,7 +60155,7 @@ amE hqO ako ako -apj +koD ako ako ako @@ -60161,92 +60167,92 @@ ako avI apc axk -axS -mnY -kwq -mnY -aAL -mnY -fDf +csi +ckc +czj +ckc +cDi +ckc +fbA aCY aCZ aET aMQ aCZ anT -aIw -aID -aKC -aLx -aIE +wtY +fBV +naI +xnI +vPF aCZ -aMM +ohb aOW -aQe +tvP aQm aqU -aTk -aUl -aOk -aOk -aOk -aQu -aTr -aTq -aTq +wZZ +uIv +gsE +gsE +gsE +waf +goX +rqZ +rqZ asv aXr baO aXr -bck +hdF aXr aXr bdY asv -beI -bft +pvI +tcp asv -bgm -bgy -bgS -bhm -bhZ +uoa +cmD +laN +tYo +vWO asv -gSg -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bja +oeX +gsv +gsv +gsv +gsv +gsv +gsv +gsv +gsv +gsv +gsv +gsv +gsv +gsv +wDm bes mzV mzV mzV mzV mzV -pcI -eLQ -ktN +vqr +jMl +oNb aao aao -fOx -fOx -fOx -kok -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +tkh +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -60254,25 +60260,25 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -oOk -jrD -jrD -jrD -jrD -jrD -phi -sus +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +gAs +pqe +pqe +pqe +pqe +pqe +uzF +wsj aao aao aao @@ -60280,10 +60286,10 @@ aao aao aao aao -tRI -jrD -jrD -oxp +obt +pqe +pqe +nfL aao aao aao @@ -60296,20 +60302,20 @@ aao aao aao aao -cOl -jrD -jrD -jrD -oxp +sFR +pqe +pqe +pqe +nfL aao aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -60342,12 +60348,12 @@ aao aao aao aao -cAf -eWE -aad -aad -acb -abM +fkI +xEr +jto +jto +tBk +opr aao aao aao @@ -60365,52 +60371,52 @@ pmS pmS hqO ako -aov -apk -apT -aqW -arx +qos +wji +iMc +mPq +suY ako -asW -asU -asW +oHw +qxT +oHw ako avJ apc axl -ovq -apo -aqa -ata -apo -apo -tKR +osI +ncn +xZb +iHU +ncn +ncn +iLb aCo aCZ aEU aMQ gAE anT -aIw -aJs -aJv -aLy +wtY +ntw +dLt +lDV aCZ -aIE +vPF aML -aOX +oQf aQf -aQh +hdy aqU -aTl -aTu -aTu -aTu -aTu -aTu -aTq -aTq -aTq +hmU +rZr +rZr +rZr +rZr +rZr +rqZ +rqZ +rqZ asv asv asv @@ -60420,88 +60426,88 @@ aXr bdB bdW asv -beI -bft +pvI +tcp asv -bgm -bgz -bgB -bgB -bfR +uoa +eYb +fRN +fRN +akb asv -gSg -bqa -bep -bep -bep -bep -bep -bqa -bqa -bqa -bqa -bep -bep -bep -bjc +oeX +gsv +hSo +hSo +hSo +hSo +hSo +gsv +gsv +gsv +gsv +hSo +hSo +hSo +gMO lvy lvy lvy bes mzV -pvp -uvZ +wXD +qwA aao aao aao aao aao -hqS -hqS -tNz -hqS -hqS -hqS -hqS -hqS +ugx +ugx +vHT +ugx +ugx +ugx +ugx +ugx aao aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -oxp +pqe +pqe +pqe +pqe +pqe +pqe +pji +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +nfL aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -sus +pqe +pqe +pqe +pqe +pqe +pqe +wsj aao aao aao @@ -60514,19 +60520,19 @@ aao aao aao aao -tRI -jrD -jrD -vqY +obt +pqe +pqe +wzI aao aao aao aao -jrD -jrD -jcR -jrD -jrD +pqe +pqe +pji +pqe +pqe aao aab aaa @@ -60560,11 +60566,11 @@ aao aao aao aao -qQr -oFj -jJO -bVX -fKO +hBF +cpR +iey +mMk +cWS aao aao aao @@ -60582,25 +60588,25 @@ pmS pmS hqO ako -aov -apk -apU -aoB -arx +qos +wji +itn +cWw +suY ako -apU -apU -aoB +itn +itn +cWw ako apc avJ apc ako -aBu +jLw arD arD -aMk -apo +nRH +ncn anU aCZ aCZ @@ -60608,55 +60614,55 @@ aQa aCZ aCZ anT -aIx -aID -aJv -aLx -aIE +hYC +fBV +dLt +xnI +vPF aCZ -aNZ +buv aOY -aQg +gNZ aCo aqU -aDy -aSg -aSg -aSg -aSg -aSg -aTq -aTq -aTq +lFy +jyb +jyb +jyb +jyb +jyb +rqZ +rqZ +rqZ asv aXr aXr aXr -bck +hdF aXr aXU bdW asv -beI -bft +pvI +tcp asv -bgn -bgz -bgT -bgB -bfR -biE -gSg -bja -bjl +wTC +eYb +jNR +fRN +akb +qqv +oeX +wDm +erH bes bes bes bes -bpX -bqa -bqa -wGF +eBv +gsv +gsv +vPa bes bes bes @@ -60665,8 +60671,8 @@ bes bes bes mzV -pvp -xeN +wXD +oVV aao aao aao @@ -60674,51 +60680,51 @@ aao aao aao kBn -ujD -ujD -ujD -ujD -ujD -nHQ -ujD +qCl +qCl +qCl +qCl +qCl +rRw +qCl kBn aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -cOl -jrD -iml -jrD -jrD -oxp -jrD -jrD -jrD -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -oxp +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +sFR +pqe +hHS +pqe +pqe +nfL +pqe +pqe +pqe +pqe +pji +pqe +pqe +pqe +pqe +pqe +pqe +nfL aao aao aao @@ -60731,19 +60737,19 @@ aao aao aao aao -tRI -jrD -oxp +obt +pqe +nfL aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -60777,103 +60783,103 @@ aao aao aao aao -abY -dtX -akX -akX -jSe +muY +mmh +ceb +ceb +msK aao aao aao aao aao aao -akX -alH +ceb +xXS aao aao aao pmS -akW -alG +uvU +pHp pmS hqO ako -aow -apk -apU -apU -arx +jkA +wji +itn +itn +suY aml -apU -apU -aoB +itn +itn +cWw aml apc apc apc aku -aBu +jLw arD arD -aMk -apo +nRH +ncn anU -fXR +dRH aCo aEU aCZ -aCf +ehE anT -aIy -aIC -aKD -aLz +fON +ibj +eol +cZa aCZ -aIE +vPF aOa -aOZ +gSM aMQ -aMN +oZB aqU -aTk -aQu -aVq -aVq -aVq -aQu -aTr -aTq -aTq +wZZ +waf +eNv +eNv +eNv +waf +goX +rqZ +rqZ asH baj aIo bbC asv asv -bdC +qEH asv asv -beI -bfu -bfQ -bgo -bgA -bgU -bhn -bgB -bET -gSg -bja -bjm +pvI +gOH +geY +vZA +wHF +ydc +iOL +fRN +jwy +oeX +wDm +iMi bes bes bes bes -nbc -bep -bep -bjc +xAP +hSo +hSo +gMO vVZ aao vVZ @@ -60891,53 +60897,53 @@ aao aao aao aao -mDs -mDs -mDs -mDs -mDs -mDs -mDs +oYM +oYM +oYM +oYM +oYM +oYM +oYM aao aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD -jrD -jrD -tRI -jrD -jrD -jrD -jrD -phi -phi -phi -phi -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pji +pqe +pqe +pqe +pqe +obt +pqe +pqe +pqe +pqe +uzF +uzF +uzF +uzF +pqe +pqe rnc rnc rnc rnc -jrD -jrD -phi -sus +pqe +pqe +uzF +wsj aao aao aao @@ -60948,19 +60954,19 @@ aao aao aao aao -tRI -yfz -oxp +obt +pGG +nfL aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -60992,76 +60998,76 @@ aao aao aao aao -abq -iGY -pri -ipo -ipo -rYt -ipo +sjG +okW +agR +hyd +hyd +dKG +hyd aao aao aao aao -akX -akY -akX -akX +ceb +tRD +ceb +ceb aao aao aao aao -akX -alH -pnL +ceb +xXS +uVq aao ako -aov -apk -apV -apU -aoB -ask -aoB -aoB -aoB -ask +qos +wji +mvt +itn +cWw +oUX +cWw +cWw +cWw +oUX apc apc apc aku -aBu +jLw arD arD -aMk -apo +nRH +ncn anU -fXR +dRH aCo aEW aCZ -aCf +ehE anT -aIz -aIC -aKD -aLA -aIE +fhs +ibj +eol +kPC +vPF aML -aOb +tBl aPa -aQh +hdy aRq anT -aTk -aQu -aVr +wZZ +waf +cbJ aVY aKP -aSh -aTr -aTq -aTq +fZd +goX +rqZ +rqZ asv asv asv @@ -61071,26 +61077,26 @@ bdb aXr aXr asv -beI -bbB -bET -bfR -bgB -bgB -bgB -bia +pvI +oSK +jwy +akb +fRN +fRN +fRN +qXA asv -bqa -bto -bjm +gsv +lOj +iMi bes bes bes ejP -ujD -ujD -ujD -ujD +qCl +qCl +qCl +qCl vVZ rjw fCb @@ -61110,11 +61116,11 @@ kBn aao aao kBn -ujD -ujD -ujD -ujD -ujD +qCl +qCl +qCl +qCl +qCl vVZ aao aao @@ -61122,39 +61128,39 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -tRI -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +obt +pqe +pqe +pqe +pqe +pqe rnc rnc rnc rnc -vqY +wzI aao aao aao aao -tRI -jrD -jrD -oxp +obt +pqe +pqe +nfL aao aao aao @@ -61165,19 +61171,19 @@ aao aao aao aao -tRI -jrD -vqY +obt +pqe +wzI aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -61209,105 +61215,105 @@ aao aao aao aao -oRs -aad -alJ -akX -alH -akX -akX +dan +jto +bvh +ceb +xXS +ceb +ceb aao aao aao -wMp -akX -akX -akX -akX -wpf +yaw +ceb +ceb +ceb +ceb +cQu aao aao aao -akY -alH -akX +tRD +xXS +ceb aao ako -aox -apl -apW -apY -ary +rah +gCk +gAZ +ipJ +dUl amm -apY -apY -asY +ipJ +ipJ +qbQ aml atE aww apc aku -aBu +jLw arD arD -aMk -apo +nRH +ncn anU -fXR +dRH rNd aEU aCZ -aCf +ehE anT -bix -aIC -aKD -aLB +lxJ +ibj +eol +jTO aCZ -aMM +ohb jUc -aOX +oQf aQi -aLE -aSe -aTk -aUm -aUk +wNc +lAU +wZZ +kuG +sfQ aKP aKP -aSh -aTr -aTq -aTq -aTq -aTq -aTq -aTq +fZd +goX +rqZ +rqZ +rqZ +rqZ +rqZ +rqZ asv bwA bdD aXU asv -beI -bbB +pvI +oSK asv -bgp -bgp -bgV -bhp -aLi +dco +dco +hgX +qAm +iBX asv -bja -beq -bjm +wDm +hog +iMi bes bhr aao aao -mxf -uij -uij -uVe +jhv +lfg +lfg +jQU brD fCb fCb @@ -61327,38 +61333,38 @@ kBn aao aao aao -pgu -pgu -pgu -pgu -pgu -pgu -pgu -pgu +rXl +rXl +rXl +rXl +rXl +rXl +rXl +rXl aao aao aao aao -oxp -jrD -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD +nfL +pqe +pqe +pji +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao -sqj -jrD -jrD -jrD +tjV +pqe +pqe +pqe rnc rnc -vqY +wzI aao aao aao @@ -61368,11 +61374,11 @@ aao aao aao aao -jrD +pqe hAj -jrD -jrD -sus +pqe +pqe +wsj aao aao aao @@ -61380,21 +61386,21 @@ aao aao aao aao -sqj -phi -jrD -oxp +tjV +uzF +pqe +nfL aao aao aao aao aao aao -jcR -jrD -jrD -jrD -jrD +pji +pqe +pqe +pqe +pqe aao aab aaa @@ -61426,80 +61432,80 @@ aao aao aao aao -akX -hKM -aad -wMp -akX -akX -cAf -akX +ceb +jiX +jto +yaw +ceb +ceb +fkI +ceb aao aao -alJ -akX -akX -akX -wpf -aad -aad -aad -aad -akZ -alI -alH +bvh +ceb +ceb +ceb +cQu +jto +jto +jto +jto +iHN +lpV +xXS aao ako -aov -apk -aoB -aoB -ahq +qos +wji +cWw +cWw +hnO ako -asV -aoB -aue +dVW +cWw +lWw ako xqf apc apc aku -aBu +jLw arD arD -aMk -apo +nRH +ncn anU -aCf +ehE aCZ aQa aCZ -ilH +mpc anT -aIz -aIC -aKD -aLC -aIE +fhs +ibj +eol +mtf +vPF aCo -aOd +ned aPb -aQj +dgX aRr -tKR -aTk -aQu -aUk +iLb +wZZ +waf +sfQ aKP aKP -aSh -aTr -aTq -aTq -aTq -aTq -aTq -aTq +fZd +goX +rqZ +rqZ +rqZ +rqZ +rqZ +rqZ asv asv asv @@ -61514,17 +61520,17 @@ asv asv asv asv -bja -beq -bhq +wDm +hog +eWK bes bes aao aao -neH -whi -bqb -iXp +tXT +mCI +hRb +tFW aao aao rjw @@ -61534,7 +61540,7 @@ aao aao aao pcF -fjP +ude dIb dIb dIb @@ -61544,38 +61550,38 @@ kBn aao aao aao -kSL -kSL -fOx -fOx -fOx -fOx -fOx -fOx +kxW +kxW +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao aao aao -jrD -oxp -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +nfL +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao -tRI -jrD -jrD -oxp -jrD -jrD -jrD +obt +pqe +pqe +nfL +pqe +pqe +pqe aao aao aao @@ -61585,33 +61591,33 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -phi -phi -phi -phi -phi -phi -phi -jrD -jrD -jrD -vqY +pqe +pqe +pqe +pqe +pqe +uzF +uzF +uzF +uzF +uzF +uzF +uzF +pqe +pqe +pqe +wzI aao aao aao aao aao -jrD -jrD -jrD -jrD -jcR -jrD +pqe +pqe +pqe +pqe +pji +pqe aao aab aaa @@ -61643,105 +61649,105 @@ aao aao aao aao -alH -cJG -aad -alJ -akX -akX -vRR -akX +xXS +nXR +jto +bvh +ceb +ceb +nZy +ceb aao aao -abr -akZ -akZ -fhI -aad -aad -aad -aad -aad -aad -alJ -akY +hnF +iHN +iHN +uRv +jto +jto +jto +jto +jto +jto +bvh +tRD aao ako -aoy -apk -aoB -aqW -arx +cZJ +wji +cWw +mPq +suY ako -asW -oDB -asW +oHw +eiD +oHw ako avJ avJ axi ako -aBu +jLw arD arD -aMk +nRH anT anT anY anY -cYI -aGa +cTV +lQL anY anT -aIz -aJt -aKE -aLD +fhs +jmo +tAj +hzw aCZ -aMN +oZB aOe -aPc +btV aQk -aIE +vPF anT -aTk -aQu -aVs +wZZ +waf +pHy aKP aKP -aSh -aXW -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aSg -bep -bep -bep -bep -bep -bep -bep -bep -bep -kIW -bjc -bjm +fZd +oWG +jyb +jyb +jyb +jyb +jyb +jyb +jyb +jyb +jyb +jyb +hSo +hSo +hSo +hSo +hSo +hSo +hSo +hSo +hSo +rJn +gMO +iMi bes bes bes aao kBn -ujD -ujD -ujD -ujD +qCl +qCl +qCl +qCl vVZ brE fCb @@ -61760,39 +61766,39 @@ dIb kBn aao aao -fOx -fOx -kSL -fOx -fOx -fOx -fOx -fOx -fOx -fOx +jEF +jEF +kxW +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao -sqj -jrD -jrD -jrD -oxp -jrD -jrD -jrD +tjV +pqe +pqe +pqe +nfL +pqe +pqe +pqe aao aao aao @@ -61802,33 +61808,33 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pji +pqe +pqe rnc -vqY -jrD +wzI +pqe aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe aao aab aaa @@ -61860,32 +61866,32 @@ aao aao aao aao -akY -akX -hKM -aad -wMp -akX -akX -wpf +tRD +ceb +jiX +jto +yaw +ceb +ceb +cQu aao aao -abr -aad -aad -aad -aad -aad -aad -aad -aad -oRs -tLt -akY +hnF +jto +jto +jto +jto +jto +jto +jto +jto +dan +fHv +tRD aao akL akU -apm +iyX akU akU akL @@ -61898,10 +61904,10 @@ cQO apc avJ ako -aBu +jLw arD arD -aMk +nRH anU aCi aCZ @@ -61911,54 +61917,54 @@ aCo aGL anT anT -aJz +iHO anT anT -aIE +vPF aMO -aOf +noK aPa -aQl +ofS aCo aqU -aTk -aUk +wZZ +sfQ aKP aKP aKP -aWK -aVq -aQu -aQu -aVq -aVq -aQu -aQu -aQu -aQu -aVq -aVq -beq -beq -beq -beq -beq -beq -beq -beq -beq -rBK -bfw -bhq +vAo +eNv +waf +waf +eNv +eNv +waf +waf +waf +waf +eNv +eNv +hog +hog +hog +hog +hog +hog +hog +hog +hog +pUj +pXa +eWK bes bes bes bes aao -mxf -uij -uij -uVe +jhv +lfg +lfg +jQU vVZ vVZ vVZ @@ -61976,24 +61982,24 @@ dIb iZA kBn aao -fOx -fOx -fOx -kVS -fOx -dov -fOx -fOx -fOx -fOx -oye +jEF +jEF +jEF +nsL +jEF +cOy +jEF +jEF +jEF +jEF +jve aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -62002,14 +62008,14 @@ aao aao aao aao -tRI -jrD -jrD -nbi -oxp -jrD -jrD -jrD +obt +pqe +pqe +gGr +nfL +pqe +pqe +pqe aao aao aao @@ -62019,9 +62025,9 @@ aao aao aao aao -jrD -phi -jrD +pqe +uzF +pqe rnc rnc rnc @@ -62031,20 +62037,20 @@ rnc rnc rnc rnc -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aao aab @@ -62079,46 +62085,46 @@ aao aao aao aao -hKM -aad -aad -akZ -akZ -abM +jiX +jto +jto +iHN +iHN +opr aao aao -cJG -aad -aad -aad -aad -oRs -oRs -aad -alJ -akX -akX +nXR +jto +jto +jto +jto +dan +dan +jto +bvh +ceb +ceb aao aao akL -aoA -apk -apX -apU -arA -apU -asX -aoB -auf +jXG +wji +wQf +itn +vPJ +itn +bMJ +cWw +sMT uwV ant ant ant ako -aBu +jLw arD arD -aMk +nRH anU aCj aCo @@ -62127,55 +62133,55 @@ aEU aCZ aCZ anT -aIA -aJv -aKF +reV +dLt +djD anT aCZ -aMP +ebY aOg -aPe +uoP aQm -aLE +wNc aqU -aTk -aUk +wZZ +sfQ aKP aKP aKP aKP aKP -aWK -aQu +vAo +waf aKP aKP -aWK -aVq -aVq -aVs +vAo +eNv +eNv +pHy aKP aKP -ber -beq -beq -beq -beq -beq -beq -beq -bhq +rEd +hog +hog +hog +hog +hog +hog +hog +eWK iVi bes bes bes -bkh -bkV -bkV -aao -cAs -mDs -mDs -ooD +ekD +tEM +tEM +aao +vqx +oYM +oYM +mjh vVZ fCb fCb @@ -62192,25 +62198,25 @@ dIb dIb kBn kBn -kSL -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -dov -fOx -gOr -jrD -jrD -jrD -jcR -jrD -jrD +kxW +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +cOy +jEF +jbB +pqe +pqe +pqe +pji +pqe +pqe aao aao aao @@ -62219,14 +62225,14 @@ aao aao aao aao -tRI -jrD +obt +pqe rnc -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -62236,32 +62242,32 @@ aao aao aao aao -tRI -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +obt +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe aao aao aab @@ -62297,45 +62303,45 @@ aao aao aao aao -abr -aad -aad -aad -aad -tLt +hnF +jto +jto +jto +jto +fHv aao -akX -hKM -aad -aad -tLt -akX -akX -cJG -tLt -akX +ceb +jiX +jto +jto +fHv +ceb +ceb +nXR +fHv +ceb aao aao aao akL -aoB -apk -aoB -apU -apU -apU -aoB -apU -aoB +cWw +wji +cWw +itn +itn +itn +cWw +itn +cWw akL -gbA -aqa -aqa -aqa -rzR -cHH -aCW -aMk +vNX +xZb +xZb +xZb +xdD +ohZ +eGC +nRH anU aOc aCo @@ -62343,20 +62349,20 @@ aCo aEZ aGb aEd -aHL -aIB -aJw -aKG +muS +fdU +qFo +kas anT -aMm +nmL aMQ -aOd +ned aPb -aIE +vPF aCZ aqU -aTk -aUk +wZZ +sfQ aVt aKP aKP @@ -62373,27 +62379,27 @@ aKP aKP aKP bes -ber -bfw -bfw -bfw -bfw -bfw -bhq +rEd +pXa +pXa +pXa +pXa +pXa +eWK bes iVi bes bes bes -bki -beq -beq -aao -cAs -mDs -mDs -ooD -myY +sWH +hog +hog +aao +vqx +oYM +oYM +mjh +rzJ kTs fCb bsH @@ -62408,25 +62414,25 @@ dIb dIb dIb ssE -kSL -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -gOr -jrD -jrD -jrD -jrD -jrD +kxW +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jbB +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -62436,48 +62442,48 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -sus -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +wsj +pqe aao -sqj -phi -phi -phi -phi -phi -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +tjV +uzF +uzF +uzF +uzF +uzF +pqe +pqe +pqe +pqe +pqe +pqe +pji +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -62514,45 +62520,45 @@ aao aao aao aao -abs -aad -aad -aad -alJ -akX -vRR -akX -hKM -aad -alJ -akX -akX -akY -akX -vRR -akX +lRL +jto +jto +jto +bvh +ceb +nZy +ceb +jiX +jto +bvh +ceb +ceb +tRD +ceb +nZy +ceb aao aao aao akL -aoB -apn -apY -apY -arB -apY -asY -aoB -aug +cWw +mSM +ipJ +ipJ +qgD +ipJ +qbQ +cWw +pqQ akL -xgm -aCc -aCc -aCc -aCc -aCc -aCd -aMk +cFF +oYz +oYz +oYz +oYz +oYz +tbx +nRH anT aCl aDa @@ -62560,21 +62566,21 @@ aDa aFa aEU aCZ -tKR -aIC -aJx -aKH +iLb +ibj +cZS +nns anT aCZ -aIE +vPF aCZ -aQc +wLW aQn -aIE +vPF anT -aTk -aQu -aVr +wZZ +waf +cbJ aKP aKP aKP @@ -62601,16 +62607,16 @@ bes iVi bes bes -bkh -beq -beq +ekD +hog +hog aao aao -cAs -mDs -mDs -ooD -myY +vqx +oYM +oYM +mjh +rzJ fCb fCb fCb @@ -62625,23 +62631,23 @@ dIb dIb dIb ssE -kSL -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -gOr -jrD -jrD -jrD +kxW +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jbB +pqe +pqe +pqe aao aao aao @@ -62653,48 +62659,48 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jcR -oxp -jrD -sqj -jrD -jrD -jrD -jrD -jrD -jrD -jrD -oxp -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pji +nfL +pqe +tjV +pqe +pqe +pqe +pqe +pqe +pqe +pqe +nfL +pji +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao -jrD -jrD -jrD -yfz -jrD -jrD +pqe +pqe +pqe +pGG +pqe +pqe aao aao aao @@ -62732,44 +62738,44 @@ aao aao aao aao -abs +lRL abO -aad -tLt -akY -akX -wpf -aad -aad -alJ -akX -akX -akX -akX +jto +fHv +tRD +ceb +cQu +jto +jto +bvh +ceb +ceb +ceb +ceb aao aao aao aao aao akL -agP -aoB -apZ -aoB -arC -aoB -auh -aoB -auh +wWh +cWw +hFQ +cWw +pZN +cWw +jER +cWw +jER akL -aBu -aCc -pLH -lIS -jmD -ivW -aCd -aMk +jLw +oYz +pJq +erD +kSB +rFu +tbx +nRH anT aCm aCZ @@ -62778,20 +62784,20 @@ aCZ aQa aCZ anT -aID -aJv -aKI +fBV +dLt +wsk anT -aMn +fiK aEd -aOh +bjP aPh -aOV +fNo aCZ aqU -aTk -aUn -aUk +wZZ +tpV +sfQ aKP aKP aKP @@ -62818,15 +62824,15 @@ bes iVi bes bes -bki -bky +sWH +flJ aao aao aao -cAs -mDs -mDs -ooD +vqx +oYM +oYM +mjh vVZ fCb kTs @@ -62842,21 +62848,21 @@ dIb dIb kBn kBn -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -dov -fOx +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +cOy +jEF gio -fOx -gOr -jrD +jEF +jbB +pqe aao aao aao @@ -62870,48 +62876,48 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe rnc rnc rnc -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe rnc -vqY +wzI aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pji +pqe +pqe aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -62950,16 +62956,16 @@ aao aao aao aao -abr -alJ -akX -buQ -akX -hKM -aad -aad -tLt -akX +hnF +bvh +ceb +iFC +ceb +jiX +jto +jto +fHv +ceb aao aao aao @@ -62979,14 +62985,14 @@ akL akL akL akL -aBu -aCc -pLH -pgh -aao -kzF -ivW -aMk +jLw +oYz +pJq +oNv +aao +lvJ +rFu +nRH anU aCn aCZ @@ -62996,19 +63002,19 @@ aQa aCZ anT anT -aJz +iHO anT anT aEU -aLE +wNc aML -aOb +tBl aQo -aQl +ofS aqU -qhl -aVv -aUk +ucy +lbu +sfQ aKP aKP aKP @@ -63035,15 +63041,15 @@ bes iVi bes bes -bki -beq +sWH +hog aao aao aao -sJq -bpZ -bpZ -qkC +cET +wOi +wOi +nZp vVZ kTs fCb @@ -63056,20 +63062,20 @@ pcF kBn kBn kBn -fjP +ude kBn -fOx -fOx -fOx -fOx -dov -fOx -fOx -fOx -fOx -fOx -fOx -oye +jEF +jEF +jEF +jEF +cOy +jEF +jEF +jEF +jEF +jEF +jEF +jve aao aao aao @@ -63086,25 +63092,25 @@ aao aao aao aao -sqj -oxp -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +tjV +nfL +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe rnc -jrD -jrD -jrD -jrD -jrD -jrD -oxp -jrD +pqe +pqe +pqe +pqe +pqe +pqe +nfL +pqe aao aao aao @@ -63113,22 +63119,22 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -63168,12 +63174,12 @@ aao aao aao aao -mEC -fGK -fGK -fGK -mEC -mEC +mzH +brt +brt +brt +mzH +mzH aao aao aao @@ -63187,23 +63193,23 @@ aao aao aao aao -tAW -aqa -aqa -aqa -aqa -ata -ata -ata -aqa -rzR -aCc -aCc -pgh +eyn +xZb +xZb +xZb +xZb +iHU +iHU +iHU +xZb +xdD +oYz +oYz +oNv aao aao -fEE -aMk +fTI +nRH anU aCo aCZ @@ -63212,20 +63218,20 @@ aCo aQa aCZ anT -cOu +rmS aJA -aKJ +shu aEd -aMo +nnL aCZ -aMM +ohb aPi -aQp +ode aQm aqU -qhl -sEh -aUk +ucy +rvX +sfQ aKP aKP aKP @@ -63252,15 +63258,15 @@ bes iVi bes bes -bki +sWH aao aao aao aao -lSS -nUV -nUV -rRO +fvN +bIa +bIa +nMV pbr pbr pbr @@ -63273,19 +63279,19 @@ pcF aao aao aao -wbp -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +fth +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -63303,25 +63309,25 @@ aao aao aao aao -tRI -oxp -jrD -jrD -jrD -jrD +obt +nfL +pqe +pqe +pqe +pqe aao aao aao aao aao -tRI -jrD -jrD -jrD -iml -jrD -vqY -jrD +obt +pqe +pqe +pqe +hHS +pqe +wzI +pqe aao aao aao @@ -63330,21 +63336,21 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -63385,11 +63391,11 @@ aao aao aao tqS -xWl -xWl -gIT -xWl -xWl +sie +sie +vEH +sie +sie tqS aao aao @@ -63400,27 +63406,27 @@ aao aao aao aao -amG +hbY aao aao aao aao aao aao -aCc -oFx -aCc -aCc -aCc -pLH -aCc -aCc -aCc -ukW -kzF +oYz +xPK +oYz +oYz +oYz +pJq +oYz +oYz +oYz +ccs +lvJ aao -fEE -aMk +fTI +nRH anU aCp aDb @@ -63430,19 +63436,19 @@ aQa aCZ anT aIF -eaZ +kKh aCZ -aLE +wNc aMp -aLE +wNc aCo -aPj +eIv aQq -aRs +keT anT -qhl -wIj -aUk +ucy +xkA +sfQ aKP aKP aKP @@ -63473,33 +63479,33 @@ aao aao aao aao -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao aao aao aao -fOx -fOx -dov -fOx -kSL -fOx -fOx -fOx -fOx -fOx +jEF +jEF +cOy +jEF +kxW +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -63520,25 +63526,25 @@ aao aao aao aao -tRI -oxp -jrD -jrD -jrD -jrD +obt +nfL +pqe +pqe +pqe +pqe aao aao aao aao aao -tRI -jrD -jrD -jrD -jrD -oxp -jrD -jrD +obt +pqe +pqe +pqe +pqe +nfL +pqe +pqe aao aao aao @@ -63548,18 +63554,18 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pji +pqe +pqe aao aao aao @@ -63602,11 +63608,11 @@ aao aao aao tqS -sFv -xRn -xRn -xRn -dgH +lTl +nGk +nGk +nGk +lbs tqS aao aao @@ -63617,9 +63623,9 @@ aao aao aao aao -wQC -gXp -eMX +euL +tEI +kyB aao aao aao @@ -63627,23 +63633,23 @@ aao aao aao aao -hgr -hgr +pkQ +pkQ aao aao -pLH -aCc -pLH -ukW -rrF -kpd -aMk +pJq +oYz +pJq +ccs +qJt +rbd +nRH anW anW anW anW anW -aGc +lHs anW anW anW @@ -63657,24 +63663,24 @@ anW anW anW anW -aDy -wIj -aUk +lFy +xkA +sfQ aKP aKP aKP aKP -aSi -aZe -aTu -aZe -aZe -aZe -aTu -aZe -aZe -aTu -kwQ +bXy +vfB +rZr +vfB +vfB +vfB +rZr +vfB +vfB +rZr +arv bes bes bes @@ -63690,32 +63696,32 @@ aao aao aao aao -fOx -fOx -nrw -nrw -nrw -qoj -fOx -kok -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -kSL -fOx -fOx -fOx -fOx +jEF +jEF +mSo +mSo +mSo +nBO +jEF +tkh +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +kxW +jEF +jEF +jEF +jEF aao aao aao @@ -63737,25 +63743,25 @@ aao aao aao aao -tRI -oxp -jrD -jrD -jrD -jrD +obt +nfL +pqe +pqe +pqe +pqe aao aao aao aao aao -cOl +sFR rnc rnc rnc rnc -vqY -jrD -jrD +wzI +pqe +pqe aao aao aao @@ -63766,17 +63772,17 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -63819,11 +63825,11 @@ aao aao aao tqS -xWl -xWl -xWl -xWl -xWl +sie +sie +sie +sie +sie tqS aao aao @@ -63832,56 +63838,56 @@ aao aao aao aao -qQn -gXp -tQw -tQw -tQw -eMX +kme +tEI +gWT +gWT +gWT +kyB aao aao aao aao aao -tQj -kzF -kzF -lAC +faA +lvJ +lvJ +jwm aao aao -aCc -aCc -aCc -aCc -pLH -bMz -apo +oYz +oYz +oYz +oYz +pJq +lpx +ncn anW -qsV -vFA -heD -wKA -nhF +aZp +sEd +tCo +rtd +ubk anW -eBL -qsV -qsV +jyq +aZp +aZp anW -qsV +aZp anW -eBL -eBL -eBL +jyq +jyq +jyq anW -aTq -aDy -sEh -aUk +rqZ +lFy +rvX +sfQ aKP aWL aKP aKP -aTr +goX atb atb atP @@ -63891,7 +63897,7 @@ atP atP atb gAK -bja +wDm bes bes bes @@ -63906,31 +63912,31 @@ aao aao aao aao -fOx -fOx -fOx -fOx -fOx -fOx -fOx -nrw -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -kSL -fOx +jEF +jEF +jEF +jEF +jEF +jEF +jEF +mSo +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +kxW +jEF aao aao aao @@ -63954,12 +63960,12 @@ aao aao aao aao -tRI -oxp -jrD -jcR -jrD -jrD +obt +nfL +pqe +pji +pqe +pqe aao aao aao @@ -63967,12 +63973,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -63983,16 +63989,16 @@ aao aao aao aao -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pji +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -64035,80 +64041,80 @@ aao aao aao aao -azF -azF -azF -azF -azF -azF +xzp +xzp +xzp +xzp +xzp +xzp aao aao -tQw -tQw -tQw -tQw -tQw -tQw -pIN -tQw +gWT +gWT +gWT +gWT +gWT +gWT +cBK +gWT xFZ anj -tQw -tQw -aao -aao -aao -bQG -vXJ -khB -tQj -kzF -fEE -pLH -ovQ -aCc -aCc -aCc -aCc -aCc -aCc -aMk +gWT +gWT +aao +aao +aao +vfL +efv +fHf +faA +lvJ +fTI +pJq +dBD +oYz +oYz +oYz +oYz +oYz +oYz +nRH anW -qsV -aEi -aEi -wKA -aEi -aJC -aEi -aEi -vFA -vUN -vFA -wET -aEi -aEi -aEi +aZp +rtU +rtU +rtd +rtU +lGN +rtU +rtU +sEd +huK +sEd +moC +rtU +rtU +rtU aqx -aTq -aDy -wIj -aUk +rqZ +lFy +xkA +sfQ aKP aKP aKP aKP -aTr +goX atb -aZH -bal -bal -bal -bal -bal -bdE +jzw +juC +juC +juC +juC +juC +oSS atb -bja +wDm bes bes bes @@ -64123,29 +64129,29 @@ aao aao aao aao -fOx -fOx -fOx -dov -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +cOy +jEF +jEF +jEF +jEF +jEF aao aao -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -64171,12 +64177,12 @@ aao aao aao aao -tRI -jrD -jrD -jrD -jrD -jrD +obt +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -64184,12 +64190,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jcR +pqe +pqe +pqe +pqe +pqe +pji aao aao aao @@ -64201,14 +64207,14 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -64251,81 +64257,81 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -pIN -tQw -tQw -tQw -wQC -tQw -ahx -tQw -pIN -eFh -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +cBK +gWT +gWT +gWT +euL +gWT +goU +gWT +cBK +xoe +gWT +gWT +gWT +gWT aao aao -fxZ -vXJ -vXJ -vXJ -bQG -jAX -fEE -pLH -ovQ -aCc -aCc -pLH -aCc -aCc -pLH -aMk +rqY +efv +efv +efv +vfL +rjh +fTI +pJq +dBD +oYz +oYz +pJq +oYz +oYz +pJq +nRH anW -qsV -vFA -aDe -aGe +aZp +sEd +vvJ +pJR unS unS unS -mIs +wpq kAj qJM pSf -aEi +rtU pSf iEm -lmO +loy aqx -aTq -aDy -wIj -aQu -aVr +rqZ +lFy +xkA +waf +cbJ aKP aKP aKP -aTr +goX atd -nRT -bam -bal -bbD -bal -bdd -nRT +qvv +irG +juC +gzk +juC +pEl +qvv atb -bja +wDm bes bes bes @@ -64340,28 +64346,28 @@ aao aao aao aao -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao -fOx -fOx -fOx -dov -fOx -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +cOy +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -64387,13 +64393,13 @@ aao aao aao aao -jrD -tRI -jrD -jrD -jrD -jrD -jrD +pqe +obt +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -64401,12 +64407,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -64419,12 +64425,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -64468,81 +64474,81 @@ aao aao aao aao -tQw -ahw -tQw -tQw -tQw -ahw -tQw -pIN -tQw -tQw -mRi -wQC -tQw -tQw -tQw +gWT +iBs +gWT +gWT +gWT +iBs +gWT +cBK +gWT +gWT +bNY +euL +gWT +gWT +gWT kfk -tQw -tQw -tQw -tQw -tQw -aao -bQG -vXJ -vXJ -vXJ -vXJ -khB -jAX -kzF -ivW -vkf -aCc -pLH -aCc -aCc -aCc -aCc -aMk +gWT +gWT +gWT +gWT +gWT +aao +vfL +efv +efv +efv +efv +fHf +rjh +lvJ +rFu +xkN +oYz +pJq +oYz +oYz +oYz +oYz +nRH anW anW -dLS -aDg -nFp +slr +cVS +mQi pSf dNX pSf -aEi +rtU moe unS unS -aQt +jFl unS rKe -eeI +kxs anW -aTq -qhl -wIj -aQu -aUk +rqZ +ucy +xkA +waf +sfQ aKP aKP aKP -aTr +goX atd -nRT -ban -baR -bbE -baR -baR -nRT +qvv +wRZ +iBl +mcK +iBl +iBl +qvv atb -bja +wDm bes bes bes @@ -64558,24 +64564,24 @@ aao aao aao aao -fOx -fOx -fOx -kSL -fOx -fOx -fOx +jEF +jEF +jEF +kxW +jEF +jEF +jEF aao aao aao aao aao -fOx -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao @@ -64603,13 +64609,13 @@ aao aao aao aao -sqj -jrD -jrD -jrD -jrD -sus -jrD +tjV +pqe +pqe +pqe +pqe +wsj +pqe aao aao aao @@ -64618,12 +64624,12 @@ aao aao aao aao -jcR -jrD -jrD -jrD -jrD -jrD +pji +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -64636,11 +64642,11 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -64685,81 +64691,81 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -pIN -tQw -ahw -tQw -wQC -tQw -tQw -sNQ +gWT +gWT +gWT +gWT +gWT +gWT +gWT +cBK +gWT +iBs +gWT +euL +gWT +gWT +dyT aao -wQC -tQw -tQw -ahw -tQw -tQw -idT -vXJ -vXJ -vXJ -vXJ -vXJ +euL +gWT +gWT +iBs +gWT +gWT +ybD +efv +efv +efv +efv +efv aao aao -kzF -lSb -aCc -aCc -aCc -aCc -aCc -aCc -aMk +lvJ +isd +oYz +oYz +oYz +oYz +oYz +oYz +nRH anW -wHM -sSY -mUb -sdl -vFA -vFA -vFA -aEi -aEi -aEi -aHO -fWY +wmC +mer +pUR +rnq +sEd +sEd +sEd +rtU +rtU +rtU +vDM +wrN pSf qcE -mIs -aRu -nnK -mNT -wIj -aQu -aUk +wpq +jKg +cKD +wgS +xkA +waf +sfQ aKP aKP -aMR -aTr +hDH +goX atb -nRT -bao -baS -bbF -bao -baS -bdF +qvv +vNd +uEP +bFZ +vNd +uEP +vJd atb -bja +wDm bes bes aEX @@ -64776,22 +64782,22 @@ aao aao aao aao -fOx -fOx -fOx -fOx -fOx -fOx +jEF +jEF +jEF +jEF +jEF +jEF aao aao aao aao aao -qoj -fOx -fOx -fOx -fOx +nBO +jEF +jEF +jEF +jEF aao aao aao @@ -64820,13 +64826,13 @@ aao aao aao aao -tRI -jrD -jrD -jrD -tRI -jrD -sus +obt +pqe +pqe +pqe +obt +pqe +wsj aao aao aao @@ -64835,12 +64841,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +pqe +pqe +pqe +pqe +pqe +pqe aao aao aao @@ -64854,10 +64860,10 @@ aao aao aao aao -gOr -gOr -gOr -gOr +jbB +jbB +jbB +jbB aao aao aao @@ -64901,82 +64907,82 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -ujC -ujC -tQw -pIN -tQw -qvA -tQw -wQC -tQw -dKR +gWT +gWT +gWT +gWT +gWT +fRd +fRd +gWT +cBK +gWT +vFq +gWT +euL +gWT +iJd aao aao -gmN -tQw -tQw -ujC -ujC -tQw -ukv -bQG -vXJ -vXJ +nwN +gWT +gWT +fRd +fRd +gWT +hju +vfL +efv +efv aao aao aao aao aao -pJn -ivW -pLH -pLH -aCc -aCc -aCc -aMk +dIW +rFu +pJq +pJq +oYz +oYz +oYz +nRH anW -pyq -tlU -pyq -tlU -aEi -jNN -qWA -aJD -aKO -aEi -aHO -fJW -aEi -sHO -vFA -ocA -aTq -qhl -wIj -aQu -aQu -aOk -aOk -aQu -aTr +jbv +mYq +jbv +mYq +rtU +vhc +eDi +xmp +pdr +rtU +vDM +lKg +rtU +hsR +sEd +mSW +rqZ +ucy +xkA +waf +waf +gsE +gsE +waf +goX atd -nRT -bap -baT -bbF -bap -baT -nRT +qvv +sjc +snQ +bFZ +sjc +snQ +qvv atb -bja +wDm bes bes aEX @@ -64994,10 +65000,10 @@ aao aao aao aao -fOx -fOx -kSL -fOx +jEF +jEF +kxW +jEF aao aao aao @@ -65005,12 +65011,12 @@ aao aao aao aao -qoj -fOx -gCE -gCE -gCE -gCE +nBO +jEF +giP +giP +giP +giP aao aao aao @@ -65035,15 +65041,15 @@ aao aao aao aao -gNz -cpc -bLA -bLA -bLA +fhj +cfj +cbd +cbd +cbd aao -dEr -bLA -sIP +fEx +cbd +eLG aao aao aao @@ -65052,11 +65058,11 @@ aao aao aao aao -bLA -bLA -bLA -bLA -bLA +cbd +cbd +cbd +cbd +cbd aao aao aao @@ -65071,10 +65077,10 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao @@ -65118,82 +65124,82 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -pIN -tQw -tQw -tQw -tQw -tQw -rLR +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +cBK +gWT +gWT +gWT +gWT +gWT +ral aao aao aao -gmN -tQw -ujC -ujC -tQw -tQw -mda -mda +nwN +gWT +fRd +fRd +gWT +gWT +oDp +oDp aao aao aao -kzF -lAC -kzF -kzF -lAC -jPQ -ivW -aCc -aCc -aCc -aMk +lvJ +jwm +lvJ +lvJ +jwm +pUp +rFu +oYz +oYz +oYz +nRH anW anW anW anW anW -drx -aHO -lDa -lDa -aKO -aEi -aEi -rBn -oes -nnA -jUJ +mFu +vDM +fDo +fDo +pdr +rtU +rtU +vaD +fJh +ymf +src anW -aTq -phx -aTt -aSf -aSf -aWM -aSf -aSf -aYv +rqZ +nKk +gfR +jtj +jtj +wJv +jtj +jtj +rKG atd -nRT -baq -baU -bbF -bar -baU -nRT +qvv +pVG +oiR +bFZ +qGi +oiR +qvv atb -bja +wDm bes bes bes @@ -65211,28 +65217,28 @@ aao aao aao aao -gCE -gCE -ecK -gCE +giP +giP +wjN +giP aao aao aao aao aao -gCE -gCE -gCE -rAs -rAs -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +lUS +lUS +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -65252,15 +65258,15 @@ aao aao aao aao -bTW -izh -jGd -izh -izh +oCA +cbx +kKN +cbx +cbx aao -lUq -izh -uPm +qzQ +cbx +kWR aao aao aao @@ -65269,11 +65275,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -65288,10 +65294,10 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao @@ -65334,83 +65340,83 @@ aao aao aao aao -tQw -tQw -tQw -tQw -ujC -ujC -tQw -tQw -tQw +gWT +gWT +gWT +gWT +fRd +fRd +gWT +gWT +gWT aao -laj -tQw -tQw -tQw -eFh +oPG +gWT +gWT +gWT +xoe aao aao aao aao aao -wQC -tQw -tQw -tQw -ahw -tQw -tQw +euL +gWT +gWT +gWT +iBs +gWT +gWT aao aao aao aao -kzF -kzF -kzF +lvJ +lvJ +lvJ aao aao aao -aCc -aCc -aCc -aMk -apo -apo -nrA -apo +oYz +oYz +oYz +nRH +ncn +ncn +kqG +ncn anW -voz -wBK -wBK -vFA -hho -wBK -aEi -aEi -aEi -iaS -aui +suK +hlK +hlK +sEd +pPZ +hlK +rtU +rtU +rtU +jaM +oOF aqx -aTq -aDy -aTp -aSg -aSg -aSg -aSg -aSg -qhl +rqZ +lFy +xdh +jyb +jyb +jyb +jyb +jyb +ucy atb -nRT -bap -baT -bbF -bcl -baT -nRT +qvv +sjc +snQ +bFZ +lXM +snQ +qvv atb -bja +wDm bes bes bes @@ -65428,31 +65434,31 @@ bes aao aao aao -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP aao -gCE +giP aao aao -gCE -gCE -gCE +giP +giP +giP gpg gpg gpg -gCE -gCE -gCE +giP +giP +giP gpg -gCE -gCE -gCE -gCE -gCE -buy +giP +giP +giP +giP +giP +dad aao aao aao @@ -65468,16 +65474,16 @@ aao aao aao aao -fRH -izh -izh -izh -izh +gea +cbx +cbx +cbx +cbx aao aao aao -bTW -uPm +oCA +kWR aao aao aao @@ -65486,11 +65492,11 @@ aao aao aao aao -izh -izh -jGd -izh -izh +cbx +cbx +kKN +cbx +cbx aao aao aao @@ -65505,10 +65511,10 @@ aao aao aao aao -izh -izh -jGd -izh +cbx +cbx +kKN +cbx aao aao aao @@ -65551,83 +65557,83 @@ aao aao aao aao -tQw -ahw -tQw -tQw -ujC -ujC -tQw -tQw -tQw +gWT +iBs +gWT +gWT +fRd +fRd +gWT +gWT +gWT aao aao -wQC -tQw -tQw -tQw -kBB +euL +gWT +gWT +gWT +bom aao aao aao aao -wQC -tQw -tQw -tQw -tQw -ujC -tQw -tQw +euL +gWT +gWT +gWT +gWT +fRd +gWT +gWT aao aao aao -kzF -lAC +lvJ +jwm aao aao aao aao -pLH -pLH -aCc -aMk -apo -apo -apo -apo +pJq +pJq +oYz +nRH +ncn +ncn +ncn +ncn anW -lTC -nuQ -whw -vFA -prU -whw -mKi -esS -sEb -sEb -nkE +tGT +fjr +uxR +sEd +lzL +uxR +fFt +fXt +qLo +qLo +vhZ aqx -aTq -aDy -wIj -aQu -aVq -aVq -aQu -aQu -aYx +rqZ +lFy +xkA +waf +eNv +eNv +waf +waf +vIh atd -nRT -bar -baU -bbF -bar -baU -nRT +qvv +qGi +oiR +bFZ +qGi +oiR +qvv atb -bja +wDm bes bes bes @@ -65645,31 +65651,31 @@ bes aao aao aao -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -usG -gCE -gCE -gCE -qFY +giP +giP +xfp +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +fMk +giP +giP +giP +tgl aao aao aao @@ -65685,16 +65691,16 @@ aao aao aao aao -bTW -izh -uPm -izh -izh +oCA +cbx +kWR +cbx +cbx aao aao aao -bTW -uPm +oCA +kWR aao aao aao @@ -65703,11 +65709,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -65722,10 +65728,10 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao @@ -65767,35 +65773,35 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +iBs +gWT aao aao aao -wQC -pbK -tQw -tQw -rLR +euL +hfJ +gWT +gWT +ral aao aao aao aao -wQC -tQw -eFh -tQw -ujC -ujC -tQw -tQw +euL +gWT +xoe +gWT +fRd +fRd +gWT +gWT aao aao aao @@ -65807,12 +65813,12 @@ aao aao aao aao -rLM -aMk -apo -apo -apo -apo +fqI +nRH +ncn +ncn +ncn +ncn anW anW anW @@ -65826,25 +65832,25 @@ aoc aoc anW anW -aTq -qhl -wIj -aUk +rqZ +ucy +xkA +sfQ aKP aKP -aWK -aQu -aYx +vAo +waf +vIh atd -nRT -bap -baT -bbF -bap -baT -bdG +qvv +sjc +snQ +bFZ +sjc +snQ +fcU atb -bja +wDm bes bes bes @@ -65862,32 +65868,32 @@ bes aao aao aao -gCE -gCE -gCE +giP +giP +giP gpg -gCE -gCE +giP +giP gpg gpg -gCE -gCE -wWK -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -usG -gCE -gCE -gCE -sfI +giP +giP +xfp +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP +fMk +giP +giP +giP +fdg aao aao aao @@ -65900,18 +65906,18 @@ aao aao aao aao -fRH -tgL -izh -izh -sLr -izh -izh +gea +unc +cbx +cbx +dXT +cbx +cbx aao aao aao -bTW -uPm +oCA +kWR aao aao aao @@ -65920,11 +65926,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -65939,10 +65945,10 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao @@ -65983,38 +65989,38 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aao -wQC -tQw -tQw -eFh +euL +gWT +gWT +xoe aao -jgW -gXp -eMX +oOO +tEI +kyB aao -wQC -tQw -tQw -gXp -gXp -tQw -ahw -tQw -tQw -tQw +euL +gWT +gWT +tEI +tEI +gWT +iBs +gWT +gWT +gWT aao aao aao @@ -66025,43 +66031,43 @@ aao aao aao arD -bMz -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aTq -qhl -wIj -aUk +lpx +xZb +xZb +xZb +xZb +xZb +xZb +xZb +xZb +xZb +jyb +jyb +jyb +jyb +jyb +jyb +jyb +jyb +rqZ +ucy +xkA +sfQ aKP aKP aKP -aSh -aYx +fZd +vIh atb -nRT -bar -baU -bbF -bar -baU -nRT +qvv +qGi +oiR +bFZ +qGi +oiR +qvv atb -bja +wDm bes bes bes @@ -66080,31 +66086,31 @@ aao aao aao aao -gCE -gCE -gCE -ecK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -ecK -gCE -gCE -qFY +giP +giP +giP +wjN +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +xfp +giP +wjN +giP +giP +tgl aao aao aao @@ -66117,18 +66123,18 @@ aao aao aao aao -bTW -izh -izh -sLr -izh -izh +oCA +cbx +cbx +dXT +cbx +cbx aao aao aao aao -bTW -uPm +oCA +kWR aao aao aao @@ -66137,11 +66143,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -66156,10 +66162,10 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao @@ -66200,44 +66206,44 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aao aao -wQC -tQw -tQw -tQw -qQn -tQw -tQw -tQw -gXp -tQw -ahx -ujC -ujC -aij -tQw -tQw -tQw -tQw -tQw -pIN -tQw -tQw -tQw -gXp -eMX +euL +gWT +gWT +gWT +kme +gWT +gWT +gWT +tEI +gWT +goU +fRd +fRd +mTL +gWT +gWT +gWT +gWT +gWT +cBK +gWT +gWT +gWT +tEI +kyB aao aao aao @@ -66259,26 +66265,26 @@ aKP aKP aKP aKP -aMR -aTr -aDy -wIj -aQu -aVr +hDH +goX +lFy +xkA +waf +cbJ aKP aKP -aSh -eYA -aZh -cuG -crd -rgm -bbG -bap -baT -nRT +fZd +xLZ +rcj +wrc +vpN +fsj +rys +sjc +snQ +qvv atb -bja +wDm bes bes bes @@ -66297,31 +66303,31 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -ecK -gCE -gCE -qFY +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +wjN +giP +giP +tgl aao aao aao @@ -66334,18 +66340,18 @@ aao aao aao aao -bTW -izh -hKD -izh +oCA +cbx +kzX +cbx aao aao aao aao aao aao -bTW -uPm +oCA +kWR aao aao aao @@ -66354,11 +66360,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -66373,10 +66379,10 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao @@ -66416,46 +66422,46 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aao aao -jgW -tQw -tQw -tQw +oOO +gWT +gWT +gWT xFZ -pIN -tQw -ahw -ujC -ujC -tQw -tQw -ujC -ujC -tQw -tQw +cBK +gWT +iBs +fRd +fRd +gWT +gWT +fRd +fRd +gWT +gWT xFZ -tQw -gXp -tQw -pIN -tQw -tQw -ahw -tQw -tQw -eMX +gWT +tEI +gWT +cBK +gWT +gWT +iBs +gWT +gWT +kyB aao aao aao @@ -66475,27 +66481,27 @@ aKP aKP aKP aKP -aMR -aQu -aTr -aDy -aTp -aTu -qoS -aTu -aTu -aTu -aTp -aZi -nRT -bar -baU -bbH -bar -baU -nRT +hDH +waf +goX +lFy +xdh +rZr +kUo +rZr +rZr +rZr +xdh +pFe +qvv +qGi +oiR +eOo +qGi +oiR +qvv atb -bja +wDm bes bes aEX @@ -66515,30 +66521,30 @@ aao aao aao aao -gCE -gCE -gCE -gCE -rxJ -gCE -gCE -gCE +giP +giP +giP +giP +eAk +giP +giP +giP aao aao aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -ohD +giP +giP +giP +giP +giP +giP +giP +giP +giP +sKh aao aao aao @@ -66551,18 +66557,18 @@ aao aao aao aao -bTW -uPm -izh -izh +oCA +kWR +cbx +cbx aao aao aao aao aao aao -bTW -uPm +oCA +kWR aao aao aao @@ -66571,11 +66577,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -66590,10 +66596,10 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao @@ -66633,48 +66639,48 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT aao aao aao aao aao -wQC -tQw -tQw -eFh +euL +gWT +gWT +xoe aao -chq -tQw -tQw -ujC -ujC -tQw -tQw -tQw -tQw -tQw -sNQ -ahw -gmN +tNM +gWT +gWT +fRd +fRd +gWT +gWT +gWT +gWT +gWT +dyT +iBs +nwN xFZ xFZ -ahy -tQw -tQw -tQw +fuy +gWT +gWT +gWT xFZ xFZ -tQw -tQw -eMX +gWT +gWT +kyB aao aao aao @@ -66689,30 +66695,30 @@ aao aKP aKP aKP -aMR -aOk -aOk -aQu -aQu -aTr -aDy -aTq -aTq +hDH +gsE +gsE +waf +waf +goX +lFy +rqZ +rqZ dTB rbs rbs -dRc +wjy dTB dTB -nRT -bap -baT -bbF -bap -baT -bdF +qvv +sjc +snQ +bFZ +sjc +snQ +vJd atb -bja +wDm bes aEX aEX @@ -66731,15 +66737,15 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP gpg -gCE -gCE -gCE +giP +giP +giP aao aao aao @@ -66750,11 +66756,11 @@ aao aao aao aao -sON -gCE -gCE -gCE -qFY +dUL +giP +giP +giP +tgl aao aao aao @@ -66767,19 +66773,19 @@ aao aao aao aao -fRH -izh -uPm -izh -izh +gea +cbx +kWR +cbx +cbx aao aao aao aao -izh -izh -izh -bAe +cbx +cbx +cbx +uOq aao aao aao @@ -66787,12 +66793,12 @@ aao aao aao aao -izh -izh -izh -jGd -izh -izh +cbx +cbx +cbx +kKN +cbx +cbx aao aao aao @@ -66807,10 +66813,10 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao @@ -66850,26 +66856,26 @@ aao aao aao aao -tQw -tQw -ahw -tQw -tQw -tQw -tQw +gWT +gWT +iBs +gWT +gWT +gWT +gWT aao aao aao aao aao aao -wQC -ahx +euL +goU xFZ -sNQ +dyT aao aao -gmN +nwN xFZ xFZ xFZ @@ -66877,9 +66883,9 @@ xFZ xFZ xFZ xFZ -sNQ +dyT aao -tQw +gWT aao aao aao @@ -66887,12 +66893,12 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -eMX +gWT +gWT +gWT +gWT +gWT +kyB aao aao aao @@ -66907,29 +66913,29 @@ aao aao aao aao -aQu -aQu -aQu -ceA -aTr -aDy -aTq -aTq +waf +waf +waf +fMq +goX +lFy +rqZ +rqZ rbs -oPM -eKZ +mZu +iNp pAX -hKO +ezk dTB -nRT -bao -baS -bbF -bao -baS -nRT +qvv +vNd +uEP +bFZ +vNd +uEP +qvv atb -bja +wDm bes aEX aEX @@ -66947,17 +66953,17 @@ aao aao aao aao -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +xfp +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -66967,12 +66973,12 @@ aao aao aao aao -ecK -gCE -gCE -wWK -gCE -sfI +wjN +giP +giP +xfp +giP +fdg aao aao aao @@ -66984,33 +66990,33 @@ aao aao aao aao -bTW -izh -uPm -izh -fRH -tgL -tgL -tgL -nkQ -izh -izh -izh -sLr +oCA +cbx +kWR +cbx +gea +unc +unc +unc +cSg +cbx +cbx +cbx +dXT aao aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -67024,10 +67030,10 @@ aao aao aao aao -izh -jGd -izh -izh +cbx +kKN +cbx +cbx aao aao aao @@ -67068,20 +67074,20 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao aao adZ adZ -afY -uvl -vRK +reN +pFL +omt adZ adZ aao @@ -67105,12 +67111,12 @@ aao aao aao aao -tQw -tQw -azf -tQw -tQw -eMX +gWT +gWT +mUU +gWT +gWT +kyB aao aao aao @@ -67128,25 +67134,25 @@ aao aao aao dvz -rnK -shn -qWT -rnK +kZz +aBY +rSw +kZz dvz -djo +iHb xsX xTk -rkh +xKs dvz -nRT -bat -baW -bbI -bat -baW -nRT +qvv +jyV +ptD +ivT +jyV +ptD +qvv atb -bja +wDm bes aEX bes @@ -67164,16 +67170,16 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -67185,11 +67191,11 @@ aao aao aao aao -usG +fMk gpg gpg -gCE -qFY +giP +tgl aao aao aao @@ -67201,33 +67207,33 @@ aao aao aao aao -bTW -xAh -izh -tgL -izh -izh -izh -izh -uPm -izh -izh -izh +oCA +tHf +cbx +unc +cbx +cbx +cbx +cbx +kWR +cbx +cbx +cbx aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -67241,9 +67247,9 @@ aao aao aao aao -izh -izh -izh +cbx +cbx +cbx aao aao aao @@ -67285,21 +67291,21 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao adZ adZ -aft -ycM -bNl -ahz -aik +cGd +iDh +lXl +mKW +cuu adZ adZ aao @@ -67323,12 +67329,12 @@ amk amk amk amk -tQw -tQw -gmN -tQw -tQw -tQw +gWT +gWT +nwN +gWT +gWT +gWT aao aao aao @@ -67344,26 +67350,26 @@ aao aao aao aao -lLe -sVk -xTV -vUw -iKn +ntN +nEy +tMm +qth +jlu rbs -aIe +lyp pAX pAX -qLD +jvf dvz dTB -aJy -aJy -nRT -aJy -aJy -bdI +nYo +nYo +qvv +nYo +nYo +kgb atb -bja +wDm bes bes bes @@ -67381,15 +67387,15 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -67404,10 +67410,10 @@ aao aao aao aao -bLA -bLA -bLA -bvR +cbd +cbd +cbd +nNc aao aao aao @@ -67418,33 +67424,33 @@ aao aao aao aao -bTW -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh +oCA +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -67457,10 +67463,10 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao @@ -67502,21 +67508,21 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao adZ -aeS -afu -afZ -msf -afu -afu +kDM +bHs +hry +rjZ +bHs +bHs adZ adZ adZ @@ -67529,10 +67535,10 @@ aeU aev apq adZ -aqX -arE -asn -gvI +jwX +stm +hbl +fQL amk ajm sUQ @@ -67540,14 +67546,14 @@ avM lAF aka amk -tQw -tQw -tQw -gmN -tQw -tQw -tQw -eMX +gWT +gWT +gWT +nwN +gWT +gWT +gWT +kyB aao aao aao @@ -67562,16 +67568,16 @@ aao aao aao aao -hLs -xTV -iKn -hNW +kWT +tMm +jlu +iNo dTB -jKp +nmH dFL pAX -dKk -fyZ +hDZ +qXG dTB atb atb @@ -67580,7 +67586,7 @@ atb atb atb atb -bja +wDm bes bes bes @@ -67600,14 +67606,14 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -67620,13 +67626,13 @@ aao aao aao aao -izh -izh -bTW -izh -izh -tgL -ucN +cbx +cbx +oCA +cbx +cbx +unc +cTr aao aao aao @@ -67634,36 +67640,36 @@ aao aao aao aao -fRH -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -sLr +gea +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +dXT aao aao aao aao aao -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -67674,10 +67680,10 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao @@ -67719,22 +67725,22 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao adZ -aeS -afu -aga -agK -ahA -afu -ain +kDM +bHs +wWp +jxp +rBE +bHs +ufn aev aev adZ @@ -67746,10 +67752,10 @@ aev aoE apr adZ -aqY -arF -arF -atc +hVJ +weE +weE +ezp amk auj auY @@ -67758,37 +67764,37 @@ awz aqc amk aao -tQw -tQw -tQw -wQC -tQw -tQw -tQw -gXp -gXp -qQn -gXp -gXp -gXp -gXp -gXp -eMX +gWT +gWT +gWT +euL +gWT +gWT +gWT +tEI +tEI +kme +tEI +tEI +tEI +tEI +tEI +kyB aao aao aao aao dTB -juZ -xTV -iKn -iKn -xaE +spw +tMm +jlu +jlu +wXW pAX pAX pAX pAX -gEM +oEQ aao aao aao @@ -67819,12 +67825,12 @@ aao aao aao aao -gCE -gCE -gCE -wWK -gCE -gCE +giP +giP +giP +xfp +giP +giP aao aao aao @@ -67835,14 +67841,14 @@ aao aao aao aao -izh -izh -izh -izh -bTW -izh -izh -uPm +cbx +cbx +cbx +cbx +oCA +cbx +cbx +kWR aao aao aao @@ -67851,38 +67857,38 @@ aao aao aao aao -bTW -izh -izh -izh -jGd -izh -izh -izh -izh -izh -uPm +oCA +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +kWR aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -67890,11 +67896,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -67936,21 +67942,21 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao adZ -aeT -afu -agb -agL -afu -ail +vMW +bHs +lxT +kHB +bHs +feL adZ aev aev @@ -67963,11 +67969,11 @@ anM aqb aps adZ -tkY -arF -aso -arF -atI +rPc +weE +vxe +weE +fvk aqc auY avN @@ -67975,37 +67981,37 @@ ajO axo amk aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT xFZ xFZ kfk -tQw +gWT xFZ -tQw -tQw -tQw -eFh +gWT +gWT +gWT +xoe aao aao aao aao aao -hLs -xTV -iKn -qJB +kWT +tMm +jlu +cLt dTB -mYV +mIz pAX pAX -rDa -cry +xYp +rjy aao aao aao @@ -68038,10 +68044,10 @@ aao aao aao aao -gCE -gCE -gCE -gCE +giP +giP +giP +giP aao aao aao @@ -68051,67 +68057,67 @@ aao aao aao aao -bLA -izh -izh -izh -jGd -bTW -izh -izh -sLr +cbd +cbx +cbx +cbx +kKN +oCA +cbx +cbx +dXT aao aao aao aao aao aao -fRH -tgL -izh -uPm -izh -izh -izh -izh +gea +unc +cbx +kWR +cbx +cbx +cbx +cbx gtX gtX -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -68153,11 +68159,11 @@ aao aao aao aao -tQw -tQw -tQw -ahw -tQw +gWT +gWT +gWT +iBs +gWT aao aao aao @@ -68165,7 +68171,7 @@ adZ adZ afd afd -agM +fve afd afd adZ @@ -68175,15 +68181,15 @@ adZ adZ adZ adZ -ano +sWg adZ afd afd adZ -amW -arF -arF -ate +mFm +weE +weE +mbO amk rUs auY @@ -68193,35 +68199,35 @@ aqc amk aao aao -tQw -tQw -aBz -tQw -sNQ -tQw -ahw -tQw -pIN -tQw -ahw -wQC -tQw -tQw -tQw -eMX -aao -aao -aao -sYL -hLs -aUv -iKn -iKn +gWT +gWT +rcb +gWT +dyT +gWT +iBs +gWT +cBK +gWT +iBs +euL +gWT +gWT +gWT +kyB +aao +aao +aao +iXD +kWT +vwy +jlu +jlu rbs -nIS +aqD pAX pAX -qLD +jvf dTB aao aao @@ -68256,9 +68262,9 @@ aao aao aao aao -waJ -waJ -wIw +idD +idD +vqb aao aao aao @@ -68267,67 +68273,67 @@ aao aao aao aao -gCE -bLA -izh -izh -izh -izh -izh -izh -uPm -izh +giP +cbd +cbx +cbx +cbx +cbx +cbx +cbx +kWR +cbx aao aao aao aao aao aao -bTW -izh -izh -sLr -izh -izh -izh +oCA +cbx +cbx +dXT +cbx +cbx +cbx aao aao aao -byG -bLA -bLA -bLA +jhe +cbd +cbd +cbd aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx aao aao aao @@ -68370,21 +68376,21 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao aao adZ -afw -afw -agN -afw -afw +lnC +lnC +kSj +lnC +lnC adZ aeU aev @@ -68398,9 +68404,9 @@ aev aev adZ amk -arG -ara -atf +oRN +bWN +cyG amk aqc aqc @@ -68411,38 +68417,38 @@ amk aao aao aao -tQw -wQC -eFh -tQw -tQw -tQw -tQw -pIN -tQw -tQw -tQw +gWT +euL +xoe +gWT +gWT +gWT +gWT +cBK +gWT +gWT +gWT xFZ -tQw -tQw -eFh +gWT +gWT +xoe aao aao aao dTB -iFz -qbG -iFz -iFz +ibi +oAq +ibi +ibi dTB -dAd +iKX oHn pAX -qLD +jvf xZL aao aao -gCE +giP aao aao aao @@ -68473,78 +68479,78 @@ aao aao aao aao -gCE -gCE -gCE +giP +giP +giP aao aao aao aao aao aao -gCE -gCE -gCE -bLA -izh -izh -izh -tgL -izh -izh -uPm -izh +giP +giP +giP +cbd +cbx +cbx +cbx +unc +cbx +cbx +kWR +cbx aao aao aao aao aao aao -lUq -izh -wUD -izh -izh -izh +qzQ +cbx +xFa +cbx +cbx +cbx aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -68587,21 +68593,21 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao aao adZ -fMZ -agc -agc -agc -afx +lpo +vuM +vuM +vuM +jpd adZ aev aev @@ -68619,7 +68625,7 @@ adZ adZ adZ adZ -aum +qPw amX amk amk @@ -68629,50 +68635,50 @@ amk amk aao aao -gmN -sNQ +nwN +dyT aao aao aao aao aao aao -tQw -tQw -tQw -wQC -tQw -tQw +gWT +gWT +gWT +euL +gWT +gWT aao aao aao aao -aTw -pmV -aTv -aTv +qZn +jWO +kId +kId rbs -lAR -oJv +nFD +eno pAX -irZ +ilA dTB aao -gCE -rAs -rAs -sfI +giP +lUS +lUS +fdg aao aao aao aao aao aao -sON -rAs -rAs -rAs -sfI +dUL +lUS +lUS +lUS +fdg aao aao aao @@ -68689,38 +68695,38 @@ aao aao aao aao -sON -gCE -gCE -gCE -gCE +dUL +giP +giP +giP +giP aao aao aao -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh +giP +giP +giP +giP +giP +cbd +cbx +cbx gtX -izh -izh -izh -uPm -izh +cbx +cbx +cbx +kWR +cbx aao aao aao aao aao -izh -izh -izh -uPm -izh +cbx +cbx +cbx +kWR +cbx aao aao aao @@ -68730,38 +68736,38 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -68804,20 +68810,20 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao aao adZ adZ -agc -agc -agc +vuM +vuM +vuM adZ adZ aev @@ -68835,9 +68841,9 @@ aev hvQ aev aev -ain -agd -agd +ufn +dAy +dAy amX awC kIF @@ -68854,43 +68860,43 @@ aao aao aao aao -tQw -tQw -tQw -gmN -ahw -tQw -tQw +gWT +gWT +gWT +nwN +iBs +gWT +gWT aao aao aao -vFH -pmV -aTv -kqO +qnO +jWO +kId +cxk dTB rbs rbs -pJd +tZz dTB dTB -gCE -gCE -gCE -gCE -wWK -sfI +giP +giP +giP +giP +xfp +fdg aao aao aao aao aao -ecK -gCE -wWK -gCE -gCE -sfI +wjN +giP +xfp +giP +giP +fdg aao aao aao @@ -68902,42 +68908,42 @@ aao aao aao aao -sON -rAs -rAs -rAs -gCE -gCE -gCE -gCE -gCE -rAs -rAs -gCE -gCE -gCE -gCE -wWK -ecK -bLA -uPm +dUL +lUS +lUS +lUS +giP +giP +giP +giP +giP +lUS +lUS +giP +giP +giP +giP +xfp +wjN +cbd +kWR aao aao -bTW -jGd -izh -uPm -izh +oCA +kKN +cbx +kWR +cbx aao aao -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -68947,38 +68953,38 @@ aao aao aao aao -izh -jGd -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh +cbx +kKN +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -69021,11 +69027,11 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao adZ @@ -69033,8 +69039,8 @@ adZ adZ adZ adZ -aCy -ahB +ocr +cxq adZ aev aev @@ -69053,9 +69059,9 @@ aeU aev aev adZ -auo -agd -avO +oft +dAy +pAe auY aqc axT @@ -69073,41 +69079,41 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT aao aao -dJr -sVM -xWv -wOK -kUW -aOn -nfY -nfY -pgV -gCE -gCE -gCE -gCE -gCE -gCE -qFY +kXq +fUy +kUe +qEP +tNZ +dpN +jUg +jUg +ghn +giP +giP +giP +giP +giP +giP +tgl aao aao aao aao aao -usG +fMk gpg -gCE -gCE -gCE -qFY +giP +giP +giP +tgl aao aao aao @@ -69119,41 +69125,41 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -rAs -gCE -gCE -sON -gCE -bLA -sLr +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +lUS +giP +giP +dUL +giP +cbd +dXT aao aao -bTW -izh -izh -uPm -izh -izh -izh -jGd -izh -izh -izh -izh -uPm -izh +oCA +cbx +cbx +kWR +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +kWR +cbx aao aao aao @@ -69164,37 +69170,37 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -69238,31 +69244,31 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao adZ aev aeU aev -age -agQ -ahC -ain +hGb +pjk +rGH +ufn aev aev anM adZ adZ -alL -amJ +wHD +wTF adZ -anO -aoG +ikh +gpq adZ aqb aqb @@ -69270,9 +69276,9 @@ anl anl aev adZ -aup -agd -auy +iaT +dAy +vxI auY aqc aqc @@ -69291,29 +69297,29 @@ aao aao aao aao -tQw -tQw -tQw -gXp -gXp -gXp -hFg -eFh -sRV -aMT -tQw -ujC -ujC -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -qFY +gWT +gWT +gWT +tEI +tEI +tEI +vyZ +xoe +aUN +xDl +gWT +fRd +fRd +giP +giP +giP +giP +giP +giP +giP +giP +giP +tgl aao aao aao @@ -69321,56 +69327,56 @@ aao aao aao aao -usG +fMk gpg -gCE -qFY -gCE -gCE -gCE -gCE +giP +tgl +giP +giP +giP +giP aao aao aao aao aao aao -sON -gCE +dUL +giP gpg gpg gpg -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -rAs -gCE -gCE -cVL +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +lUS +giP +giP +iMn aao aao aao -bTW -izh -izh -uPm -izh -izh -izh -izh -fRH -tgL -izh -jGd -izh -izh +oCA +cbx +cbx +kWR +cbx +cbx +cbx +cbx +gea +unc +cbx +kKN +cbx +cbx aao aao aao @@ -69381,36 +69387,36 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx aao aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -jGd -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx aao aao aao @@ -69455,11 +69461,11 @@ aao aao aao aao -tQw -ahw -tQw -tQw -tQw +gWT +iBs +gWT +gWT +gWT aao aao adZ @@ -69467,19 +69473,19 @@ aew aeV aev adZ -agQ -ahD +pjk +oql adZ adZ adZ adZ adZ adZ -alM -amK +nvQ +noo adZ -anP -amK +wod +noo adZ adZ adZ @@ -69487,8 +69493,8 @@ adZ adZ adZ adZ -agd -agd +dAy +dAy amX awD aEs @@ -69510,83 +69516,83 @@ aao aao aao aao -wQC -tQw -tQw -tQw -tQw -eFh -sRV -aMT -tQw -tQw -pIN -gCE -gCE -gCE -gCE -gCE -gCE +euL +gWT +gWT +gWT +gWT +xoe +aUN +xDl +gWT +gWT +cBK +giP +giP +giP +giP +giP +giP gpg gpg -gCE -gCE -rAs -rAs -sfI +giP +giP +lUS +lUS +fdg aao aao aao aao aao aao -gCE -qFY -gCE -gCE -gCE -gCE +giP +tgl +giP +giP +giP +giP aao aao aao aao -sON -rAs -gCE -gCE -gCE -tsB -gCE -gCE -gCE +dUL +lUS +giP +giP +giP +jdD +giP +giP +giP gpg gpg -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -qFY +giP +giP +giP +giP +giP +giP +giP +giP +tgl aao aao aao aao -bTW -izh -izh -uPm -izh -izh -izh -fRH -izh -izh -izh -izh -izh +oCA +cbx +cbx +kWR +cbx +cbx +cbx +gea +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -69603,16 +69609,16 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -69621,13 +69627,13 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -69672,11 +69678,11 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao adZ @@ -69684,19 +69690,19 @@ bXe aex afA adZ -agS -ahE +lSR +oQs adZ aao aao aao aao adZ -alN -amL +cAh +sEs adZ -anQ -amK +lJD +noo adZ sUQ aqc @@ -69704,8 +69710,8 @@ aqc asp aqc amk -auq -auZ +qMx +gZg amk amk amk @@ -69714,8 +69720,8 @@ amk amk anI anL -hmm -aCr +cMt +vJW anL anI anI @@ -69727,82 +69733,82 @@ aao aao aao aao -gmN -tQw -tQw -tQw -tQw -eFh -sRV -aMT -tQw -tQw -aWN -gCE -gCE -gCE -gCE -xuU -qFY -gCE -gCE -gCE +nwN +gWT +gWT +gWT +gWT +xoe +aUN +xDl +gWT +gWT +sIT +giP +giP +giP +giP +pGd +tgl +giP +giP +giP gpg -gCE -gCE -gCE -rAs -rAs -rAs -rAs -rAs -rAs -gCE -qFY -wWK -gCE -gCE -gCE -gCE -waJ -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -wWK -ecK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bvR -aao -fRH -tgL -izh -izh -izh -uPm -jGd -fRH -kWV -izh +giP +giP +giP +lUS +lUS +lUS +lUS +lUS +lUS +giP +tgl +xfp +giP +giP +giP +giP +idD +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP +xfp +wjN +giP +giP +giP +giP +giP +giP +giP +nNc +aao +gea +unc +cbx +cbx +cbx +kWR +kKN +gea +eII +cbx gtX gtX gtX -sLr +dXT aao aao aao @@ -69820,16 +69826,16 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -69838,13 +69844,13 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -69889,11 +69895,11 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao adZ @@ -69901,19 +69907,19 @@ adZ adZ afB adZ -agT -ahF +kKY +gfb adZ aao aao aao adZ adZ -alO -amM +fDS +plb adZ -anR -amM +nMe +plb adZ adZ aGh @@ -69921,21 +69927,21 @@ ahv ajd aqc amk -agd -ava -avP -awE +dAy +lYB +eyj +xtm amk aao anI -azg -aAi -aAP -aAP -aCs -aAP -aEm -aFf +wcI +vHW +nTC +nTC +pKg +nTC +hrO +lYp anI aao anI @@ -69944,78 +69950,78 @@ anI anI anI anI -kZI -gmN -tQw -tQw -tQw +gko +nwN +gWT +gWT +gWT arK -qKH -aMT -tQw -tQw -ujC -gCE -gCE -gCE -gCE -gCE -ohD +pkL +xDl +gWT +gWT +fRd +giP +giP +giP +giP +giP +sKh aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -rAs -rAs -rAs -rAs -rAs -mya -rAs -gCE -gCE -qFY -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -ecK -gCE -gCE -xuU -gCE -gCE -gCE -gCE -bLA -tgL -izh -izh -izh -izh -izh -izh -tgL -izh -izh -uPm +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +lUS +lUS +lUS +lUS +lUS +tru +lUS +giP +giP +tgl +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +wjN +giP +giP +pGd +giP +giP +giP +giP +cbd +unc +cbx +cbx +cbx +cbx +cbx +cbx +unc +cbx +cbx +kWR aao aao aao @@ -70037,16 +70043,16 @@ aao aao aao aao -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -70054,14 +70060,14 @@ aao aao aao aao -izh -izh -izh -jGd -izh -izh -izh -izh +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx aao aao aao @@ -70106,133 +70112,133 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao adZ -aey -aeW -afC -agf -agU -ahG +vvO +krT +cDp +oto +lhf +dRj adZ aao aao adZ adZ -ala -alP -alP -anq -anS -anS -apv +maS +pIC +pIC +lII +fKb +fKb +pxL adZ adZ auY asr aqc amX -aur -avb -asu -awF +hAb +iXV +cLJ +sZR amk aao anI -azh -aAj +rsd +twz afz -xWm -xWm -xWm -aEn -aFg +bqC +bqC +bqC +kyc +jxy anI aao anI -aIJ -uaB -uaB -uaB -aMq -aTv -aOm -aOm -aOm -aOm -aSl -pmV -aMT -tQw -ujC -ujC -gCE -gCE -gCE -gCE -qFY -aao -aao -aao -aao -sON -gCE -gCE -gCE -gCE -gCE -gCE -gCE -sBu -gCE -gCE -gCE -gCE -gCE -gCE -xuU -gCE -waJ -gCE -gCE -wWK -qFY -gCE -gCE -sON -gCE -gCE -gCE -gCE -gCE -gCE -gCE -ecK -gCE -gCE -gCE -gCE -gCE -gCE -sBu -bLA -izh -izh -izh -jGd -izh +awj +mVr +mVr +mVr +fCn +kId +hOC +hOC +hOC +hOC +lPX +jWO +xDl +gWT +fRd +fRd +giP +giP +giP +giP +tgl +aao +aao +aao +aao +dUL +giP +giP +giP +giP +giP +giP +giP +tUd +giP +giP +giP +giP +giP +giP +pGd +giP +idD +giP +giP +xfp +tgl +giP +giP +dUL +giP +giP +giP +giP +giP +giP +giP +wjN +giP +giP +giP +giP +giP +giP +tUd +cbd +cbx +cbx +cbx +kKN +cbx gtX gtX gtX gtX gtX -sLr +dXT aao aao aao @@ -70254,16 +70260,16 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -70271,14 +70277,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -70323,127 +70329,127 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT aao adZ -aez -aeX -afD -agf -agV -ahC +oNC +pXW +mDr +oto +qge +rGH adZ aao aao adZ -aky -alb -alQ -alc -alc -alc -alQ -apw -aqd +noe +cnM +gYf +xZB +xZB +xZB +gYf +edK +kmg adZ arI ass aqc -atK -agd -avc -asu -awF +qEV +dAy +gGN +cLJ +sZR amk aao anI -azi -aAk +xNX +eDz afz -aBB -aCt -bZL -xWm -aFh +cME +hqz +fgu +bqC +ooI anI aao anI -aIK -aJE -aKQ -aKQ -hmm -aTv -aOn -aOn -aOn -aOn -aTv -pmV -aMT -tQw -tQw -pIN -gCE -gCE -gCE +gkN +bZF +lwu +lwu +cMt +kId +dpN +dpN +dpN +dpN +kId +jWO +xDl +gWT +gWT +cBK +giP +giP +giP gpg -ohD -aao -aao -aao -foB -gCE -gCE -gCE -bet -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +sKh +aao +aao +aao +xCA +giP +giP +giP +fbV +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP kQc gpg -gCE -gCE -qFY -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -qFY -gCE -ecK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -uPm +giP +giP +tgl +giP +giP +giP +giP +giP +giP +giP +giP +tgl +giP +wjN +giP +giP +giP +giP +giP +giP +giP +cbd +cbx +cbx +cbx +cbx +kWR aao aao aao @@ -70471,15 +70477,15 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -70488,13 +70494,13 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -70540,89 +70546,89 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT aao adZ -aez -aeY -afE -agg -agW -ahI +oNC +sPf +tjw +lln +oui +qaj adZ aao aao adZ -akz -alc -alc -amN -aff -alc -alc -alc -aqe +cSV +xZB +xZB +ciE +cqk +xZB +xZB +xZB +mvS adZ amk amk amk amk -agd -avd +dAy +uMJ amk amk amk aao anI -azj -aAl -aAk +tir +iMq +eDz afz afz -xWm -aEo -aFi +bqC +sdA +msl anI aao anI -aIK -aJF +gkN +oAm anI anI anI -jvW -gXp -gXp -gXp -gXp -aTw -ocR -uoj -tQw -tQw -aWN -gCE -gCE -ohD +pzV +tEI +tEI +tEI +tEI +qZn +ooF +okK +gWT +gWT +sIT +giP +giP +sKh aao aao aao aao aao aao -usG +fMk gpg gpg gpg -gCE -gCE -gCE -gCE +giP +giP +giP +giP gpg gpg gpg @@ -70631,36 +70637,36 @@ gpg gpg gpg gpg -ohD +sKh aao aao -ecK -gCE -qFY -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -qFY -gCE -ecK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -sLr +wjN +giP +tgl +giP +giP +giP +giP +giP +giP +giP +giP +tgl +giP +wjN +giP +giP +giP +giP +giP +giP +giP +cbd +cbx +cbx +cbx +cbx +dXT aao aao aao @@ -70688,15 +70694,15 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -70705,13 +70711,13 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -jGd +cbx +cbx +cbx +cbx +cbx +cbx +kKN aao aao aao @@ -70757,74 +70763,74 @@ aao aao aao aao -tQw -tQw -tQw -ahw -tQw +gWT +gWT +gWT +iBs +gWT aao aao adZ -aeA -aeZ -afF +dKg +fxF +bKq adZ -agX -ahJ +jtd +qdb adZ aao aao adZ -aeE -rqa -alR -alc -alc -alQ -alc -apx -aqf +qyB +msP +ozI +xZB +xZB +gYf +xZB +wOA +tcK adZ aao azm amk amk -auy -ave +vxI +fdq amk amk aao aao anI anI -aAm -aAl -aBC -xWm -aDk -aEp +sPE +iMq +qxw +bqC +qib +bGW anI anI aao anI -aIK -aJG +gkN +lAp anI aao aao -gXp -tQw -ahw -tQw -tQw -nFH -aTv -aMT -tQw -tQw -ujC -gCE -gCE +tEI +gWT +iBs +gWT +gWT +jlZ +kId +xDl +gWT +gWT +fRd +giP +giP aao aao aao @@ -70836,14 +70842,14 @@ aao aao aao aao -ecK -qFY -gCE -gCE -gCE -gCE -gCE -gCE +wjN +tgl +giP +giP +giP +giP +giP +giP aao aao aao @@ -70852,32 +70858,32 @@ aao aao aao aao -ecK -qFY -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +wjN +tgl +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP gpg gpg gpg gpg gpg gpg -gCE -bLA -jGd -izh -izh -sLr -izh +giP +cbd +kKN +cbx +cbx +dXT +cbx aao aao aao @@ -70905,14 +70911,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -70921,14 +70927,14 @@ aao aao aao aao -izh -izh -izh -otb -otb -izh -izh -izh +cbx +cbx +cbx +sva +sva +cbx +cbx +cbx aao aao aao @@ -70975,71 +70981,71 @@ aao aao aao aao -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT aao aao adZ adZ -afa -afG +gyu +ocN adZ -agX -ahI +jtd +qaj adZ adZ aao adZ -akB -alc -alS -alQ -alc -anV -aoI -alc -aqg +wXY +xZB +wHK +gYf +xZB +ici +iDp +xZB +pFo adZ aao amk amk -atL -asu -avf -atL +tWI +cLJ +vCS +tWI amk amk aao aao anI anI -aAQ -aBD -xWm -aDl +hrv +pBJ +bqC +bzV anI anI aao aao anI -aIL -aJG +twY +lAp anI aao aao -tQw -tQw -tQw +gWT +gWT +gWT xFZ xFZ -aSm -lMw -aMT -tQw -tQw -ujC +dhJ +jJG +xDl +gWT +gWT +fRd aao aao aao @@ -71053,14 +71059,14 @@ aao aao aao aao -usG -gCE -gCE -gCE -wWK -gCE -gCE -gCE +fMk +giP +giP +giP +xfp +giP +giP +giP aao aao aao @@ -71069,33 +71075,33 @@ aao aao aao aao -ecK -qFY -gCE -gCE -wWK -gCE -gCE -gCE -bet -gCE -gCE -gCE -ohD +wjN +tgl +giP +giP +xfp +giP +giP +giP +fbV +giP +giP +giP +sKh aao aao aao aao aao aao -dEr -bLA -izh -izh -uPm -izh -izh -izh +fEx +cbd +cbx +cbx +kWR +cbx +cbx +cbx aao aao aao @@ -71122,13 +71128,13 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -71138,14 +71144,14 @@ aao aao aao aao -izh -izh -izh -otb -otb -izh -izh -izh +cbx +cbx +cbx +sva +sva +cbx +cbx +cbx aao aao aao @@ -71192,10 +71198,10 @@ aao aao aao aao -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT aao aao aao @@ -71203,58 +71209,58 @@ adZ adZ adZ adZ -agX -agc -aio +jtd +vuM +mwL adZ adZ adZ -aeQ -ald -daB -amO -afy -amO -aoJ -afy -aqh +jjP +qwR +sCh +ryi +itr +ryi +khj +itr +jSw adZ amk amk -atg -agd -aut -avg -agd -awG +sHM +dAy +oBf +hEh +dAy +pve amk amk aao aao anI -aAR -ggW -aCu -aDm +mzc +uUH +vXC +odJ anI aao aao aao anI -aIK -aJG +gkN +lAp anI aao -wQC -tQw -tQw -eFh +euL +gWT +gWT +xoe aao aao aao -aSm -aMV -tQw +dhJ +vPQ +gWT aao aao sIh @@ -71271,13 +71277,13 @@ aao aao aao aao -usG -gCE -gCE -sfI -gCE -gCE -gCE +fMk +giP +giP +fdg +giP +giP +giP aao aao aao @@ -71285,19 +71291,19 @@ aao aao aao aao -sON -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +dUL +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -71305,15 +71311,15 @@ aao aao aao aao -bTW +oCA gtX gtX gtX -sLr -izh -izh -izh -bLA +dXT +cbx +cbx +cbx +cbd aao aao aao @@ -71339,11 +71345,11 @@ aao aao aao aao -izh -izh -jGd -izh -izh +cbx +cbx +kKN +cbx +cbx aao aao aao @@ -71355,14 +71361,14 @@ aao aao aao aao -izh -izh -izh -izh -jGd -izh -izh -izh +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx aao aao aao @@ -71409,64 +71415,64 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aao adZ adZ -ahL -agc -aiR +jRN +vuM +scM adZ adZ afd afd afd -amP +lGP adZ -amP +lGP afd afd afd adZ amk -ast -ath -agd -auu -avh -agd -agd -axq +rnJ +lUF +dAy +cpG +pKm +dAy +dAy +onH amk anI -ayE +oiM anI anL -hmm -aCv +cMt +eaM anL anI anI anI anI anI -aIM -aJH +eSn +xRz anI aao -wQC -tQw -tQw -tQw -eMX +euL +gWT +gWT +gWT +kyB aao aao aao @@ -71489,33 +71495,33 @@ aao aao aao aao -usG +fMk gpg -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP aao aao aao aao aao -sON -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -sfI +dUL +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +fdg aao aao aao @@ -71527,12 +71533,12 @@ aao aao aao aao -bLA -bLA -bLA -bLA -izh -izh +cbd +cbd +cbd +cbd +cbx +cbx aao aao aao @@ -71556,11 +71562,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -71572,14 +71578,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -71627,63 +71633,63 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -jgW -eMX +gWT +gWT +gWT +gWT +gWT +gWT +oOO +kyB aao aao adZ adZ -ahL -aiS -ajp -ajV -akD -ale -alU -alU -alU -alU -alU -alU -aqi -arb -arJ -asu -ahH -atM -auv -avi -avQ -awH -asu -gvd -ayC -azk -aAn -uaB -aBF -aCw -aDn -aEq -aFj -uaB -uaB -uaB -aIN -aJG +jRN +kfC +xRi +xZc +cKQ +qKP +bYU +bYU +bYU +bYU +bYU +bYU +kTp +ifs +orP +cLJ +iyg +fCC +max +qVI +wFT +mDH +cLJ +dQL +beD +dYU +gir +mVr +xSI +esx +lFC +vDf +emo +mVr +mVr +mVr +tWR +lAp anI aao -gmN -tQw +nwN +gWT xFZ -tQw -eFh +gWT +xoe aao aao aao @@ -71708,31 +71714,31 @@ aao aao aao aao -gCE -gCE -sfI -gCE -gCE -gCE +giP +giP +fdg +giP +giP +giP aao aao aao -sON -gCE +dUL +giP gpg -gCE -gCE +giP +giP gpg gpg -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -qFY +giP +giP +giP +giP +giP +giP +giP +giP +tgl aao aao aao @@ -71745,14 +71751,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -71773,11 +71779,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -71789,14 +71795,14 @@ aao aao aao aao -izh -otb -otb -izh -izh -otb -otb -izh +cbx +sva +sva +cbx +cbx +sva +sva +cbx aao aao aao @@ -71844,65 +71850,65 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -wQC -tQw -eMX +gWT +gWT +gWT +gWT +gWT +gWT +euL +gWT +kyB aao aao adZ adZ -aiT -ajq -ajW -akE -akE -akE -amQ -anu -amQ -aoL -apy -aqj -arc -tFO -axs -ati -atN -yhG -avj -avR -awI -axs -tFO -ayD +pnq +vKn +imd +qJn +qJn +qJn +rCa +mZw +rCa +nMT +qtU +cJg +oFn +pab +vjQ +qfA +eQn +ech +sTv +lJQ +fZA +vjQ +pab +vqR azl aAo -aAS -rXY -aCx -poF -poF -aFk -aGg -aGU -xNL -aIO -tkN +bIv +soI +fDh +sGg +sGg +qdZ +ipi +trF +nEn +jgg +xcA anI aao aao -amG +hbY aao -wQC +euL xFZ -gXp -eMX +tEI +kyB aao aao aao @@ -71925,31 +71931,31 @@ aao aao aao aao -gCE -ecK -bhs -gCE -gCE -gCE -rAs -gCE -gCE -gCE -gCE -gCE -gCE -qFY +giP +wjN +vnm +giP +giP +giP +lUS +giP +giP +giP +giP +giP +giP +tgl aao aao -ecK -gCE -gCE -gCE -gCE -gCE -wWK -gCE -ohD +wjN +giP +giP +giP +giP +giP +xfp +giP +sKh aao aao aao @@ -71962,16 +71968,16 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx aao aao aao @@ -71990,11 +71996,11 @@ aao aao aao aao -izh -otb -otb -izh -izh +cbx +sva +sva +cbx +cbx aao aao aao @@ -72006,14 +72012,14 @@ aao aao aao aao -izh -otb -otb -izh -izh -otb -otb -izh +cbx +sva +sva +cbx +cbx +sva +sva +cbx aao aao aao @@ -72062,42 +72068,42 @@ aao aao aao aao -tQw -tQw -ahw -tQw -tQw -wQC -tQw +gWT +gWT +iBs +gWT +gWT +euL +gWT adZ adZ adZ adZ adZ -aCy -ajr +ocr +sHY adZ afd afd afd -amR +ssf adZ -amR +ssf afd afd afd adZ amk -asw -lVr -agd -aux -avk -agd -awJ -axt +iHQ +hNy +dAy +coZ +iIn +dAy +nqG +lYR amk -ayE +oiM aEF anI anI @@ -72107,10 +72113,10 @@ anI anI anI anI -vbi -aHQ -hWa -wko +pVL +qmc +lyo +rSh anI aao aao @@ -72119,7 +72125,7 @@ aao aao aao aao -amG +hbY aao aao aao @@ -72142,30 +72148,30 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -usG -ohD +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +fMk +sKh aao aao -usG -gCE -gCE -gCE -gCE -gCE -gCE -ohD +fMk +giP +giP +giP +giP +giP +giP +sKh aao aao aao @@ -72180,18 +72186,18 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -72207,11 +72213,11 @@ aao aao aao aao -izh -otb -otb -izh -izh +cbx +sva +sva +cbx +cbx aao aao aao @@ -72223,14 +72229,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -72279,39 +72285,39 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tIq -eFh +gWT +gWT +gWT +gWT +gWT +ncJ +xoe afd -agh -agc -ahM -agc -agc -agc +div +vuM +pic +vuM +vuM +vuM adZ -akF -alf -alf -alf -anv -alf -alf -alf -aqk +rIp +wso +wso +wso +wkp +wso +wso +wso +fLE adZ amk amk -atj -agd -aoK -aoK -oea -awK +jXD +dAy +rdg +rdg +qMC +jRB amk amk aao @@ -72325,9 +72331,9 @@ aao aao anI anI -vbi -aHQ -wko +pVL +qmc +rSh anI aao aao @@ -72360,28 +72366,28 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -wWK -gCE +giP +giP +giP +giP +giP +xfp +giP +giP +giP +xfp +giP aao aao aao aao aao -usG +fMk gpg gpg gpg gpg -ohD +sKh aao aao aao @@ -72397,19 +72403,19 @@ aao aao aao aao -izh -izh -jGd -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx aao aao aao @@ -72423,12 +72429,12 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -72441,13 +72447,13 @@ aao aao aao aao -izh -izh -jGd -izh -izh -izh -izh +cbx +cbx +kKN +cbx +cbx +cbx +cbx aao aao aao @@ -72497,37 +72503,37 @@ aao aao aao aao -tQw -tQw -tQw -tQw -wQC -eFh +gWT +gWT +gWT +gWT +euL +xoe afd -agi -qNu +yeB +bQa adZ -aiq -agc -ajs +xef +vuM +rwQ adZ -akG -alg -alV -amS -alW -alg -alW -apz -aql +ooa +mmW +hsy +siZ +vLc +mmW +vLc +hKj +sYC adZ aao amk amk -atO -asu -asu -atO +wst +cLJ +cLJ +wst amk amk aao @@ -72543,8 +72549,8 @@ aao aao anI anI -aIP -aJJ +nSt +fFP anI anI anI @@ -72577,17 +72583,17 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -72613,21 +72619,21 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -72640,12 +72646,12 @@ aao aao aao aao -izh -izh -izh -jGd -izh -izh +cbx +cbx +cbx +kKN +cbx +cbx aao aao aao @@ -72658,14 +72664,14 @@ aao aao aao aao -izh -izh -izh -otb -otb -izh -jGd -izh +cbx +cbx +cbx +sva +sva +cbx +kKN +cbx aao aao aao @@ -72714,36 +72720,36 @@ aao aao aao aao -tQw -tQw -tQw -tQw -wQC -eFh +gWT +gWT +gWT +gWT +euL +xoe adZ adZ adZ adZ -aiq -agc -ajt +xef +vuM +wRn adZ -akH -alh -alW -amS -alW -aod -alW -alg -aqm +qZF +jzm +vLc +siZ +vLc +xnT +vLc +mmW +riH adZ aao aao amk amk -auy -avl +vxI +hLW amk amk aao @@ -72760,15 +72766,15 @@ aao aao aao anI -aIQ -wko +ycH +rSh anI aMr -wjW +mjV ePk -ajn +stI aMr -wjW +mjV xKb anI aao @@ -72793,17 +72799,17 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -72829,24 +72835,24 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -72857,11 +72863,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -72875,14 +72881,14 @@ aao aao aao aao -izh -izh -izh -otb -otb -izh -izh -izh +cbx +cbx +cbx +sva +sva +cbx +cbx +cbx aao aao aao @@ -72931,41 +72937,41 @@ aao aao aao aao -tQw -tQw -tQw -tQw -wQC -eFh +gWT +gWT +gWT +gWT +euL +xoe afd -agi -aha +yeB +dkF adZ -agc -agc -aju +vuM +vuM +dxs adZ -akI -ali -alW -amT -alW -aoe -alW -alg -aqn +rkv +tBi +vLc +odO +vLc +dhL +vLc +mmW +yes adZ aao aao aao amk -auz -avm +kVW +dbk amk aao aao -jgW -aig +oOO +ndm reL aao anI @@ -72977,16 +72983,16 @@ anI anI aao anI -aIR -aJL +fIw +eMT anI -tSI -gan -tSI -xfN -jwj -pTA -tSI +yjS +kdT +yjS +bPj +ilZ +ugw +yjS anI aao aao @@ -73010,12 +73016,12 @@ aao aao aao aao -gCE -gCE -gCE -wWK -gCE -gCE +giP +giP +giP +xfp +giP +giP aao aao aao @@ -73046,39 +73052,39 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao aao aao aao -izh -otb -otb -izh -izh +cbx +sva +sva +cbx +cbx aao aao aao @@ -73093,14 +73099,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -73148,62 +73154,62 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -eFh +gWT +gWT +gWT +gWT +gWT +xoe afH -agc -agh -ahM -agc -agc -ajt +vuM +div +pic +vuM +vuM +wRn adZ -akJ -alj -alg -alg -alg -amT -aoM -apA -aqo +dNm +ujK +mmW +mmW +mmW +odO +hMR +sXC +uMw adZ aao aao -jgW +oOO amY -auA -avn +dzp +vAv amY -gXp -gXp -eFh -tQw -amG +tEI +tEI +xoe +gWT +hbY anI anI -aAU +pkE anL -aDp -arN -aFl +bWD +eIn +ppi anI anI anI -aIL -aJM +twY +pGN anI -hZc -jKI -hZc -evA -lPL -ooi -hZc +lyJ +kbF +lyJ +gJE +uYP +wgQ +lyJ anI aao aao @@ -73226,13 +73232,13 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -73250,52 +73256,52 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -izh -jGd -izh -izh -izh +giP +giP +giP +giP +giP +giP +giP +giP +cbd +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx aao aao aao aao aao aao -izh -jGd -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh +cbx +kKN +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao aao -izh -izh -otb -otb -izh -izh +cbx +cbx +sva +sva +cbx +cbx aao aao aao @@ -73310,14 +73316,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -73365,61 +73371,61 @@ aao aao aao aao -tQw -tQw -tQw -ahw -tQw -eFh +gWT +gWT +gWT +iBs +gWT +xoe adZ adZ adZ adZ -air -agc -ajv +lZs +vuM +amF adZ adZ -alk -alY -amU -amU -amU -alY -apB +rug +lxS +qRQ +qRQ +qRQ +lxS +dHL adZ adZ -arL -gXp -atk +sur +tEI +nJJ amY -auB -avo +pYe +cEz amY -wQC -tQw -wQC -gXp -eFh +euL +gWT +euL +tEI +xoe anL -aAT -aAY -aPq -aDq -hWa -aFm -awe +cBI +tyL +tqs +xaf +lyo +mLO +qsn anI anI -aIK -wko +gkN +rSh anI aMr -vgZ +oos aMr -uPK +lsR ePk -wjW +mjV uUV anI aao @@ -73443,12 +73449,12 @@ aao aao aao aao -waJ -waJ -waJ -waJ -waJ -waJ +idD +idD +idD +idD +idD +idD aao aao aao @@ -73465,25 +73471,25 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -izh -izh -izh -izh +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +cbd +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -73491,28 +73497,28 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -73527,14 +73533,14 @@ aao aao aao aao -izh -jGd -izh -izh -izh -izh -izh -izh +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -73583,18 +73589,18 @@ aao aao aao aao -tQw -tQw -tQw -tQw -eFh +gWT +gWT +gWT +gWT +xoe afd -agj -agc -ahM -agc -agh -agc +nTA +vuM +pic +vuM +div +vuM adZ adZ adZ @@ -73606,33 +73612,33 @@ adZ adZ adZ aao -arM -tQw -eFh +kQs +gWT +xoe amk -auC -avp +eqv +vOc amk -arM -gXp -axU -tQw -eFh +kQs +tEI +ngU +gWT +xoe anL -aAU -aAU +pkE +pkE anL -aDq -hwy -hWa -aGi -awA +xaf +rIs +lyo +tnp +bOK anL -aIS -aJN +ylj +loD anI anI -fgD +fvo anI anI anI @@ -73660,12 +73666,12 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP aao aao aao @@ -73679,28 +73685,28 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -bLA -izh -izh -izh -izh -izh -izh -izh -izh +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +xfp +cbd +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -73708,29 +73714,29 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -73742,15 +73748,15 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -jGd -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx aao aao aao @@ -73801,16 +73807,16 @@ aao aao aao aao -tQw -tQw -tQw -eFh +gWT +gWT +gWT +xoe afd -agi -agZ +yeB +iLL adZ adZ -aiU +fIU adZ adZ aao @@ -73823,38 +73829,38 @@ aao aao aao aao -wQC +euL asx -eFh +xoe amY -auB -eJE +pYe +tLq amY -wQC -tQw -tQw -tQw -eFh +euL +gWT +gWT +gWT +xoe anI anL anL anI -aDr -hWa -hWa -hWa -aGW +pZy +lyo +lyo +lyo +hoE anL -aIK -aJO +gkN +kHk anI -aLH +pAx aLI -aMW +iSv aHP anI -juo -dtf +nfc +ual anI aao aao @@ -73875,14 +73881,14 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -73894,29 +73900,29 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -izh -izh -izh +giP +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP +giP +cbd +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -73925,29 +73931,29 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx aao aao aao @@ -73958,16 +73964,16 @@ aao aao aao aao -izh -izh -izh -otb -otb -izh -izh -izh -izh -izh +cbx +cbx +cbx +sva +sva +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -74018,17 +74024,17 @@ aao aao aao aao -tQw -tQw -wQC -eFh +gWT +gWT +euL +xoe adZ adZ adZ adZ -ais -agl -agl +nNa +vBe +vBe adZ aao aao @@ -74038,40 +74044,40 @@ aao aao aao aao -jgW -gXp -eFh -tQw -tQw +oOO +tEI +xoe +gWT +gWT amY -auA -avn +dzp +vAv amY -gmN +nwN xFZ -axV -tQw -eFh +uoN +gWT +xoe anL -aAV -aBG -aCz -aDq -xUo -hWa -hWa -aGW -aHR -aIK -wko -aHR +mzR +cgs +ilt +xaf +hDC +lyo +lyo +hoE +ias +gkN +rSh +ias aLI aMs -aLH -aOo +pAx +qKo anL -aQv -aRx +kkP +mRh anI aao aao @@ -74092,13 +74098,13 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -74110,30 +74116,30 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -izh -izh -izh +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +cbd +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -74141,30 +74147,30 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -otb -otb -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx +cbx +sva +sva +cbx aao aao aao @@ -74172,19 +74178,19 @@ aao aao aao aao -nCp -nCp -nCp -izh -izh -izh -otb -otb -izh -izh -izh -izh -izh +gZf +gZf +gZf +cbx +cbx +cbx +sva +sva +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -74235,60 +74241,60 @@ aao aao aao aao -tQw -tQw -wQC -eFh +gWT +gWT +euL +xoe vAs -agk -agk -agk -ait -aiV -agl +rkr +rkr +rkr +dKm +mHv +vBe adZ aao aao aao -jgW -gXp -gXp -gXp -gXp -tQw -tQw -wrz -tQw -tQw +oOO +tEI +tEI +tEI +tEI +gWT +gWT +xOx +gWT +gWT amk -auD -eJE +rxf +tLq anw aao aao -wQC -axV -eFh +euL +uoN +xoe anL -aAW -aBH -aCA -aDs -hWa -aFn -hWa -aGW -hmm -aIU -aJQ -hmm -aLH +nZL +cEb +bqY +hDQ +lyo +iJc +lyo +hoE +cMt +gVF +ciW +cMt +pAx aMt aMs aLI -aPq -aQw -aRy +tqs +uFt +jeD anI aao aao @@ -74305,17 +74311,17 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -74326,81 +74332,81 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao -gCE -gCE -bLA -izh -izh -izh -izh -izh -izh -izh -izh +giP +giP +cbd +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao aao aao -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -otb -otb -izh -izh -otb -otb -izh -izh +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx +cbx +sva +sva +cbx +cbx +sva +sva +cbx +cbx aao aao aao aao -izh -izh -nCp -nCp -nCp -izh -izh -izh -izh -izh -izh -otb -otb -izh +cbx +cbx +gZf +gZf +gZf +cbx +cbx +cbx +cbx +cbx +cbx +sva +sva +cbx aao aao aao @@ -74452,57 +74458,57 @@ aao aao aao aao -tQw -tQw -wQC -eFh +gWT +gWT +euL +xoe vAs -agl -ahb -agl -aiu -bkY -ajw +vBe +nCd +vBe +kUK +bND +cGF adZ aao aao aao -wQC -tQw -tQw -tQw -tQw -tQw -sNQ -tQw -tQw -tQw +euL +gWT +gWT +gWT +gWT +gWT +dyT +gWT +gWT +gWT amk amk amk amk aao aao -tQw -wQC -eFh +gWT +euL +xoe anI anL anL anI -aDt -hWa -hWa -hWa -aGW +fvI +lyo +lyo +lyo +hoE anL -aIK -aJR +gkN +pXd anI aLI -aLH -aLH -aXc +pAx +pAx +qBv anI anI anI @@ -74521,18 +74527,18 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP aao aao aao @@ -74542,82 +74548,82 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP +giP aao aao aao aao aao aao -bLA -izh -jGd -izh -izh -izh -izh -izh -izh -izh +cbd +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -otb -otb -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -otb -otb -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +sva +sva +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +sva +sva +cbx aao aao aao @@ -74669,10 +74675,10 @@ aao aao aao aao -tQw -tQw -tIq -tQw +gWT +gWT +ncJ +gWT adZ adZ adZ @@ -74682,16 +74688,16 @@ adZ adZ adZ aao -jgW -gXp -tQw -tQw -tQw -tQw -tQw -eFh -tQw -tQw +oOO +tEI +gWT +gWT +gWT +gWT +gWT +xoe +gWT +gWT aao aao aao @@ -74700,21 +74706,21 @@ aao aao aao aao -jgW -tQw -eFh +oOO +gWT +xoe anL -aAX -aAU +qid +pkE anL -aDq -hWa -hWa -aFo -aGY +xaf +lyo +lyo +oKg +cpo anL -aIV -aJS +cxu +nAb anI anI aMu @@ -74737,19 +74743,19 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -74758,17 +74764,17 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -74778,62 +74784,62 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -74886,12 +74892,12 @@ aao aao aao aao -tQw -tQw -gmN +gWT +gWT +nwN xFZ -tQw -eMX +gWT +kyB aao aao aao @@ -74899,14 +74905,14 @@ aao aao aao aao -wQC -tQw -tQw -tQw -ahw -tQw -tQw -eFh +euL +gWT +gWT +gWT +iBs +gWT +gWT +xoe aao aao aao @@ -74917,21 +74923,21 @@ aao aao aao aao -wQC -tQw -eFh +euL +gWT +xoe anL -aAY -aAU -aPq -aDq -hWa -aFo -aFp +tyL +pkE +tqs +xaf +lyo +oKg +sfE anI aob -wvR -aJX +lrb +ntz aob aob aob @@ -74954,36 +74960,36 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -74995,62 +75001,62 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -jGd -izh -otb -otb -izh -izh -izh -jGd -izh -izh -izh -wfC -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +kKN +cbx +sva +sva +cbx +cbx +cbx +kKN +cbx +cbx +cbx +mEz +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -75103,27 +75109,27 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -gXp -gXp -aSn -gXp -gXp -gXp -gXp -tQw -tQw -tQw -tQw -tQw -tQw -tQw -sNQ +gWT +gWT +gWT +gWT +gWT +gWT +tEI +tEI +njq +tEI +tEI +tEI +tEI +gWT +gWT +gWT +gWT +gWT +gWT +gWT +dyT aao aao aao @@ -75134,23 +75140,23 @@ aao aao aao aao -wQC -tQw -eFh +euL +gWT +xoe anI anI -aAU +pkE anL -aDu -aEt -aFp +eek +sgc +sfE anI anI aob -aIW -aJU -aFV -aGd +diq +qyN +kDW +ybK aob aao aao @@ -75169,36 +75175,36 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP aao aao aao @@ -75211,62 +75217,62 @@ aao aao aao aao -bLA -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbd +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -hPS -otb -izh -izh -izh -otb -otb -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +bPD +sva +cbx +cbx +cbx +sva +sva +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -75320,26 +75326,26 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -gmN +gWT +gWT +gWT +gWT +gWT +gWT +nwN xFZ -tQw +gWT xFZ xFZ xFZ -tQw -tQw -tQw -tQw -tQw -tQw -tQw -eFh +gWT +gWT +gWT +gWT +gWT +gWT +gWT +xoe aao aao aao @@ -75351,10 +75357,10 @@ aao aao aao aao -gmN -ahw -tQw -eMX +nwN +iBs +gWT +kyB anI anI anI @@ -75364,10 +75370,10 @@ anI anI aao aob -aIX -aJV -aKS -aLM +kLd +kFH +hhB +nPR aob aao aao @@ -75384,37 +75390,37 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -75426,27 +75432,27 @@ aao aao aao aao -gCE -gCE -bLA -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh +giP +giP +cbd +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx aao aao aao @@ -75456,34 +75462,34 @@ aao aao aao aao -izh -izh -izh -izh +cbx +cbx +cbx +cbx aao aao -izh -izh -otb -otb -izh -izh -izh -izh -izh -izh -izh -pTH -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +sva +sva +cbx +cbx +cbx +cbx +cbx +cbx +cbx +dPY +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -75534,29 +75540,29 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -sNQ +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT +gWT +dyT aao aao aao @@ -75568,10 +75574,10 @@ aao aao aao aao -tQw -tQw -tQw -sNQ +gWT +gWT +gWT +dyT aao aao aao @@ -75581,10 +75587,10 @@ aao aao aao aob -aDB -aJW -aKT -aGj +soz +wen +nPu +nix aob aao aao @@ -75601,37 +75607,37 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -75642,27 +75648,27 @@ aao aao aao aao -gCE -gCE -gCE -bLA -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh +giP +giP +giP +cbd +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -75680,26 +75686,26 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -75749,30 +75755,30 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -wQC -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +euL +gWT xFZ -sNQ +dyT aao aao aao @@ -75785,10 +75791,10 @@ aao aao aao aao -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT aao aao aao @@ -75798,8 +75804,8 @@ aao aao aob aob -wvR -aJX +lrb +ntz aob aob aob @@ -75817,39 +75823,39 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -75858,27 +75864,27 @@ aao aao aao aao -gCE -gCE -gCE -gCE -mHp -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +giP +giP +giP +giP +ezK +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -75898,23 +75904,23 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +kKN +cbx +cbx aao aao aao @@ -75966,28 +75972,28 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -76001,11 +76007,11 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -76014,10 +76020,10 @@ aao aao aob aob -aHS -aIZ -aJY -aKU +oSV +oLH +gYS +jKk aob aob aao @@ -76026,74 +76032,74 @@ aao aao aob aob -aTC -aUD +rIE +tzQ aob aob aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh +giP +giP +giP +giP +giP +giP +cbd +cbx +cbx +cbx aao aao aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -76115,22 +76121,22 @@ aao aao aao aao -izh -izh -jGd -izh -izh -otb -otb -izh -jGd -izh -tdB -izh -izh -izh -izh -izh +cbx +cbx +kKN +cbx +cbx +sva +sva +cbx +kKN +cbx +jMo +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -76183,22 +76189,22 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT aao aao aao @@ -76218,11 +76224,11 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -76230,76 +76236,76 @@ aao aao aob aob -aGZ -aHT -aJa -aJZ -aKV -aLO +iFd +iOV +kPg +lUh +tvG +nOi aob aob aao aao aob aob -aSo -aTD -aUE -aVx +mFv +pet +xBW +caa aob aob aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP +giP +giP aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh +giP +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +cbd +cbx +cbx +cbx aao aao aao @@ -76333,19 +76339,19 @@ aao aao aao aao -izh -izh -izh -izh -otb -otb -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +sva +sva +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -76400,21 +76406,21 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -76429,93 +76435,93 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aao aob aob -aGk -aHT -aHU -aHV -aKa -aKW -aKV -aMv +llH +iOV +eUh +usi +qjJ +pCi +tvG +ydT aob aob aob aob -aRz -aSp -aTE -aUF -aVy -aVZ +cxE +whJ +ivY +dpZ +bso +lMY aob aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP +giP +giP +giP +giP +cbd +cbx +cbx aao aao aao @@ -76551,16 +76557,16 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -76617,21 +76623,21 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -76645,59 +76651,59 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aob -aFq -aGl -axn -aHV -aJc -aKb -aKX -aLQ -aMw -aMX -aOp -aPr -aMX -aRA -aSq -jzD -aUG -aVz -aHc +bYV +ivF +jVp +usi +oRT +sOx +opT +kAN +qDT +tHz +sWp +rcK +tHz +ybj +uWN +mIB +snO +uKp +hzE aob aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -76705,32 +76711,32 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA +giP +giP +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +cbd aao aao aao @@ -76770,11 +76776,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +cbx +cbx +cbx +cbx +cbx aao aao aao @@ -76834,20 +76840,20 @@ aao aao aao aao -tQw -tQw -tQw -ahw -tQw -tQw -ozQ -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +iBs +gWT +gWT +xuT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -76862,56 +76868,56 @@ aao aao aao aao -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT aao aao aao aob -aFr -aGm -bny -aHW -bQi -aKc -aKY -aLR -aMx -aMY -aOq -aPs -aMY -aRB -aSr -aTG -bQi -aVz -aWb +sOt +dFs +nCG +jnN +eRf +gXn +ddr +llX +dip +lRu +vIR +pLV +lRu +umP +rPq +obu +eRf +uKp +mcN aob aao aao -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +xfp +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -76926,26 +76932,26 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP aao aao aao @@ -77051,20 +77057,20 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -77079,56 +77085,56 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aob aob -aGn -aHd -aHX -aJd -aKd -aKZ -aLa -aMy +vQd +vXQ +oDU +nRZ +klX +eOB +qzW +ivJ aob aob aob aob -aRC -aSs -aTH -aUH -aVA -aWc +pcw +umD +kpO +fGU +wUy +fVW aob aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -77144,23 +77150,23 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -77268,20 +77274,20 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT +gWT aao aao aao @@ -77296,57 +77302,57 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aao aob aob -aHe -aHd -aJe -aKe -aLa -aLS +wXd +vXQ +qdl +sUb +qzW +uBj aob aob aao aao aob aob -aSt -aTI -aUI -aVB +dbj +kYt +uMK +pEr aob aob aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -77365,11 +77371,11 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP aao aao aao @@ -77485,19 +77491,19 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -77513,19 +77519,19 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -77533,10 +77539,10 @@ aao aao aob aob -aHY -aJf -aKf -aLb +tRH +saY +kck +kDN aob aob aao @@ -77545,25 +77551,25 @@ aao aao aob aob -aTJ -aUJ +uQo +cUk aob aob aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP +giP +giP +giP aao aao aao @@ -77702,19 +77708,19 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -77730,22 +77736,22 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -77763,24 +77769,24 @@ aao aao aob aob -pIN -pIN -tQw -tQw -tQw -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +cBK +cBK +gWT +gWT +gWT +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -77919,19 +77925,19 @@ aao aao aao aao -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +iBs +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -77947,57 +77953,57 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gWT +gWT +gWT +gWT +gWT +gWT +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aao @@ -78136,18 +78142,18 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT +gWT aao aao aao @@ -78165,57 +78171,57 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +giP +giP +xfp +giP +giP +giP +giP +giP +giP +giP +giP +xfp +giP +giP aao aab aab @@ -78353,17 +78359,17 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -78383,56 +78389,56 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aab aaa @@ -78571,16 +78577,16 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao @@ -78601,54 +78607,54 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT aao aao aao aao aao aao -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -gCE -gCE +gWT +gWT +iBs +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT +giP +giP aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aab @@ -78788,9 +78794,9 @@ aao aao aao aao -tQw -tQw -tQw +gWT +gWT +gWT aao aao aao @@ -78819,9 +78825,9 @@ aao aao aao aao -tQw -tQw -tQw +gWT +gWT +gWT aao aao aao @@ -78830,42 +78836,42 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +iBs +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP +giP +giP +giP aao aao aab @@ -79048,40 +79054,40 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw +gWT +gWT +gWT +gWT +gWT +gWT +gWT aao aao -tQw -tQw +gWT +gWT aao aao aao aao aao -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE +giP +giP +giP +xfp +giP +giP +giP +giP aao aao aao @@ -79268,12 +79274,12 @@ aao aao aao aao -tQw -tQw -tQw +gWT +gWT +gWT aao -tQw -tQw +gWT +gWT aao aao aao @@ -79292,12 +79298,12 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE +giP +giP +giP +giP +giP +giP aao aao aao @@ -79511,10 +79517,10 @@ aao aao aao aao -gCE -gCE -gCE -gCE +giP +giP +giP +giP aao aao aao diff --git a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm index 6e418ce24e08..1012c1e1baf8 100644 --- a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm +++ b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm @@ -9,23 +9,6 @@ "ae" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/admin_building) -"af" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/outside/admin_building) -"ag" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/platform_decoration, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"ai" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "aj" = ( /turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) @@ -41,23 +24,6 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"am" = ( -/obj/structure/platform, -/obj/structure/flora/jungle/planttop1{ - pixel_y = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"an" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"ap" = ( -/obj/structure/flora/jungle/plantbot1{ - pixel_y = 10 - }, -/turf/open/jungle, -/area/bigredv2/outside/admin_building) "ar" = ( /obj/structure/machinery/light{ dir = 8 @@ -82,13 +48,6 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"aw" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "ay" = ( /turf/open/floor/dark, /area/bigredv2/outside/admin_building) @@ -111,19 +70,6 @@ /obj/effect/acid_hole, /turf/closed/wall/solaris, /area/bigredv2/outside/admin_building) -"aG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkredcorners2, -/area/bigredv2/outside/admin_building) -"aH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) "aJ" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 @@ -144,15 +90,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"aM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"aN" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) "aO" = ( /obj/item/storage/secure/briefcase, /turf/open/floor/carpet, @@ -174,17 +111,6 @@ }, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"aT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/toolbox/syndicate, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) "aV" = ( /obj/structure/surface/table, /obj/item/ammo_magazine/rifle/rubber, @@ -195,14 +121,6 @@ /obj/item/tool/weldingtool, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"aX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"aY" = ( -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) "aZ" = ( /obj/structure/machinery/light{ dir = 8 @@ -253,33 +171,6 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"be" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"bf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"bg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"bh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Office" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) "bi" = ( /obj/item/ammo_box/magazine/ext{ num_of_magazines = 1 @@ -289,37 +180,10 @@ "bl" = ( /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"bm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"bn" = ( -/turf/open/floor/darkred2/southwest, -/area/bigredv2/outside/admin_building) -"bo" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/darkred2/southeast, -/area/bigredv2/outside/admin_building) "bp" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor, /area/bigredv2/outside/admin_building) -"bs" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Operations"; - name = "\improper Operations Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) "dp" = ( /obj/item/ammo_magazine/rifle/rubber{ current_rounds = 0; @@ -389,24 +253,6 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"vH" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"vO" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"yf" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "za" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -430,16 +276,6 @@ /obj/item/storage/firstaid/regular/empty, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"ND" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"Pk" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "QR" = ( /obj/structure/barricade/metal/wired{ dir = 4 @@ -554,51 +390,3 @@ za ae ae "} -(9,1,1) = {" -af -bm -an -be -aM -an -aX -ND -bn -bs -"} -(10,1,1) = {" -ag -vO -aw -bf -ay -aT -ay -bf -ay -bs -"} -(11,1,1) = {" -am -ap -Pk -aG -aN -aU -aY -bg -bo -bs -"} -(12,1,1) = {" -ai -vH -yf -aH -ae -ae -ae -bh -ae -ae -"} diff --git a/maps/map_files/BigRed/standalone/clfship.dmm b/maps/map_files/BigRed/standalone/clfship.dmm new file mode 100644 index 000000000000..dc489551da83 --- /dev/null +++ b/maps/map_files/BigRed/standalone/clfship.dmm @@ -0,0 +1,3019 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ak" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"aN" = ( +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"aR" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"aZ" = ( +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"bA" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_3" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"bC" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"bN" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/lv624/lazarus/crashed_ship) +"bU" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"ca" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/c) +"ct" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"cz" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"cB" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"cC" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"cY" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"dm" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/admin_building) +"do" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"dr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"ds" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"dv" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/mars, +/area/lv624/lazarus/crashed_ship) +"dL" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan9" + }, +/area/lv624/lazarus/crashed_ship) +"dZ" = ( +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/admin_building) +"eg" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"eo" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"ew" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"eA" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"eD" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_2" + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"eF" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"eH" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_r_w" + }, +/area/lv624/lazarus/crashed_ship) +"eJ" = ( +/obj/item/weapon/gun/rifle/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"eL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_y = 1 + }, +/obj/item/stack/sheet/plasteel{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/orange/southeast, +/area/lv624/lazarus/crashed_ship) +"eZ" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"fe" = ( +/obj/structure/barricade/wooden, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"fi" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"fu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 3 + }, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"fI" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_2" + }, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + density = 1; + closed = 0 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/c) +"fR" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_3" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"fW" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/lv624/lazarus/crashed_ship) +"gc" = ( +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"gd" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_3_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"gf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper General Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"gj" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"gn" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Armoury"; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"gs" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan21" + }, +/area/lv624/lazarus/crashed_ship) +"gw" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"gx" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"gz" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"gE" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"gN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bridge" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"gO" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"gW" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"hh" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"hi" = ( +/obj/item/stool, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"hF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"hK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"hW" = ( +/obj/item/stool, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"hX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"id" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_right" + }, +/area/lv624/lazarus/crashed_ship) +"ik" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"iP" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"iV" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "clfship" + }, +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1" + }, +/area/lv624/lazarus/crashed_ship) +"jc" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/c) +"jd" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"jj" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/storage/bag/trash, +/obj/item/tool/screwdriver, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"jl" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/emerald/northeast, +/area/lv624/lazarus/crashed_ship) +"jn" = ( +/turf/open/floor/asteroidwarning, +/area/lv624/lazarus/crashed_ship) +"jp" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"jq" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/outside/admin_building) +"jN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/attached_gun/flamer, +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"kd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/heavy_barrel, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"ki" = ( +/obj/item/stack/rods, +/turf/open/floor/asteroidfloor/north, +/area/lv624/lazarus/crashed_ship) +"kk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"kv" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1" + }, +/area/lv624/lazarus/crashed_ship) +"kD" = ( +/obj/structure/machinery/power/smes/buildable/charged, +/turf/open/floor/almayer/orange/north, +/area/lv624/lazarus/crashed_ship) +"kO" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_4_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"kP" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"kT" = ( +/obj/item/stack/rods, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"lh" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"lj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Dining Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"lI" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"lM" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_6_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"lR" = ( +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"lX" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"mm" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_medic, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"mt" = ( +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"mu" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"mB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"mH" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"mU" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"mX" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"mZ" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/lv624/lazarus/crashed_ship) +"na" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"nq" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/lv624/lazarus/crashed_ship) +"ny" = ( +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"nC" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"nM" = ( +/obj/structure/girder/displaced, +/turf/open/mars, +/area/lv624/lazarus/crashed_ship) +"nX" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"on" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/adv, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"oo" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/lv624/lazarus/crashed_ship) +"oF" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/c) +"oT" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/obj/item/ammo_casing/shell{ + icon_state = "casing_7_1" + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"pq" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"ps" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"pw" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/admin_building) +"py" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + density = 1; + closed = 0 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"pE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/rifle/mar40/lmg{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"pG" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"pQ" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"pX" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_s_w" + }, +/area/lv624/lazarus/crashed_ship) +"pZ" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/turf/open/floor/almayer/orange/northeast, +/area/lv624/lazarus/crashed_ship) +"qa" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"qf" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"qh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"qo" = ( +/turf/open/floor/asteroidwarning/north, +/area/lv624/lazarus/crashed_ship) +"qt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -8 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 9 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"qH" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"qL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"qY" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/c) +"rq" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"rt" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"rV" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"sf" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/c) +"sp" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"sq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"sF" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"sM" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"sO" = ( +/obj/structure/machinery/computer/station_alert{ + icon_state = "atmosb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"sV" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"te" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"ti" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"tk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bunk Beds" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"tx" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"tE" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"tT" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/incendiary{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"tV" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"ua" = ( +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"uc" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"uu" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"uY" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/c) +"uZ" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"vc" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/c) +"vg" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"vu" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"vy" = ( +/obj/structure/machinery/floodlight, +/turf/open/mars, +/area/bigredv2/outside/c) +"vE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Engineering Storage" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"vJ" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"vS" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"wD" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"xd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -4 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"xh" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/toolbox, +/obj/item/toy/deck/uno{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"xj" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"xk" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"xl" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/lv624/lazarus/crashed_ship) +"xs" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/c) +"xt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"xZ" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"yx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"yK" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 3; + pixel_y = 20 + }, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"yP" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/obj/item/ammo_casing/shell{ + icon_state = "casing_7_1" + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"yY" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"ze" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_3" + }, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + density = 1; + closed = 0 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"zt" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"zG" = ( +/turf/open/mars, +/area/lv624/lazarus/crashed_ship) +"Ab" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Ai" = ( +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Ak" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Au" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_color = "green"; + phone_id = "Medical Bay"; + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"AI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Side Entrance" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"AV" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_left" + }, +/area/lv624/lazarus/crashed_ship) +"Bt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"Bx" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/dorms) +"BF" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"BW" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan2" + }, +/area/lv624/lazarus/crashed_ship) +"Cm" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Co" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"CP" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"CS" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = -3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3 + }, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"Dc" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2" + }, +/area/lv624/lazarus/crashed_ship) +"Dd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"Dk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/admin_building) +"Dm" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/lv624/lazarus/crashed_ship) +"DD" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/toy/katana, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"DF" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"Eb" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/obj/item/ammo_casing/shell{ + icon_state = "casing_7_1" + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"Ef" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"Ep" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Ex" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"EP" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_white_t_up" + }, +/area/lv624/lazarus/crashed_ship) +"EQ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/blue/north, +/area/lv624/lazarus/crashed_ship) +"ER" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"EU" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Fj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"Fq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"Fu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"FX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Medical Bay" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"FY" = ( +/turf/open/floor/almayer/greencorner/north, +/area/lv624/lazarus/crashed_ship) +"Gb" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"Gy" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"GD" = ( +/obj/structure/girder, +/obj/item/stack/rods, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"GG" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"GN" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"Ha" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Hd" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = -3; + pixel_y = 20 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/lv624/lazarus/crashed_ship) +"HA" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Dormitories"; + name = "\improper Dormitories Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"HM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"HN" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/c) +"HO" = ( +/turf/open/floor/asteroidfloor/north, +/area/lv624/lazarus/crashed_ship) +"HT" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"HW" = ( +/obj/item/stool, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Iz" = ( +/turf/open/floor/almayer/greencorner, +/area/lv624/lazarus/crashed_ship) +"IA" = ( +/turf/open/floor/panelscorched, +/area/bigredv2/outside/admin_building) +"IF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/east, +/area/lv624/lazarus/crashed_ship) +"IH" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer/green/northwest, +/area/lv624/lazarus/crashed_ship) +"IL" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"IQ" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"IS" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/restraint/handcuffs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/green/southeast, +/area/lv624/lazarus/crashed_ship) +"IX" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan8" + }, +/area/lv624/lazarus/crashed_ship) +"IY" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"IZ" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Jd" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"Jp" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"Jy" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"JC" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/c) +"JI" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"JN" = ( +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"JS" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/c) +"JX" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Kp" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/lv624/lazarus/crashed_ship) +"KH" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/c) +"KP" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"KS" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"KY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"Lp" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"Lq" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + faction_group = list("CLF") + }, +/obj/item/ammo_casing/shell{ + icon_state = "casing_7_1" + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"LJ" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + icon_state = "plasteel_closed_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"LK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/transmitter/clf_net/rotary{ + phone_category = "CR-116"; + phone_color = "yellow"; + phone_id = "Engineering" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"LS" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"LY" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Cargo Bay"; + pixel_y = 32 + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Mq" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Mr" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing fifty reposessed USCM MRE packets."; + name = "\improper CLF Supply MRE crate (x50)" + }, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"MG" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"MP" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/lv624/lazarus/crashed_ship) +"MR" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"MT" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/orange/southwest, +/area/lv624/lazarus/crashed_ship) +"MW" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"NL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"NQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Oa" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Oq" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Ov" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"OC" = ( +/turf/closed/wall/solaris/reinforced, +/area/lv624/lazarus/crashed_ship) +"OQ" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Pr" = ( +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Py" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/backpack/general_belt{ + pixel_y = 3 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"PB" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "clf_umbilical_1"; + pixel_x = 1; + pixel_y = 28; + range = 20 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"PD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"PQ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"PY" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"Qd" = ( +/obj/item/circuitboard/apc{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/cell{ + pixel_x = -2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Qn" = ( +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"Qx" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"QO" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"QY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"Rl" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"RE" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_2" + }, +/area/lv624/lazarus/crashed_ship) +"RP" = ( +/turf/closed/shuttle/ert, +/area/lv624/lazarus/crashed_ship) +"RR" = ( +/obj/item/stack/rods, +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"RW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/admin_building) +"Sa" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Si" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"Sn" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/clothing/accessory/storage/webbing, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"So" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Su" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"Sz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"SH" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"SI" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_3" + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/c) +"SV" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_9_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"SX" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/lv624/lazarus/crashed_ship) +"Tg" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_2_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Tk" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Operations"; + name = "\improper Operations Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"Tl" = ( +/obj/effect/vehicle_spawner/van/fixed{ + color = "#4a9eed"; + desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; + name = "CLF Van" + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"Tn" = ( +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"Tp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"Tz" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_1" + }, +/area/lv624/lazarus/crashed_ship) +"TD" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"TL" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/lv624/lazarus/crashed_ship) +"TX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/admin_building) +"TZ" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"UD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/panelscorched, +/area/bigredv2/outside/admin_building) +"UF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/emerald/northwest, +/area/lv624/lazarus/crashed_ship) +"UJ" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/phone, +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"UK" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/lv624/lazarus/crashed_ship) +"Vd" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/c) +"Vi" = ( +/turf/template_noop, +/area/template_noop) +"Vu" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3" + }, +/area/lv624/lazarus/crashed_ship) +"Vy" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"VC" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" + }, +/area/lv624/lazarus/crashed_ship) +"VJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"VQ" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"VV" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + dir = 4; + density = 1; + closed = 0 + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"VW" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"Wd" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + dir = 8; + density = 1; + closed = 0 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"Wp" = ( +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"Wy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"WF" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"WG" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"WO" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"WT" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Xb" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"XP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"XT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"Ym" = ( +/turf/open/mars, +/area/bigredv2/outside/c) +"Yn" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"Ys" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"YF" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"YI" = ( +/obj/structure/machinery/computer/communications{ + icon_state = "commb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/mars, +/area/lv624/lazarus/crashed_ship) +"YV" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Zb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" + }, +/obj/item/paper/prison_station/pirate_note/clfship, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"Zi" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + density = 1; + closed = 0 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Zt" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/c) +"ZJ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"ZN" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) + +(1,1,1) = {" +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +xj +Ym +Ym +xs +"} +(2,1,1) = {" +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +xj +Ym +Ym +lh +"} +(3,1,1) = {" +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +HM +Ym +Ym +Vd +"} +(4,1,1) = {" +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +rV +dZ +Bt +dZ +eZ +Kp +RP +RP +eH +RP +RP +bN +Xb +aR +Jd +Fj +ds +XT +ZN +jq +Tk +hF +HM +Ym +Ym +Vd +"} +(5,1,1) = {" +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Gy +UJ +qL +mX +ps +gs +gj +MT +Tz +UF +Ov +IX +bN +Xb +aR +Jd +dZ +mX +dr +VJ +Tk +hF +xj +Ym +Ym +PY +"} +(6,1,1) = {" +Vi +Vi +Vi +Vi +Wd +te +vS +uc +mU +mX +mX +dm +Kp +RP +Dm +Hd +mZ +Tz +Dd +Su +Ef +IX +MP +UD +IA +TX +dZ +Dk +QY +Tk +SH +xj +Ym +Ym +Ym +"} +(7,1,1) = {" +lX +ew +ew +pq +ew +yP +SH +uc +mX +dZ +mX +qL +gs +pQ +Qd +ER +mB +Tz +rt +aZ +LS +yx +id +RP +RP +RP +RP +RP +MP +pw +uc +xj +Ym +Ym +Ym +"} +(8,1,1) = {" +wD +oT +Ym +Ym +Ym +Ym +ti +uc +RW +Kp +Oq +Ha +Ai +kD +mB +eF +LK +Tz +Au +mB +mB +Zb +Tz +Mr +eA +VW +uZ +GG +IX +bN +Xb +aR +Jd +KH +Ym +"} +(9,1,1) = {" +tE +Ym +Ym +Ym +Ym +Ym +ti +Kp +Ep +Dm +aN +cz +Tz +pZ +mB +PQ +eL +Tz +kk +LS +mB +cC +Tz +cY +kP +Tl +aN +kP +lR +IX +bN +Xb +aR +Jd +Ym +"} +(10,1,1) = {" +wD +Ym +Ym +Ym +Ym +Ym +ti +GD +jj +eo +lR +ny +EP +RE +vE +RE +RE +pX +bU +TL +mm +Wy +Tz +Gb +kP +cY +aN +Jp +ik +lR +IX +bN +Xb +aR +Jd +"} +(11,1,1) = {" +wD +oT +Ym +Ym +Kp +Dm +qo +RR +aN +xk +Sz +lR +Tz +IY +mB +mB +CS +Tz +jl +IF +mB +mB +mB +lR +qa +kT +vJ +zt +VQ +fR +bA +WT +rq +lR +BW +"} +(12,1,1) = {" +tE +Ym +Ym +Ym +nM +ny +aN +Tz +ny +aN +rq +qf +Tz +XP +aZ +mB +Wp +EP +RE +RE +mB +FX +pX +CP +JN +rq +Tg +TD +qf +rq +aN +ki +aN +ny +BW +"} +(13,1,1) = {" +Tp +ca +Ym +BF +YI +hi +ny +Ep +qh +ny +aN +rq +vg +Sa +JX +mB +mB +gf +mB +mB +mB +DF +Tz +PB +aN +OQ +aN +bC +lR +ny +HO +Pr +xk +kP +EU +"} +(14,1,1) = {" +Bx +xj +Ym +xk +ny +zG +tx +EP +cB +ny +rq +RE +pX +Rl +ua +ua +Qn +aZ +DF +mB +DF +Tn +sM +gE +gd +lR +rq +lM +lR +xk +rq +aN +ny +aN +dv +"} +(15,1,1) = {" +Bx +Eb +Ym +vg +lR +xk +aN +gN +lR +aN +xk +Py +EP +RE +RE +RE +RE +pX +KY +mB +jp +gw +Tz +vu +nC +aN +JI +Zi +rq +rq +ny +rq +zG +kP +jd +"} +(16,1,1) = {" +Bx +Ex +VV +fW +sO +hW +lR +aN +Fu +rq +rq +JX +Tz +do +PD +on +NL +Tz +DF +pE +qt +Tn +sM +lR +YF +kO +rq +py +ny +aN +xZ +jn +zG +kP +dv +"} +(17,1,1) = {" +Bx +xj +Ym +oo +xl +lR +rq +Tz +ny +rq +aN +hX +vg +Cm +tT +xh +NL +Tz +nX +NQ +xd +gw +Tz +LY +lR +lR +ny +pG +aN +Pr +ny +ny +zG +zG +Mq +"} +(18,1,1) = {" +Bx +xj +Ym +Ym +oo +xl +WF +sM +rq +aZ +mB +aZ +Tz +ZJ +QO +QO +QO +Tz +gn +HT +Ys +Tn +Tz +TZ +LJ +lI +lR +hh +WT +lR +ny +aN +aN +ny +BW +"} +(19,1,1) = {" +HA +xj +vc +Ym +oF +sM +MW +Tz +Ab +aZ +mB +mB +lj +mB +mB +mB +mB +lj +mB +mB +yY +gw +So +aN +Vy +eJ +GN +WG +Oa +Oa +eg +WT +lR +rq +BW +"} +(20,1,1) = {" +HA +xj +sF +vc +Ym +oo +nq +pX +sp +Ab +mB +aZ +aZ +QO +QO +QO +QO +aZ +aZ +mB +DF +Tn +cB +lR +eo +qa +Ak +ny +YV +SV +lR +dL +nq +nq +UK +"} +(21,1,1) = {" +sq +xj +sF +sF +JS +sF +ti +Tz +Jy +gx +mB +aZ +EP +RE +RE +RE +RE +pX +EQ +mB +jp +gw +Tz +CP +aN +sV +ny +iP +qa +Vy +dL +SX +Vu +Dc +kv +"} +(22,1,1) = {" +gz +xj +sF +sF +sF +sF +ti +oo +nq +xl +mB +aZ +Tz +IH +DD +fu +FY +tk +aZ +mB +DF +Tn +Tz +hK +lR +mt +aN +IZ +lR +dL +SX +Vu +Dc +kv +JC +"} +(23,1,1) = {" +Bx +xj +sF +qY +HN +HN +ti +OC +gW +oo +lR +AI +pX +xt +JX +HW +mB +mB +WO +mB +mB +kd +Tz +gO +rq +ny +rq +Qx +dL +SX +Vu +Dc +iV +SH +xj +"} +(24,1,1) = {" +Bx +xj +jc +Ym +Ym +Ym +ti +OC +na +gc +qH +rq +gs +mH +mu +Qn +Iz +Tz +IL +xl +aZ +jN +AV +nq +nq +nq +nq +nq +UK +uc +uc +KP +uu +ti +xj +"} +(25,1,1) = {" +Bx +xj +Ym +Ym +Ym +Ym +sf +ew +ew +ew +ze +SI +oo +nq +xl +yK +KS +Tz +MG +Tz +Co +dL +UK +SH +ew +ew +ew +ew +ew +ew +ew +fi +sF +ak +SH +"} +(26,1,1) = {" +Bx +xj +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +gs +Sn +IS +Tz +Lp +Tz +dL +SX +Vu +Dc +kv +Ym +MR +sF +sF +Zt +Ym +Ym +fe +ak +SH +"} +(27,1,1) = {" +Bx +xj +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +oo +nq +nq +VC +nq +VC +SX +Vu +Dc +kv +JS +JS +sF +sF +sF +sF +JS +JS +sF +ti +xj +"} +(28,1,1) = {" +Bx +xj +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Lq +eD +Ym +uY +IQ +IQ +IQ +IQ +IQ +IQ +SH +Fq +IQ +IQ +IQ +IQ +IQ +IQ +IQ +IQ +IQ +SH +xj +"} +(29,1,1) = {" +Bx +xj +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +eD +Ym +ti +SH +ew +ew +ew +ew +ew +ew +ew +ew +ew +ew +ew +ew +ew +ew +ew +ew +ew +ct +"} +(30,1,1) = {" +Bx +xj +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +vy +Ym +Lq +eD +Ym +ti +xj +sF +sF +sF +sF +sF +sF +sF +HN +HN +HN +jc +Ym +Ym +Ym +tV +HN +HN +jc +"} +(31,1,1) = {" +Bx +SH +IQ +IQ +IQ +IQ +IQ +IQ +IQ +Yn +IQ +IQ +IQ +fI +Ym +ti +xj +sF +Si +HN +HN +HN +HN +jc +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +"} diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index 2e078646853d..ca519502e139 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -24,23 +24,6 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall, /area/desert_dam/exterior/rock) -"aae" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aaf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aag" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars/mars_dirt_10, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "aah" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/r_wall/chigusa, @@ -61,23 +44,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/east_caves) -"aam" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/exterior/valley/valley_wilderness) -"aan" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/exterior/valley/valley_wilderness) "aao" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) -"aap" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_east) -"aaq" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/interior/caves/east_caves) "aar" = ( /turf/open/gm/river/desert/deep, /area/desert_dam/interior/caves/east_caves) @@ -91,33 +61,9 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) -"aav" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_two) -"aaw" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_wilderness) -"aax" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/interior/caves/east_caves) "aay" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/caves/east_caves) -"aaz" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/interior/caves/east_caves) -"aaA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) "aaB" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -130,49 +76,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aaD" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"aaE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aaF" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) "aaG" = ( /obj/structure/prop/brazier, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"aaH" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"aaI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_east) -"aaJ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"aaK" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"aaL" = ( -/obj/item/trash/c_tube, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) "aaM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -182,30 +89,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aaN" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"aaO" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"aaP" = ( -/obj/structure/floodgate, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) "aaQ" = ( /obj/structure/floodgate, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) -"aaS" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_labs) "aaT" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -213,9 +101,6 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"aaU" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/valley/valley_labs) "aaV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -223,41 +108,6 @@ /obj/item/trash/hotdog, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"aaW" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_east) -"aaX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/exterior/valley/valley_labs) -"aaY" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"aaZ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"aba" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/landing_pad_one) -"abb" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"abc" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) "abd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -274,37 +124,11 @@ /obj/item/trash/cigbutt/bcigbutt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"abg" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) -"abh" = ( -/obj/item/trash/USCMtray, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_labs) -"abi" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison/whitepurple/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"abj" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/landing_pad_one) "abk" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/exterior/valley/south_valley_dam) -"abl" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/valley/valley_labs) "abm" = ( /obj/structure/floodgate{ icon_state = "0,3" @@ -321,28 +145,11 @@ /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/exterior/valley/south_valley_dam) -"abp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) "abq" = ( /obj/structure/powerloader_wreckage, /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"abr" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/valley/valley_labs) -"abs" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/valley/valley_labs) -"abu" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_east) "abv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, @@ -353,14 +160,6 @@ /obj/item/trash/raisins, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"abx" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aby" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_labs) "abz" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt, @@ -373,19 +172,6 @@ name = "reinforced metal wall" }, /area/desert_dam/exterior/river/riverside_east) -"abB" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/valley/valley_labs) -"abC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_north) "abD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -400,69 +186,10 @@ /obj/item/trash/boonie, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_central_north) -"abG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_central_north) -"abH" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"abI" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel/spade, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"abJ" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_east) -"abK" = ( -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/valley/valley_labs) -"abL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"abM" = ( -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/valley/valley_labs) -"abN" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_one) "abO" = ( /obj/structure/surface/rack, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"abP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/valley/valley_labs) -"abQ" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"abR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"abS" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) "abT" = ( /obj/structure/machinery/conveyor{ id = "anomalybelt" @@ -476,17 +203,6 @@ "abU" = ( /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"abV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) -"abW" = ( -/obj/structure/fence, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/east_caves) "abX" = ( /obj/structure/largecrate/random, /turf/open/asphalt, @@ -504,35 +220,12 @@ /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aca" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/valley/valley_labs) -"acb" = ( -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/valley/valley_labs) -"acc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/structure/largecrate/random, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) "acd" = ( /obj/structure/floodgate{ icon_state = "0,2" }, /turf/closed/wall/indestructible/invisible, /area/desert_dam/exterior/river/riverside_east) -"acf" = ( -/obj/structure/surface/table, -/turf/open/floor/whitegreen/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"acg" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_labs) "ach" = ( /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/valley/valley_labs) @@ -543,17 +236,9 @@ /obj/item/trash/chips, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"acj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/structure/largecrate/random/secure, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) -"ack" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_east) +"acm" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/south_valley_dam) "acn" = ( /obj/item/trash/eat, /turf/open/asphalt, @@ -571,10 +256,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"acq" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/rock1, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acr" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow_edge, @@ -600,10 +281,6 @@ "acw" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"acx" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/south_tunnel) "acy" = ( /obj/item/trash/plate, /obj/item/trash/barcardine, @@ -617,135 +294,19 @@ /obj/effect/landmark/crap_item, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"acB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/item/trash/used_stasis_bag, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"acC" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"acD" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/valley/valley_labs) -"acE" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acF" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acG" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"acH" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/valley/valley_labs) -"acI" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) -"acJ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"acK" = ( -/turf/open/floor/prison/whitepurple/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"acL" = ( -/obj/item/trash/burger, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_labs) -"acM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"acN" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acO" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acP" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/valley/valley_labs) -"acQ" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "acR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"acS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acU" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"acV" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acW" = ( /obj/structure/largecrate/random/secure, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"acX" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/valley/valley_labs) -"acY" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/east_caves) -"acZ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) "ada" = ( /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/hanger) -"adb" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_one) "adc" = ( /obj/structure/fence, /turf/open/desert/rock, @@ -753,22 +314,6 @@ "add" = ( /turf/open/desert/rock, /area/desert_dam/interior/caves/east_caves) -"ade" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) -"adf" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) -"adg" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_wilderness) -"adh" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "adi" = ( /obj/structure/surface/table, /obj/structure/machinery/power/apc{ @@ -778,9 +323,6 @@ }, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"adj" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) "adk" = ( /obj/structure/surface/table, /obj/item/tool/weldingtool, @@ -802,39 +344,13 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"adn" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "ado" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"adp" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_east) -"adq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/prop/dam/truck/damaged, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"adr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"ads" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/interior/dam_interior/south_tunnel) "adt" = ( /turf/closed/wall/wood, /area/desert_dam/building/bar/backroom) -"adu" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "adv" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; @@ -849,9 +365,6 @@ /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"ady" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/exterior/valley/valley_wilderness) "adz" = ( /obj/structure/closet/secure_closet/bar, /turf/open/floor/interior/wood, @@ -859,12 +372,6 @@ "adA" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"adB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) "adC" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/effect/blocker/toxic_water/Group_2, @@ -875,18 +382,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, /area/desert_dam/interior/caves/east_caves) -"adE" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/valley/valley_labs) -"adF" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"adG" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_east) "adH" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, @@ -895,93 +390,30 @@ "adI" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"adJ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_east) -"adK" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/exterior/valley/valley_crashsite) "adL" = ( /obj/effect/blocker/toxic_water, /obj/structure/platform, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) -"adM" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_east) "adN" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert, /area/desert_dam/exterior/river/riverside_east) -"adO" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_labs) -"adP" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_east) -"adQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_east) "adR" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_east) -"adS" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_east) -"adU" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_east) "adV" = ( /obj/structure/platform, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/valley/valley_labs) -"adW" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/valley/valley_labs) -"adX" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_east) -"adY" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) "adZ" = ( /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_10" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"aea" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_wilderness) "aeb" = ( /obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/desert_shore1, @@ -1001,32 +433,6 @@ name = "reinforced metal wall" }, /area/desert_dam/exterior/valley/valley_cargo) -"aef" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aeg" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"aeh" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_east) -"aei" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) "aej" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -1064,146 +470,37 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aep" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, +"aez" = ( +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"aeq" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, +"aeC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_labs) -"aer" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"aes" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aet" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_north"; - name = "Checkpoint Lockdown" +"aeD" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/prison/red/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aeu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurplecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aev" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_labs) -"aew" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_labs) -"aex" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aey" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"aez" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"aeA" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_labs) -"aeB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aeC" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_labs) -"aeD" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"aeE" = ( -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_wilderness) -"aeF" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_east) -"aeG" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"aeH" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"aeE" = ( +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_wilderness) +"aeH" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ dir = 8 }, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"aeI" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_east) -"aeJ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"aeK" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_east) -"aeL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/north_tunnel) "aeM" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_labs) -"aeN" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_east) -"aeO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"aeP" = ( -/turf/open/floor/filtrationside/northeast, -/area/desert_dam/exterior/valley/valley_mining) -"aeQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) "aeR" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -1219,76 +516,17 @@ "aeT" = ( /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) -"aeU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_wilderness) "aeV" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_east) -"aeW" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, -/turf/open/floor/prison/blue/north, -/area/desert_dam/landing/console) -"aeX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison/red/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aeY" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"aeZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"afa" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications, -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) "afb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"afc" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/hanger) "afd" = ( /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/central_tunnel) -"afe" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aff" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"afg" = ( -/turf/open/floor/prison/redcorner/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"afh" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/hanger) "afi" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/south_valley_dam) @@ -1299,60 +537,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river_mouth/southern) -"afk" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"afl" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_wilderness) -"afm" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_wilderness) -"afn" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"afo" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"afp" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"afq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"afr" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"afs" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) "aft" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform, @@ -1365,32 +549,10 @@ /obj/structure/machinery/colony_floodlight, /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/central_tunnel) -"afv" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/workshop) "afw" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"afx" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/valley/valley_labs) -"afy" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"afz" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/dam_interior/workshop) -"afA" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"afB" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "afC" = ( /obj/structure/platform{ dir = 1 @@ -1406,25 +568,9 @@ }, /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/south_tunnel) -"afF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) "afG" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"afH" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"afI" = ( -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"afJ" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"afK" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "afL" = ( /obj/structure/platform{ dir = 1 @@ -1435,21 +581,12 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"afM" = ( -/turf/open/floor/filtrationside/east, -/area/desert_dam/exterior/valley/valley_mining) "afN" = ( /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"afO" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/dam_interior/central_tunnel) "afP" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"afQ" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "afR" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/dam_interior/central_tunnel) @@ -1469,41 +606,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"afU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) -"afV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) -"afW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Administration Control Room" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/administration/control_room) "afX" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"afY" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/red/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"afZ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) "aga" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -1521,33 +627,12 @@ "agd" = ( /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/south_tunnel) -"age" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/central_tunnel) "agf" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"agg" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_wilderness) -"agh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_wilderness) -"agi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_wilderness) "agj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -1582,12 +667,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"agp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_northwest) "agq" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt, @@ -1611,9 +690,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"agt" = ( -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/valley/valley_labs) "agu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1637,13 +713,6 @@ /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"agx" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/prop/dam/truck/cargo, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) "agy" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_northwest) @@ -1652,31 +721,10 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"agA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"agB" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"agC" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"agD" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_crashsite) "agE" = ( /obj/structure/platform, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/valley/valley_labs) -"agF" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) "agG" = ( /obj/structure/surface/table, /obj/structure/window/reinforced{ @@ -1689,9 +737,6 @@ /obj/structure/window/framed/chigusa, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"agI" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "agJ" = ( /obj/structure/platform, /obj/structure/platform{ @@ -1700,44 +745,12 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"agK" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"agL" = ( -/turf/open/floor/plating/warnplate, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"agM" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"agN" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "agO" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/central_tunnel) -"agP" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/hanger) "agQ" = ( /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"agR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"agS" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_northwest) "agT" = ( /obj/structure/desertdam/decals/road_edge, /obj/structure/desertdam/decals/road_stop{ @@ -1766,19 +779,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"agX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_labs) -"agY" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) "agZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/desertdam/decals/road_edge{ @@ -1796,10 +796,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahb" = ( -/obj/structure/window/framed/chigusa, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "ahc" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -1807,12 +803,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"ahd" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ahe" = ( -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ahf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -1823,16 +813,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_central_north) -"ahg" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow_edge/covered/west, -/area/desert_dam/exterior/river/riverside_central_north) -"ahh" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) "ahi" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/barricade/wooden{ @@ -1848,11 +828,6 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahk" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/prop/dam/truck/damaged, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) "ahl" = ( /obj/structure/desertdam/decals/road_stop{ dir = 4; @@ -1867,22 +842,10 @@ /obj/structure/machinery/colony_floodlight, /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/western_dam_cave) -"aho" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"ahp" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/west_tunnel) "ahq" = ( /obj/structure/desertdam/decals/road_stop, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahr" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "ahs" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -1899,9 +862,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"ahu" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_northwest) "ahv" = ( /obj/structure/platform, /obj/structure/platform{ @@ -1924,14 +884,6 @@ /obj/structure/largecrate/random/secure, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahy" = ( -/turf/open/floor/filtrationside/southwest, -/area/desert_dam/exterior/valley/valley_mining) -"ahz" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/largecrate/random/case/small, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) "ahA" = ( /turf/open/floor/filtrationside, /area/desert_dam/exterior/valley/valley_mining) @@ -1954,29 +906,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahF" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_labs) "ahG" = ( /obj/item/limb/foot/r_foot, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"ahH" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) -"ahI" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/gm/river/desert/shallow_edge/covered/west, -/area/desert_dam/exterior/river/riverside_central_north) -"ahJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ahK" = ( /obj/effect/decal/cleanable/vomit, /turf/open/asphalt, @@ -2019,9 +952,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahQ" = ( -/turf/open/floor/filtrationside/southeast, -/area/desert_dam/exterior/valley/valley_mining) "ahR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -2051,36 +981,9 @@ /obj/structure/prop/dam/crane, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ahV" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/exterior/valley/valley_wilderness) -"ahW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"ahX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"ahY" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/valley/valley_labs) "ahZ" = ( /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/valley/valley_labs) -"aia" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/north_tunnel) -"aib" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel) "aic" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_2" @@ -2091,21 +994,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_mining) -"aie" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_mining) -"aif" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_wilderness) -"aig" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/workshop) "aih" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_labs) -"aii" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_labs) "aij" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" @@ -2124,33 +1015,12 @@ /obj/structure/largecrate/random/case/double, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"ain" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aio" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_wilderness) "aip" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_8" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) -"aiq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"air" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_northwest) -"ais" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_northwest) -"ait" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_northwest) "aiu" = ( /obj/structure/platform{ dir = 8 @@ -2172,30 +1042,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"aix" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"aiy" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"aiz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aiA" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) "aiB" = ( /obj/structure/machinery/light, /turf/open/floor/prison, @@ -2207,26 +1053,6 @@ }, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) -"aiD" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_north) -"aiE" = ( -/turf/open/floor/prison/darkpurple2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aiF" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_central_north) "aiG" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -2237,12 +1063,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"aiH" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"aiI" = ( -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "aiJ" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/disposalpipe/segment{ @@ -2251,35 +1071,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"aiK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aiL" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/caves/central_caves) -"aiM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "aiN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/interior/caves/east_caves) -"aiO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"aiP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_mining) -"aiQ" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_labs) "aiR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -2299,21 +1094,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aiT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"aiU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "aiV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" @@ -2341,21 +1121,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aiY" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_northwest) "aiZ" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"aja" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_northwest) -"ajb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) "ajc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand2{ @@ -2363,26 +1131,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"aje" = ( -/obj/structure/fence, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/east_caves) "ajf" = ( /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/interior/caves/east_caves) -"ajg" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_labs) "ajh" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_2" @@ -2396,12 +1147,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajj" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ajk" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "ajl" = ( /obj/structure/window/framed/chigusa, /turf/open/floor/plating, @@ -2411,11 +1156,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajn" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ajo" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -2424,12 +1164,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ajq" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -2449,21 +1183,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"aju" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ajv" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ajw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ajx" = ( /obj/structure/platform{ dir = 1 @@ -2482,26 +1201,12 @@ "ajz" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_workshop) -"ajA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_mining) -"ajB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_crashsite) "ajC" = ( /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_8" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"ajD" = ( -/obj/structure/fence, -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/caves/east_caves) "ajE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -2516,12 +1221,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "ajH" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -2529,27 +1228,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajI" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/exterior/valley/valley_wilderness) -"ajJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"ajK" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_labs) -"ajL" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_labs) -"ajM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_labs) "ajN" = ( /obj/structure/platform{ dir = 1 @@ -2559,67 +1237,12 @@ }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"ajO" = ( -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ajP" = ( -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ajQ" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkpurple2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ajR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"ajS" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"ajT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) "ajU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ajW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"ajX" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/exterior/valley/valley_wilderness) -"ajY" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ajZ" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "aka" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -2649,59 +1272,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ake" = ( -/obj/structure/machinery/chem_dispenser, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"akf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy, -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "akg" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" }, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"akh" = ( -/turf/open/mars/mars_dirt_14, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "aki" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"akj" = ( -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "akk" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akl" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkpurple2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"ako" = ( -/obj/structure/closet/radiation, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) "akp" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -2709,15 +1292,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"akq" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"akr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "aks" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -2725,36 +1299,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"akt" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_labs) -"aku" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"akv" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_labs) -"akw" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "akx" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"aky" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_northwest) -"akz" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) "akA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -2772,42 +1322,6 @@ }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"akD" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"akE" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akF" = ( -/obj/structure/surface/table, -/obj/item/device/reagent_scanner, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akG" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"akI" = ( -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akJ" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) "akK" = ( /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_excavation) @@ -2825,35 +1339,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"akO" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "akP" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_mining) -"akQ" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"akR" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"akS" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"akT" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) "akU" = ( /obj/structure/prop/dam/truck/cargo, /turf/open/asphalt, @@ -2867,63 +1355,6 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"akW" = ( -/turf/open/jungle/impenetrable, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"akX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen, -/obj/item/oldresearch/Blood, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"akY" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplecorners2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"akZ" = ( -/turf/open/floor/prison/darkpurple2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ala" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplecorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alb" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy/tank{ - icon_state = "jarshelf_7" - }, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ald" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ale" = ( -/turf/open/floor/prison/darkpurplecorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alf" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alg" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) "ali" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -2937,223 +1368,26 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"alk" = ( -/turf/open/mars/mars_dirt_12, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"all" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"alm" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aln" = ( -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alo" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"alp" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_northwest) -"alr" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"als" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alt" = ( -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alu" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alv" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"alw" = ( -/turf/open/floor/coagulation/icon0_8, -/area/desert_dam/exterior/valley/valley_mining) -"alx" = ( -/turf/open/floor/coagulation/icon5_8, -/area/desert_dam/exterior/valley/valley_mining) -"aly" = ( -/obj/structure/closet/crate, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alz" = ( -/obj/structure/surface/rack, -/obj/item/device/multitool, -/obj/item/storage/belt/utility/full, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alA" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/t_scanner, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alB" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/tool/hand_labeler, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alC" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alD" = ( -/turf/open/floor/prison/whitepurplecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"alE" = ( -/turf/open/floor/prison/whitepurplecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"alF" = ( -/turf/open/floor/prison/darkpurplecorners2, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alG" = ( -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alI" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alJ" = ( -/turf/open/floor/prison/darkpurplecorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alK" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurple2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alL" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alM" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/darkpurplecorners2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alO" = ( -/turf/open/floor/prison/whitepurple/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "alP" = ( /obj/structure/window/framed/chigusa, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alQ" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) "alR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Excavation" }, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alS" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"alT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"alU" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"alV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"alW" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/exterior/valley/valley_wilderness) -"alX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "hangar_dam_2"; - name = "\improper Hangar Shutters" - }, -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"alY" = ( -/turf/open/floor/coagulation/icon4_8, -/area/desert_dam/exterior/valley/valley_mining) -"alZ" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ama" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"amb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/alienjar, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "amd" = ( /obj/structure/platform, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"ame" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) "amf" = ( /obj/structure/platform{ dir = 8 @@ -3165,12 +1399,6 @@ /obj/structure/platform, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"amh" = ( -/turf/open/floor/coagulation/icon6_8_2, -/area/desert_dam/exterior/valley/valley_mining) -"ami" = ( -/turf/open/floor/coagulation/icon7_8_2, -/area/desert_dam/exterior/valley/valley_mining) "amj" = ( /obj/structure/platform_decoration{ dir = 1 @@ -3207,37 +1435,6 @@ }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"amo" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amp" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amq" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/plating/platebot, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amr" = ( -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ams" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "hangar_dam_2"; - name = "\improper Hangar Shutters" - }, -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) "amt" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -3245,78 +1442,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"amu" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"amv" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) "amw" = ( /turf/closed/wall/r_wall/bunker/floodgate, /area/desert_dam/exterior/river/riverside_central_north) -"amx" = ( -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amy" = ( -/turf/open/floor/prison/whitepurplecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amz" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amB" = ( -/turf/open/floor/prison/whitepurplecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amC" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "amD" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"amE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Isolation Chamber" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"amH" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amI" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amJ" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/interior/caves/east_caves) "amK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -3324,14 +1458,6 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"amL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "amM" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -3342,12 +1468,6 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"amO" = ( -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/exterior/valley/valley_mining) -"amP" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_northwest) "amQ" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_8" @@ -3365,79 +1485,9 @@ }, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"amS" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"amT" = ( -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/exterior/valley/valley_mining) -"amU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy/tank{ - icon_state = "jar_sample" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkpurplecorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amX" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amZ" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ana" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"anb" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"anc" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"and" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"ane" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"anf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hanger) -"ang" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"ang" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3445,128 +1495,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"anh" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"ani" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/north_valley_dam) -"anj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"ank" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) -"anl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurple2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"anm" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"ann" = ( -/turf/open/floor/prison/darkpurplecorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ano" = ( -/turf/open/floor/coagulation/icon1_7, -/area/desert_dam/building/water_treatment_two) -"anp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/interior/dam_interior/west_tunnel) -"anq" = ( -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"anr" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ans" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ant" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "anu" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" }, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"anv" = ( -/turf/open/floor/prison/whitepurplecorner, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"anx" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"any" = ( -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"anz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"anA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/tile, -/area/desert_dam/interior/caves/east_caves) -"anB" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/interior/caves/east_caves) -"anC" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" +"anw" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"anD" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) "anE" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, @@ -3575,17 +1516,6 @@ /obj/structure/flora/grass/desert/lightgrass_12, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"anG" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"anH" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"anI" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "anJ" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall/hangar{ @@ -3594,32 +1524,6 @@ hull = 1 }, /area/shuttle/trijent_shuttle/lz1) -"anK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"anL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"anM" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"anN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"anO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Containment" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "anP" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) @@ -3627,80 +1531,10 @@ /obj/structure/window/framed/bunker/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anR" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anT" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anV" = ( -/turf/open/floor/prison/whitepurple/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"anX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"anY" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"anZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoa" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aob" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoc" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aod" = ( -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) "aof" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_east) -"aoh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkpurple2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "aoi" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -3710,61 +1544,6 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/lobby) -"aok" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoq" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"aor" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aos" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aot" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aou" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aov" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aow" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) @@ -3772,192 +1551,26 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"aoy" = ( -/obj/item/trash/hotdog, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) "aoz" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/bar_valley_dam) -"aoA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoB" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/interior/dam_interior/west_tunnel) -"aoC" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"aoE" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"aoF" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"aoH" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/interior/dam_interior/west_tunnel) -"aoI" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoM" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoN" = ( -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoO" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoQ" = ( -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoR" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoT" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoV" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/west_tunnel) -"aoW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoX" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoY" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/hanger) -"aoZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apb" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz1{ - pixel_y = 32 - }, -/turf/open/floor/prison/darkbrown2/southwest, -/area/desert_dam/interior/dam_interior/hanger) "apc" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"apd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"ape" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"apf" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "apg" = ( /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"aph" = ( -/turf/open/floor/prison/whitepurplecorner, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"api" = ( -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apj" = ( -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "apk" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"apl" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apm" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"apn" = ( -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apo" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Armoury" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"app" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"apq" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "apr" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -3966,33 +1579,6 @@ }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"apt" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_northwest) -"apu" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_northwest) -"apv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apw" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"apx" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"apy" = ( -/turf/open/floor/plating/warnplate, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "apz" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -4009,32 +1595,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"apB" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apD" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"apF" = ( -/turf/open/floor/prison/darkredcorners2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apH" = ( -/turf/open/floor/prison/darkredcorners2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apI" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/interior/caves/east_caves) -"apK" = ( -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "apL" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -4047,120 +1607,38 @@ }, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/interior/caves/east_caves) -"apN" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/interior/caves/east_caves) -"apO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_northwest) -"apP" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) +"apQ" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_cargo) "apR" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/east_caves) -"apS" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"apT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apV" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"apU" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) "apW" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"apX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Research Hallway" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apY" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apZ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"aqa" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aqb" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aqc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"aqd" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqe" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqf" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) "aqg" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"aqi" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aql" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"aqm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "aqn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, @@ -4169,446 +1647,53 @@ /obj/effect/decal/sand_overlay/sand1, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/east_caves) -"aqp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/interior/caves/east_caves) "aqq" = ( /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/east_caves) "aqr" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aqs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqu" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqv" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqw" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) -"aqx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqy" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_northwest) "aqz" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"aqA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"aqB" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) "aqC" = ( /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"aqD" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqE" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"aqF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"aqG" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"aqH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"aqI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) "aqJ" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"aqK" = ( -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aqL" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aqN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aqP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Office" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqQ" = ( /turf/closed/wall/r_wall, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqR" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/interior/dam_interior/west_tunnel) -"aqS" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/exterior/valley/valley_labs) -"aqT" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"aqU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security Armoury" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/donut_box, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqW" = ( -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/interior/caves/east_caves) -"aqY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/east_caves) -"aqZ" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "ara" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"arb" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"arc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ard" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"are" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"arf" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"arg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"arh" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"ari" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/west_tunnel) -"arj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ark" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"arl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"arm" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"arn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/blue{ - pixel_x = -3 - }, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/tool/stamp, -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aro" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/west_tunnel) -"arp" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/hanger) -"arq" = ( -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"arr" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"ars" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_northwest) -"art" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"aru" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"arv" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) "arw" = ( /obj/structure/fence, /turf/open/desert/dirt, /area/desert_dam/exterior/river/riverside_east) -"arx" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/filtrationside/north, -/area/desert_dam/exterior/valley/valley_mining) -"ary" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"arz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"arA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/tile, -/area/desert_dam/interior/caves/east_caves) -"arB" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arC" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arD" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arE" = ( -/obj/structure/sink, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "arF" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/garage) -"arG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "arJ" = ( /obj/structure/window/framed/chigusa, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/tool/surgery/retractor, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "arL" = ( /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"arM" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) "arR" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/rock, /area/desert_dam/exterior/valley/bar_valley_dam) -"arS" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"arT" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"arU" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"arV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/dam/truck/damaged, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) "arZ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -4636,16 +1721,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"asf" = ( -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/hanger) -"asg" = ( -/turf/open/floor/prison/darkbrown2/northwest, -/area/desert_dam/interior/dam_interior/hanger) -"ash" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_telecoms) "asl" = ( /obj/structure/platform, /obj/structure/platform{ @@ -4653,144 +1728,30 @@ }, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/valley/valley_labs) -"asm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"asn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aso" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Research Substation" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/substation/northeast) -"asq" = ( -/obj/structure/machinery/light, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"asr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "ass" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/east_caves) -"ast" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/east_caves) "asu" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/interior/caves/east_caves) -"asv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security Checkpoint" - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "asw" = ( /obj/structure/window/framed/bunker/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"asx" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asy" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"asz" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asA" = ( -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "asB" = ( /obj/structure/window/framed/bunker/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2 - }, -/obj/structure/machinery/door/window/southleft{ - dir = 1 - }, -/turf/open/floor/dark, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"asE" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "asF" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"asG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control, -/turf/open/floor/prison/darkred2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"asI" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/darkred2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"asJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison/darkred2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"asL" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkred2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"asM" = ( -/turf/open/floor/darkyellow2/west, -/area/desert_dam/building/substation/northeast) -"asN" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "asO" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/cameras{ @@ -4799,22 +1760,11 @@ }, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) -"asP" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) "asQ" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) -"asR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) "asS" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/atmos_alert, @@ -4827,19 +1777,12 @@ }, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"asW" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/desert_dam/building/substation/northeast) -"asX" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/darkyellow2/northeast, -/area/desert_dam/building/substation/northeast) -"asY" = ( -/obj/structure/machinery/light{ - dir = 1 +"asV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/darkyellow2/northeast, -/area/desert_dam/building/substation/northeast) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "asZ" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ @@ -4850,113 +1793,30 @@ }, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"ata" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2 - }, -/obj/structure/machinery/door/window/southleft{ - dir = 1 - }, -/turf/open/floor/dark, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "atb" = ( /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_11" }, /turf/open/desert/dirt, /area/desert_dam/interior/caves/east_caves) -"atc" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_mining) -"atd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/east_caves) -"ate" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) "atf" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, /area/desert_dam/interior/caves/east_caves) -"atg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"ath" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_wilderness) -"ati" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/interior/dam_interior/west_tunnel) "atj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_workshop) -"atk" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "atl" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/south_tunnel) -"atm" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/northeast) "atn" = ( /obj/structure/window/framed/chigusa, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"ato" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"atq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Hallway" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) "atr" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/dam_interior/south_tunnel) -"ats" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"att" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atu" = ( -/turf/open/floor/coagulation/icon8_7_2, -/area/desert_dam/exterior/valley/valley_mining) "atv" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -5007,13 +1867,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"atA" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) "atB" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ @@ -5032,61 +1885,6 @@ }, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/valley/valley_mining) -"atD" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atE" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"atF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"atG" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/darkyellow2/west, -/area/desert_dam/building/substation/northeast) -"atH" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atI" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atJ" = ( -/turf/open/floor/prison/red/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"atK" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/red/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"atL" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_wilderness) "atM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -5094,48 +1892,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"atN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"atO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"atP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"atQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "atS" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"atT" = ( -/turf/open/floor/prison/red/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "atU" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 9 }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"atV" = ( -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/northeast) "atW" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform, @@ -5166,46 +1934,10 @@ }, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) -"aua" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/northeast) -"aub" = ( -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northeast) -"auc" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/northeast) -"aud" = ( -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aue" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/red/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"auf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Research Workshop" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "aug" = ( /obj/structure/window/framed/chigusa, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_RND) -"auh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper RnD" - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "aui" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -5213,68 +1945,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"auj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"auk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"aul" = ( -/turf/open/floor/prison/darkyellowcorners2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"aum" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aun" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"auo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/interior/dam_interior/west_tunnel) -"aup" = ( -/turf/open/floor/prison/darkpurplecorners2/east, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"auq" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aur" = ( -/turf/open/floor/prison/darkpurplecorners2/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aus" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"aut" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) "auu" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/west_tunnel) -"auv" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) -"auw" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/darkpurple2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "aux" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 @@ -5294,89 +1968,14 @@ "auA" = ( /turf/open/floor/plating, /area/desert_dam/building/substation/northeast) -"auB" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/whiteblue/west, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auD" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auE" = ( -/turf/open/floor/whitebluecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auF" = ( -/turf/open/floor/whiteblue/north, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) "auG" = ( /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/west_tunnel) -"auH" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"auI" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"auK" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"auL" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"auM" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science{ - req_one_access = null - }, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "auN" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"auP" = ( -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"auQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whiteblue/north, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/whiteblue/north, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auS" = ( -/turf/open/floor/whitebluecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auT" = ( -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auV" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/whiteblue/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) "auW" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall/hangar{ @@ -5385,178 +1984,31 @@ hull = 1 }, /area/shuttle/trijent_shuttle/engi) -"auX" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) -"auY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) "auZ" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) -"ava" = ( -/obj/structure/toilet, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avb" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"avc" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ave" = ( -/turf/open/floor/whiteblue/west, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avg" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) "avh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor, /area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avj" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = null; - name = "\improper Elevator Lock" - }, -/turf/open/floor/prison/cell_stripe/west, -/area/shuttle/trijent_shuttle/engi) -"avk" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/interior/dam_interior/west_tunnel) -"avl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/red/north, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"avm" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement13, -/area/desert_dam/interior/dam_interior/west_tunnel) -"avn" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/red/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"avo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison/red/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "avp" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) -"avq" = ( -/turf/open/floor/prison/red, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"avr" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/red, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "avt" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"avu" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/interior/caves/east_caves) -"avv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/floodgate_control) "avw" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"avx" = ( -/obj/structure/machinery/r_n_d/protolathe, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"avy" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"avz" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"avB" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"avC" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_northwest) -"avD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"avE" = ( -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"avF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "avG" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) @@ -5564,66 +2016,6 @@ /obj/structure/window/framed/chigusa, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Hallway" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avK" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"avL" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"avM" = ( -/obj/structure/machinery/computer/WYresearch, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"avN" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"avO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/whiteblue/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/southwest, -/area/desert_dam/building/substation/northeast) -"avR" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"avS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "avT" = ( /obj/structure/platform{ dir = 8 @@ -5631,85 +2023,18 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"avU" = ( -/turf/open/floor/darkyellow2, -/area/desert_dam/building/substation/northeast) -"avV" = ( -/turf/open/floor/darkyellow2/southeast, -/area/desert_dam/building/substation/northeast) -"avW" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/northeast) -"avX" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avY" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avZ" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/tile, -/area/desert_dam/interior/dam_interior/west_tunnel) -"awa" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement13, -/area/desert_dam/interior/dam_interior/west_tunnel) -"awb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"awd" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awe" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"awf" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "awg" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"awh" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"awi" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"awj" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) "awk" = ( /obj/structure/prop/dam/large_boulder{ icon_state = "boulder_large1" }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/bar_valley_dam) -"awl" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/dam_interior/workshop) "awm" = ( /obj/structure/platform{ dir = 4 @@ -5717,230 +2042,31 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"awn" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"awo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_mining) -"awp" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"awq" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"awr" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurple2/east, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "aws" = ( /obj/effect/decal/sand_overlay/sand2/corner2, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"awt" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/whiteblue/west, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awv" = ( -/obj/structure/prop/dam/drill, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aww" = ( -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) "awx" = ( /turf/open/floor, /area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awy" = ( -/turf/open/floor/whiteyellowcorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awz" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"awK" = ( +/obj/structure/platform, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/valley/valley_labs) +"awL" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"awM" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/detective) +"axd" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awA" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar/red, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"awB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"awC" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awD" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awE" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Workshop" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"awG" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"awH" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/prison/darkpurple2/west, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"awI" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurple2/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"awJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"awK" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/valley/valley_labs) -"awL" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"awM" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/detective) -"awN" = ( -/turf/open/floor/whiteblue/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awO" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whiteblue/west, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awR" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"awS" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitebluecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awU" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"awV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awW" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"awX" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awY" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Checkpoint" - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"awZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axa" = ( -/turf/open/floor/whitebluecorner, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axb" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/whiteblue, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/whiteblue, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axe" = ( -/turf/open/floor/whitebluecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axf" = ( -/obj/structure/machinery/light, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axg" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axh" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/smes_backup) "axj" = ( /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/valley/valley_crashsite) @@ -5951,14 +2077,6 @@ "axl" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axm" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/valley/valley_labs) -"axn" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/valley/valley_labs) "axo" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" @@ -5974,101 +2092,27 @@ }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"axr" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axs" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 6 }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"axt" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axw" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/hunting_trap{ - desc = "A bizarre alien device used for trapping and killing prey."; - name = "Alien Mine" - }, -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) "axx" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"axy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_northeast"; - name = "Checkpoint Lockdown" - }, -/turf/open/floor/prison/red/east, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"axz" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/interior/caves/east_caves) -"axA" = ( -/turf/open/floor/prison/red, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"axB" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/red/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"axC" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/interior/caves/east_caves) "axD" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"axE" = ( -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "axF" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/marshals_office) -"axG" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"axH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/prison/darkpurple2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "axI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1 @@ -6086,88 +2130,17 @@ "axL" = ( /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axM" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) "axN" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axO" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/valley/valley_labs) -"axP" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_wilderness) -"axQ" = ( -/turf/open/floor/prison/whitepurplecorner, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axR" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axS" = ( -/turf/open/floor/prison/whitepurple/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axT" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"axU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement7, -/area/desert_dam/exterior/valley/valley_wilderness) -"axV" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement7, -/area/desert_dam/exterior/valley/valley_wilderness) -"axW" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axY" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_northwest) -"axZ" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_northwest) "aya" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/office) -"ayb" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayd" = ( -/obj/structure/showcase{ - icon_state = "mechfab1" - }, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aye" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Personal Computer" - }, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayf" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayg" = ( /obj/structure/surface/table, /turf/open/floor/plating, @@ -6178,317 +2151,25 @@ }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayi" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/obj/item/paper_bundle, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayj" = ( -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayk" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayl" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aym" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayo" = ( /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayp" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/exterior/valley/valley_wilderness) -"ayr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ays" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/temple) "ayt" = ( /obj/structure/janitorialcart, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayu" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayw" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison/red/northwest, -/area/desert_dam/building/security/lobby) "ayx" = ( /obj/structure/surface/rack, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayz" = ( -/obj/structure/showcase, -/turf/open/floor/carpet6_2/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayA" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 2; - name = "\improper Research Office" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayB" = ( -/obj/structure/machinery/computer/aifixer, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayC" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/caves/temple) "ayD" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/exterior/valley/valley_wilderness) -"ayE" = ( -/obj/structure/closet/secure_closet/RD, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayF" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/item/phone, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayH" = ( -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/temple) -"ayI" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/blue/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayK" = ( -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayL" = ( -/turf/open/floor/prison/whitepurplecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayM" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayN" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 - }, -/turf/open/asphalt/cement/cement7, -/area/desert_dam/exterior/valley/valley_wilderness) -"ayO" = ( -/turf/open/floor/prison/whitepurplecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayS" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayU" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayV" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/disk/nuclear, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayZ" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aza" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) -"azb" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"azc" = ( -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azd" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azf" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/building/administration/control_room) -"azg" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azh" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azi" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azj" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Research Director Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azk" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azm" = ( -/obj/structure/lamarr, -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azo" = ( -/turf/open/floor/prison/blue, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azp" = ( -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azq" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azr" = ( -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_mining) -"azs" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"azt" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitepurple/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azu" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement7, -/area/desert_dam/exterior/valley/valley_wilderness) -"azv" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement7, -/area/desert_dam/exterior/valley/valley_wilderness) -"azw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azx" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azz" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/exterior/valley/valley_wilderness) -"azA" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"azB" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/caves/temple) +"ayR" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/bar_valley_dam) "azC" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, @@ -6503,52 +2184,15 @@ }, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"azF" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/exterior/valley/valley_wilderness) -"azG" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +"azK" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/valley/valley_wilderness) -"azH" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/valley/valley_wilderness) -"azI" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/valley/valley_wilderness) -"azJ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/green/east, -/area/desert_dam/interior/dam_interior/atmos_storage) -"azK" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +/obj/structure/platform{ dir = 4 }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"azM" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/exterior/valley/valley_wilderness) "azN" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -6556,12 +2200,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"azO" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "azP" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, @@ -6570,12 +2208,6 @@ /obj/structure/platform, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/valley/valley_labs) -"azR" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_wilderness) "azS" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt, @@ -6623,22 +2255,9 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aAb" = ( -/turf/open/asphalt/cement/cement2, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAc" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) "aAe" = ( /turf/open/desert/excavation/component8, /area/desert_dam/exterior/valley/valley_crashsite) -"aAf" = ( -/turf/open/desert/excavation/component8/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAg" = ( -/turf/open/desert/excavation/component8/east, -/area/desert_dam/exterior/valley/valley_crashsite) "aAh" = ( /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement, @@ -6653,12 +2272,6 @@ /obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_wilderness) -"aAk" = ( -/turf/open/desert/excavation/component8/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAl" = ( -/turf/open/desert/excavation/component8/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) "aAm" = ( /obj/structure/platform{ dir = 4 @@ -6679,22 +2292,10 @@ /obj/structure/flora/bush/desert/cactus, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_wilderness) -"aAq" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) "aAr" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aAs" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) "aAt" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 @@ -6717,31 +2318,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aAx" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAy" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_medical) -"aAz" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"aAA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"aAB" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) "aAC" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -6751,12 +2327,6 @@ icon_state = "pwall" }, /area/desert_dam/exterior/rock) -"aAD" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/exterior/valley/valley_wilderness) "aAE" = ( /obj/structure/platform{ dir = 1 @@ -6766,70 +2336,9 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"aAF" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/excavation/component8/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAG" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/interior/caves/central_caves) -"aAH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/interior/caves/central_caves) -"aAI" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/interior/caves/central_caves) -"aAJ" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/interior/caves/central_caves) -"aAK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"aAL" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/interior/caves/central_caves) -"aAM" = ( -/turf/open/desert/excavation/component8/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) "aAN" = ( /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/interior/caves/central_caves) -"aAO" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/interior/caves/central_caves) -"aAP" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/interior/caves/central_caves) -"aAQ" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aAR" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aAS" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/south_tunnel) "aAT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -6846,19 +2355,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aAV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"aAW" = ( -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/interior/caves/central_caves) "aAX" = ( /turf/open/gm/river/desert/deep, /area/desert_dam/interior/caves/central_caves) -"aAY" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) "aAZ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" @@ -6871,43 +2370,15 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aBb" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBc" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBd" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) "aBe" = ( /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/interior/caves/central_caves) "aBf" = ( /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/interior/caves/central_caves) -"aBg" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/interior/caves/central_caves) "aBh" = ( /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/interior/caves/central_caves) -"aBi" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/interior/caves/central_caves) -"aBj" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/exterior/valley/valley_wilderness) "aBk" = ( /turf/open/floor/sandstone/runed, /area/desert_dam/exterior/valley/valley_crashsite) @@ -6938,12 +2409,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aBp" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/interior/dam_interior/south_tunnel) "aBq" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 @@ -6981,13 +2446,6 @@ /obj/effect/decal/sand_overlay/sand2, /turf/open/asphalt/cement, /area/desert_dam/exterior/valley/valley_wilderness) -"aBv" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBw" = ( -/turf/open/desert/excavation/component8/northwest, -/area/desert_dam/exterior/valley/valley_crashsite) "aBx" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal2" @@ -6998,9 +2456,6 @@ "aBy" = ( /turf/open/desert/excavation/component9, /area/desert_dam/exterior/valley/valley_crashsite) -"aBA" = ( -/turf/open/desert/excavation/component9/north, -/area/desert_dam/exterior/valley/valley_crashsite) "aBB" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/rock, @@ -7009,10 +2464,6 @@ /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aBD" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_wilderness) "aBE" = ( /turf/open/desert/rock, /area/desert_dam/interior/caves/temple) @@ -7022,33 +2473,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aBG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement13, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aBH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aBI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_wilderness) "aBK" = ( /obj/structure/desertdam/decals/road_edge, /obj/structure/disposalpipe/segment{ @@ -7059,101 +2483,25 @@ "aBL" = ( /turf/closed/wall/mineral/sandstone/runed, /area/desert_dam/interior/caves/temple) -"aBO" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/interior/caves/temple) "aBQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aBR" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/desert/desert_shore/shore_corner1/west, -/area/desert_dam/interior/caves/temple) -"aBS" = ( -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"aBT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_wilderness) "aBU" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/caves/temple) -"aBV" = ( -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) -"aBW" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/interior/caves/temple) "aBX" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, /area/desert_dam/interior/dam_interior/south_tunnel) -"aBY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aBZ" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/workshop) -"aCa" = ( -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/interior/dam_interior/south_tunnel) "aCb" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, /turf/open/asphalt/cement, /area/desert_dam/exterior/valley/valley_wilderness) -"aCc" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aCd" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_labs) -"aCe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aCf" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"aCg" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aCh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_wilderness) -"aCi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) "aCj" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt/cement_sunbleached, @@ -7165,9 +2513,6 @@ /obj/structure/surface/table/woodentable, /turf/open/floor/interior/wood, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCm" = ( -/turf/open/desert/excavation/component9/east, -/area/desert_dam/exterior/valley/valley_crashsite) "aCn" = ( /obj/structure/bed, /obj/structure/machinery/light{ @@ -7175,10 +2520,6 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_mining) "aCp" = ( /obj/structure/desertdam/decals/road_stop{ dir = 1; @@ -7186,17 +2527,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aCq" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/redcorner, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aCr" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_RND) -"aCs" = ( -/turf/open/desert/excavation/component9/west, -/area/desert_dam/exterior/valley/valley_crashsite) "aCt" = ( /obj/structure/closet/cabinet, /turf/open/floor/interior/wood, @@ -7217,9 +2550,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/wood, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCz" = ( -/turf/open/desert/excavation/component9/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) "aCA" = ( /turf/open/floor/interior/wood, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) @@ -7238,22 +2568,6 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/donut_box, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCE" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCF" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCG" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_crashsite) "aCI" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood/alt, @@ -7261,16 +2575,10 @@ "aCJ" = ( /turf/open/floor/interior/wood/alt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCK" = ( -/turf/open/desert/excavation/component9/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) "aCL" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/wood/alt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCM" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_crashsite) "aCN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -7285,26 +2593,16 @@ }, /turf/open/floor/interior/wood/alt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCP" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/west_tunnel) "aCQ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aCR" = ( -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/west_tunnel) "aCS" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCV" = ( /obj/item/ammo_magazine/pistol/holdout, /obj/item/ammo_magazine/pistol/holdout{ @@ -7362,17 +2660,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"aDe" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"aDf" = ( -/turf/open/floor/filtrationside/west, -/area/desert_dam/exterior/valley/valley_medical) -"aDg" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDh" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, @@ -7405,18 +2692,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"aDn" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDo" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/drill, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDp" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/pickaxe, @@ -7439,17 +2714,6 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDu" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDv" = ( -/turf/open/asphalt/tile, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aDw" = ( /obj/structure/barricade/wooden, /obj/structure/barricade/wooden{ @@ -7472,12 +2736,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDz" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) "aDA" = ( /obj/structure/barricade/wooden, /obj/structure/barricade/wooden{ @@ -7488,12 +2746,6 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -7521,13 +2773,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand1{ @@ -7535,12 +2780,6 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDI" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -7548,68 +2787,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"aDJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDK" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDL" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"aDM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDP" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDQ" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDR" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDS" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDT" = ( /turf/closed/wall/hangar{ name = "Elevator Shaft"; @@ -7617,20 +2797,6 @@ hull = 1 }, /area/shuttle/trijent_shuttle/omega) -"aDU" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_medical) -"aDV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"aDY" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_crashsite) "aDZ" = ( /obj/structure/platform, /obj/structure/platform{ @@ -7654,13 +2820,6 @@ hull = 1 }, /area/shuttle/trijent_shuttle/omega) -"aEe" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) "aEf" = ( /obj/structure/platform, /turf/open/desert/rock, @@ -7701,12 +2860,6 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"aEm" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "aEn" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -7714,107 +2867,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) -"aEp" = ( -/obj/structure/prop/dam/boulder/boulder3, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"aEq" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEs" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = null; - name = "\improper Elevator Lock" - }, -/turf/open/floor/prison/cell_stripe/west, -/area/shuttle/trijent_shuttle/omega) -"aEu" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{ - pixel_y = 32; - shuttleId = "trijentshuttle22" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/exterior/valley/valley_medical) -"aEv" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEw" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEB" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEC" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/exterior/valley/valley_medical) -"aED" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_northwest) +"aEo" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) "aEE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -7822,19 +2877,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aEF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_northwest) -"aEG" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - name = "\improper Entrance Gate Alpha"; - unacidable = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) "aEH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -7859,22 +2901,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) -"aEL" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) "aEN" = ( /obj/structure/platform{ dir = 1 @@ -7893,12 +2919,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) -"aEP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) "aEQ" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -7919,37 +2939,6 @@ /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aET" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEU" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEV" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEW" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEX" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) "aFa" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -7964,39 +2953,10 @@ /obj/structure/flora/grass/desert/lightgrass_5, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aFd" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFe" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/exterior/valley/valley_crashsite) "aFf" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aFg" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"aFh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/workshop) -"aFi" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) "aFk" = ( /obj/structure/flora/grass/desert/lightgrass_7, /turf/open/desert/dirt, @@ -8017,25 +2977,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aFo" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFp" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFq" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFr" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) "aFs" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -8043,30 +2984,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) -"aFt" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) "aFu" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"aFv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"aFw" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_telecoms) -"aFx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_telecoms) "aFy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -8076,30 +2997,6 @@ "aFz" = ( /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aFA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aFB" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aFC" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aFD" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -8112,24 +3009,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) -"aFF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"aFG" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_medical) -"aFH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_medical) -"aFI" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_medical) "aFJ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes, @@ -8142,17 +3021,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"aFL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"aFM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) "aFN" = ( /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_10" @@ -8186,13 +3054,6 @@ /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aFU" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/interior/caves/central_caves) -"aFV" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) "aFW" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 @@ -8249,18 +3110,12 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aGg" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/interior/caves/central_caves) "aGh" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 }, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aGi" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_crashsite) "aGj" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 4 @@ -8279,10 +3134,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aGm" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_mining) "aGn" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached, @@ -8305,28 +3156,16 @@ /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aGs" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/interior/caves/central_caves) "aGt" = ( /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"aGu" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) "aGv" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_7" }, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aGw" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) "aGx" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -8348,12 +3187,6 @@ "aGA" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aGB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) "aGC" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/desertdam/decals/road_edge{ @@ -8362,15 +3195,6 @@ /obj/structure/machinery/light, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aGD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGE" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) "aGF" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_4" @@ -8386,12 +3210,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aGH" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGI" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/interior/caves/central_caves) "aGJ" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, @@ -8409,12 +3227,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aGM" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "aGN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -8428,36 +3240,12 @@ "aGP" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"aGQ" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/interior/caves/central_caves) -"aGR" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/interior/caves/central_caves) -"aGS" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGT" = ( -/obj/structure/surface/table, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) "aGV" = ( /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_12" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aGW" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGX" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/interior/caves/central_caves) "aGY" = ( /obj/effect/landmark/yautja_teleport, /obj/effect/landmark/queen_spawn, @@ -8467,13 +3255,6 @@ /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aHb" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHc" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/interior/caves/central_caves) "aHd" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -8483,12 +3264,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aHe" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) "aHf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" @@ -8498,77 +3273,10 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHg" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHh" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aHi" = ( /obj/structure/machinery/light, /turf/open/desert/dirt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHk" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/northwest, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHm" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHn" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHo" = ( -/obj/structure/machinery/centrifuge, -/turf/open/floor/whitegreenfull, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHp" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor/green/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHq" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/green/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHr" = ( -/obj/structure/machinery/botany/extractor, -/turf/open/floor/whitegreenfull, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHs" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHt" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/northeast, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHu" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -8576,42 +3284,16 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHv" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHw" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aHx" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aHy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) "aHz" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aHA" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) "aHC" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, @@ -8627,67 +3309,20 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aHF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurplecorner/east, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "aHG" = ( /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aHH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) "aHI" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aHJ" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHK" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aHM" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "aHN" = ( /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aHP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"aHQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "aHR" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_7" @@ -8702,78 +3337,28 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aHU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHV" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/hammer, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHW" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) "aHX" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/desert/dirt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aHZ" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"aIa" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) "aIb" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_northwest) -"aIc" = ( -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/tile, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aId" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"aIe" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitegreen/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIf" = ( -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIg" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitegreen/east, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aIh" = ( /obj/structure/platform{ dir = 1 @@ -8781,9 +3366,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) -"aIi" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aIj" = ( /obj/structure/platform_decoration{ dir = 8 @@ -8797,12 +3379,6 @@ "aIl" = ( /turf/open/desert/excavation/component1, /area/desert_dam/exterior/valley/valley_crashsite) -"aIm" = ( -/turf/open/desert/excavation/component1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIn" = ( -/turf/open/desert/excavation/component1/east, -/area/desert_dam/exterior/valley/valley_crashsite) "aIo" = ( /obj/effect/landmark/monkey_spawn, /turf/open/desert/rock, @@ -8817,15 +3393,6 @@ }, /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"aIr" = ( -/turf/open/desert/excavation/component1/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIs" = ( -/turf/open/desert/excavation/component1/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIt" = ( -/turf/open/desert/excavation/component1/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) "aIu" = ( /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, @@ -8836,64 +3403,12 @@ "aIw" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/building/substation/northeast) -"aIx" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIy" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIB" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIC" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/excavation/component1/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aID" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) "aIE" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aIF" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIG" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aII" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_crashsite) "aIJ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8" @@ -8906,18 +3421,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"aIL" = ( -/turf/open/floor/whitegreencorner/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIM" = ( -/turf/open/floor/whitegreencorner, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIN" = ( -/turf/open/floor/whitegreen, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIO" = ( -/turf/open/floor/whitegreencorner/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aIP" = ( /obj/structure/platform{ dir = 1 @@ -8927,23 +3430,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"aIQ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIR" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIS" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) "aIT" = ( /obj/structure/stairs, /obj/structure/platform{ @@ -8954,31 +3440,9 @@ "aIU" = ( /turf/open/desert/excavation/component2, /area/desert_dam/exterior/valley/valley_crashsite) -"aIV" = ( -/turf/open/desert/excavation/component2/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIW" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIX" = ( -/turf/open/desert/excavation/component2/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIY" = ( -/turf/open/desert/excavation/component2/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIZ" = ( -/turf/open/desert/excavation/component2/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) "aJa" = ( /turf/open/desert/excavation/component4, /area/desert_dam/exterior/valley/valley_crashsite) -"aJb" = ( -/turf/open/desert/excavation/component4/north, -/area/desert_dam/exterior/valley/valley_crashsite) "aJc" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/caves/central_caves) @@ -8989,9 +3453,6 @@ /obj/structure/window/framed/chigusa, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_lobby) -"aJf" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/interior/caves/central_caves) "aJg" = ( /obj/item/tool/shovel, /turf/open/desert/rock, @@ -9009,50 +3470,13 @@ "aJj" = ( /turf/open/desert/excavation/component3, /area/desert_dam/exterior/valley/valley_crashsite) -"aJk" = ( -/turf/open/desert/excavation/component3/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJl" = ( -/turf/open/desert/excavation/component3/east, -/area/desert_dam/exterior/valley/valley_crashsite) "aJm" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"aJn" = ( -/turf/open/desert/excavation/component3/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJo" = ( -/turf/open/desert/excavation/component4/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJp" = ( -/turf/open/desert/excavation/component4/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJq" = ( -/turf/open/desert/excavation/component4/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJr" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aJs" = ( -/turf/open/floor/whitegreen/east, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aJt" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aJu" = ( /turf/closed/wall, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aJv" = ( -/obj/structure/machinery/light, -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/workshop) -"aJw" = ( -/turf/open/floor/whitegreen/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aJx" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -9082,102 +3506,22 @@ "aJB" = ( /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/valley/valley_crashsite) -"aJC" = ( -/turf/open/desert/excavation/component3/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJD" = ( -/turf/open/desert/excavation/component3/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJE" = ( -/turf/open/desert/excavation/component3/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) "aJF" = ( /turf/open/desert/excavation/component5, /area/desert_dam/exterior/valley/valley_crashsite) -"aJG" = ( -/turf/open/desert/excavation/component5/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJH" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/interior/caves/central_caves) -"aJI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt/dirt2, +"aJQ" = ( +/turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/central_caves) -"aJJ" = ( -/turf/open/desert/excavation/component5/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJK" = ( -/turf/open/desert/excavation/component5/west, +"aJS" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aJL" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJN" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJO" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJP" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJQ" = ( -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/central_caves) -"aJR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"aJS" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJT" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aJU" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/interior/caves/central_caves) -"aJV" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJW" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJX" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJY" = ( -/turf/open/desert/excavation/component6, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJZ" = ( -/turf/open/desert/excavation/component6/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKa" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/desert/excavation/component6/east, +"aJT" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aJY" = ( +/turf/open/desert/excavation/component6, /area/desert_dam/exterior/valley/valley_crashsite) "aKb" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -9188,92 +3532,24 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"aKc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"aKd" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) "aKe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aKf" = ( -/turf/open/desert/excavation/component6/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKg" = ( -/turf/open/desert/excavation/component6/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKh" = ( -/turf/open/desert/excavation/component6/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/excavation/component6/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) "aKj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/desert/excavation/component7, /area/desert_dam/exterior/valley/valley_crashsite) -"aKk" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_telecoms) -"aKl" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) "aKm" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"aKn" = ( -/obj/structure/stairs, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"aKo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"aKp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Xenoflora" - }, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aKq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"aKs" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/workshop) -"aKt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) "aKu" = ( /obj/structure/platform{ dir = 8 @@ -9282,33 +3558,10 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) -"aKv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) "aKw" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) -"aKx" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_central_north) -"aKy" = ( -/turf/open/desert/excavation/component7/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKz" = ( -/turf/open/desert/excavation/component7/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKA" = ( -/turf/open/desert/excavation/component7/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) "aKC" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_8" @@ -9359,29 +3612,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aKL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/desert/excavation/component7/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKM" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/excavation/component7/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKN" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/excavation/component7/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKO" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/interior/caves/central_caves) -"aKP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) "aKQ" = ( /obj/structure/platform{ dir = 4 @@ -9407,26 +3637,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aKT" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"aKU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"aKV" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/whitegreen, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aKW" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -9436,200 +3646,18 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"aKX" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/interior/caves/east_caves) "aKY" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/landing_pad_two) -"aKZ" = ( -/turf/open/floor/whitegreencorner/east, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLa" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"aLb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLc" = ( -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLd" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_central_north) "aLe" = ( /obj/structure/platform{ dir = 8 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aLf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLh" = ( -/turf/open/floor/coagulation/icon0_4, -/area/desert_dam/exterior/valley/valley_mining) -"aLi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLm" = ( -/obj/structure/machinery/sensortower, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLv" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_labs) -"aLw" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLx" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"aLz" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLA" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) "aLC" = ( /obj/structure/platform{ dir = 1 @@ -9642,12 +3670,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aLE" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_crashsite) "aLF" = ( /obj/structure/platform{ dir = 1 @@ -9665,10 +3687,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aLH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "aLI" = ( /obj/effect/decal/cleanable/dirt, /turf/open/desert/dirt, @@ -9680,28 +3698,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aLK" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"aLL" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/southwest, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLM" = ( -/obj/structure/machinery/light, -/turf/open/floor/whitegreen, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLN" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLO" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/southeast, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aLP" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -9732,18 +3728,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aLT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) "aLV" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, @@ -9770,24 +3754,6 @@ }, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) -"aMa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Xenoflora" - }, -/turf/open/floor/whitegreenfull, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aMb" = ( -/turf/open/floor/whitegreenfull, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aMc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "aMd" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -9822,28 +3788,6 @@ /obj/structure/machinery/mill, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) -"aMl" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"aMm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"aMn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) "aMo" = ( /obj/structure/cargo_container/trijent/left/alt, /turf/open/floor/plating, @@ -9856,16 +3800,6 @@ /obj/structure/cargo_container/trijent/right/alt, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) -"aMr" = ( -/turf/open/floor/coagulation/icon7_7_2, -/area/desert_dam/building/water_treatment_two) -"aMs" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) "aMt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -9879,19 +3813,6 @@ name = "reinforced metal wall" }, /area/desert_dam/building/warehouse/warehouse) -"aMv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"aMw" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"aMx" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) "aMy" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -9907,315 +3828,52 @@ name = "reinforced metal wall" }, /area/desert_dam/building/substation/northeast) -"aMA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/substation/northeast) -"aMB" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"aMC" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"aMD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"aME" = ( -/turf/open/floor/filtrationside/southwest, -/area/desert_dam/exterior/valley/valley_medical) -"aMF" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"aMG" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"aMH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) "aMI" = ( /obj/structure/sign/poster, /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/building/warehouse/warehouse) -"aMJ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"aMK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"aML" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"aMM" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"aMN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"aMO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) "aMP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_northwest) -"aMQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stool, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"aMR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/conveyor_switch{ - id = "cargo_storage" +"aNf" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/building/substation/northeast) +"aNh" = ( +/turf/open/floor/prison, +/area/desert_dam/building/substation/northeast) +"aNi" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/desert_dam/building/substation/northeast) +"aNk" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"aMS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison, +/area/desert_dam/building/substation/northeast) +"aNn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"aMT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"aMU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"aMV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"aMW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"aMX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"aMY" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"aMZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation/icon8_4, -/area/desert_dam/exterior/valley/valley_mining) -"aNa" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_mining) -"aNb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"aNc" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/northeast) -"aNd" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/building/substation/northeast) -"aNe" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"aNf" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/building/substation/northeast) -"aNg" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/welding, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/northeast) -"aNh" = ( -/turf/open/floor/prison, -/area/desert_dam/building/substation/northeast) -"aNi" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/desert_dam/building/substation/northeast) -"aNj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) -"aNk" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/prison, -/area/desert_dam/building/substation/northeast) -"aNl" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/northeast) -"aNm" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"aNn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aNo" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"aNp" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) -"aNq" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"aNr" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_11" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aNq" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"aNr" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"aNs" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/control_room) -"aNt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/control_room) -"aNu" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/control_room) -"aNv" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"aNw" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/northeast) -"aNx" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"aNy" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"aNz" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"aNA" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/machinery/conveyor_switch{ - id = "cargo_landing" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) "aNB" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ @@ -10227,21 +3885,10 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/substation/northeast) -"aND" = ( -/turf/open/floor/prison/redcorner/east, -/area/desert_dam/building/security/lobby) -"aNE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_medical) "aNF" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"aNG" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) "aNH" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/staffroom) @@ -10251,13 +3898,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/substation/northeast) -"aNJ" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"aNK" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) "aNL" = ( /obj/structure/desertdam/decals/road_stop{ dir = 8; @@ -10269,38 +3909,19 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"aNN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"aNP" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) -"aNQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/substation/northeast) -"aNR" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/substation/northeast) "aNS" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) -"aNT" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_medical) "aNU" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_two/floodgate_control) -"aNX" = ( -/obj/structure/machinery/light{ - dir = 8 +"aNW" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) "aNY" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall/hangar{ @@ -10309,20 +3930,9 @@ hull = 1 }, /area/shuttle/trijent_shuttle/lz2) -"aNZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) "aOc" = ( /turf/closed/wall, /area/desert_dam/building/substation/northwest) -"aOd" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) "aOe" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -10330,88 +3940,13 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aOf" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOg" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_wilderness) "aOh" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) -"aOi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOj" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOk" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOl" = ( -/obj/structure/filtration/flacculation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"aOm" = ( -/turf/open/floor/filtrationside/northwest, -/area/desert_dam/exterior/valley/valley_mining) -"aOn" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"aOo" = ( -/turf/open/floor/filtrationside/north, -/area/desert_dam/exterior/valley/valley_mining) -"aOp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation/icon8_6, -/area/desert_dam/exterior/valley/valley_mining) -"aOq" = ( -/obj/effect/blocker/toxic_water, -/turf/open/floor/filtrationside/north, -/area/desert_dam/exterior/valley/valley_mining) -"aOr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) "aOt" = ( /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) -"aOu" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"aOv" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"aOw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"aOx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Floodgate Control" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/floodgate_control) "aOy" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -10421,36 +3956,12 @@ /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_two/purification) -"aOA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Filtration" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aOB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aOC" = ( -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"aOD" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) "aOE" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) -"aOG" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_medical) "aOH" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) @@ -10458,35 +3969,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) -"aOK" = ( -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/substation/northwest) -"aOL" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/dam_interior/north_tunnel) -"aOM" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/north_tunnel) -"aOO" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/darkyellow2/northeast, -/area/desert_dam/building/substation/northwest) -"aOP" = ( -/obj/structure/floodgate, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river_mouth/southern) "aOQ" = ( /obj/structure/floodgate, /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river_mouth/southern) -"aOR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "aOS" = ( /obj/structure/machinery/light{ dir = 1 @@ -10494,83 +3981,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) -"aOT" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOU" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_wilderness) "aOV" = ( /obj/structure/floodgate, /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river_mouth/southern) -"aOW" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = null; - name = "\improper Elevator Lock" - }, -/turf/open/floor/prison/cell_stripe/east, -/area/shuttle/trijent_shuttle/lz2) "aOY" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"aOZ" = ( -/turf/open/floor/coagulation/icon0_0, -/area/desert_dam/exterior/valley/valley_mining) -"aPc" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aPd" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"aPf" = ( -/turf/open/floor/coagulation/icon7_0, -/area/desert_dam/exterior/valley/valley_mining) -"aPg" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"aPh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/exterior/valley/valley_mining) -"aPi" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_wilderness) -"aPj" = ( -/turf/open/floor/coagulation/icon0_8, -/area/desert_dam/building/water_treatment_two/purification) -"aPk" = ( -/turf/open/floor/filtrationside/west, -/area/desert_dam/exterior/valley/valley_mining) -"aPl" = ( -/turf/open/floor/coagulation/icon1_1, -/area/desert_dam/building/water_treatment_two) -"aPm" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/building/water_treatment_two) -"aPn" = ( -/turf/open/floor/coagulation/icon4_8, -/area/desert_dam/building/water_treatment_two/purification) -"aPo" = ( -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/building/water_treatment_two/purification) -"aPq" = ( -/obj/structure/cargo_container/trijent/left/alt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"aPr" = ( -/obj/structure/cargo_container/trijent/mid/alt, +"aPa" = ( +/obj/structure/largecrate/random, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) +/area/desert_dam/exterior/valley/valley_hydro) "aPs" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/closed/wall/hangar{ @@ -10589,20 +4011,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) -"aPw" = ( -/obj/structure/cargo_container/trijent/right/alt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"aPx" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"aPy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_medical) "aPz" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -10619,46 +4027,15 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/landing_pad_one) -"aPB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/landing_pad_one) -"aPC" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) "aPD" = ( /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) -"aPE" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/substation/northwest) -"aPF" = ( -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/northwest) -"aPG" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aPI" = ( -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northwest) "aPJ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"aPK" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) "aPL" = ( /obj/structure/machinery/shower{ dir = 1 @@ -10666,27 +4043,10 @@ /obj/structure/catwalk, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_two/equipment) -"aPM" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_two/purification) "aPN" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/building/water_treatment_two/purification) -"aPO" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"aPP" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) "aPQ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8" @@ -10703,9 +4063,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aPS" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/dam_interior/north_tunnel) "aPT" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -10717,39 +4074,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aPU" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"aPV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire{ - pixel_x = 3 - }, -/obj/item/tool/extinguisher{ - pixel_x = -10 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"aPW" = ( -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_two/purification) -"aPX" = ( -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_two/purification) "aPY" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aPZ" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) "aQa" = ( /obj/structure/machinery/light{ dir = 4 @@ -10757,30 +4087,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) -"aQb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) "aQc" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"aQd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Filtration" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aQe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) "aQf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -10805,26 +4117,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"aQi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) -"aQj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"aQk" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) "aQl" = ( /obj/structure/filtration/collector_pipes{ icon_state = "lower_2"; @@ -10833,42 +4125,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/building/water_treatment_two/purification) -"aQm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"aQn" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_labs) -"aQo" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/filtration/machine_96x96{ - icon_state = "disinfection" - }, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_two/purification) -"aQp" = ( -/obj/effect/blocker/toxic_water/Group_2/delay, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aQq" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"aQr" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_two/purification) "aQt" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, @@ -10881,55 +4137,29 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aQv" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) "aQw" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) -"aQx" = ( -/turf/open/floor/coagulation/icon0_0, -/area/desert_dam/building/water_treatment_two/purification) -"aQz" = ( -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/building/water_treatment_two/purification) -"aQB" = ( -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/building/water_treatment_two/purification) "aQC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) +"aQD" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) "aQE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aQF" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/building/water_treatment_two/purification) -"aQG" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/northwest) -"aQH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"aQI" = ( -/obj/effect/decal/sand_overlay/sand1{ +"aQI" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/asphalt/cement_sunbleached, @@ -10939,28 +4169,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aQK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"aQL" = ( -/turf/open/floor/coagulation/icon6_8, -/area/desert_dam/exterior/valley/valley_mining) -"aQM" = ( -/turf/open/floor/coagulation/icon7_8, -/area/desert_dam/exterior/valley/valley_mining) -"aQN" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/exterior/valley/valley_mining) -"aQO" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) "aQP" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -10971,26 +4179,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"aQS" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_one) -"aQT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"aQR" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "aQU" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -11006,109 +4202,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"aQX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) -"aQY" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_one) -"aQZ" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"aRc" = ( -/turf/open/floor/darkyellow2, -/area/desert_dam/building/substation/northwest) -"aRd" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/desert_dam/building/substation/northwest) -"aRf" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/desert_dam/building/substation/northwest) -"aRg" = ( -/turf/open/floor/darkyellow2/northeast, -/area/desert_dam/building/substation/northwest) -"aRh" = ( -/obj/structure/filtration/machine_96x96/filtration, -/turf/open/floor/coagulation/icon4_8, -/area/desert_dam/building/water_treatment_two/purification) -"aRi" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRk" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"aRp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Hallway" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"aRq" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) -"aRs" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_medical) -"aRt" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"aRu" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) "aRv" = ( /turf/closed/wall, /area/desert_dam/interior/caves/east_caves) -"aRw" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/interior/caves/east_caves) -"aRx" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/interior/caves/east_caves) -"aRy" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"aRz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_medical) "aRA" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, @@ -11123,70 +4219,16 @@ }, /turf/open/gm/empty, /area/shuttle/trijent_shuttle/lz2) -"aRC" = ( -/turf/open/floor/darkyellow2/west, -/area/desert_dam/building/substation/northwest) -"aRD" = ( -/turf/open/floor/dark2, -/area/desert_dam/building/substation/northwest) -"aRE" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northwest) "aRF" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"aRH" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRI" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/building/water_treatment_two/purification) -"aRJ" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) "aRK" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"aRL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"aRM" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRN" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRO" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"aRP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) "aRQ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -11196,47 +4238,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"aRR" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"aRS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/exterior/telecomm/lz1_south) -"aRT" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/interior/caves/east_caves) -"aRU" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aRV" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/interior/caves/east_caves) -"aRW" = ( -/turf/open/floor/coagulation/icon7_1, -/area/desert_dam/building/water_treatment_two) -"aRX" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/garage) -"aRZ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_one) -"aSa" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/landing_pad_one) -"aSb" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/landing_pad_one) "aSc" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -11246,37 +4247,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"aSd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/landing_pad_one) -"aSe" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/desert_dam/building/substation/northwest) -"aSf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northwest) -"aSg" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_labs) -"aSh" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"aSi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) "aSj" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -11284,9 +4254,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aSk" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_wilderness) "aSl" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -11297,21 +4264,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"aSm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Workshop" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"aSn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) "aSo" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -11319,33 +4271,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"aSq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aSr" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 - }, -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_two/purification) -"aSs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/garage) -"aSt" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/garage) "aSu" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aSv" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_telecoms) "aSw" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, @@ -11356,25 +4284,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"aSz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Security Desk" - }, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" - }, -/obj/item/tool/stamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"aSC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1 - }, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/northwest) "aSD" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/machinery/dispersal_initiator{ @@ -11382,26 +4291,6 @@ }, /turf/open/gm/river/desert/shallow, /area/desert_dam/building/water_treatment_two/purification) -"aSF" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 - }, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_two/purification) -"aSG" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) -"aSH" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_mining) -"aSI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) "aSJ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -11411,36 +4300,6 @@ "aSK" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"aSL" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSM" = ( -/turf/open/floor/coagulation/icon0_4, -/area/desert_dam/building/water_treatment_two/purification) -"aSN" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/mining/workshop) -"aSQ" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"aSR" = ( -/turf/open/floor/coagulation/icon8_7_2, -/area/desert_dam/building/water_treatment_two/purification) -"aST" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"aSU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) "aSV" = ( /obj/structure/desertdam/decals/road_stop{ dir = 1; @@ -11448,9 +4307,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aSW" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aSX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/desertdam/decals/road_stop{ @@ -11465,95 +4321,16 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"aSZ" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"aTa" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"aTb" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"aTc" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"aTe" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/mining/workshop) -"aTg" = ( -/turf/open/floor/darkyellowcorners2, -/area/desert_dam/building/substation/northwest) -"aTh" = ( -/turf/open/floor/darkyellow2/southeast, -/area/desert_dam/building/substation/northwest) -"aTi" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_1" - }, -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/building/water_treatment_two/purification) -"aTj" = ( -/obj/structure/largecrate/random/secure, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"aTk" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_central_north) "aTl" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aTm" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_central_north) -"aTn" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/north_valley_dam) -"aTo" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/building/water_treatment_two/purification) -"aTp" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_0" - }, -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/building/water_treatment_two/purification) "aTq" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) -"aTr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) "aTs" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -11561,14 +4338,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) -"aTt" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) -"aTu" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation/icon0_0, -/area/desert_dam/building/water_treatment_two/purification) "aTv" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 4; @@ -11579,40 +4348,16 @@ }, /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) -"aTw" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"aTx" = ( -/obj/structure/largecrate, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"aTy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) "aTz" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"aTB" = ( -/turf/open/floor/coagulation/icon7_7, -/area/desert_dam/building/water_treatment_two) -"aTC" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_one) -"aTF" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "aTG" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/building/water_treatment_two/control_room) -"aTH" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_telecoms) "aTI" = ( /obj/structure/platform{ dir = 8 @@ -11620,39 +4365,10 @@ /obj/structure/platform, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"aTJ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_telecoms) -"aTK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_telecoms) -"aTL" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_civilian) "aTM" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_two/control_room) -"aTN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/mining/workshop) -"aTO" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/mining/workshop) "aTP" = ( /obj/structure/desertdam/decals/road_stop{ dir = 1; @@ -11661,9 +4377,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aTQ" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/western_dam_cave) "aTR" = ( /obj/structure/machinery/shower{ dir = 1 @@ -11671,64 +4384,18 @@ /obj/structure/catwalk, /turf/open/floor/plating, /area/desert_dam/building/security/staffroom) -"aTS" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/building/mining/workshop) -"aTU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_telecoms) -"aTW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Filtration" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aTX" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/mining/workshop) -"aTY" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) "aTZ" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/courtroom) -"aUa" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"aUb" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) "aUc" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/building/water_treatment_two/equipment) -"aUd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) "aUe" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/courtroom) -"aUf" = ( -/turf/open/floor/prison/redcorner/north, -/area/desert_dam/building/security/lobby) "aUg" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/desert/dirt, @@ -11747,43 +4414,10 @@ /obj/structure/machinery/power/smes/batteryrack/substation, /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) -"aUk" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"aUl" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"aUm" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUn" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_central_north) -"aUo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"aUp" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/telecomm/lz1_south) "aUq" = ( /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) -"aUr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Courtroom" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/courtroom) "aUs" = ( /obj/structure/window/framed/hangar, /obj/effect/decal/cleanable/dirt, @@ -11792,16 +4426,6 @@ "aUt" = ( /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) -"aUu" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUv" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor/prison/red/north, -/area/desert_dam/building/security/lobby) "aUw" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8" @@ -11817,13 +4441,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aUz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Decontamination" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/equipment) "aUA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -11839,29 +4456,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aUC" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_one) -"aUD" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"aUE" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"aUH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"aUK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/courtroom) -"aUL" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_northwest) "aUM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -11869,9 +4463,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aUN" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/equipment) "aUO" = ( /obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/plating, @@ -11887,10 +4478,6 @@ "aUS" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/observation) -"aUT" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) "aUU" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -11900,10 +4487,6 @@ /obj/structure/largecrate/random, /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) -"aUW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) "aUX" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, @@ -11929,9 +4512,6 @@ /obj/item/clothing/head/welding, /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) -"aVc" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/mining/workshop) "aVd" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -11944,24 +4524,9 @@ "aVf" = ( /turf/closed/wall, /area/desert_dam/building/mining/workshop_foyer) -"aVg" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) -"aVh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_one) "aVi" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/landing_pad_one) -"aVj" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"aVk" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) "aVm" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/administration/office) @@ -11969,68 +4534,35 @@ /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_two/hallway) -"aVp" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) -"aVr" = ( -/obj/structure/machinery/computer/area_atmos, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"aVs" = ( -/obj/structure/machinery/computer/turbine_computer, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"aVu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Workshop Foyer" +"aVt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop_foyer) +/turf/open/desert/excavation/component7/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) "aVw" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/interrogation) -"aVA" = ( -/obj/structure/machinery/light{ +"aVx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/mining/workshop) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) "aVB" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/detective) -"aVC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Decontamination" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"aVD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/filtration_button{ - id = "filter 2" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) "aVE" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"aVF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) -"aVG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_one) "aVI" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/administration/control_room) @@ -12039,16 +4571,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/desert_dam/building/administration/office) -"aVK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet7_3/west, -/area/desert_dam/building/administration/office) -"aVL" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) "aVM" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, @@ -12083,33 +4605,6 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"aVS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"aVT" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"aVU" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"aVV" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"aVW" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"aVY" = ( -/turf/open/asphalt/cement/cement13, -/area/desert_dam/interior/dam_interior/south_tunnel) "aVZ" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) @@ -12160,70 +4655,9 @@ "aWh" = ( /turf/open/floor/plating, /area/desert_dam/exterior/landing_pad_one) -"aWi" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) -"aWj" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/control_room) -"aWk" = ( -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/administration/control_room) -"aWl" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aWm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aWn" = ( -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) -"aWo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) -"aWp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/darkblue2/northeast, -/area/desert_dam/building/administration/control_room) "aWq" = ( /turf/open/floor/wood, /area/desert_dam/building/administration/office) -"aWr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/carpet7_3/west, -/area/desert_dam/building/administration/office) -"aWs" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/valley/south_valley_dam) -"aWt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/carpet11_12/west, -/area/desert_dam/building/administration/office) "aWv" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, @@ -12234,20 +4668,6 @@ }, /turf/open/floor/wood, /area/desert_dam/building/administration/office) -"aWx" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"aWy" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/exterior/telecomm/lz1_south) -"aWz" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_wilderness) -"aWA" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_wilderness) "aWB" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -12276,44 +4696,17 @@ "aWF" = ( /turf/open/floor/interior/wood, /area/desert_dam/building/security/office) -"aWG" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"aWH" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_east) -"aWI" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"aWJ" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) "aWK" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/evidence) -"aWL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/equipment) "aWM" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/administration/control_room) -"aWN" = ( -/obj/structure/toilet, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"aWO" = ( -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/administration/control_room) +"aWP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_labs) "aWQ" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -12322,15 +4715,6 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/security/office) -"aWR" = ( -/turf/open/floor/carpet5_1/west, -/area/desert_dam/building/administration/office) -"aWS" = ( -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/administration/office) -"aWT" = ( -/turf/open/floor/carpet9_4/west, -/area/desert_dam/building/administration/office) "aWU" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -12355,17 +4739,6 @@ "aWY" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/administration/hallway) -"aWZ" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_central_north) -"aXa" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) "aXb" = ( /obj/structure/flora/pottedplant, /turf/open/floor/interior/wood, @@ -12381,11 +4754,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aXf" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/garage) "aXg" = ( /obj/structure/machinery/light{ dir = 8 @@ -12394,44 +4762,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/control_room) -"aXh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"aXi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"aXj" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_catwalk" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aXk" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "sedimentation_1"; - pixel_y = -16 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aXl" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"aXm" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "sedimentation_A_1"; - pixel_y = -16 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) "aXo" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -12443,14 +4773,6 @@ /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) -"aXq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_0" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) "aXr" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, @@ -12460,75 +4782,17 @@ /obj/structure/coatrack, /turf/open/floor/wood, /area/desert_dam/building/administration/office) -"aXt" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Administration Office" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/office) -"aXu" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aXv" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_wilderness) -"aXy" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aXz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/red/west, -/area/desert_dam/building/security/lobby) -"aXA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) "aXC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aXD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/security/lobby) "aXE" = ( /obj/structure/machinery/recharger, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/interior/wood, /area/desert_dam/building/security/detective) -"aXI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Administration Office" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/office) -"aXJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"aXK" = ( -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/building/administration/control_room) "aXL" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -12541,42 +4805,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/interior/wood, /area/desert_dam/building/security/detective) -"aXO" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/hallway) -"aXP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/hallway) -"aXQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/hallway) -"aXR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/hallway) "aXS" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_central_north) -"aXT" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"aXU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_wilderness) "aXV" = ( /obj/structure/bookcase/manuals/engineering, /turf/open/floor/interior/wood, @@ -12592,9 +4824,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/interior/wood, /area/desert_dam/building/security/marshals_office) -"aXY" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_wilderness) "aXZ" = ( /obj/structure/filingcabinet/security, /obj/effect/landmark/objective_landmark/close, @@ -12608,11 +4837,6 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aYb" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) "aYd" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/holding) @@ -12620,119 +4844,16 @@ /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement, /area/desert_dam/exterior/valley/valley_wilderness) -"aYf" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_wilderness) "aYg" = ( /obj/structure/surface/rack, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/hallway) -"aYh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"aYi" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_B_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_two/purification) -"aYj" = ( -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/administration/hallway) -"aYk" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"aYl" = ( -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/building/administration/hallway) -"aYm" = ( -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/hallway) -"aYn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"aYo" = ( -/turf/open/floor/dark2, -/area/desert_dam/building/administration/hallway) -"aYp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/hallway) -"aYq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/hallway) -"aYr" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"aYs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"aYt" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"aYu" = ( -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/control_room) -"aYv" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aYw" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) "aYx" = ( /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_12" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"aYy" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"aYz" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_wilderness) "aYD" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, @@ -12741,183 +4862,27 @@ "aYE" = ( /turf/open/floor/interior/wood, /area/desert_dam/building/security/marshals_office) -"aYF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"aYG" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"aYH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"aYI" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"aYJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"aYK" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aYL" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aYM" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) "aYN" = ( /obj/structure/closet/secure_closet/detective, /turf/open/floor/interior/wood, /area/desert_dam/building/security/marshals_office) -"aYQ" = ( -/obj/structure/filtration/coagulation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"aYR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation/icon8_7, -/area/desert_dam/exterior/valley/valley_mining) -"aYS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aYT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aYU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Administration Control Room" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) "aYV" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/office) -"aYW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"aZj" = ( +/obj/item/paper/courtroom{ + name = "A Crash Course in Legal SOP" }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"aYX" = ( -/turf/open/floor/prison/bluecorner, -/area/desert_dam/building/administration/hallway) -"aYY" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aYZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aZa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bluecorner, -/area/desert_dam/building/administration/control_room) -"aZb" = ( -/turf/open/floor/prison/blue, -/area/desert_dam/building/administration/hallway) -"aZc" = ( -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/building/administration/hallway) -"aZd" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) -"aZe" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_north) -"aZg" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_central_north) -"aZh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"aZi" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/building/water_treatment_two) -"aZj" = ( -/obj/item/paper/courtroom{ - name = "A Crash Course in Legal SOP" - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/office) -"aZk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/office) +"aZk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) @@ -12928,9 +4893,6 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aZm" = ( -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/south_tunnel) "aZn" = ( /obj/structure/bed/chair{ dir = 8 @@ -12944,73 +4906,9 @@ /obj/structure/bed/chair/office/light, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/office) -"aZs" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/red/west, -/area/desert_dam/building/security/lobby) -"aZu" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"aZv" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"aZw" = ( -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/hallway) -"aZx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/control_room) -"aZy" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"aZz" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) -"aZA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Administration Hallway" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"aZB" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/hallway) "aZC" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/administration/archives) -"aZH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_labs) -"aZI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) "aZJ" = ( /obj/structure/machinery/computer/cameras/wooden_tv, /obj/structure/surface/table/woodentable/fancy, @@ -13027,85 +4925,15 @@ "aZM" = ( /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/marshals_office) -"aZN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"aZO" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) "aZP" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/administration/hallway) -"aZQ" = ( -/obj/structure/flora/pottedplant, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/building/administration/lobby) "aZR" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/desert_dam/building/administration/hallway) -"aZS" = ( -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/administration/lobby) -"aZT" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"aZU" = ( -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/building/administration/lobby) -"aZV" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"aZW" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"aZX" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"aZY" = ( -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"aZZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"baa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) "bab" = ( /obj/structure/platform{ dir = 8 @@ -13120,10 +4948,6 @@ "bad" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/hallway) -"bae" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) "baf" = ( /obj/structure/flora/pottedplant, /turf/open/floor/prison, @@ -13132,25 +4956,6 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"bai" = ( -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/hallway) -"baj" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) -"bak" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/lobby) -"bal" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/control_room) "bam" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -13161,141 +4966,10 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/administration/lobby) -"bao" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) -"bap" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkred2/north, -/area/desert_dam/building/administration/lobby) -"baq" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/darkred2/north, -/area/desert_dam/building/administration/lobby) -"bar" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/darkred2/northeast, -/area/desert_dam/building/administration/lobby) -"bas" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"bat" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/folder/black_random, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"bau" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"bav" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"baw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"bax" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"baz" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"baA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Checkpoint" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"baC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" - }, -/obj/structure/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Security Desk" - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/lobby) -"baD" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/desert_dam/building/administration/lobby) -"baE" = ( -/turf/open/floor/darkredcorners2/east, -/area/desert_dam/building/administration/lobby) -"baF" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"baG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"baH" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"baI" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_northwest) +"baJ" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) "baL" = ( /obj/structure/machinery/light{ dir = 1 @@ -13326,123 +5000,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/hallway) -"baQ" = ( -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/building/administration/control_room) -"baR" = ( -/turf/open/floor/prison/blue, -/area/desert_dam/building/administration/control_room) -"baS" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" - }, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"baT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"baV" = ( -/obj/structure/surface/table, -/obj/item/paper, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"baW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"baX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"baZ" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bba" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bbb" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/blue/southeast, -/area/desert_dam/building/administration/control_room) -"bbc" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/building/administration/lobby) -"bbd" = ( -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/building/administration/lobby) -"bbe" = ( -/turf/open/floor/prison/bluecorner, -/area/desert_dam/building/administration/lobby) -"bbf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bbg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/administration/hallway) -"bbh" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/darkred2/southwest, -/area/desert_dam/building/administration/lobby) -"bbi" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/darkred2, -/area/desert_dam/building/administration/lobby) -"bbj" = ( -/obj/structure/surface/rack, -/turf/open/floor/darkred2, -/area/desert_dam/building/administration/lobby) -"bbk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/darkred2, -/area/desert_dam/building/administration/lobby) -"bbl" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Archives" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/archives) -"bbm" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Archives" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/archives) -"bbn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Administration Lobby" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) "bbo" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, @@ -13453,56 +5010,14 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"bbs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"bbv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_wilderness) -"bbw" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_wilderness) -"bbx" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bby" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkbrown2/northwest, -/area/desert_dam/building/mining/workshop_foyer) -"bbz" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_telecoms) "bbA" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"bbB" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/western_dam_cave) "bbC" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/administration/lobby) -"bbD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) "bbE" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -13512,28 +5027,6 @@ "bbF" = ( /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) -"bbG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_telecoms) -"bbH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_northwest) -"bbI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"bbK" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) "bbL" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_edge1, @@ -13565,25 +5058,12 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/office) -"bbQ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bbT" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) -"bbU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) "bbV" = ( /obj/structure/machinery/door_control{ id = "hangar_dam_1"; @@ -13593,208 +5073,34 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/hanger) -"bbW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Administration Hallway" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bbX" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/blue, -/area/desert_dam/building/administration/hallway) -"bbY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"bcw" = ( +/turf/open/floor/prison/darkredcorners2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"bcx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/lobby) +"bcy" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"bbZ" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ +"bcK" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/hallway) +"bcM" = ( +/obj/structure/machinery/shower{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"bca" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"bcb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"bcc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"bck" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_telecoms) -"bcn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"bco" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"bcp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) -"bcq" = ( -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/building/administration/hallway) -"bcr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Breakroom" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/meetingrooom) -"bcs" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"bct" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"bcu" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"bcv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"bcy" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_4" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"bcz" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bcA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"bcC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/desertdam/decals/road_stop, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"bcD" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) -"bcE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/meetingrooom) -"bcF" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"bcH" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bcI" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"bcJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Holding" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/holding) -"bcK" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/hallway) -"bcM" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/open/floor/plating, -/area/desert_dam/building/security/prison) -"bcO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"bcQ" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 1 +/obj/structure/catwalk, +/turf/open/floor/plating, +/area/desert_dam/building/security/prison) +"bcQ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 1 }, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_north) @@ -13805,33 +5111,11 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/administration/meetingrooom) -"bcV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/hallway) -"bcW" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bcX" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"bcY" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"bda" = ( -/obj/effect/decal/cleanable/dirt, +"bcZ" = ( +/obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) "bdb" = ( /obj/structure/machinery/light{ dir = 8 @@ -13842,19 +5126,6 @@ /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) -"bdd" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"bde" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) "bdf" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/administration/overseer_office) @@ -13862,14 +5133,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/administration/overseer_office) -"bdh" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/chemistry) -"bdi" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) "bdj" = ( /turf/open/floor/wood, /area/desert_dam/building/administration/meetingrooom) @@ -13897,42 +5160,10 @@ /obj/item/paper_bin, /turf/open/floor/wood, /area/desert_dam/building/administration/meetingrooom) -"bdq" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"bdt" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bdw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/donut_box, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"bdz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"bdA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) +"bdr" = ( +/obj/structure/machinery/computer/aifixer, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "bdB" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/far, @@ -13941,20 +5172,6 @@ "bdC" = ( /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) -"bdD" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_dam_1"; - name = "\improper Hangar Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bdE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) "bdF" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -13962,15 +5179,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) -"bdG" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"bdH" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) "bdI" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -13984,22 +5192,12 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"bdK" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_central_north) "bdM" = ( /obj/item/ashtray/bronze, /obj/item/clothing/mask/cigarette/cigar, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/detective) -"bdN" = ( -/obj/structure/surface/table, -/obj/item/tool/wirecutters, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) "bdO" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -14019,12 +5217,6 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/security/courtroom) -"bdS" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) "bdT" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/objective_landmark/close, @@ -14036,118 +5228,21 @@ }, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/detective) -"bdV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"bdW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"bdX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"bdY" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/carpet6_2/west, -/area/desert_dam/building/administration/overseer_office) -"bdZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/carpet14_10/west, -/area/desert_dam/building/administration/overseer_office) -"bec" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_medical) -"bed" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"bee" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge/northwest, -/area/desert_dam/building/administration/meetingrooom) -"bef" = ( -/turf/open/floor/carpet/edge/north, -/area/desert_dam/building/administration/meetingrooom) -"beg" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/carpet/edge/north, -/area/desert_dam/building/administration/meetingrooom) -"beh" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet/edge/north, -/area/desert_dam/building/administration/meetingrooom) -"bei" = ( -/turf/open/floor/carpet/edge/northeast, -/area/desert_dam/building/administration/meetingrooom) "bej" = ( /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"bek" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"bel" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/interior/caves/central_caves) -"bem" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/mining/workshop_foyer) -"ben" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_one) "beo" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/marshals_office) -"bep" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"beq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_east) -"ber" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) "bes" = ( /obj/structure/bed/chair/comfy/black, /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/marshals_office) -"bet" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"beu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge/west, -/area/desert_dam/building/administration/meetingrooom) "bev" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -14165,18 +5260,12 @@ }, /turf/open/floor/carpet, /area/desert_dam/building/administration/meetingrooom) -"bey" = ( -/turf/open/floor/carpet/edge/east, -/area/desert_dam/building/administration/meetingrooom) "bez" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, /area/desert_dam/building/administration/meetingrooom) -"beB" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/interior/caves/central_caves) "beC" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_telecoms) @@ -14190,70 +5279,18 @@ }, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) -"beF" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/carpet7_3/west, -/area/desert_dam/building/administration/overseer_office) -"beG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_east) -"beH" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/carpet11_12/west, -/area/desert_dam/building/administration/overseer_office) "beI" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) -"beJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) "beK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/wood, /area/desert_dam/building/administration/meetingrooom) -"beL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/carpet/edge/west, -/area/desert_dam/building/administration/meetingrooom) -"beM" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/interior/caves/central_caves) -"beN" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"beO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"beP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"beQ" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) "beS" = ( /obj/structure/machinery/power/apc{ dir = 4; @@ -14276,21 +5313,6 @@ /obj/structure/flora/grass/desert/heavygrass_6, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"beW" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) -"beX" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) -"beY" = ( -/turf/open/floor/carpet5_1/west, -/area/desert_dam/building/administration/overseer_office) "beZ" = ( /obj/structure/platform{ dir = 4 @@ -14298,16 +5320,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) -"bfa" = ( -/turf/open/floor/carpet9_4/west, -/area/desert_dam/building/administration/overseer_office) -"bfb" = ( -/obj/structure/surface/table, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"bfc" = ( -/turf/open/floor/carpet/edge/southwest, -/area/desert_dam/building/administration/meetingrooom) "bfd" = ( /turf/open/floor/carpet/edge, /area/desert_dam/building/administration/meetingrooom) @@ -14317,45 +5329,18 @@ }, /turf/open/floor/carpet/edge, /area/desert_dam/building/administration/meetingrooom) -"bff" = ( -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") - }, -/obj/structure/surface/table, -/turf/open/floor/darkred2/northwest, -/area/desert_dam/building/administration/lobby) "bfg" = ( /obj/structure/prop/dam/large_boulder{ icon_state = "boulder_large1" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"bfh" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/interior/caves/central_caves) -"bfi" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/interior/caves/central_caves) -"bfj" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) "bfk" = ( /obj/item/restraint/handcuffs, /obj/item/weapon/baton, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/marshals_office) -"bfl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper East Filtration" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) "bfm" = ( /turf/closed/wall/hangar{ name = "Elevator Shaft"; @@ -14372,12 +5357,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"bfo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_one) "bfp" = ( /obj/structure/flora/grass/desert/heavygrass_9, /turf/open/desert/dirt, @@ -14386,11 +5365,6 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/desert_dam/building/administration/meetingrooom) -"bfr" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) "bfs" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -14403,10 +5377,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"bfu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_telecoms) "bfw" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, @@ -14431,20 +5401,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) -"bfB" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"bfC" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_northwest) "bfD" = ( /obj/structure/filtration/machine_64x128{ icon_state = "filtration_1" @@ -14455,96 +5411,20 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) -"bfG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_telecoms) "bfH" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"bfJ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) "bfK" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_northwest) -"bfL" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"bfM" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) -"bfN" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"bfO" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"bfP" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bfQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"bfR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper East Filtration" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) "bfS" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/hallway) -"bfT" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bfU" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bfV" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) "bfX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -14575,37 +5455,12 @@ /obj/structure/curtain/open/shower, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/breakroom) -"bge" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_one) -"bgf" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"bgg" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) "bgh" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_northwest) -"bgi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgj" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) "bgk" = ( /obj/structure/curtain/open/shower, /obj/structure/machinery/shower, @@ -14629,12 +5484,6 @@ /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_two/lobby) -"bgp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) "bgq" = ( /obj/structure/machinery/shower{ dir = 1 @@ -14642,9 +5491,6 @@ /obj/structure/catwalk, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/equipment) -"bgr" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/valley/valley_wilderness) "bgs" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -14653,83 +5499,43 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) -"bgt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Hallway" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/hallway) -"bgu" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"bgx" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bgy" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" +"bgv" = ( +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) +/obj/structure/surface/table, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/lobby) "bgz" = ( /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/courtroom) -"bgA" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"bgD" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison/red/west, -/area/desert_dam/building/water_treatment_two/lobby) "bgE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) +"bgF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) "bgG" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) -"bgH" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/exterior/valley/valley_wilderness) "bgI" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/control_room) -"bgJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"bgL" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"bgM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"bgK" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_one) "bgN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -14739,27 +5545,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"bgO" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgP" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgQ" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgR" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgT" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgU" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "bgV" = ( /obj/structure/machinery/power/apc{ dir = 8; @@ -14768,9 +5553,13 @@ }, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/control_room) -"bgW" = ( +"bgY" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) +/area/desert_dam/building/water_treatment_one/control_room) "bgZ" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, @@ -14782,74 +5571,18 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"bhb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/equipment) "bhc" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) -"bhe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/landing_pad_one) -"bhf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/landing_pad_one) -"bhg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/landing_pad_one) -"bhh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_one) "bhi" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/north_valley_dam) -"bhj" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhk" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhl" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhn" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) "bho" = ( /obj/structure/surface/table, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/control_room) -"bhp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) "bhq" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/control_room) @@ -14858,14 +5591,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/control_room) -"bhs" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/water_treatment_two/lobby) "bht" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" @@ -14876,62 +5601,12 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/hanger) -"bhv" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"bhw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) "bhx" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/office) -"bhy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bhz" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bhA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bhC" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_northwest) -"bhD" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhF" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhH" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/north_valley_dam) "bhI" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -14940,133 +5615,13 @@ }, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) -"bhL" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/building/substation/northwest) -"bhM" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bhN" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bhO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/item/tool/warning_cone, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/hanger) -"bhP" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bhQ" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/desert_dam/interior/dam_interior/hanger) -"bhR" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/desert_dam/interior/dam_interior/hanger) -"bhS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/tool/warning_cone, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/hanger) -"bhT" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bhV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_northwest) -"bhW" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"bhX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"bhY" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) -"bhZ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/north_valley_dam) "bia" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/north_valley_dam) -"bib" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/north_valley_dam) -"bic" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) -"bie" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"bif" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) "big" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) -"bih" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/lobby) -"bii" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"bij" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"bik" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bil" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/hanger) -"bim" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/hanger) -"bin" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) "bio" = ( /obj/structure/desertdam/decals/road_stop{ dir = 1; @@ -15074,16 +5629,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"bip" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"biq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_northwest) "bir" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -15096,16 +5641,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"bit" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/north_valley_dam) -"biu" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) "biw" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, @@ -15125,44 +5660,14 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) -"biA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/evidencebag, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) "biC" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) -"biD" = ( -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hanger) -"biE" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) "biF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/courtroom) -"biG" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"biH" = ( -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hanger) -"biI" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) "biJ" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -15216,46 +5721,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"biS" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"biT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/north_valley_dam) -"biV" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) "biW" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_two/lobby) -"biX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Controlroom" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) -"biY" = ( -/turf/open/floor/prison/red/west, -/area/desert_dam/building/water_treatment_two/lobby) -"biZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bjd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) "bje" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -15272,31 +5741,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) -"bji" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"bjj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) "bjk" = ( /turf/closed/shuttle{ icon_state = "swall3" }, /area/desert_dam/interior/dam_interior/hanger) -"bjn" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) "bjo" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -15322,34 +5771,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"bjs" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjt" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/north_valley_dam) -"bju" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/north_valley_dam) "bjv" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) -"bjw" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/water_treatment_two/lobby) "bjy" = ( /turf/closed/shuttle{ icon_state = "swall7" @@ -15360,6 +5786,9 @@ icon_state = "swall8" }, /area/desert_dam/interior/dam_interior/hanger) +"bjA" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "bjB" = ( /turf/closed/shuttle{ icon_state = "swall4" @@ -15370,55 +5799,16 @@ icon_state = "swall11" }, /area/desert_dam/interior/dam_interior/hanger) -"bjE" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/north_valley_dam) "bjG" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"bjH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/lobby) "bjI" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/interior/wood, /area/desert_dam/building/security/detective) -"bjJ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjK" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/north_valley_dam) "bjN" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -15431,27 +5821,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/west_tunnel) -"bjP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" - }, -/obj/structure/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Security Desk" - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/water_treatment_two/lobby) -"bjQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "bjR" = ( /obj/structure/bed/chair{ dir = 1 @@ -15467,34 +5836,20 @@ "bjV" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_mining) -"bjZ" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/lobby) "bka" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) -"bkb" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_mining) -"bkc" = ( -/obj/structure/platform{ +"bke" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bkf" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/north_valley_dam) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) "bkg" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/north_valley_dam) -"bkh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/north_valley_dam) "bki" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -15510,30 +5865,20 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/west_tunnel) -"bkl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/red/west, -/area/desert_dam/building/water_treatment_two/lobby) -"bkm" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_mining) "bkn" = ( /turf/closed/shuttle{ icon_state = "swall0" }, /area/desert_dam/interior/dam_interior/hanger) -"bkt" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/north_valley_dam) -"bku" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/north_valley_dam) -"bkv" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/north_valley_dam) +"bko" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) "bkw" = ( /obj/structure/flora/bush/desert/cactus, /turf/open/desert/dirt, @@ -15550,14 +5895,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/west_tunnel) -"bkC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/water_treatment_two/lobby) -"bkD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/lobby) "bkE" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -15590,58 +5927,24 @@ /obj/structure/machinery/light, /turf/open/floor/interior/wood, /area/desert_dam/building/security/office) -"bkL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bkQ" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"bkM" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/prison/red/southwest, -/area/desert_dam/building/water_treatment_two/lobby) -"bkN" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/red, -/area/desert_dam/building/water_treatment_two/lobby) -"bkO" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/red/southeast, -/area/desert_dam/building/water_treatment_two/lobby) -"bkP" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_mining) -"bkR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hanger) +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) "bkS" = ( /obj/structure/shuttle/engine/heater, /turf/closed/shuttle{ icon_state = "swall0" }, /area/desert_dam/interior/dam_interior/hanger) -"bkT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hanger) "bkU" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bkV" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) "bkW" = ( /turf/open/asphalt, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) @@ -15651,32 +5954,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bkY" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/north_valley_dam) -"bkZ" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/north_valley_dam) -"bla" = ( -/turf/open/floor/prison/red/west, -/area/desert_dam/building/security/lobby) -"blb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/building/mining/workshop_foyer) -"blc" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"bld" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) "ble" = ( /obj/structure/cargo_container/hd/left, /turf/open/floor/plating, @@ -15685,13 +5962,6 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) -"blg" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) "blh" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -15710,47 +5980,10 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/west_tunnel) -"bll" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Lobby" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/lobby) "bln" = ( /obj/structure/cargo_container/hd/mid, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) -"blp" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"blq" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"blr" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"blt" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_mining) -"blv" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) "blx" = ( /turf/closed/shuttle{ icon_state = "swall1" @@ -15765,24 +5998,10 @@ icon_state = "swall0" }, /area/desert_dam/interior/dam_interior/hanger) -"blB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") - }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "blC" = ( /obj/structure/window/framed/bunker/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"blD" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) "blE" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -15799,149 +6018,32 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"blH" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) "blI" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/north_tunnel) -"blJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/north_valley_dam) "blK" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/north_valley_dam) -"blL" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/north_valley_dam) -"blM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) "blN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"blO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/exterior/valley/south_valley_dam) -"blQ" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"blR" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"blS" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) "blT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"blU" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"blV" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"blW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/light, -/obj/item/trash/kepler, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"blX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/building/security/lobby) -"blY" = ( -/turf/open/floor/prison/red/east, -/area/desert_dam/building/security/lobby) "blZ" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/tech_storage) -"bma" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bmb" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bmc" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bmd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/item/paper_bin, -/obj/structure/machinery/door/window/brigdoor/westright{ - name = "Security Desk" - }, -/obj/structure/machinery/door/window/eastleft{ - name = "Security Desk" - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bme" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"bmf" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) "bmg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8" @@ -15954,191 +6056,23 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"bmi" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"bmj" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"bmk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) -"bml" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) -"bmm" = ( -/obj/structure/dispenser, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmn" = ( -/obj/structure/dispenser, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmo" = ( -/obj/structure/safe, -/obj/item/weapon/sword/katana/replica, -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmp" = ( -/obj/structure/surface/rack, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmq" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/turf/open/floor/prison/blue/northeast, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmr" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bms" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bmu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmv" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmw" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/north_valley_dam) "bmx" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/interrogation) -"bmy" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/western_dam_cave) "bmz" = ( /obj/structure/cargo_container/hd/right, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) -"bmA" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/exterior/valley/valley_crashsite) "bmB" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) -"bmC" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_medical) "bmD" = ( /turf/closed/shuttle{ icon_state = "swall2" }, /area/desert_dam/interior/dam_interior/hanger) -"bmE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmF" = ( -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmG" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmI" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/blue/northeast, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmJ" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bmK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmL" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmN" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"bmQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/mining/workshop_foyer) -"bmR" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"bmS" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"bmT" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"bmV" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) "bmW" = ( /obj/structure/machinery/power/apc{ dir = 4; @@ -16165,54 +6099,30 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/security/marshals_office) -"bnc" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bnf" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bng" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bnh" = ( -/obj/structure/cargo_container/kelland/right, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"bnd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"bne" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/hanger) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) "bni" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bnj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/blue/northwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnl" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/computer/crew, -/turf/open/floor/prison/blue/northeast, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnm" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bnp" = ( -/obj/structure/machinery/light{ - dir = 1 +"bnn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) "bnr" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -16232,57 +6142,16 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"bnu" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) "bnv" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_4" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"bnw" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/mining/workshop_foyer) -"bnx" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) "bny" = ( /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"bnz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"bnA" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"bnB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) -"bnC" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bnD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security Office Space" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/office) "bnF" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/northern_hallway) @@ -16295,55 +6164,6 @@ icon_state = "swall14" }, /area/desert_dam/interior/dam_interior/hanger) -"bnI" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hanger) -"bnJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/hanger) -"bnK" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"bnL" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/zippo, -/obj/item/tool/lighter/zippo, -/turf/open/floor/prison/darkbrown2/northwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bnM" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bnN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bnO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/darkbrown2/northeast, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bnP" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/building/administration/control_room) "bnT" = ( /obj/structure/surface/rack, /obj/item/circuitboard/computer/powermonitor, @@ -16359,373 +6179,204 @@ /obj/item/circuitboard/apc, /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/tech_storage) -"bnW" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/turf/open/floor/prison/blue/east, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnX" = ( -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bnZ" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bob" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/north_valley_dam) "boc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/north_valley_dam) -"bod" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"boy" = ( +/turf/closed/shuttle{ + icon_state = "swall13" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/north_valley_dam) -"boe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/interior/dam_interior/hanger) +"boG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) -"bof" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"boJ" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/smes_main) +"boO" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/northern_hallway) +"boP" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/warehouse/breakroom) +"boX" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) -"bog" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/south_valley_dam) -"boh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"bpA" = ( +/obj/structure/surface/rack, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/tech_storage) +"bpC" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bom" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bop" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/desert_dam/building/mining/workshop_foyer) -"boq" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bpF" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bpI" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bpJ" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bpK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"bor" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bpM" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"bos" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/area/desert_dam/interior/dam_interior/engine_west_wing) +"bpY" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/breakroom) +"bqs" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Marshal Checkpoint" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bot" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" + icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bou" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bov" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Detectives Office" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"bqB" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/prison/blue, +/area/desert_dam/building/dorms/pool) +"bqM" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/detective) -"bow" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"box" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"boy" = ( -/turf/closed/shuttle{ - icon_state = "swall13" - }, -/area/desert_dam/interior/dam_interior/hanger) -"boz" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bqS" = ( /obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"boA" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"boB" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"boC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/trackimp, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/dam_interior/tech_storage) -"boD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"boF" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/structure/machinery/light{ +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"bqT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/interior/dam_interior/tech_storage) -"boG" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"boH" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"boI" = ( -/obj/structure/disposalpipe/segment, /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/north_valley_dam) -"boJ" = ( +/area/desert_dam/exterior/valley/valley_labs) +"brc" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/smes_main) -"boK" = ( -/obj/structure/filtration/flacculation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/toxic, -/area/desert_dam/exterior/river/filtration_a) -"boL" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"boM" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"boN" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshals Office" +/area/desert_dam/interior/dam_interior/engine_east_wing) +"brg" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"brh" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/marshals_office) -"boO" = ( -/obj/structure/window/framed/colony/reinforced, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"brr" = ( /turf/open/floor/plating, -/area/desert_dam/building/security/northern_hallway) -"boP" = ( +/area/desert_dam/exterior/valley/valley_telecoms) +"brF" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/building/warehouse/breakroom) -"boQ" = ( -/obj/structure/toilet, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"boR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"boS" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"boT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"brP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) -"boV" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"brQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"boW" = ( -/turf/open/floor/prison/redcorner/east, -/area/desert_dam/building/security/northern_hallway) -"boX" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"brR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"bpa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/redcorner/north, -/area/desert_dam/building/security/northern_hallway) -"bpb" = ( -/turf/open/floor/prison/red/north, -/area/desert_dam/building/security/northern_hallway) -"bpe" = ( -/turf/open/floor/prison/redcorner/north, -/area/desert_dam/building/security/northern_hallway) -"bpf" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/desert_dam/interior/dam_interior/north_tunnel) +"brS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/red/north, -/area/desert_dam/building/security/northern_hallway) -"bpg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bph" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"brX" = ( +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/smes_main) +"brY" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/holding) +"bsg" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"bsp" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/southern_hallway) +"bsC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/redcorner/north, -/area/desert_dam/building/security/northern_hallway) -"bpi" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bsK" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/turf/open/floor/prison/redcorner/east, -/area/desert_dam/building/security/northern_hallway) -"bpj" = ( +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/smes_main) +"bsR" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"bsT" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bpk" = ( -/obj/structure/barricade/sandbags{ - dir = 1 - }, -/obj/structure/barricade/sandbags{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bpl" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"bpq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/red/north, -/area/desert_dam/building/security/northern_hallway) -"bpr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_mining) -"bps" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/exterior/valley/valley_telecoms) -"bpt" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"bpu" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) -"bpv" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bpw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"bpx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bpy" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"bsU" = ( +/obj/structure/machinery/microwave, /obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/dam_interior/tech_storage) -"bpz" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"bsV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -16733,8640 +6384,14185 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) -"bpA" = ( -/obj/structure/surface/rack, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/tech_storage) -"bpB" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/blue/east, -/area/desert_dam/interior/dam_interior/tech_storage) -"bpC" = ( +"btc" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/smes_main) +"btd" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpF" = ( -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpI" = ( -/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"bty" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"btz" = ( /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpJ" = ( +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"btA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpK" = ( +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"btC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpL" = ( -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpM" = ( -/turf/closed/wall/r_wall/bunker{ +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"btQ" = ( +/turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bpN" = ( -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"bpO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bpP" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bpQ" = ( -/obj/structure/machinery/landinglight/ds1{ +/area/desert_dam/interior/dam_interior/engine_room) +"btX" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"btY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"bua" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"buc" = ( +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"bud" = ( +/obj/structure/target, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_telecoms) +"buj" = ( +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"buo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"but" = ( +/obj/structure/window/framed/wood/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/bar/bar) +"buy" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_one) -"bpR" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"bpS" = ( -/obj/structure/filtration/coagulation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow/toxic, -/area/desert_dam/exterior/river/filtration_a) -"bpT" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/obj/structure/machinery/light, +/turf/open/floor/chapel, +/area/desert_dam/building/church) +"buA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"buI" = ( +/obj/structure/machinery/door_control{ + id = "hangar_dam_2"; + name = "Hangar Shutters" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_one) -"bpU" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"bpV" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 10 +/area/desert_dam/interior/dam_interior/hanger) +"buR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"bpW" = ( -/obj/structure/surface/table, -/obj/item/stack/rods{ - amount = 25 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"buS" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"buU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"bpX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"bpY" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/breakroom) -"bqa" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/interior/caves/central_caves) -"bqc" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/bar_valley_dam) -"bqd" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) -"bqe" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bqf" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bqg" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bqh" = ( -/obj/structure/closet, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"bqi" = ( -/obj/structure/barricade/sandbags{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bqk" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_one) -"bql" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bqm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bqn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bvp" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"bvt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bqp" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_mining) -"bqq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/smes_backup) +"bvv" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/mining/workshop) +"bvx" = ( +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop_foyer) +"bvA" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/building/warehouse/warehouse) +"bvD" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bwd" = ( +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bwq" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"bwE" = ( +/obj/structure/bed/chair, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/courtroom) +"bwF" = ( +/obj/structure/bed/chair, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bqt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bqu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/courtroom) +"bwJ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bqw" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"bwQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Evidence" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison, +/area/desert_dam/building/security/evidence) +"bwR" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bqy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/security/holding) +"bxo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bxq" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bqA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bxF" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/breakroom) +"bxI" = ( +/turf/open/floor/prison/greencorner/west, +/area/desert_dam/building/substation/west) +"bxO" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"bxP" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bqH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bqI" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bqJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/dam_interior/tech_storage) -"bqK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"bqL" = ( -/turf/open/floor/prison/blue/east, -/area/desert_dam/interior/dam_interior/tech_storage) -"bqM" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"bxW" = ( /obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bqN" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqO" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqP" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqQ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_east) +"bxX" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqU" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqV" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bqW" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bxZ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bqX" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bqY" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"byh" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, /turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/smes_main) -"bqZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"bra" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"brb" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/smes_main) -"brc" = ( +/area/desert_dam/building/substation/central) +"byi" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/north_tunnel) +"byn" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/hangar_storage) +"byo" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"brd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Break Room" +/area/desert_dam/interior/dam_interior/hangar_storage) +"byr" = ( +/obj/structure/machinery/door_control{ + id = "dam_shutter_hangar"; + name = "Hangar Shutters" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"bre" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"brf" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"brg" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"brh" = ( -/turf/closed/wall/r_wall/bunker{ +/turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bri" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/area/desert_dam/interior/dam_interior/hanger) +"byC" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"byF" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, -/turf/open/floor/plating/warnplate, -/area/desert_dam/building/substation/northwest) -"brj" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_mining) -"brm" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"brn" = ( /turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/holding) -"bro" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/desert_dam/building/security/warden) +"byI" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"byJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"byK" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 }, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"byS" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"brp" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"brq" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"brr" = ( +/area/desert_dam/interior/dam_interior/engine_east_wing) +"byU" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_telecoms) -"brs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Marshal Office" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"brt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bru" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"brz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_mining) -"brA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/mining/workshop) -"brB" = ( +/area/desert_dam/building/security/staffroom) +"byX" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand2/corner2{ +/turf/open/floor/plating, +/area/desert_dam/building/substation/northwest) +"bza" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/desert_dam/building/security/holding) +"bzb" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"brC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/cell_stripe/west, -/area/desert_dam/interior/dam_interior/hanger) -"brD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/cell_stripe/east, -/area/desert_dam/interior/dam_interior/hanger) -"brE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"brF" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"brG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"brH" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"brI" = ( -/turf/open/floor/prison/darkredcorners2/east, +/turf/open/floor/prison, /area/desert_dam/building/security/holding) -"brK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bzc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/prison, +/area/desert_dam/building/security/holding) +"bzd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"brL" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"brM" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/blue, -/area/desert_dam/interior/dam_interior/tech_storage) -"brN" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/blue/southeast, -/area/desert_dam/interior/dam_interior/tech_storage) -"brO" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Holding" }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"brP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/turf/open/floor/prison, +/area/desert_dam/building/security/holding) +"bzu" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bzA" = ( +/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"brQ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bzB" = ( /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"brR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bzH" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"brS" = ( +/area/desert_dam/interior/dam_interior/engine_west_wing) +"bzS" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_wilderness) +"bzW" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) +"bzY" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_mining) +"bAc" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bAk" = ( +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"bAm" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"bAo" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"bAq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"brU" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bAr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"brV" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bAE" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"brW" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"bAI" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"brX" = ( -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/smes_main) -"brY" = ( -/turf/open/floor/prison, -/area/desert_dam/building/security/holding) -"brZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bsa" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/building/substation/northwest) -"bsb" = ( -/turf/open/floor/prison/red, -/area/desert_dam/building/security/northern_hallway) -"bsc" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsd" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bse" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsg" = ( -/obj/structure/coatrack, /turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"bsh" = ( -/turf/open/floor/prison/redcorner/west, -/area/desert_dam/building/security/northern_hallway) -"bsi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, +/area/desert_dam/building/administration/overseer_office) +"bAK" = ( +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) +"bAW" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bsj" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bsk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/northern_hallway) -"bsl" = ( -/turf/open/floor/prison/redcorner, -/area/desert_dam/building/security/northern_hallway) -"bsm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/red, -/area/desert_dam/building/security/northern_hallway) -"bsn" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/red, -/area/desert_dam/building/security/northern_hallway) -"bso" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/red, -/area/desert_dam/building/security/northern_hallway) -"bsp" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/southern_hallway) -"bsq" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"bBg" = ( +/obj/structure/bed/chair, /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bBk" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/southern_hallway) -"bsr" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bss" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"bBl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"bBm" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bBn" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_south) +"bBr" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/hanger) -"bst" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/hanger) -"bsu" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/hanger) -"bsw" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/hanger) -"bsy" = ( -/obj/structure/surface/table, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bsz" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bsA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Secure Tech Storage" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"bsC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, +/turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel) -"bsE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bsF" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bsG" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/smes_main) -"bsH" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"bsJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bsK" = ( -/obj/structure/machinery/power/terminal{ +"bBs" = ( +/obj/structure/stairs{ dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/smes_main) -"bsL" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bsM" = ( -/obj/structure/closet/radiation, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bBu" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsN" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"bsQ" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/security/southern_hallway) -"bsR" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"bsS" = ( -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"bsT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"bBy" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool, /turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"btc" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/smes_main) -"btf" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/staffroom) -"bth" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bti" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"btj" = ( -/turf/open/floor/prison/darkbrown3/northwest, -/area/desert_dam/interior/dam_interior/hanger) -"btk" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"btl" = ( -/turf/open/floor/prison/darkbrowncorners3/north, -/area/desert_dam/interior/dam_interior/hanger) -"btm" = ( -/turf/open/floor/prison/darkbrowncorners3/east, -/area/desert_dam/interior/dam_interior/hanger) -"btp" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btq" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btr" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"bBz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bts" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btt" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btv" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btw" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btx" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"bBA" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2/northeast, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bty" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btz" = ( -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"btA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"bBC" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"btC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"bBL" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/deathrow) +"bBS" = ( +/obj/structure/bed/chair, +/obj/structure/window/reinforced, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/courtroom) +"bBV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"btD" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"btE" = ( -/turf/open/desert/rock/deep/transition/east, -/area/desert_dam/interior/caves/east_caves) -"btF" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"btG" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"btH" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"btI" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bCb" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"bCg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"btJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/desert_dam/building/administration/hallway) -"btK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/desert_dam/building/administration/hallway) -"btL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/building/administration/hallway) -"btM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bCh" = ( +/obj/structure/stairs{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"btP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Administration Hallway" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"btQ" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bCj" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bCk" = ( +/obj/structure/stairs{ + dir = 8 }, +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bCs" = ( +/obj/structure/window/framed/hangar, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) -"btR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_mining) -"btS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Engine Room" - }, -/turf/open/floor/prison/bright_clean/southwest, +"bCy" = ( +/obj/structure/window/framed/hangar, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) -"btT" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"btU" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"btV" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +"bCC" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"bCK" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_mining) +"bCO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"btW" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/holding) -"btX" = ( -/turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"btY" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"btZ" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/southern_hallway) -"bua" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"bub" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"bCW" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_telecoms) -"buc" = ( -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"bud" = ( -/obj/structure/target, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_telecoms) -"bue" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/holding) -"buf" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bCZ" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/exterior/valley/valley_telecoms) -"bug" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/staffroom) -"buh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_mining) -"bui" = ( -/obj/structure/closet/bombclosetsecurity, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/staffroom) -"buj" = ( /turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"buk" = ( -/obj/structure/pipes/vents/pump{ +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bDa" = ( +/obj/structure/stairs{ dir = 8 }, -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"bul" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_mining) -"bum" = ( -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"but" = ( -/obj/structure/window/framed/wood/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/bar/bar) -"buu" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bDc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bDe" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/computer/atmos_alert, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/staffroom) -"buv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation/icon8_4, -/area/desert_dam/exterior/valley/valley_mining) -"bux" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_mining) -"buz" = ( +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/tech_storage) +"bDj" = ( /obj/structure/surface/rack, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"buA" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"buB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/tech_storage) +"bDx" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"buC" = ( +/area/desert_dam/interior/dam_interior/atmos_storage) +"bDH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"buD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"bDJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"buI" = ( -/obj/structure/machinery/door_control{ - id = "hangar_dam_2"; - name = "Hangar Shutters" +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bDM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/hanger) -"buJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"buK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bDR" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_room) +"bDU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bDV" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, /obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bDZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"bEh" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"buM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/administration/hallway) -"buN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"buO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/administration/hallway) -"buP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bEq" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"buQ" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bEu" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bEv" = ( +/obj/structure/stairs{ dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"buR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, -/turf/open/asphalt, +/obj/structure/platform, +/turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"buS" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, +"bEw" = ( +/turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"buU" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/turf/open/asphalt, +"bEx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"buW" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, +"bEy" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/computer/crew, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"buX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/tech_storage) +"bED" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"buY" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"bEL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"buZ" = ( +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/smes_main) +"bEM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/administration/hallway) -"bva" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/building/administration/hallway) -"bvb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/smes_main) +"bFj" = ( +/obj/structure/bed, +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office1) +"bFv" = ( +/obj/structure/surface/table, +/obj/item/evidencebag, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bFy" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/armor/det_suit, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bFB" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"bFC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"bFL" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bFN" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bvc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper SMES" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bFY" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/smes_main) +"bGc" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_room) +"bGv" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/flashbang, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bGw" = ( +/obj/structure/bed/stool, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bGy" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"bvd" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"bGz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"bve" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"bGB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"bvh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) -"bvi" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"bvj" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"bGD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"bvk" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"bvl" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bvm" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bvn" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"bGE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bvo" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bvp" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"bvq" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"bGG" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, -/obj/structure/surface/rack, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"bvr" = ( -/obj/structure/stairs{ +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/courtroom) +"bGH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bvu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/building/mining/workshop) -"bvv" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/mining/workshop) -"bvw" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/building/mining/workshop_foyer) -"bvx" = ( -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop_foyer) -"bvy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/darkred2/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, /area/desert_dam/building/security/southern_hallway) -"bvz" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_mining) -"bvA" = ( +"bGJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 + }, +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bGQ" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/smes_main) +"bGU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bGV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bGW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bGX" = ( +/turf/closed/wall/hangar, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"bGY" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"bHc" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/building/warehouse/warehouse) -"bvB" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/objective{ - dir = 4 +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"bHd" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"bvD" = ( -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bvE" = ( -/obj/structure/machinery/light{ +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bHe" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1 }, -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/staffroom) -"bvF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2; - icon_state = "pipe-u" +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bHf" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/staffroom) -"bvG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/area/desert_dam/interior/dam_interior/lobby) +"bHm" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, +/area/desert_dam/interior/dam_interior/smes_backup) +"bHn" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bHs" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"bHu" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bHF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/southern_hallway) -"bvH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"bvJ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bvK" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkred2/north, +/turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bvL" = ( -/obj/structure/machinery/computer/secure_data, +"bHH" = ( +/turf/open/desert/excavation/component9/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"bHI" = ( /obj/structure/surface/table, -/turf/open/floor/prison/darkred2/north, +/obj/item/reagent_container/spray/cleaner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bvM" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison/darkred2/north, +"bHJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bvS" = ( -/turf/open/floor/prison/darkred2/north, +"bHK" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bvT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkred2/northeast, +"bHL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/recharger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bvU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bvV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bvW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bvX" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"bHO" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bvY" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bwa" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"bHR" = ( +/obj/structure/stairs{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bwb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, +/turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bwc" = ( -/turf/open/asphalt/cement/cement4, +"bHS" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bwd" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bwe" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bwf" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher/mini, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwg" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwh" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwi" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 +"bIe" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bIf" = ( +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bIg" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bIt" = ( +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/smes_backup) +"bID" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/obj/item/storage/toolbox/emergency, -/obj/item/circuitboard/firealarm, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwj" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/signaller, -/obj/item/circuitboard/airlock, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwk" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/voice, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/area/desert_dam/interior/dam_interior/south_tunnel) +"bIF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwn" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwo" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/smes_main) -"bwp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"bwr" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper SMES" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"bIG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/dark2, -/area/desert_dam/interior/dam_interior/smes_main) -"bwt" = ( -/turf/open/floor/warning/northwest, -/area/desert_dam/interior/dam_interior/engine_room) -"bwu" = ( -/turf/open/floor/warning/north, -/area/desert_dam/interior/dam_interior/engine_room) -"bwv" = ( -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"bww" = ( -/turf/open/floor/warning/northeast, -/area/desert_dam/interior/dam_interior/engine_room) -"bwx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bwy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bwz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bwA" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bwB" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bwD" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"bIH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/staffroom) -"bwE" = ( -/obj/structure/bed/chair, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) -"bwF" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"bIK" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/east_caves) +"bIV" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/good_item, /turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) -"bwH" = ( -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) -"bwI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) -"bwK" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"bwL" = ( -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"bwM" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"bwO" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"bwQ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Evidence" - }, +/area/desert_dam/building/bar/backroom) +"bJa" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/desert_dam/building/security/evidence) -"bwR" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/desert_dam/building/security/southern_hallway) +"bJg" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/holding) -"bwT" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bwU" = ( -/turf/open/asphalt/cement/cement1, +/turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bwV" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +"bJh" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bwW" = ( -/turf/open/floor/prison/darkbrowncorners3/west, -/area/desert_dam/interior/dam_interior/hanger) -"bwX" = ( -/turf/open/floor/prison/darkbrowncorners3, -/area/desert_dam/interior/dam_interior/hanger) -"bwY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bwZ" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/machinery/light, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bxa" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/machinery/light, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bxb" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bxc" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/darkbrowncorners3/west, -/area/desert_dam/interior/dam_interior/hanger) -"bxd" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bxe" = ( +/area/desert_dam/interior/dam_interior/north_tunnel) +"bJo" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bJp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bJy" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"bJB" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/smes_backup) +"bJC" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"bJD" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"bJE" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"bJI" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bxf" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxg" = ( -/turf/open/floor/prison/darkbrowncorners2/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxh" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxi" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxj" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bJQ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"bxk" = ( -/obj/structure/surface/table, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxl" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"bJU" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/warden) +"bJV" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/warden) +"bKf" = ( +/obj/structure/bed/chair, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) +"bKj" = ( +/obj/item/stack/sheet/wood, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"bKk" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bxn" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"bKl" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) +"bKq" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxq" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bKr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxr" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxs" = ( -/obj/structure/stairs{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bKs" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bKv" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxt" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxu" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison/sterile_white, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bKz" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxv" = ( +"bKA" = ( /obj/structure/surface/rack, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/device/flashlight, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bxy" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bKC" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"bKI" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_mining) +"bKJ" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bxz" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/smes_main) -"bxB" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/smes_main) -"bxD" = ( -/turf/open/floor/warning/west, -/area/desert_dam/interior/dam_interior/engine_room) -"bxF" = ( -/obj/effect/landmark/good_item, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) +"bKL" = ( +/obj/structure/window/framed/hangar, /turf/open/floor/plating, -/area/desert_dam/building/warehouse/breakroom) -"bxJ" = ( -/turf/open/floor/warning/east, -/area/desert_dam/interior/dam_interior/engine_room) -"bxK" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/flare, -/obj/item/device/radio, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bxL" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bxM" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bxN" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bxQ" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/interior/dam_interior/control_room) +"bKM" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/hanger) +"bKN" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/southern_hallway) +"bKZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) +"bLe" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bxR" = ( -/obj/structure/barricade/sandbags, -/obj/structure/barricade/sandbags{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) +"bLf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bxS" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/courtroom) +"bLh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bLq" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"bxT" = ( -/obj/structure/platform{ - dir = 1 +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"bLr" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, +/area/desert_dam/interior/dam_interior/lobby) +"bLz" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"bLF" = ( /obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"bLH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"bLJ" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"bxU" = ( -/obj/structure/platform{ - dir = 1 +"bLN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"bLR" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/breakroom) +"bLU" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_east) -"bxV" = ( -/obj/structure/platform_decoration{ +/area/desert_dam/interior/dam_interior/workshop) +"bMb" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/workshop) +"bMd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"bxW" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_east) -"bxX" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, /turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bMw" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/hangar_storage) +"bMH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, /area/desert_dam/interior/dam_interior/north_tunnel) -"bxY" = ( -/obj/structure/platform{ - dir = 1 +"bMI" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bMJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bxZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bya" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bMY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"byb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"bym" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/caves/east_caves) -"byn" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) +"bNa" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"byo" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) +"bNe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"byp" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/administration/overseer_office) -"byq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hangar" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"byr" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"bNg" = ( /obj/structure/machinery/door_control{ - id = "dam_shutter_hangar"; - name = "Hangar Shutters" + id = "dam_stormlock_east"; + name = "Storm Shutter Lockdown" }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"bNi" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/warden) +"bNj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/interior/dam_interior/hanger) -"bys" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bNk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"byt" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"byu" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"byv" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bNl" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bNm" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"byw" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"byx" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bNu" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/east_caves) +"bNw" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/armory) +"bNx" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Armoury" + }, +/turf/open/floor/prison, +/area/desert_dam/building/security/armory) +"bNE" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/prison) +"bNF" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/prison) +"bNG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"byy" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/autoname, +/turf/open/floor/prison, +/area/desert_dam/building/security/prison) +"bNH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/security/prison) +"bNJ" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"byz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison, +/area/desert_dam/building/security/warden) +"bNP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/desert_dam/building/security/warden) +"bNY" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/dam_interior/workshop) +"bOh" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bOi" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bOj" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"byA" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bOu" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"bOv" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"byB" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"bOx" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) +"bOA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"byC" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"byD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper SMES" +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"bOB" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"bOD" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/prison) +"bOE" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"bOG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"byE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"byL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"byP" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/security/prison) +"bOI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/desert_dam/building/security/prison) +"bOP" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bOQ" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/dam_interior/office) +"bOR" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northwest) -"byQ" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/staffroom) -"byR" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/item/clothing/suit/storage/CMB, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/staffroom) -"byS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/interior/dam_interior/office) +"bOU" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bOV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/closed/wall/r_wall/bunker{ +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bOX" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bPb" = ( +/turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"byT" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"byU" = ( -/obj/structure/window/framed/colony/reinforced, +/area/desert_dam/interior/dam_interior/CE_office) +"bPr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/east_caves) +"bPv" = ( +/obj/structure/window/framed/hangar, /turf/open/floor/plating, -/area/desert_dam/building/security/staffroom) -"byV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation/icon7_0, -/area/desert_dam/exterior/valley/valley_mining) -"byW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon7_0, -/area/desert_dam/exterior/valley/valley_mining) -"byX" = ( -/obj/structure/machinery/light{ +/area/desert_dam/interior/dam_interior/lobby) +"bPx" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"bPG" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/building/substation/northwest) -"byY" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison, +/area/desert_dam/building/security/prison) +"bPH" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Visitation" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"byZ" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"bza" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, /turf/open/floor/prison, -/area/desert_dam/building/security/holding) -"bzb" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/desert_dam/building/security/prison) +"bPN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"bPO" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"bPV" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_northwest"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"bQb" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bQl" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"bQt" = ( +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"bQu" = ( +/obj/structure/machinery/light, /turf/open/floor/prison, -/area/desert_dam/building/security/holding) -"bzc" = ( +/area/desert_dam/building/security/prison) +"bQG" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/prison, +/area/desert_dam/building/security/warden) +"bQH" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/open/floor/prison, -/area/desert_dam/building/security/holding) -"bzd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/building/security/warden) +"bQP" = ( +/turf/open/gm/river/desert/shallow, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"bRa" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_north"; + name = "Checkpoint Lockdown" }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Holding" +/turf/open/floor/prison/red/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"bRe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/holding) -"bzh" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/machinery/light{ +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bRf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bRj" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/workshop) +"bRk" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/office) +"bRn" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"bRo" = ( +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"bRq" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzi" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzj" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bRr" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bRs" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_central_north) +"bRt" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/substation/west) +"bRu" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzk" = ( -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzm" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzn" = ( -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzo" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzp" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light{ +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzr" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzt" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzu" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzv" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzw" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzx" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzy" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzz" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/desert_dam/interior/dam_interior/north_tunnel) +"bRy" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/CE_office) +"bRB" = ( +/obj/structure/machinery/door_control{ + id = "dam_stormlock_central"; + name = "Storm Shutter Lockdown" }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzA" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bRF" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/armory) +"bRG" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"bRH" = ( +/turf/open/gm/river/desert/deep, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"bRI" = ( +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"bRL" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"bRM" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"bRO" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/smes_backup) +"bSj" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"bSk" = ( /obj/structure/desertdam/decals/road_edge, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzB" = ( +/area/desert_dam/exterior/valley/south_valley_dam) +"bSl" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzC" = ( -/obj/structure/platform_decoration{ +/area/desert_dam/exterior/valley/south_valley_dam) +"bSr" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement/cement15, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"bSS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"bSY" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_central_north) +"bTi" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_central_north) +"bTk" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_northwest"; + name = "\improper Checkpoint Lock"; + unacidable = 0 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"bTl" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating, +/area/desert_dam/building/security/prison) +"bTs" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"bTt" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/break_room) +"bTu" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"bTw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/desert_dam/building/security/warden) +"bTy" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Tool Storage" +"bTF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bzE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bzF" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bzG" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bTH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bzH" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bTI" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bzI" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - pixel_y = 30 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/control_room) -"bzJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Overseer's Office" - }, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bTR" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bTW" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bTX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/overseer_office) -"bzK" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bTY" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"bTZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bUg" = ( +/turf/open/desert/cave/cave_shore, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"bUm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bUn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/CE_office) +"bUp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bzL" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/interior/dam_interior/control_room) -"bzM" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/interior/dam_interior/control_room) -"bzN" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/interior/dam_interior/control_room) -"bzO" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/control_room) -"bzP" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"bzQ" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bzR" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bUt" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bUu" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bUv" = ( +/obj/structure/desertdam/decals/road_edge, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"bzS" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) -"bzT" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"bzU" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/desert_dam/building/substation/northwest) -"bzV" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_wilderness) -"bzW" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"bzX" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"bzY" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_mining) -"bzZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/evidence, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"bAa" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bUy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/staffroom) -"bAb" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/staffroom) -"bAc" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bAh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bAm" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bAn" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"bAp" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bUG" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bAq" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bUH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bAr" = ( +/area/desert_dam/exterior/valley/south_valley_dam) +"bUI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bAs" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bAt" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bAv" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bUJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bAw" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/east_caves) -"bAy" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAz" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAA" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAC" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAD" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAE" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"bAF" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bUK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_one) -"bAG" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bAH" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "hangar_dam_2"; + name = "\improper Hangar Shutters" + }, +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"bUN" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"bUW" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 1" + }, +/turf/open/floor/prison, +/area/desert_dam/building/security/prison) +"bVq" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bVr" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bVs" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bVt" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bVu" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bVz" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"bVD" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/exterior/valley/south_valley_dam) +"bVE" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bVS" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bAI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"bAJ" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/control_room) -"bAK" = ( -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) -"bAM" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bAN" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"bAO" = ( -/obj/structure/stairs, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_wilderness) -"bAP" = ( -/obj/structure/stairs, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_wilderness) -"bAR" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bVT" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/exterior/valley/valley_wilderness) -"bAS" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"bAY" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/exterior/valley/valley_mining) -"bAZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bVX" = ( +/obj/structure/stairs{ + dir = 8 }, -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/exterior/valley/valley_mining) -"bBb" = ( -/obj/structure/machinery/light{ +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"bBc" = ( -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/holding) -"bBd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkredcorners2/southwest, -/area/desert_dam/building/security/holding) -"bBe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/southern_hallway) -"bBf" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"bBg" = ( -/obj/structure/bed/chair, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bBh" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bBi" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet10_8/west, -/area/desert_dam/building/administration/overseer_office) -"bBj" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bBk" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"bBl" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bVZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"bBm" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bBo" = ( -/obj/structure/platform_decoration{ +"bWf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Warden" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bBp" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bBq" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bBr" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bBs" = ( -/obj/structure/stairs{ +/turf/open/floor/prison, +/area/desert_dam/building/security/warden) +"bWg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ dir = 8 }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"bWi" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bWj" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bWk" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bWl" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bBt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bBv" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_south) +"bWq" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/control_room) -"bBw" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) +"bWr" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"bWt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bBx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_northwest"; - name = "Checkpoint Lockdown" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bBy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool, /turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bBD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bBF" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bBG" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bBH" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bBI" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bBL" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/deathrow) -"bBM" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"bBO" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"bBP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bBQ" = ( +/area/desert_dam/building/security/warden) +"bWu" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) +"bWv" = ( /obj/structure/platform{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) +"bWw" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_central_north) +"bWA" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bBR" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/mining/workshop_foyer) -"bBS" = ( -/obj/structure/bed/chair, -/obj/structure/window/reinforced, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) -"bBV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison, +/area/desert_dam/building/security/warden) +"bWB" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, /turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bCe" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bCf" = ( +/area/desert_dam/building/security/warden) +"bWE" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bWF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/interior/dam_interior/tech_storage) -"bCg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCh" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bWK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bWL" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bWO" = ( +/obj/item/reagent_container/food/drinks/flask/detflask, +/obj/item/clothing/head/det_hat, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"bWT" = ( /obj/structure/stairs{ dir = 4 }, /obj/structure/platform, /turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCi" = ( +/area/desert_dam/interior/dam_interior/west_tunnel) +"bWU" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCj" = ( -/obj/structure/platform_decoration, /turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCk" = ( +/area/desert_dam/interior/dam_interior/west_tunnel) +"bWX" = ( /obj/structure/stairs{ dir = 8 }, /obj/structure/platform, /turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCn" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +/area/desert_dam/interior/dam_interior/central_tunnel) +"bXb" = ( +/turf/open/floor/darkyellow2, +/area/desert_dam/building/substation/northeast) +"bXc" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"bXd" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) +"bXn" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"bXs" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) +"bXu" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"bXv" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"bXw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Armoury" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCo" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/turf/open/floor/prison, +/area/desert_dam/building/security/armory) +"bXx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCp" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bXy" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_central_north) +"bXC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCq" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_northwest"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"bXE" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"bXF" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCs" = ( -/obj/structure/window/framed/hangar, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"bCt" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/lobby) -"bCu" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/lobby) -"bCv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bCw" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bCx" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/lobby) -"bCy" = ( -/obj/structure/window/framed/hangar, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"bCz" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/control_room) -"bCA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"bCB" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/control_room) -"bCD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bCH" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"bCI" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/asphalt/tile, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bCJ" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/asphalt/tile, +"bXH" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bCK" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, +"bXI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bCM" = ( -/obj/structure/bed/chair{ - dir = 1 +"bXJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"bCN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/evidencebag, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"bCO" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bXK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"bCP" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bCQ" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bCR" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bCS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCT" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCU" = ( -/obj/structure/pipes/vents/pump/on, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"bCV" = ( -/obj/effect/decal/sand_overlay/sand2{ +/area/desert_dam/exterior/valley/valley_mining) +"bXL" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bXN" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCW" = ( -/obj/structure/stairs{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bXQ" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/obj/structure/platform{ - dir = 1 +/area/desert_dam/interior/dam_interior/disposals) +"bXR" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCX" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/desert_dam/interior/dam_interior/disposals) +"bXS" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCY" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCZ" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/desert_dam/interior/dam_interior/disposals) +"bXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDa" = ( -/obj/structure/stairs{ - dir = 8 - }, +"bXY" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDb" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDc" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"bYd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDe" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/computer/atmos_alert, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/tech_storage) -"bDf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDg" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bYe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bYg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bDj" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/tech_storage) -"bDk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bYh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/hanger) -"bDl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bYi" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bDm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bDn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bDo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bDp" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bDu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"bDw" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bDx" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bYj" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDy" = ( -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/east_caves) -"bDz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDA" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDB" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"bYo" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDC" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDD" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/green/northeast, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDE" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"bDI" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/turf/open/floor/prison, +/area/desert_dam/building/security/armory) +"bYp" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/southern_hallway) -"bDJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ammo_magazine/pistol/holdout, +/turf/open/floor/prison, +/area/desert_dam/building/security/armory) +"bYq" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 }, /turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bDK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bDL" = ( -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"bDM" = ( -/obj/structure/pipes/vents/pump{ +/area/desert_dam/building/security/armory) +"bYr" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/security/armory) +"bYt" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/deathrow) +"bYu" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"bYw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bDO" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bYx" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"bDR" = ( -/obj/structure/window/framed/hangar, /turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"bDU" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/interior/dam_interior/disposals) +"bYy" = ( +/obj/item/trash/pistachios, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"bYE" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/break_room) +"bYG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bDV" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/junction{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bDY" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bYI" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/barricade/wooden{ - dir = 1 +/obj/structure/platform{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_civilian) -"bDZ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"bYJ" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/barricade/wooden{ - dir = 1 +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"bEb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Workshop" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"bYK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"bEc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"bEd" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bEe" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bEf" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bYL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bEg" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bYM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bYQ" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bEh" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/security/armory) +"bYV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bEi" = ( -/obj/structure/platform_decoration{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"bYX" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" + }, +/obj/item/trash/candy, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"bYY" = ( +/obj/item/trash/liquidfood, +/obj/item/trash/raisins, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"bYZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bEj" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bEk" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bZe" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/break_room) +"bZs" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bEl" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"bZt" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bEo" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bEp" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bEq" = ( -/obj/structure/stairs{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bEr" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bEu" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bEv" = ( -/obj/structure/stairs{ - dir = 8 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"bZw" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/execution_chamber) +"bZC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bEw" = ( -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bEx" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bEy" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/computer/crew, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/tech_storage) -"bEz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hanger) -"bEA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"bEB" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bZD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/item/tool/warning_cone, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/hanger) -"bEC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/interior/dam_interior/tech_storage) -"bED" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bZE" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"bEE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/desert_dam/exterior/valley/valley_mining) +"bZF" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bZJ" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"bZL" = ( +/obj/structure/machinery/power/apc{ dir = 1; - icon_state = "pipe-c" + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bEF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bEG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bEH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"bZM" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"bZN" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/structure/disposalpipe/junction{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bZO" = ( +/obj/structure/desertdam/decals/road_stop{ dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bEI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "stop_decal5" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engineering Hallway" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bZP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bEJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bZQ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_central_south) +"bZR" = ( +/obj/item/trash/semki, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"cae" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bEK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"caf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"cao" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bEL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/smes_main) -"bEM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/smes_main) -"bEN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"cay" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" }, +/obj/item/trash/syndi_cakes, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"caF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"caI" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_central_south) +"caK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bEO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/hanger) -"bEP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engine Room" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"caO" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/turf/open/floor/prison, +/area/desert_dam/building/security/armory) +"caP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"caQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/security/prison) +"caU" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"caW" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"caX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Observation" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"bEQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"caY" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Solitary" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/security/deathrow) +"caZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/warning, -/area/desert_dam/interior/dam_interior/engine_room) -"bER" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"cba" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/execution_chamber) +"cbc" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"cbd" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" }, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"bES" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/trash/popcorn, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"cbe" = ( +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"cbg" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/CE_office) +"cbn" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"cbv" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"bET" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"cbw" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"cbx" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engine Room" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"cbA" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating, +/area/desert_dam/building/security/deathrow) +"cbJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"bEU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"cbM" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bEV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"cbN" = ( +/obj/structure/machinery/mineral/processing_unit, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"cbO" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"ccg" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bFa" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bFb" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/prison/green/east, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bFc" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/caves/east_caves) -"bFd" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"cch" = ( +/obj/structure/platform{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"cci" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"bFe" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"ccp" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) +"ccq" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) +"ccw" = ( +/turf/open/floor, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"ccy" = ( +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"ccG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"bFf" = ( -/obj/structure/surface/table, -/obj/item/restraint/handcuffs, -/turf/open/floor/prison/darkred2/southwest, -/area/desert_dam/building/security/holding) -"bFg" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"bFi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"bFk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"bFl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"ccZ" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cda" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/southern_hallway) -"bFm" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/holding) -"bFn" = ( -/obj/structure/surface/table, -/obj/item/storage/donut_box, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/holding) -"bFo" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/holding) -"bFp" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/holding) -"bFq" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cdb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/substation/northwest) -"bFr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/southern_hallway) -"bFs" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/southern_hallway) -"bFt" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating/warnplate, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cdc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cdh" = ( +/turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/valley/valley_telecoms) -"bFu" = ( -/obj/structure/target, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating/warnplate, +"cdk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"bFv" = ( -/obj/structure/surface/table, -/obj/item/evidencebag, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"cdl" = ( +/turf/open/floor, +/area/desert_dam/exterior/valley/valley_telecoms) +"cdm" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/dam_interior/break_room) +"cdp" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cds" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bFw" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/holding) -"bFx" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"bFy" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/armor/det_suit, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/area/desert_dam/building/security/execution_chamber) +"cdt" = ( +/obj/structure/catwalk, +/turf/open/floor/plating, +/area/desert_dam/building/security/prison) +"cdw" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"cdC" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cdH" = ( +/obj/structure/closet/secure_closet/injection, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bFA" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bFB" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 +/area/desert_dam/building/security/execution_chamber) +"cdK" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"bFC" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"bFD" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"bFF" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_mining) -"bFG" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bFH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bFI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/hanger) -"bFJ" = ( -/turf/open/floor/prison/darkbrowncorners3/north, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bFK" = ( -/turf/open/floor/prison/darkbrown3/north, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bFL" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"cdR" = ( /obj/structure/platform{ dir = 1 }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"cdS" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bFM" = ( -/obj/structure/platform_decoration{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bFN" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"cdT" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bFO" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bFP" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bFQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/interior/dam_interior/south_tunnel) +"cdU" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bFR" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bFS" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/lobby) -"bFT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bFU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/lobby) -"bFV" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/control_room) -"bFW" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/control_room) -"bFX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bFY" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/smes_main) -"bFZ" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/control_room) -"bGa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cdV" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/control_room) -"bGb" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/control_room) -"bGc" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"bGe" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_mining) -"bGg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cdW" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"bGh" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bGi" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bGj" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Atmospheric Storage" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bGk" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bGn" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bGp" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/caves/east_caves) -"bGs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_mining) -"bGt" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"cec" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"ced" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cee" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/mining/workshop_foyer) -"bGu" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bGv" = ( -/obj/structure/surface/table, -/obj/item/explosive/grenade/flashbang, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bGw" = ( -/obj/structure/bed/stool, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bGx" = ( -/obj/structure/toilet, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"bGy" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ceg" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"cej" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"cen" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/exterior/valley/valley_medical) +"ceo" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"cep" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"cet" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"bGz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Isolation" }, /turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"bGB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/area/desert_dam/building/security/deathrow) +"ceA" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"ceF" = ( +/obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"bGD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"ceH" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"ceJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"ceK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"ceS" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"bGE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cfa" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"cfg" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"bGG" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cfh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) -"bGH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cfj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cfl" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"bGI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cfv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/southern_hallway) -"bGJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bGK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Observation" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cfw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) -"bGL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cfx" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/obj/structure/disposalpipe/junction{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"bGO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cfy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/southern_hallway) -"bGP" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/machinery/light{ +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/chemistry) -"bGQ" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/smes_main) -"bGR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bGT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cfz" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bGU" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cfA" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" + icon_state = "road_edge_decal8" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bGV" = ( +/area/desert_dam/exterior/valley/valley_medical) +"cfB" = ( +/obj/structure/disposalpipe/segment, /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bGW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/area/desert_dam/exterior/valley/valley_medical) +"cfC" = ( +/obj/structure/platform, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cfH" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river_mouth/southern) +"cfI" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/warehouse) +"cfP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bGX" = ( -/turf/closed/wall/hangar, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bGY" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 +/area/desert_dam/interior/dam_interior/central_tunnel) +"cfR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"bGZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Central" +/area/desert_dam/interior/dam_interior/central_tunnel) +"cfS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHa" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Central" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHc" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cfX" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHd" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"cfY" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bHe" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"cga" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bHf" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bHg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"cgd" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cge" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cgf" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"bHh" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/lobby) -"bHi" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/lobby) -"bHl" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cgm" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/building/substation/west) +"cgp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/filtration_button{ + id = "filter 1" }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/lobby) -"bHm" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"cgq" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river_mouth/southern) +"cgs" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bHn" = ( -/obj/structure/window/framed/hangar, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river_mouth/southern) +"cgt" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, /turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bHo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Backup SMES" +/area/desert_dam/building/substation/west) +"cgy" = ( +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cgz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cgA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cgD" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"bHp" = ( -/obj/structure/pipes/vents/pump/on, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cgF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bHq" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"cgG" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/exterior/river/riverside_central_south) +"cgI" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/closed/wall/r_wall/bunker/floodgate, +/area/desert_dam/exterior/river/riverside_south) +"cgJ" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/building/substation/west) +"cgL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"bHr" = ( -/turf/open/floor/warning/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"bHs" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"bHu" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bHv" = ( -/turf/open/floor/warning, -/area/desert_dam/interior/dam_interior/engine_room) -"bHw" = ( -/turf/open/floor/warning/southeast, -/area/desert_dam/interior/dam_interior/engine_room) -"bHx" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cgM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bHy" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bHz" = ( -/turf/open/floor/prison/greencorner/west, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bHB" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cgN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/stack/sheet/metal{ - amount = 50 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"cgR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/item/storage/briefcase/inflatable, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/green/east, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bHD" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/interior/caves/central_caves) -"bHE" = ( -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/interior/caves/east_caves) -"bHF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bHG" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/caves/east_caves) -"bHI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bHJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bHK" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bHL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/recharger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"chb" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bHM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/staffroom) -"bHN" = ( -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/staffroom) -"bHQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Cargo Bay" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bHR" = ( -/obj/structure/stairs{ - dir = 4 +/area/desert_dam/building/substation/west) +"che" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/obj/structure/platform{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"chg" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bHS" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"chh" = ( /obj/structure/desertdam/decals/road_stop{ - dir = 8; icon_state = "stop_decal5" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bHT" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bHV" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHW" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHY" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHZ" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bIb" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bIc" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light{ - dir = 1 +/area/desert_dam/interior/dam_interior/south_tunnel) +"chi" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bId" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bIe" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bIf" = ( -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bIg" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bIh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners3/north, -/area/desert_dam/interior/dam_interior/hanger) -"bIl" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"chj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/lobby) -"bIm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"chk" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"bIn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"bIq" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/smes_backup) -"bIr" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_backup) -"bIs" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/dam_interior/smes_backup) -"bIt" = ( -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/smes_backup) -"bIu" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_room) -"bIv" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bIw" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bIx" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/green/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bIy" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/green, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bIz" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/prison/green, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bIA" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison/green, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bIB" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison/green, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bIC" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison/green/southeast, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bID" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"chm" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bIF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"cho" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"chq" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bIG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/desert_dam/exterior/valley/valley_medical) +"chr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bIH" = ( +/area/desert_dam/exterior/valley/valley_medical) +"chs" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" + icon_state = "road_edge_decal3" }, +/obj/structure/disposalpipe/segment, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bIK" = ( -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/east_caves) -"bIR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/desert_dam/exterior/valley/valley_medical) +"cht" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"chu" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"bIU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"chv" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/plating/warnplate/southeast, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"bIV" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/good_item, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"bIW" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/southern_hallway) -"bIX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/southern_hallway) -"bIY" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +"chw" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"chz" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/dark, -/area/desert_dam/building/security/interrogation) -"bIZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/southern_hallway) -"bJa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"bJb" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bJc" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bJd" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bJe" = ( -/turf/open/floor/prison/darkbrowncorners3, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bJf" = ( -/turf/open/floor/prison/darkbrown3, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bJg" = ( -/obj/structure/platform_decoration{ +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"chA" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bJh" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"chB" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bJi" = ( -/obj/structure/stairs, /obj/structure/platform{ - dir = 8 + dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bJj" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bJk" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bJl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"chD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/clothing/glasses/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bJm" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bJn" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"chF" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/temple) +"chJ" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"chK" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/smes_main) -"bJo" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bJp" = ( -/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"chN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bJq" = ( -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/lobby) -"bJr" = ( -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/lobby) -"bJs" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/building/substation/west) +"chQ" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bJt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"chS" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"chV" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bJv" = ( -/obj/structure/bed/stool, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/smes_backup) -"bJx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"cie" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"cif" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"cig" = ( +/obj/structure/platform{ dir = 4 }, +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"cih" = ( +/turf/open/floor/prison, +/area/desert_dam/building/substation/west) +"cii" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"cij" = ( +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cik" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bJz" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"bJB" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/smes_backup) -"bJC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cil" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cir" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) -"bJD" = ( -/obj/structure/desertdam/decals/road_edge, +"cit" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"ciu" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"cix" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bJE" = ( +/area/desert_dam/exterior/valley/valley_medical) +"ciy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" + }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bJF" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bJH" = ( -/turf/open/floor/prison/darkredcorners2/southwest, -/area/desert_dam/building/security/southern_hallway) -"bJI" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/desert_dam/exterior/valley/valley_medical) +"ciC" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bJJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/desert_dam/building/substation/west) +"ciE" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/southern_hallway) -"bJK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/southern_hallway) -"bJL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southwest, -/area/desert_dam/building/security/southern_hallway) -"bJM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/southern_hallway) -"bJN" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bJO" = ( -/turf/open/floor/prison/darkredcorners2/southwest, -/area/desert_dam/building/security/staffroom) -"bJP" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/staffroom) -"bJQ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"ciF" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"ciG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"bJR" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/desert_dam/building/water_treatment_one/garage) +"ciH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southwest, -/area/desert_dam/building/security/southern_hallway) -"bJS" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/staffroom) -"bJT" = ( -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/staffroom) -"bJU" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/warden) -"bJV" = ( -/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/desert_dam/building/security/warden) -"bKb" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/area/desert_dam/building/substation/west) +"ciL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison, +/area/desert_dam/building/security/deathrow) +"ciN" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"ciQ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"ciR" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/chemistry) +"ciS" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/chemistry) +"ciV" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/break_room) +"ciW" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/break_room) +"ciY" = ( +/obj/structure/stairs, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"cjb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bKc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bKe" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"cjc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/east_caves) +"cjf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cjg" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/desert_dam/building/substation/west) +"cjl" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"cjs" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/west_wing_hallway) +"cjv" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/morgue) +"cjy" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/break_room) +"cjE" = ( +/obj/structure/machinery/power/apc{ dir = 1; - name = "\improper Evidence" + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/dark, -/area/desert_dam/building/security/evidence) -"bKf" = ( -/obj/structure/bed/chair, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"bKh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"cjF" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/southern_hallway) -"bKj" = ( -/obj/item/stack/sheet/wood, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"bKk" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"cjG" = ( +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"cjH" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/exterior/telecomm/lz1_south) +"cjI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/prison, +/area/desert_dam/building/substation/west) +"cjM" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"bKl" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"cjR" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_south) +"cjV" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/chemistry) +"cka" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/morgue) +"cki" = ( +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"ckj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"ckq" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"bKm" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/light{ +/area/desert_dam/building/bar/bar) +"cku" = ( +/obj/structure/showcase{ + icon_state = "bus" + }, +/turf/open/floor/greengrid, +/area/desert_dam/building/substation/west) +"ckz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/pillbottles, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"ckD" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/chemistry) +"ckU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"ckY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/breakroom) +"ckZ" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bKn" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bKo" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bKp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"clb" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/breakroom) +"clc" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"cld" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bKq" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"clj" = ( +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/breakroom) +"cll" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bKr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"clo" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bKs" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bKt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"bKv" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"clp" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "upper_2" }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bKw" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bKx" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"clz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 3" + }, +/turf/open/floor/prison, +/area/desert_dam/building/security/prison) +"clB" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow/covered, +/area/desert_dam/exterior/river/riverside_central_south) +"clD" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_south) +"clF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"clR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"clY" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"clZ" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cma" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cmb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cmg" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"cml" = ( +/turf/open/floor/greengrid, +/area/desert_dam/building/substation/west) +"cmm" = ( +/obj/structure/window/framed/bunker/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/substation/west) +"cmn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bKy" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bKz" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bKA" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bKB" = ( +"cmp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cmE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"cmF" = ( /obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"cmG" = ( +/turf/open/floor/carpet, +/area/desert_dam/building/warehouse/breakroom) +"cmH" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cmI" = ( +/obj/structure/flora/bush/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cmJ" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cmK" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cmL" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/carpet, +/area/desert_dam/building/warehouse/breakroom) +"cmP" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/machinery/light{ +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cmQ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/lobby) -"bKC" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"cmS" = ( +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cmV" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/breakroom) +"cmW" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cmY" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/breakroom) +"cng" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cnh" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"bKD" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"cnp" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"bKE" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"bKF" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/interior/dam_interior/smes_backup) -"bKG" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"bKH" = ( -/turf/open/floor/plating/warnplate, -/area/desert_dam/interior/dam_interior/smes_backup) -"bKI" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_mining) -"bKJ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"cnq" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"bKK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/southern_hallway) -"bKL" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, +/turf/open/floor/carpet, +/area/desert_dam/building/warehouse/breakroom) +"cnu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/carpet, +/area/desert_dam/building/warehouse/breakroom) +"cnv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"cnz" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/desert_dam/building/warehouse/breakroom) +"cnB" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_south) +"cnC" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_south) +"cnE" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"cnJ" = ( +/obj/structure/machinery/smartfridge/chemistry, +/turf/closed/wall, +/area/desert_dam/building/medical/chemistry) +"cnQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"cnR" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cnT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cnU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cnV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cof" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Lab Maintenance" + }, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cog" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow/covered, +/area/desert_dam/exterior/river/riverside_central_south) +"coo" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river_mouth/southern) +"cor" = ( +/obj/structure/lz_sign/dam_sign, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"cov" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cox" = ( +/obj/structure/prop/dam/torii, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"coy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"coz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"coA" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/desert_dam/building/warehouse/breakroom) +"coC" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"coI" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"coJ" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"coL" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"coU" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/break_room) +"coW" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"coX" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"coY" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"coZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cpa" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cpm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/greengrid, +/area/desert_dam/building/substation/west) +"cpu" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/north_valley_dam) +"cpH" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/north_wing_hallway) +"cpQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"cpR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cpS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Telecommunications" + }, +/turf/open/floor/prison, +/area/desert_dam/building/substation/west) +"cpT" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cqa" = ( +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"cqn" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cqq" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cqv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"cqD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"cqH" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Flight Control" + }, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cqK" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cqQ" = ( +/obj/structure/cargo_container/trijent/left/alt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cqT" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cqW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"cra" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"crb" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"crj" = ( +/obj/structure/showcase{ + icon_state = "broadcaster_send" + }, +/turf/open/floor/greengrid, +/area/desert_dam/building/substation/west) +"cro" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security Checkpoint" + }, +/turf/open/floor/prison, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cru" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"crv" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"crw" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"crx" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"crz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"crA" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/lobby) +"crH" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/lobby) +"crW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"crX" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"crY" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"csa" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"csb" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"csc" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"csg" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"csm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Isolation" + }, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"csn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"csu" = ( +/obj/structure/stairs, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"csx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"csz" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"csE" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"csF" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"csG" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"csH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"csW" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Execution" + }, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"cto" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"cty" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/administration/office) +"ctF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ctH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ctO" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"ctW" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/primary_storage) +"ctX" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/primary_storage) +"ctY" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/surgury_observation) +"cub" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cue" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/CMO) +"cuf" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/CMO) +"cug" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/CMO) +"cuh" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/north_wing_hallway) +"cuz" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cuB" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/desert_dam/building/substation/west) +"cuJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cuL" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cuM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cuN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cuO" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cvh" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cvi" = ( +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cvk" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cvl" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cvp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cvr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cvs" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cvt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cvu" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cvG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cvI" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cvJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cvM" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/lobby) +"cvS" = ( +/obj/structure/cargo_container/trijent/mid/alt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cvX" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"cwe" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"cwf" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cwg" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cwj" = ( +/obj/structure/cargo_container/trijent/right/alt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cwn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cwq" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cws" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cwt" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"cwv" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"cwA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/central_tunnel) +"cwD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cwE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cwF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cwG" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cwX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cwY" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cxb" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cxc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/central_tunnel) +"cxf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cxg" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cxh" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cxi" = ( +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cxl" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"cxt" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cxw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cxx" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cxy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cxE" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/surgury_observation) +"cxI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cxK" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"cxL" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" + }, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"cxM" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"cxP" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cxQ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cxT" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cyf" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cyk" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/surgery_room_one) +"cyp" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/surgery_room_two) +"cyq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cyr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cys" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cyv" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cyD" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cyN" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cyP" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered, +/area/desert_dam/exterior/river/riverside_central_north) +"cyQ" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"czf" = ( +/turf/closed/wall, +/area/desert_dam/building/substation/central) +"czg" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/substation/central) +"czj" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_central_south) +"czv" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"czx" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"czO" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/office1) +"czP" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/office2) +"czQ" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"czR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_east"; + name = "\improper Storm Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"czV" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_south) +"cAa" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cAb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_east"; + name = "\improper Storm Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cAc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cAd" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cAw" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/landing_pad_one) +"cAx" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/substation/central) +"cAA" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/building/substation/central) +"cAB" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/office1) +"cAG" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/office2) +"cAL" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cAM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cAN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cAO" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_east"; + name = "\improper Storm Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cAP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cAT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cAV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cAW" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cBc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_east"; + name = "\improper Storm Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cBx" = ( +/turf/open/floor/prison, +/area/desert_dam/building/substation/central) +"cBz" = ( +/turf/open/floor/plating, +/area/desert_dam/building/substation/central) +"cBN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cBP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cBQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cBR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"cBU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_cargo) +"cBW" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cBY" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cBZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Waterway" + }, +/turf/open/floor/prison, +/area/desert_dam/exterior/valley/south_valley_dam) +"cCb" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_south) +"cCc" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/garage) +"cCd" = ( +/obj/structure/machinery/door/poddoor/shutters, +/turf/open/asphalt, +/area/desert_dam/building/medical/garage) +"cCe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Garage" + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cCf" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/emergency_room) +"cCg" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/emergency_room) +"cCj" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/emergency_room) +"cCz" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating, +/area/desert_dam/building/substation/central) +"cCB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_telecoms) +"cCF" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/east_wing_hallway) +"cCH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cCI" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cDc" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cDd" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"cDf" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cDs" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/surgery_room_one) +"cDu" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/surgery_room_two) +"cDy" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/office1) +"cDA" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/office2) +"cDN" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"cDY" = ( +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"cEa" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cEe" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_central_north) +"cEf" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cEl" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"cEs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cEt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cEG" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/treatment_room) +"cET" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cEU" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cEV" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_9" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cEY" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cFa" = ( +/obj/docking_port/stationary/marine_dropship/lz2, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"cFf" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"cFi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cFm" = ( +/obj/structure/barricade/wooden, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cFn" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/emergency_room) +"cFC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cFD" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cFF" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/ashtray/bronze, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cFG" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cFH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cFJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cFK" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cFL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cFN" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cFO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cGj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cGk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cGl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cGm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cGn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cGx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_cargo) +"cGE" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_central_north) +"cGH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_cargo) +"cGK" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cGL" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cGN" = ( +/obj/structure/machinery/door_control{ + id = "cargo_hangar1"; + name = "Warehouse Shutters" + }, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/warehouse/warehouse) +"cGT" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_south) +"cHB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/dam/truck/damaged, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cHC" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cHD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cHE" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cHF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cHG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cHL" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/east_wing_hallway) +"cHM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cHN" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/virology_wing) +"cHO" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"cHV" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cHX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cHY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cIc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cId" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cIe" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cIg" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cIi" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cIm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"cIo" = ( +/obj/structure/machinery/door_control{ + id = "cargo_hangar2"; + name = "Warehouse Shutters" + }, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/warehouse/warehouse) +"cIv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_cargo) +"cIz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cIA" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cIB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/belt/medical/lifesaver/full, +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cIG" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/treatment_room) +"cIK" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cIL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cIY" = ( +/obj/structure/machinery/door_control{ + id = "cargo_hangar3"; + name = "Warehouse Shutters" + }, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/warehouse/loading) +"cIZ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar1"; + name = "\improper Cargo Bay Hangar" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cJa" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/south_valley_dam) +"cJb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cJc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cJd" = ( +/turf/closed/wall, +/area/desert_dam/building/church) +"cJe" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/church) +"cJh" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cJj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cJl" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cJn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cJq" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJw" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJy" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"cJz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Garage" + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cJA" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/treatment_room) +"cJG" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/virology_isolation) +"cJH" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cJO" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJS" = ( +/obj/structure/cargo_container/hd/left, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJU" = ( +/obj/structure/cargo_container/hd/mid, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJV" = ( +/obj/structure/cargo_container/hd/right, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJW" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJX" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJZ" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cKa" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cKb" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cKc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cKd" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cKe" = ( +/obj/structure/cargo_container/trijent/left/alt, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cKf" = ( +/obj/structure/cargo_container/trijent/mid/alt, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cKg" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cKk" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"cKl" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cKp" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/exterior/valley/valley_cargo) +"cKq" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cKr" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cKs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"cKz" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"cKC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cKL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cKM" = ( +/obj/structure/prop/dam/crane/cargo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cKP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cKU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cKW" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_south) +"cLc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLi" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"cLj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"cLk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"cLm" = ( +/obj/structure/surface/table, +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cLu" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/virology_wing) +"cLB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Treatment Controlroom" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"cLG" = ( +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"cLK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cMd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cMe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cMf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cMj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cMm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cMn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cMw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cMB" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cME" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cMF" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cMJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cMP" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/virology_isolation) +"cNa" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"cNh" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"cNi" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"cNj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cNl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cNo" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/warehouse) +"cNq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"cNs" = ( +/obj/structure/prop/dam/gravestone, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cNu" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cNw" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cNx" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"cNy" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cNz" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cNA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cNP" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cNQ" = ( +/obj/structure/flora/bush/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cNR" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar1"; + name = "\improper Cargo Bay Hangar" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cNW" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"cOc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cOf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"cOg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"cOi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cOj" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cOo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cOp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cOq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cOy" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cOA" = ( +/obj/structure/prop/dam/crane/damaged, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cOB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"cOF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cOH" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/substation/southwest) +"cOT" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cOV" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cOW" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cPn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cPo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cPq" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"cPu" = ( +/obj/vehicle/train/cargo/engine, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cPy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cPz" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cPA" = ( +/turf/open/desert/excavation/component5/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"cPI" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"cPL" = ( +/turf/closed/wall, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"cPM" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"cPO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"cPW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"cQa" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cQb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cQd" = ( +/obj/item/trash/cheesie, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cQe" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cQf" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"cQg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Bar" + }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cQk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cQv" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/building/substation/southwest) +"cQx" = ( +/turf/closed/wall/wood, +/area/desert_dam/building/bar/bar_restroom) +"cQy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cQB" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"cQC" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"cQD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cQF" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cQH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cQK" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cQP" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cQR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cQS" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cQT" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cQU" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cQZ" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRa" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"cRd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cRm" = ( +/turf/open/floor/plating, +/area/desert_dam/building/substation/southwest) +"cRs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cRt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cRv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cRx" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRy" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cRA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRH" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cRI" = ( +/obj/structure/machinery/light, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cRJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cRM" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cRS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Checkpoint" + }, +/turf/open/floor/prison, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cRU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"cRX" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cRY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bar" + }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cRZ" = ( +/obj/structure/window/framed/wood/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/bar/bar) +"cSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cSb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSg" = ( +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_west"; + name = "Checkpoint Lockdown" + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSi" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"cSo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" + }, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSp" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"cSr" = ( +/turf/open/floor/prison, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/desert_dam/building/substation/southwest) +"cSC" = ( +/turf/closed/wall, +/area/desert_dam/exterior/valley/valley_civilian) +"cSF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" + }, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"cSR" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cSS" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"cTa" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cTc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cTh" = ( +/obj/structure/flora/grass/desert/heavygrass_10, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cTi" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/substation/southwest) +"cTp" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cTu" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cTE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_wilderness) +"cUb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cUk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cUl" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cUo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cUr" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"cUy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"cUz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cUD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cUK" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_7" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cUP" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cUU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cUV" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cUW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cUX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cVt" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"cVA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cVC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cVG" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"cVR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/armory) +"cVS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cVV" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"cWb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cWc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cWe" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cWk" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"cWq" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cWw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cWz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_hydro) +"cWL" = ( +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"cWT" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/landmark/railgun_camera_pos, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"cXh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"cXj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_hydro) +"cXq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"cXt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cXw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cXx" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cXz" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"cXC" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"cXE" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/folder/black, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"cXG" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"cXK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cYh" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) +"cYi" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_south) +"cYj" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cYu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cYv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cYw" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered, +/area/desert_dam/exterior/river/riverside_east) +"cYx" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cYJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cYN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"cYO" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"cYU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"cYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_hydro) +"cZb" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_cargo) +"cZd" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"cZn" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cZo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cZp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cZr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"cZt" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"cZu" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/cafeteria) +"cZw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cZB" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/warehouse/loading) +"cZD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"cZF" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cZG" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cZP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cZQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cZU" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_civilian) +"cZV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"daf" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"dah" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/north_tunnel) +"dam" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dao" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/cafeteria/backroom) +"dap" = ( +/turf/closed/wall, +/area/desert_dam/building/cafeteria/cold_room) +"das" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dav" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/southern_hallway) +"dax" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"daD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"daF" = ( +/turf/closed/wall, +/area/desert_dam/building/hydroponics/hydroponics) +"daM" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"daN" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"daO" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/cafeteria/cafeteria) +"daT" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"daX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dba" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"dbo" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics) +"dbu" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics) +"dbw" = ( +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"dbx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"dbI" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_landing" + }, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"dbK" = ( +/turf/closed/wall, +/area/desert_dam/building/cafeteria/cafeteria) +"dbL" = ( +/turf/closed/wall, +/area/desert_dam/building/cafeteria/loading) +"dbM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Delivery" + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dbN" = ( +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dbS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"dbT" = ( +/obj/item/stool, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"dbU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dbY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"dbZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dce" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"dck" = ( +/turf/closed/wall, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dcl" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dcp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"dcq" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"dcx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dcD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"dcF" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_northwing) +"dcM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dcN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dcO" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"dcP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dcR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dcS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dcY" = ( +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dcZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dda" = ( +/turf/closed/wall, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dde" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"ddm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/cafeteria) +"ddn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"ddo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"ddp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"ddv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"ddx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"ddF" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/north_wing_hallway) +"ddJ" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/warehouse) +"ddK" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_storage" + }, +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/warehouse) +"ddL" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_storage" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/warehouse) +"ddM" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_storage" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/warehouse) +"ddQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"ddR" = ( +/obj/structure/machinery/fermenter, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"ddS" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"ddT" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"ddU" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + icon_state = "conveyor-1" + }, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"ddV" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + icon_state = "conveyor-1" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"ddW" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + icon_state = "conveyor-1" + }, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"ddZ" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dea" = ( +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"deb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dec" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"ded" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"deh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dem" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"den" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"deo" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"der" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dex" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"deJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"deK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"deM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"deZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"dfb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"dfc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"dfe" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dfo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"dft" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dfv" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dfG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"dfH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/loading) +"dfI" = ( +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/loading) +"dfS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dfT" = ( +/obj/structure/surface/table, +/obj/item/tool/shovel/spade, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"dfU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"dfZ" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"dge" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"dgf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"dgh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dgm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgo" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/loading) +"dgp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"dgF" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"dgH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dgI" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dgM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dgN" = ( +/obj/structure/machinery/door_control{ + id = "dam_stormlock_north2"; + name = "Storm Shutter Lockdown" + }, +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/south_tunnel) +"dgO" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"dgP" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"dgT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dgU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dgW" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"dha" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"dhg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"dhh" = ( +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"dhj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"dhs" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/hallway) +"dhA" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/purification) +"dhJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/southern_hallway) +"dhQ" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"dhZ" = ( +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dib" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"dic" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"die" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/lobby) +"dil" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/garage) +"dim" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/dorms/hallway_northwing) +"din" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"diq" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/equipment) +"dir" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/building/substation/northwest) +"diL" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_east) +"diM" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"diN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"diQ" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/west_tunnel) +"diR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"diY" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_telecoms) +"dja" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"djg" = ( +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"djh" = ( +/obj/item/device/flashlight/lamp, +/obj/item/tool/pen/blue{ + pixel_x = 5 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"djk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"djl" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"dju" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"djx" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_south) +"djz" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_south) +"djA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"djE" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"djJ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"djT" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"djV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"djW" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"djX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"djZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_central_north) +"dke" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dkh" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dki" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dkl" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dkm" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dkn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dko" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dkr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"dkv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/objective{ + dir = 4 + }, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"dkz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"dkK" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) +"dkM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dkZ" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"dla" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"dlb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dlc" = ( +/obj/structure/prop/dam/large_boulder{ + icon_state = "boulder_large1" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"dli" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/central) +"dlu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"dlB" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/loading) +"dlJ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_east) +"dlL" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/north_valley_dam) +"dlM" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dmb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_mining) +"dmj" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northwest) +"dmm" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"dmn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"dmt" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"dmy" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"dmz" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_east) +"dmJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dmK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dnt" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") + }, +/turf/open/floor/prison/red/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"dnB" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dnC" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) +"dnD" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_south) +"dnE" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"dnR" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/chemistry) +"dnW" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dnY" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"doc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"dof" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"don" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell1decal" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"doq" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/armory) +"dos" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_central_south) +"doE" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"doH" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/water_treatment_one/hallway) +"doK" = ( +/obj/structure/machinery/computer/cameras/wooden_tv, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/overseer_office) +"doL" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/water_treatment_one/purification) +"doN" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_south) +"doO" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"dph" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"dpi" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"dpn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"dpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dpx" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dpy" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dpB" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/water_treatment_one/control_room) +"dpC" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"dpD" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"dpE" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) +"dpH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dpI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dpJ" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dpK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dpL" = ( +/obj/structure/desertdam/decals/road_stop, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dqb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"dqd" = ( +/turf/open/desert/rock/deep, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"dqf" = ( +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dqg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dqh" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dqi" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/water_treatment_one/lobby) +"dqm" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/water_treatment_one/lobby) +"dqn" = ( +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dqo" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dqA" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"dqG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"dqJ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_south) +"dqL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/treatment_room) +"dqR" = ( +/obj/structure/flora/pottedplant, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dqS" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dqT" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dqV" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dqW" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/lobby) +"dqZ" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"dra" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/southern_hallway) +"dre" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"drh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"drn" = ( +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/church) +"dru" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"drD" = ( +/turf/open/desert/excavation/component4/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"drL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"drN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"drO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"drS" = ( +/obj/structure/pipes/vents/pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"drT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"drU" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"drV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dsc" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dsg" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_central_south) +"dsu" = ( +/turf/open/floor/darkyellow2, +/area/desert_dam/building/substation/northwest) +"dsy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Isolation Chamber" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"dsD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"dsE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"dsH" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"dsJ" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/water_treatment_one/garage) +"dsM" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dsR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dsZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/evidencebag, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"dtf" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"dto" = ( +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dtp" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dtr" = ( +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dtt" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dtz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dtA" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/southwest) +"dtB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"dub" = ( +/turf/open/floor/carpet/edge/southwest, +/area/desert_dam/building/administration/meetingrooom) +"duc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"dud" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"duf" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/building/substation/west) +"dui" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"duq" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"dus" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"duu" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"duw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"duy" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) +"duC" = ( +/turf/closed/wall, +/area/desert_dam/building/dorms/hallway_northwing) +"duL" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"duU" = ( +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"duV" = ( +/obj/structure/machinery/computer/guestpass, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"duW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dvd" = ( +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel/manager, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"dve" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/virology_wing) +"dvo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dvt" = ( +/obj/structure/machinery/computer/area_atmos, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dvv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"dvy" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_south) +"dvC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"dvK" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"dvS" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"dvY" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"dvZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"dwo" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/control_room) -"bKM" = ( -/obj/structure/window/framed/hangar/reinforced, +"dwq" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"dws" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"dwy" = ( +/obj/structure/machinery/computer/turbine_computer, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dwD" = ( +/turf/open/floor/filtrationside, +/area/desert_dam/exterior/valley/valley_hydro) +"dwG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"dwH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" + }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dwI" = ( +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dwJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dwK" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/telecomm/lz2_containers) +"dxa" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 + }, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dxb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"dxd" = ( +/obj/structure/machinery/power/apc{ + pixel_y = -24; + start_charge = 0 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"dxe" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dxo" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz1{ + pixel_y = 32 + }, +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"dxp" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/prison) +"dxx" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"dxG" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"dxJ" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon7_0, +/area/desert_dam/exterior/valley/valley_hydro) +"dxO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"dxX" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dxY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dyb" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/water_treatment_one/breakroom) +"dyi" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dyj" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dyk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"dyp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dyw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"dzd" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/filtration_a) +"dzh" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "upper_2"; + layer = 2 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/filtration_a) +"dzk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dzp" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"dzr" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/exterior/river_mouth/southern) +"dzs" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dzt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"dzv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dzw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dzx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dzz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dzE" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dzU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"dzY" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/objective, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"dAl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"dAo" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river_mouth/southern) +"dAr" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dAA" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/filtration_a) +"dAK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dAV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"dBh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"dBo" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/dorms/hallway_westwing) +"dBp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dBr" = ( +/turf/closed/wall, +/area/desert_dam/building/dorms/hallway_westwing) +"dBy" = ( +/turf/closed/wall, +/area/desert_dam/building/dorms/restroom) +"dBK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dBL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/interior/caves/central_caves) +"dBP" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"dBQ" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"dBX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"dCb" = ( +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dCi" = ( +/obj/structure/surface/table, +/obj/item/tank/anesthetic, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"dCu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"dCv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"dCw" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dCz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dCB" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"dCL" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/water_treatment_one/equipment) +"dDu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/temple) +"dDE" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/deathrow) +"dDU" = ( +/obj/structure/toilet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"dDV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"dEn" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"dEo" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"dEL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"dEW" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"dFc" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_south) +"dFg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dFi" = ( +/obj/structure/catwalk, +/turf/open/floor/plating, +/area/desert_dam/building/dorms/restroom) +"dFn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dFo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dFz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"dFA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_hydro) +"dFK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"dFP" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"dFQ" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2" + }, +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"dFR" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"dGu" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_east) +"dGv" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"dGw" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"dGA" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"dGI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"dGJ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) +"dGP" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"dGU" = ( +/obj/docking_port/stationary/marine_dropship/lz1, /turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/hanger) -"bKN" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/southern_hallway) -"bKO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 1 +/area/desert_dam/exterior/landing_pad_one) +"dHb" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"dHc" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/dark, -/area/desert_dam/building/security/warden) -"bKP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Visitation" +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"dHe" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/dark2, -/area/desert_dam/building/security/southern_hallway) -"bKQ" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river_mouth/southern) +"dHg" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"dHh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Lab Maintenance" + }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dHk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dHq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"dHA" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"dHK" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"dHL" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dHM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dHO" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dIg" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"dIi" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dIk" = ( +/turf/closed/wall, +/area/desert_dam/building/dorms/pool) +"dIl" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/dorms/pool) +"dIs" = ( /obj/structure/surface/table, +/obj/structure/disposalpipe/segment, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkred2/southwest, -/area/desert_dam/building/security/staffroom) -"bKR" = ( +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dIB" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"dII" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river_mouth/southern) +"dJx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"dJM" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"dJR" = ( +/obj/structure/lz_sign/dam_sign/damaged, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"dJT" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) +"dKa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"dKe" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"dKf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"dKg" = ( +/obj/structure/prop/dam/van/damaged, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"dKh" = ( +/obj/structure/prop/dam/van, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"dKi" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/administration/overseer_office) +"dKq" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_east) +"dKr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"dKy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"dKQ" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river_mouth/southern) +"dKR" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river_mouth/southern) +"dLa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dLb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dLi" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) +"dLk" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_east) +"dLq" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_central_south) +"dLr" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_central_south) +"dLu" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"dLC" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_central_south) +"dLF" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"dLI" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_central_south) +"dLJ" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_central_south) +"dLK" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"dLM" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_central_south) +"dLN" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"dLO" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"dLP" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_east) +"dLR" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"dLS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dLT" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"dLU" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_east) +"dLV" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"dLW" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_east) +"dLX" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) +"dMf" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/valley/valley_mining) +"dMq" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"dMr" = ( +/turf/open/floor/coagulation/icon7_7_2, +/area/desert_dam/exterior/valley/valley_hydro) +"dMu" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_south) +"dMG" = ( +/turf/open/floor/warnwhite, +/area/desert_dam/exterior/valley/valley_telecoms) +"dMN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dMV" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/substation/southwest) +"dMX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dNa" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dNb" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"dNc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"dNf" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dNj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"dNn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"dNr" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"dNs" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/water_treatment_one/purification) +"dNy" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"dNA" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, +/obj/item/storage/donut_box, /turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/staffroom) -"bKZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"bLa" = ( +/area/desert_dam/building/security/holding) +"dNM" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northwest) +"dNR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"dNS" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"dNT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"bLb" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"dNU" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/southern_hallway) -"bLc" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"dNX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dOc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/barricade/wooden, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dOe" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dOf" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/control_room) +"dOg" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/hallway) +"dOh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOi" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOk" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/equipment) +"dOp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" + }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dOq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dOr" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dOC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOD" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOE" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/medical/ointment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredcorners2/southwest, -/area/desert_dam/building/security/southern_hallway) -"bLd" = ( /turf/open/floor/wood, -/area/desert_dam/building/security/southern_hallway) -"bLe" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"bLf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/building/medical/break_room) +"dOJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) -"bLg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dOK" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bLh" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bLj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/lightreplacer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bLk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bLl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dOM" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bLm" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced, -/obj/item/device/radio, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bLn" = ( +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dON" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/building/mining/workshop) -"bLo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"dOO" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOP" = ( +/obj/structure/bed/chair{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bLp" = ( +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"bLq" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dOX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOY" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bLr" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/interior/dam_interior/lobby) -"bLt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 }, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/lobby) -"bLu" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/chemistry) -"bLv" = ( -/obj/structure/surface/table, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/lobby) -"bLw" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/lobby) -"bLx" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dPc" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/treatment_room) +"dPe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"bLy" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/lobby) -"bLz" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bLB" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dPf" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"bLC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Tool Storage" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dPv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"dPR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bLD" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/smes_backup) -"bLE" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/smes_backup) -"bLF" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"dPY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"dPZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"bLJ" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"bLK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"dSE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, /turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) -"bLL" = ( -/obj/structure/machinery/light{ - dir = 8 +"dSJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"dSK" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/staffroom) +"dST" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/wood, -/area/desert_dam/building/security/southern_hallway) -"bLM" = ( -/obj/structure/bed/chair{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/wood, -/area/desert_dam/building/security/southern_hallway) -"bLN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"bLO" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/southern_hallway) -"bLP" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/south_valley_dam) +"dTl" = ( +/obj/structure/window/framed/colony, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/southern_hallway) -"bLQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/staffroom) -"bLR" = ( -/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating, -/area/desert_dam/building/warehouse/breakroom) -"bLS" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"bLT" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/staffroom) -"bLU" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/area/desert_dam/building/medical/virology_isolation) +"dTs" = ( +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) +"dTt" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/workshop) -"bLV" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"dTx" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bLW" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bLX" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dTy" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/warehouse) +"dTH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"dTY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dUd" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/workshop) -"bLY" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/workshop) -"bLZ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bMa" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 1 +/turf/closed/wall, +/area/desert_dam/building/cafeteria/cafeteria) +"dUO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bMb" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dUU" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/east_caves) +"dVb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/workshop) -"bMc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bMd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dVc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bMe" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dVg" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"dVj" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dVk" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/radio, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dVn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMk" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bMl" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dVs" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dVt" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bMm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bMn" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dVv" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dVz" = ( +/obj/structure/machinery/door_control{ + id = "warehouse_dam_2"; + name = "Warehouse Shutters" }, -/obj/structure/machinery/light{ - dir = 8 +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"bMo" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/smes_backup) -"bMp" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/area/desert_dam/building/water_treatment_one/garage) +"dVA" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/smes_backup) -"bMq" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/smes_backup) -"bMr" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/warden) -"bMs" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/warden) -"bMt" = ( -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bMu" = ( -/obj/structure/platform{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_central_north) -"bMv" = ( -/obj/structure/platform{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVC" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"bMw" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bMy" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/warden) -"bMD" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/robot, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVN" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dVP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dVQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper East Filtration" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bME" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"dWf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bMG" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bMH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, +/obj/effect/decal/cleanable/blood/gibs/robot, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bMI" = ( -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bMJ" = ( +/area/desert_dam/building/water_treatment_one/garage) +"dWg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bML" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bMM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/building/water_treatment_one/garage) +"dWh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMP" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/south_valley_dam) -"bMT" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_mining) -"bMW" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"bMX" = ( -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/southern_hallway) -"bMY" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dWi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dWr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dWu" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dWz" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"bMZ" = ( -/obj/structure/surface/table/woodentable, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dWG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dWJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dWK" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/cult, -/area/desert_dam/building/security/courtroom) -"bNa" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dWL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dWV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"bNb" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dWW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"bNc" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dWZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"bNd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXa" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"bNe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXc" = ( +/obj/structure/desertdam/decals/road_stop, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXf" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal3" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"bNf" = ( -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/southern_hallway) -"bNg" = ( -/obj/structure/machinery/door_control{ - id = "dam_stormlock_east"; - name = "Storm Shutter Lockdown" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"bNh" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/southern_hallway) -"bNi" = ( -/turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bNj" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXm" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bNk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/area/desert_dam/exterior/valley/valley_civilian) +"dXn" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bNl" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"dXo" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bNm" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"dXp" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bNn" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bNo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/garage) -"bNp" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bNq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/south_valley_dam) -"bNr" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXz" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bNs" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bNt" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bNu" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/east_caves) -"bNv" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/warden) -"bNw" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/armory) -"bNx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Armoury" - }, /turf/open/floor/prison, -/area/desert_dam/building/security/armory) -"bNC" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/building/dorms/hallway_northwing) +"dXA" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"bNE" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/prison) -"bNF" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/prison) -"bNG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/autoname, /turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bNH" = ( +/area/desert_dam/building/dorms/hallway_northwing) +"dXD" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bNI" = ( -/obj/structure/surface/table, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 +/area/desert_dam/building/dorms/hallway_northwing) +"dXE" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/darkred2/west, -/area/desert_dam/building/security/warden) -"bNJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXG" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"dXI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bNK" = ( -/obj/structure/stairs{ - dir = 8 +/area/desert_dam/building/dorms/hallway_northwing) +"dXJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/cult, -/area/desert_dam/building/security/courtroom) -"bNL" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"bNM" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/southern_hallway) -"bNN" = ( -/turf/open/floor/cult, -/area/desert_dam/building/security/courtroom) -"bNO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/cult, -/area/desert_dam/building/security/courtroom) -"bNP" = ( -/obj/effect/decal/cleanable/blood, /turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bNQ" = ( -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/warden) -"bNS" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/armory) -"bNT" = ( -/obj/structure/machinery/light{ +/area/desert_dam/building/dorms/hallway_northwing) +"dXL" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"dXN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/armory) -"bNY" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/workshop) -"bNZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bOa" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bOb" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bOc" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"bOf" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) -"bOh" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bOi" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bOj" = ( -/obj/structure/platform, -/obj/structure/platform{ +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bOk" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOl" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOm" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stock_parts/smes_coil, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOo" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOp" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOq" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOr" = ( +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXR" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/hallway) +"dYb" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dYj" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dYk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"bOs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 30 +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dYp" = ( +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/administration/office) +"dYq" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"dYu" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/multitool, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOu" = ( +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/surgery_room_one) +"dYH" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, +/turf/open/gm/river/desert/shallow_edge/covered/west, /area/desert_dam/exterior/river/riverside_central_south) -"bOv" = ( +"dYK" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dYM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dYQ" = ( +/obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"bOw" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"bOx" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"bOz" = ( -/obj/structure/stairs{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/north_valley_dam) +"dYU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/administration/lobby) +"dYW" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"dZe" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/cult, -/area/desert_dam/building/security/courtroom) -"bOB" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"dZl" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"dZm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"bOD" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bOE" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_7" +/area/desert_dam/building/dorms/hallway_westwing) +"dZn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"bOF" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dZp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/prison) -"bOG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bOH" = ( +/area/desert_dam/building/dorms/hallway_westwing) +"dZx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"dZC" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"eac" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"ead" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"eaj" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"eak" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"eal" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/southern_hallway) -"bOI" = ( +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"eav" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"eax" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"eaK" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, +/obj/item/trash/cheesie, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bOJ" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/prison) -"bOK" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/area/desert_dam/building/dorms/hallway_westwing) +"eaR" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"eaV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/armory) -"bOM" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"eaW" = ( +/obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bON" = ( -/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"ebb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners3, -/area/desert_dam/interior/dam_interior/hanger) -"bOO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/workshop) -"bOP" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bOQ" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/office) -"bOR" = ( +/obj/item/trash/syndi_cakes, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"ebc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"ebr" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/east_caves) +"ebs" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/office) -"bOT" = ( -/obj/structure/platform{ - dir = 8 +/area/desert_dam/exterior/rock) +"ebt" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bOU" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bOV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bOX" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bOY" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bOZ" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"ebv" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bPa" = ( -/obj/structure/stairs{ +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"ebx" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/platform{ +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"eby" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"ebA" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"ebB" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"ebC" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"ebD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"ebN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bPb" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"ebP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"ebQ" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/CE_office) -"bPd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bPe" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/desert_dam/interior/dam_interior/control_room) +"ebX" = ( +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"ebZ" = ( +/obj/structure/window/framed/hangar/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/garage) +"ecy" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bPf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bPg" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"ecA" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"eda" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"edo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"edp" = ( /obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; + dir = 1; + pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bPh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 8 +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"edz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/blue, +/area/desert_dam/interior/dam_interior/tech_storage) +"edA" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/administration/overseer_office) +"edC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bPi" = ( -/obj/structure/platform{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"edO" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/hallway) +"edY" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/purification) +"eee" = ( +/obj/structure/window/framed/hangar, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/hallway) +"eei" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/desert_dam/exterior/river_mouth/southern) +"eem" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"eeo" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/control_room) +"eeq" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/breakroom) +"ees" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bPj" = ( -/obj/structure/platform_decoration{ +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bPk" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"bPl" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) -"bPm" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"eeH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"eeI" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"eeJ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"bPn" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"eeK" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_3"; + name = "\improper Warehouse Shutters" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"bPv" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/lobby) -"bPx" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bPz" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"bPA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bPB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bPC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"eeL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"eeM" = ( +/obj/structure/machinery/door_control{ + id = "warehouse_dam_2"; + name = "Warehouse Shutters" }, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"bPD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/closed/wall, +/area/desert_dam/building/cafeteria/loading) +"eeR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"bPE" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"bPF" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"bPG" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" + }, +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"eeS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" + }, +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"eeT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" + }, +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"eeV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_3"; + name = "\improper Warehouse Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"eeW" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_3"; + name = "\improper Warehouse Shutters" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bPH" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Visitation" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bPI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"eeX" = ( +/obj/structure/machinery/door_control{ + id = "warehouse_dam_3"; + name = "Warehouse Shutters" + }, +/turf/closed/wall, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"efo" = ( +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"eft" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"efu" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"bPJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"efv" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"efE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-u" + icon_state = "pipe-c" }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"bPK" = ( -/obj/structure/bed/chair/office/dark{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"egc" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"bPL" = ( -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"bPM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"bPN" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +/turf/open/desert/excavation/component8/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"ege" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/central_caves) +"egj" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/desert/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) -"bPO" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bPP" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 10 +"egr" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"egs" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bPQ" = ( -/obj/structure/machinery/mill, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bPR" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"egw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ dir = 1; - pixel_y = 24; - start_charge = 0 + icon_state = "pipe-c" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bPT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bPU" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bPV" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/machinery/door/poddoor/almayer/locked{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"ehg" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/disposalpipe/segment{ dir = 2; - id = "dam_checkpoint_northwest"; - name = "\improper Checkpoint Lock"; - unacidable = 0 + icon_state = "pipe-c" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bPW" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/briefcase, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/administration/overseer_office) -"bPX" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bPY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bPZ" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/area/desert_dam/exterior/valley/south_valley_dam) +"ehs" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bQa" = ( -/obj/structure/stairs{ +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_labs) +"eht" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bQb" = ( -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bQc" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"ehz" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bQd" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"ehP" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/building/water_treatment_one/purification) +"ehS" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/building/water_treatment_one/purification) +"ehX" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/machinery/dispersal_initiator{ + id = "filter 1" }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/CE_office) -"bQe" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/CE_office) -"bQf" = ( -/obj/structure/machinery/light{ +/turf/open/gm/river/desert/shallow, +/area/desert_dam/building/water_treatment_one/purification) +"eiE" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"eiK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"eiQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/south_valley_dam) +"eiR" = ( +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/lobby) +"eiT" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/prison/green/east, +/area/desert_dam/interior/dam_interior/atmos_storage) +"eiX" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 + }, +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"ejd" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/interior/caves/central_caves) +"eji" = ( +/obj/structure/machinery/iv_drip, /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/CE_office) -"bQg" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bQh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bQj" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/treatment_room) +"ejw" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"ejG" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"ejI" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"ekr" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_cargo) +"ekT" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/loading) +"ekW" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "sedimentation_1"; + pixel_y = -16 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"ekY" = ( /turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bQk" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bQl" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bQm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQn" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/interior/dam_interior/engine_east_wing) +"elf" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_north) +"elh" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel) +"els" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"elE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"elW" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_northwest) +"ema" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"emc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Mess Hall" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQp" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cafeteria) +"emv" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQq" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_northwest) +"emw" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office1) +"emD" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"emE" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"emJ" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1" + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_one/purification) +"emS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"ens" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/valley/valley_labs) +"enD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/dorms/pool) +"enL" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"eoi" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/south_valley_dam) -"bQr" = ( +"eol" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"eoo" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/landing_pad_two) +"eot" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/lobby) +"eov" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/landing_pad_one) +"eox" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"eoz" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQs" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQt" = ( -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"bQu" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bQv" = ( -/turf/open/floor/prison/darkredcorners2/west, -/area/desert_dam/building/security/prison) -"bQw" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/machinery/light{ - dir = 1 +/area/desert_dam/exterior/valley/valley_civilian) +"eoI" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_marked, -/area/desert_dam/building/security/armory) -"bQx" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_marked, -/area/desert_dam/building/security/armory) -"bQy" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/west) +"eoM" = ( +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northeast) +"eoO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/building/warehouse/breakroom) -"bQz" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/floor_marked, -/area/desert_dam/building/security/armory) -"bQA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northwest, -/area/desert_dam/building/security/southern_hallway) -"bQB" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/warehouse/breakroom) -"bQC" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/virology_isolation) +"eoZ" = ( /obj/structure/surface/table, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/desert_dam/building/security/warden) -"bQE" = ( +/obj/item/trash/plate, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"epm" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/southern_hallway) -"bQF" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bQG" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bQH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bQI" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"epn" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/warden) -"bQM" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"epO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/north_wing_hallway) +"epP" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/warden) -"bQN" = ( -/turf/open/floor/warnwhite/north, -/area/desert_dam/exterior/valley/valley_telecoms) -"bQO" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bQP" = ( -/turf/open/gm/river/desert/shallow, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bQQ" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt/desert_transition_edge1/southwest, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"bQR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bQS" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bQT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +"eqg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Xenoflora" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bQU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"eqo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"eqp" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"eqq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"eqI" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/garage) +"eqS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_wilderness) +"eqU" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bQV" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"eqY" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"erc" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"erd" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Patient Room 3" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bQW" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bQY" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bQZ" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"erg" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"erk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/telecomm/lz2_storage) +"ern" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bRb" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bRc" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"erH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"erK" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_medical) +"erS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"erW" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bRd" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/mining/workshop) +"erZ" = ( +/obj/effect/decal/sand_overlay/sand2, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bRe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/desert_dam/interior/dam_interior/hanger) +"esd" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/red, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"esh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bRf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"esC" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/warehouse/breakroom) +"esG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bRg" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/exterior/valley/valley_wilderness) -"bRh" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/area/desert_dam/exterior/valley/bar_valley_dam) +"esH" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"esI" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"esM" = ( +/obj/structure/machinery/medical_pod/sleeper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"eta" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"etn" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_east) +"ett" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bRi" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/CE_office) -"bRj" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/workshop) -"bRk" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/office) -"bRl" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/CE_office) -"bRn" = ( -/obj/effect/landmark/static_comms/net_one, /turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"bRo" = ( -/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz1_valley) +"etG" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"bRp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, +"etS" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/hammer, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"bRq" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/exterior/valley/valley_crashsite) +"etU" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northeast) +"etY" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bRr" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bRs" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/building/water_treatment_one/breakroom) +"eux" = ( +/turf/open/floor/coagulation/icon6_8_2, +/area/desert_dam/exterior/valley/valley_mining) +"euO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"evg" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_cargo) +"evt" = ( +/obj/structure/floodgate, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river_mouth/southern) +"evz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"evF" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_central_north) -"bRv" = ( -/turf/open/floor/warnwhite/northeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"bRw" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"evG" = ( +/turf/open/floor/whiteyellowcorner, +/area/desert_dam/building/water_treatment_one/breakroom) +"evH" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/north_valley_dam) +"evS" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_main) +"evT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/mining/workshop) +"ewd" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/building/substation/west) +"ewl" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bRx" = ( -/obj/structure/machinery/light, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"ewm" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_east) +"ewo" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_one) +"ewR" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/warehouse) +"exf" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"exr" = ( +/turf/open/desert/excavation/component2/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"exV" = ( /turf/open/floor/dark2, -/area/desert_dam/building/security/prison) -"bRy" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/CE_office) -"bRz" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/darkyellow2/northwest, -/area/desert_dam/building/security/prison) -"bRA" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"bRB" = ( -/obj/structure/machinery/door_control{ - id = "dam_stormlock_central"; - name = "Storm Shutter Lockdown" - }, -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"eyf" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bRC" = ( -/obj/structure/bedsheetbin, +/obj/structure/machinery/computer/communications, /obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"eyu" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" }, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"bRD" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"bRE" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"eyv" = ( /obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/armory) -"bRF" = ( -/turf/open/floor/prison, -/area/desert_dam/building/security/armory) -"bRG" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"bRH" = ( -/turf/open/gm/river/desert/deep, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bRI" = ( -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bRJ" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bRK" = ( -/turf/open/desert/cave/cave_shore/northeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bRL" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 9 +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bRM" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bRN" = ( -/obj/item/clothing/head/welding, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"bRO" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/dam_interior/smes_backup) -"bRQ" = ( +"eyD" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"eyI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bRR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bRS" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"eyL" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/engi) +"eyX" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/hanger) +"ezh" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"ezk" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bRT" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bRU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bRV" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bRW" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ezB" = ( +/obj/structure/cargo_container/hd/right, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"ezD" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"ezI" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bRX" = ( -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bRY" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"ezL" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_medical) +"ezR" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"ezT" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bRZ" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/staffroom) +"ezV" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"eAe" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bSa" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"bSb" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"bSc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"eAf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"eAo" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"eAs" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/north_valley_dam) +"eAy" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"eBg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_two) +"eBj" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_medical) +"eBv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"eBA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/mining/workshop) +"eBE" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_labs) +"eBH" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"eBM" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eCa" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bSg" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bSh" = ( +/area/desert_dam/building/water_treatment_one/hallway) +"eCf" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/west_tunnel) +"eCv" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"eCK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bSi" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bSj" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bSk" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, +/obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bSl" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/area/desert_dam/building/water_treatment_one/garage) +"eCU" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bSm" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/southern_hallway) -"bSn" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"bSo" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"eCW" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/darkyellow2/north, -/area/desert_dam/building/security/prison) -"bSs" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"eCZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ dir = 1; - pixel_y = 24; - start_charge = 0 + icon_state = "pipe-j2" }, -/turf/open/floor/darkyellowcorners2/north, -/area/desert_dam/building/security/prison) -"bSu" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/armory) -"bSv" = ( -/turf/open/floor/warnwhite/northwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"bSw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bSx" = ( -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/armory) -"bSy" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"eDB" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/armory) -"bSz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bSA" = ( -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/building/security/armory) -"bSB" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/warden) -"bSG" = ( -/obj/structure/holohoop{ - dir = 4 - }, -/turf/open/floor/warnwhite/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"bSH" = ( -/turf/open/floor/white, -/area/desert_dam/exterior/valley/valley_telecoms) -"bSI" = ( -/obj/structure/holohoop{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"eDC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/warnwhite/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) -"bSJ" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +"eDE" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"eDH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bSK" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"eDN" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bSO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bSP" = ( +/area/desert_dam/building/water_treatment_one/lobby) +"eDQ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"eDU" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"eEb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"eEs" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/west_tunnel) +"eEF" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"eEJ" = ( +/turf/open/desert/excavation/component6/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"eEP" = ( +/turf/open/floor/darkyellow2/southwest, +/area/desert_dam/building/security/prison) +"eEQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"eEV" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"eFd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"eFw" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"eFE" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/candle_box, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"eFW" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"eFZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bSQ" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"eGi" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/interior/caves/central_caves) +"eGj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"eGy" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"eGD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Controlroom" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"eGJ" = ( /turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/workshop) -"bSR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/interior/dam_interior/west_tunnel) +"eGT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"eHm" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_mining) +"eHr" = ( +/obj/structure/bed/chair/comfy/beige{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"bST" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bSU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/overseer_office) +"eHu" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/workshop) -"bSV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"eHv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"eHJ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"eHM" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/tile, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_telecoms) -"bSW" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Engineering Office" +"eHU" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"eHY" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"bSX" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/desert_dam/building/security/prison) -"bSY" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_central_north) -"bSZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/CE_office) -"bTa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/desert_dam/exterior/landing_pad_two) +"eIk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/garage) +"eIn" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"eII" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Breakroom" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTb" = ( -/obj/structure/bed/chair/office/light{ +/area/desert_dam/building/water_treatment_one/breakroom) +"eIN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/hallway) +"eIP" = ( +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/substation/west) +"eIR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 1 }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"eJh" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"eJt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bTc" = ( -/obj/structure/surface/table, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"eJB" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/landing_pad_two) +"eJG" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) +"eJP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/south_valley_dam) +"eJR" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTd" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"eJX" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"eKk" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTe" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/deathrow) +"eKo" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"eKu" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/central_tunnel) +"eKx" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"eKQ" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"eKZ" = ( +/obj/structure/filtration/coagulation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"eLd" = ( +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"eLe" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTh" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"eLo" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/building/water_treatment_one/breakroom) +"eLr" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_northwest) +"eLC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"bTi" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_central_north) -"bTj" = ( -/obj/structure/surface/table, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"bTk" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_northwest"; - name = "\improper Checkpoint Lock"; - unacidable = 0 +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bTl" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/desert_dam/building/security/prison) -"bTm" = ( -/turf/open/floor/darkyellow2/west, -/area/desert_dam/building/security/prison) -"bTn" = ( -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bTo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bTp" = ( -/obj/structure/pipes/vents/pump{ +/area/desert_dam/exterior/landing_pad_two) +"eLI" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_south) +"eLK" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"eLR" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"eMa" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"eMd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bTq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"eMj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Central" }, +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/southern_hallway) -"bTr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 1" - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"eMl" = ( /turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"bTs" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"bTt" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/break_room) -"bTu" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"bTv" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"eMs" = ( +/turf/open/floor/coagulation/icon7_1, +/area/desert_dam/building/water_treatment_two) +"eMA" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/southern_hallway) -"bTw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bTz" = ( -/turf/open/desert/cave/cave_shore/east, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bTA" = ( -/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/storage/briefcase/inflatable, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bTB" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bTC" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bTD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +/area/desert_dam/interior/dam_interior/atmos_storage) +"eMR" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) +"eNh" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "disinfection" + }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_one/purification) +"eNk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bTE" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"eNr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bTF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"eNT" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "sedimentation_0" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"eOc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bTG" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bTH" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"eOi" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bTI" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/floor/prison/bluecorner, +/area/desert_dam/building/administration/control_room) +"eOL" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/temple) +"eOM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bTJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement9, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"ePt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) -"bTL" = ( -/obj/structure/machinery/light{ - dir = 8 +"ePI" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"bTM" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) -"bTN" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"ePR" = ( +/obj/structure/cargo_container/hd/left, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"ePU" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"eQa" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"eQd" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"eQf" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_hydro) +"eQh" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_two/lobby) +"eQD" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/exterior/valley/valley_hydro) +"eQI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"eQN" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_mining) +"eRk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"eRn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"eRr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_cargo) +"eRy" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/CE_office) -"bTO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTP" = ( -/obj/structure/machinery/light{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"eRE" = ( +/turf/open/floor/warning/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"eRH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTR" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bTU" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_east) +"eRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet6_2/west, +/area/desert_dam/building/church) +"eRR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/carpet6_2/west, +/area/desert_dam/building/administration/overseer_office) +"eRZ" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"eSd" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"eSB" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/interior/caves/central_caves) +"eSL" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) -"bTV" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_mining) -"bTW" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bTX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bTZ" = ( +"eTu" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"eTv" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bUa" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/mining/workshop) -"bUb" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/mining/workshop) -"bUd" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bUe" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bUf" = ( -/turf/open/desert/cave/cave_shore/southeast, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bUg" = ( -/turf/open/desert/cave/cave_shore, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bUj" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bUk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"eTP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"eUp" = ( +/obj/item/stool, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"eUB" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_hydro) +"eUD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Breakroom" }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bUl" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bUm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bUo" = ( +/area/desert_dam/building/cafeteria/loading) +"eUM" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) -"bUp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"eUY" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"eVc" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"eVj" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bUq" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bUr" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bUs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Tool Storage" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"eVk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bUt" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUu" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUv" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/disposalpipe/segment{ +/area/desert_dam/exterior/valley/valley_medical) +"eVm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_mining) +"eVn" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"eVp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUC" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"eVB" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/interior/caves/east_caves) +"eVH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"eVJ" = ( +/obj/structure/window/framed/chigusa, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eVK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"eVL" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"eVV" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"eWr" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_two) +"eWs" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"eWu" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/exterior/valley/valley_medical) +"eWJ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/river/pool, +/area/desert_dam/building/dorms/pool) +"eWM" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUF" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"eWP" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/north_valley_dam) +"eXb" = ( +/obj/structure/platform_decoration{ dir = 4 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"eXj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Administration Control Room" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"eXl" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUG" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/disposalpipe/segment{ +/area/desert_dam/exterior/landing_pad_one) +"eXm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/garage) +"eXo" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"eXy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"eXA" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"eXM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUM" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/warden) -"bUN" = ( -/obj/structure/platform, +/area/desert_dam/exterior/valley/valley_hydro) +"eXN" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"bUQ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bUR" = ( -/turf/open/floor/warnwhite, -/area/desert_dam/exterior/valley/valley_telecoms) -"bUS" = ( -/turf/open/floor/warnwhite/southeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"bUT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bUU" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"bUV" = ( -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"bUW" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 1" - }, -/turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bUX" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bUY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bUZ" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bVa" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bVb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bVc" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bVd" = ( +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"eXW" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bVe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bVf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) -"bVg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bVh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bVj" = ( -/obj/effect/landmark/survivor_spawner, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"eYa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bVk" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"eYm" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVl" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden{ + dir = 9 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVm" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"eYn" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/objective{ + dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVn" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"eYo" = ( +/obj/structure/surface/table, +/obj/item/tool/wirecutters, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"eYy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVo" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"eYz" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hangar_storage) -"bVp" = ( +"eYO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVq" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVr" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bVs" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bVt" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bVu" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bVw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"bVx" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_central_south) -"bVy" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bVz" = ( -/obj/structure/platform{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"eYR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"eZa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"bVA" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/desert_dam/building/security/prison) -"bVD" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/exterior/valley/south_valley_dam) -"bVE" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bVF" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/south_valley_dam) -"bVG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/south_valley_dam) -"bVI" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"eZh" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/warden) -"bVJ" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/armory) -"bVK" = ( -/obj/structure/barricade/sandbags{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/sandbags{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bVN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"eZp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner, +/area/desert_dam/interior/dam_interior/break_room) +"eZv" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"eZB" = ( /turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/armory) -"bVO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand2/corner2{ +/area/desert_dam/building/security/prison) +"eZD" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bVP" = ( +/turf/open/floor/dark, +/area/desert_dam/building/church) +"eZE" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"eZP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bVQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bVR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/desert_dam/building/security/northern_hallway) +"eZR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"eZT" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"fae" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) +"faf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "pipe-c" + health = 80 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"bVS" = ( -/obj/structure/stairs{ +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"faj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bVT" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"faq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"fas" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bVU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bVV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"faz" = ( +/obj/structure/fence, +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/east_caves) +"faE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 }, -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVW" = ( -/obj/structure/platform_decoration{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"faH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"faV" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVX" = ( -/obj/structure/stairs{ - dir = 8 +/turf/open/floor/prison/green/east, +/area/desert_dam/interior/dam_interior/atmos_storage) +"faY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/structure/platform{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"faZ" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/dam_interior/engine_room) +"fba" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"fbG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/warehouse/warehouse) +"fbK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"fbP" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/interior/caves/central_caves) +"fbY" = ( +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"fcj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"fco" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/bar/bar) +"fcC" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"fcE" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"fcS" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) +"fdb" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"fdf" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bWa" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"fdh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/south_tunnel) +"fdi" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/central_caves) +"fdj" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"fdk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"fdx" = ( +/obj/structure/showcase{ + icon_state = "mechfab1" + }, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"fdy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bWb" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"fdJ" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"fdM" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"fdV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bWc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bWe" = ( -/obj/structure/machinery/flasher/portable, -/turf/open/floor/prison/floor_marked, -/area/desert_dam/building/security/armory) -"bWf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Warden" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"feu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/emergency_room) +"feT" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"feV" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_east) +"feX" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"ffa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Restroom" }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"ffi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"ffK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bWg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"fgh" = ( +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/exterior/valley/valley_hydro) +"fgk" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bWh" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bWi" = ( -/obj/structure/flora/grass/desert/heavygrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bWj" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bWk" = ( -/obj/structure/flora/grass/desert/lightgrass_2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"fgl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bWm" = ( -/obj/structure/platform{ - dir = 8 +/area/desert_dam/exterior/landing_pad_two) +"fgo" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"bWn" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bWo" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) -"bWq" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"fgH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"bWs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"fgN" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"fgU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"fgW" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/control_room) +"fhm" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Containment Lock"; + unacidable = 0 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"fhD" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_northwest) +"fhE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/loading) +"fhQ" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"fhT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/garage) +"fid" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/armory) +"fir" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/lobby) +"fix" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"fiJ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"fiP" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"fiW" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/temple) +"fjc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Engine Room" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"bWt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bWu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"bWv" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"fji" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"bWw" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_central_north) -"bWx" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/deathrow) +"fjq" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"fjG" = ( +/obj/structure/pipes/standard/manifold/hidden, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"fjH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"fjN" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bWA" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"fjQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/south_valley_dam) +"fkd" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"fkl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"fkw" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"fkz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"fkQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"fkX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"flI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/building/warehouse/warehouse) +"flK" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/whiteblue/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"fme" = ( +/obj/item/alien_embryo, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"fmi" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"fmx" = ( +/obj/item/trash/USCMtray, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"fmC" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/largecrate/random/case/small, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"fmG" = ( +/obj/structure/cargo_container/trijent/left/alt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"fmP" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz1) +"fmS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"fna" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"fnh" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/CE_office) +"fnk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security Armoury" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"fnp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bWB" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"fny" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"fnG" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fnH" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_wilderness) +"fnK" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bWD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_mining) -"bWE" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bWF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"fnN" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bWH" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_mining) -"bWI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"foc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"fok" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"bWJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"bWK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"fol" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"foq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bWL" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/area/desert_dam/exterior/valley/bar_valley_dam) +"foC" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 }, -/turf/open/asphalt, +/turf/open/desert/desert_shore/shore_corner1/west, +/area/desert_dam/interior/caves/temple) +"fpb" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/building/mining/workshop_foyer) +"fpi" = ( +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"fpl" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"fpw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/lobby) +"fpA" = ( +/turf/open/floor/filtrationside/north, /area/desert_dam/exterior/valley/valley_mining) -"bWM" = ( +"fpH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bWN" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"fpJ" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bWO" = ( -/obj/item/reagent_container/food/drinks/flask/detflask, -/obj/item/clothing/head/det_hat, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"bWP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"bWR" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) +"fpQ" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/control_room) +"fqa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Loading" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bWS" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"fqE" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"fqS" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_two/purification) +"frc" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"fru" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bWT" = ( -/obj/structure/stairs{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"frA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/mining/workshop) +"frY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bWU" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"fsc" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"fsg" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bWV" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bWW" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bWX" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bWY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bXa" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bXc" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bXd" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"bXe" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"fsk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"bXf" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"fsr" = ( +/obj/structure/disposalpipe/junction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fsO" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bXg" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/northern_hallway) +"fsT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"fsX" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "uppcrash" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_central_north) -"bXh" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_central_north) -"bXi" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bXj" = ( -/obj/structure/platform_decoration{ +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_hydro) +"fsZ" = ( +/obj/structure/stairs{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"bXk" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_wilderness) +"fth" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bXl" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_central_north) -"bXm" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_central_north) -"bXn" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"bXo" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"bXp" = ( -/obj/structure/platform_decoration{ +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"ftj" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"ftz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"ftH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"bXq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"bXr" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"ftY" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bXs" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"bXt" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bXu" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"bXv" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"bXw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Armoury" +/turf/open/floor/filtrationside/east, +/area/desert_dam/exterior/valley/valley_hydro) +"ftZ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"fus" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Containment Pen" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/armory) -"bXx" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"fuJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bXy" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_central_north) -"bXz" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_north) -"bXA" = ( +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/substation/west) +"fuU" = ( +/obj/structure/pipes/vents/pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"fuV" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bXB" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_mining) -"bXC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_northwest"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bXD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_east) +"fvc" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"fvg" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" }, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bXF" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"fvn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_cargo) +"fvp" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bXG" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_mining) -"bXH" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bXI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"fvP" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"fvZ" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/emergency_room) +"fwa" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bXJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 }, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"fwg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bXK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"fwR" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bXM" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"fxp" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"bXN" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bXO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"fxs" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bXP" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"fxw" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"fxJ" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bXQ" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/turf/open/desert/excavation/component7/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"fxP" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_hydro) +"fyl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/area/desert_dam/interior/dam_interior/disposals) -"bXR" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"fyr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/interior/caves/east_caves) +"fyS" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"fzc" = ( +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/disposals) -"bXS" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +"fze" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/disposals) -"bXT" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"fzk" = ( +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"fzm" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bXU" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"fzz" = ( +/turf/open/floor/whitepurple/north, +/area/desert_dam/building/medical/chemistry) +"fzH" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_one) +"fAb" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"fAq" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"fAG" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bXV" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bXW" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bXX" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"fBc" = ( /obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bXY" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"fBj" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"fBF" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"bXZ" = ( -/obj/structure/platform{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bYa" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bYb" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_central_south) -"bYc" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/north_valley_dam) -"bYd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"fBL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"fCb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"fCe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Observation" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bYe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgury_observation) +"fCh" = ( +/obj/structure/surface/table, +/obj/item/tool/shovel/spade, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"fCk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_northwest) +"fCl" = ( +/turf/open/floor/prison/yellow/west, +/area/desert_dam/building/hydroponics/hydroponics) +"fCB" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bYf" = ( -/obj/structure/platform{ +/area/desert_dam/exterior/valley/valley_hydro) +"fCF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bYg" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"fCJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"fCO" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"fDa" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/valley/valley_labs) +"fDe" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/east_caves) +"fDf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"fDh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bYh" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"fDi" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fDK" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"fEb" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bYi" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/mirror{ + pixel_x = -28 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"fEd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"fEn" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fEo" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bYj" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"bYl" = ( -/turf/open/floor/darkyellowcorners2, -/area/desert_dam/building/security/prison) -"bYm" = ( -/obj/structure/bed, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"bYo" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"fEL" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 }, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout, -/turf/open/floor/prison, -/area/desert_dam/building/security/armory) -"bYp" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"fEQ" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, -/obj/item/ammo_magazine/pistol/holdout, -/turf/open/floor/prison, -/area/desert_dam/building/security/armory) -"bYq" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"fEY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"fFe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/armory) -"bYr" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/security/armory) -"bYs" = ( -/obj/structure/bed/chair{ +/obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/deathrow) -"bYt" = ( -/turf/open/floor/prison, -/area/desert_dam/building/security/deathrow) -"bYv" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/deathrow) -"bYw" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"fFz" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_medical) +"fFH" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"fFV" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"fGA" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_mining) -"bYx" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ +"fGB" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"bYy" = ( -/obj/item/trash/pistachios, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"bYA" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/medical/garage) +"fGE" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/exterior/valley/valley_wilderness) +"fGU" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"fHo" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/west) +"fHp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bYB" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/darkbrown3/north, -/area/desert_dam/interior/dam_interior/disposals) -"bYC" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"fHu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"fHv" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/control_room) +"fHN" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"fIi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_5, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"fIr" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurple2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"fIF" = ( +/turf/open/floor/warning/northwest, +/area/desert_dam/interior/dam_interior/engine_room) +"fJe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/central_tunnel) +"fJs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/substation/west) +"fJu" = ( +/turf/open/floor/prison/darkbrown3, +/area/desert_dam/interior/dam_interior/hangar_storage) +"fJL" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_south) +"fJP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"fKi" = ( +/turf/open/desert/excavation/component2/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"fLs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_labs) +"fLF" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bYD" = ( -/obj/effect/decal/sand_overlay/sand2{ +/area/desert_dam/interior/dam_interior/workshop) +"fMg" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bYE" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/break_room) -"bYF" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered/east, -/area/desert_dam/exterior/river/riverside_central_north) -"bYG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"fMh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_one) +"fMk" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"fMo" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river_mouth/southern) +"fMB" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_cargo) +"fMC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bYH" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"fMG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"fMH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"fMZ" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"fNd" = ( /obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/central_tunnel) +"fNf" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"bYI" = ( -/obj/structure/platform{ - dir = 1 +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"fNr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"fNG" = ( +/turf/open/floor/dark, +/area/desert_dam/building/church) +"fNN" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"fOh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"fOw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"fOK" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_isolation) +"fON" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"fOO" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"fPc" = ( +/turf/closed/wall/r_wall/bunker{ + acided_hole_dir = 4 }, -/obj/structure/platform{ - dir = 4 +/area/desert_dam/interior/dam_interior/garage) +"fPd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/CE_office) +"fPf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Secure Tech Storage" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"bYJ" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"fPn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Foremans Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"fPy" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"fPR" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered, +/area/desert_dam/building/medical/chemistry) +"fQc" = ( +/obj/item/seeds/riceseed, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"fQt" = ( /obj/structure/platform{ - dir = 8 + dir = 4 }, +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) -"bYK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bYL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bYM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bYN" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) -"bYO" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/mining/workshop_foyer) -"bYP" = ( +"fQy" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/blood, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"bYQ" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 +/area/desert_dam/exterior/valley/valley_crashsite) +"fQG" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/armory) -"bYR" = ( -/turf/open/floor/warnwhite/southwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"bYS" = ( -/obj/structure/bed/chair{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_south) +"fQZ" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"fRe" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bYT" = ( -/obj/structure/surface/table/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, +/turf/open/floor/darkyellow2/east, /area/desert_dam/building/security/prison) -"bYV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"fRk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"bYW" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_labs) +"fRq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"fRK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"fRP" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/caves/central_caves) +"fSd" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"fSk" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/bar_valley_dam) +"fSy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bYX" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/obj/item/trash/candy, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"bYY" = ( -/obj/item/trash/liquidfood, -/obj/item/trash/raisins, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"bYZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"fSU" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"fTo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bZa" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"fTB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_mining) +"fTQ" = ( +/turf/open/floor/wood, +/area/desert_dam/building/security/southern_hallway) +"fTT" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced, +/obj/item/device/radio, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fTU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_mining) +"fUf" = ( +/obj/item/trash/hotdog, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"fUj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"fUo" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bZb" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/disposals) -"bZc" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bZd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/cult, +/area/desert_dam/building/church) +"fUu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, +/turf/open/floor/darkred2, +/area/desert_dam/building/administration/lobby) +"fUM" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/lobby) +"fVk" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"fVr" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bZe" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZf" = ( -/obj/structure/toilet, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"bZg" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/area/desert_dam/building/hydroponics/hydroponics) +"fVC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_telecoms) +"fVF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"fVH" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"fVS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 8 }, -/turf/open/floor/whiteyellow/northwest, -/area/desert_dam/interior/dam_interior/break_room) -"bZh" = ( -/turf/open/floor/whiteyellowcorner/north, -/area/desert_dam/interior/dam_interior/break_room) -"bZi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"fVZ" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/dam_interior/south_tunnel) +"fWB" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"fWS" = ( +/obj/structure/platform{ dir = 8 }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"fWY" = ( +/turf/open/floor/warning/north, +/area/desert_dam/interior/dam_interior/engine_room) +"fXa" = ( +/obj/structure/sink, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"fXF" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"fXO" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"fYk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"fYm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"fYs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder, +/obj/item/device/assembly/signaller, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"bZj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"bZk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"bZl" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fYB" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"fYF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"fZf" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"fZh" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/break_room) -"bZm" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/break_room) -"bZn" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/break_room) -"bZo" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whiteyellow/northeast, -/area/desert_dam/interior/dam_interior/break_room) -"bZp" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"fZk" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/control_room) +"fZu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"fZC" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"fZD" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) -"bZq" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_central_south) -"bZr" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_central_south) -"bZs" = ( -/obj/structure/platform{ +"fZI" = ( +/obj/structure/bed, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"fZJ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/hanger) +"fZK" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform_decoration{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) -"bZt" = ( -/obj/structure/platform{ +"fZX" = ( +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"gab" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/chigusa, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gaE" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/structure/platform{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"gbe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"bZu" = ( -/obj/structure/bed, -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/deathrow) -"bZv" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"bZw" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/execution_chamber) -"bZx" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"gbf" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"gca" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"gce" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "clfship" }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"bZy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) +"gcg" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"bZz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_two) +"gco" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Freezer" }, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/north_wing_hallway) -"bZA" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"bZC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bZD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bZE" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"gcC" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bZF" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bZG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bZH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"gcR" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/security/prison) -"bZI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Rec Yard" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"bZJ" = ( -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"bZK" = ( -/obj/structure/target, -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/exterior/valley/valley_telecoms) -"bZL" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"bZM" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"bZN" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bZO" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bZP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bZQ" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_central_south) -"bZR" = ( -/obj/item/trash/semki, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"bZS" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"gcS" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"bZU" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 + dir = 8 }, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bZV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"gcW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"bZW" = ( -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/break_room) -"bZX" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"bZY" = ( -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"gcY" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"gdb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_northwest) +"gdj" = ( +/obj/structure/platform{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bZZ" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_central_south) -"cac" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) -"cad" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/caves/central_caves) -"cae" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"caf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"cah" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"gdk" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"gdm" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"gdB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"cai" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/east, -/area/desert_dam/building/security/prison) -"caj" = ( -/turf/open/floor/prison/darkbrowncorners2/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"cak" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/desert_dam/building/security/prison) -"cal" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"cam" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 2" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"gdD" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_civilian) +"gdU" = ( +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"geD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/building/security/prison) -"can" = ( -/turf/open/floor/plating/warnplate/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_telecoms) -"cao" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 +"geE" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"geF" = ( +/obj/structure/machinery/door/airlock/sandstone/runed{ + name = "Strange Temple" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cap" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"caq" = ( -/obj/structure/machinery/light{ +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"geG" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"geM" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/building/security/deathrow) -"car" = ( -/turf/open/floor/prison/darkred2/east, -/area/desert_dam/building/security/deathrow) -"cat" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"cau" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"gff" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/workshop) +"gfj" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"gfm" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"gfv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"gfH" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"ggh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"ggq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"ggt" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_hydro) +"ggC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/dam/truck/damaged, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"ggK" = ( +/obj/structure/surface/table, +/obj/structure/machinery/filtration_button{ + id = "filter 2" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"cav" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"ggM" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"ggS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"ghg" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"ghm" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"ghY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"gih" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"caw" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"cax" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"gij" = ( +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"gix" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"cay" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/obj/item/trash/syndi_cakes, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"caB" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"caC" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"caD" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"gjl" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_one) +"gjX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"gjY" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"gjZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Engineering Hallway" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"caF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"caG" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_central_south) -"caH" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"caI" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_central_south) -"caK" = ( -/obj/structure/disposalpipe/segment{ +"gke" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/telecomm/lz2_containers) +"gkn" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/mining/workshop_foyer) +"gkC" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"caL" = ( /obj/structure/platform{ dir = 1 }, -/obj/structure/platform{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"gkQ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"caM" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"caO" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/turf/open/floor/prison, -/area/desert_dam/building/security/armory) -"caP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"gkR" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/telecomm/lz2_containers) +"glk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"caQ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 2" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"glm" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/mining/workshop_foyer) +"gln" = ( +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_one) +"glx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"caR" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkyellow2/southwest, -/area/desert_dam/building/security/prison) -"caS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/darkyellowcorners2/west, -/area/desert_dam/building/security/prison) -"caT" = ( -/obj/structure/barricade/sandbags, -/obj/structure/barricade/sandbags{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"caU" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"caW" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"caX" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Observation" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"glF" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"caY" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Solitary" +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"glO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"glU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"glW" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/deathrow) -"caZ" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"glZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"gmA" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/donkpocket, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cba" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/execution_chamber) -"cbc" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 5 - }, -/turf/open/floor, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"cbd" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/obj/item/trash/popcorn, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"cbe" = ( -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"cbf" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"gmB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -25374,3279 +20570,4055 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbg" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/CE_office) -"cbh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) -"cbi" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"cbj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +"gmN" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"gmO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbk" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"gmV" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"cbl" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbn" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engineering Hallway" + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbq" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"cbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/desert_dam/building/security/northern_hallway) +"gmZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_3"; + name = "\improper Warehouse Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"cbs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"gnn" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_B_1" }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"gno" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/warning/north, +/area/desert_dam/interior/dam_interior/engine_room) +"gnr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/control_room) -"cbt" = ( +"gns" = ( +/turf/open/desert/excavation/component1/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"gnx" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_central_south) -"cbu" = ( -/obj/structure/platform{ +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river_mouth/southern) +"gny" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/security/lobby) +"gnz" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"gnN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Office" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"gnP" = ( +/turf/open/floor/warning/east, +/area/desert_dam/interior/dam_interior/engine_room) +"god" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"goi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_central_south) -"cbv" = ( -/obj/structure/platform{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"goj" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/east_caves) +"gol" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"gom" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gop" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"cbw" = ( -/obj/structure/platform{ +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/surgery_room_two) +"goO" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/storage/box/flashbangs, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"goU" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"gpb" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"cbx" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"gpd" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/green/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"gpi" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"gpl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"gpq" = ( +/obj/structure/platform, +/turf/open/desert/excavation/component5/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"gpr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"cby" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"gpx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"gpz" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"gpG" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"gpH" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/interior/caves/central_caves) +"gpK" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"gpO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/bar/bar) +"gpQ" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/exterior/valley/valley_mining) +"gpV" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"gpX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"gqd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/mining/workshop) +"gqf" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_east) +"gqp" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"gqs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"gqt" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/valley/valley_wilderness) +"gqH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gqJ" = ( /obj/structure/platform{ - dir = 4 + dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"cbz" = ( -/obj/structure/platform{ +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_east) +"grq" = ( +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"grv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"grC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"cbA" = ( -/obj/structure/window/framed/prison/cell, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"grI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/plating, -/area/desert_dam/building/security/deathrow) -"cbB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/desert_dam/exterior/landing_pad_two) +"grQ" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"grT" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/interior/caves/east_caves) +"gsc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" + }, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"gso" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"gsr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" + }, /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"gsD" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"gtd" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/green/southeast, +/area/desert_dam/interior/dam_interior/atmos_storage) +"gti" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"gtB" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/north_wing_hallway) -"cbD" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/loading) +"gtV" = ( +/obj/structure/machinery/computer/operating, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"cbE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"gtZ" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/smes_main) +"guf" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "3,7" }, -/obj/structure/disposalpipe/segment{ +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"gug" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/holding) +"gun" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"gut" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"guw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"guG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"guI" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/telecomm/lz1_south) +"guJ" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"cbF" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"gvi" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"gvv" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/virology_wing) +"gvy" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"gvB" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) -"cbG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) -"cbH" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"cbI" = ( -/obj/structure/disposalpipe/trunk{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"gvJ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/desert_dam/building/security/prison) -"cbJ" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"gwf" = ( +/obj/structure/platform{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"cbK" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"cbM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/floor, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"cbN" = ( -/obj/structure/machinery/mineral/processing_unit, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"cbO" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"cbP" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"gwo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"gwA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"cbR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"cbS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"gwF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"gwN" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) -"cbT" = ( +"gxh" = ( +/obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"cbU" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gxt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbV" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"gxA" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"gxJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"gxO" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"gxX" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"gxZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbW" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, /turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) -"cbY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbZ" = ( -/obj/structure/pipes/vents/pump{ +"gye" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"gyn" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"gyw" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"cca" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"gyA" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/exterior/valley/valley_hydro) +"gyF" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northwest) +"gyL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper East Filtration" + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"ccc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"ccd" = ( -/obj/structure/platform{ - dir = 1 +/area/desert_dam/building/water_treatment_two/hallway) +"gyZ" = ( +/obj/effect/decal/remains/xeno{ + pixel_x = 1; + pixel_y = 31 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"cce" = ( -/obj/structure/platform_decoration{ +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/temple) +"gzm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"gzn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_central_south) -"ccf" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"ccg" = ( -/obj/structure/platform{ +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"cch" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"gzo" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"cci" = ( -/obj/structure/platform{ +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"gzw" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"gzZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"gAg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"ccj" = ( -/obj/structure/platform{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"cck" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"gAp" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"gAA" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "hangar_dam_2"; - name = "\improper Hangar Shutters" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"gAJ" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"ccl" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/warning/north, -/area/desert_dam/interior/dam_interior/engine_room) -"ccm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_telecoms) -"ccn" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/warning/north, -/area/desert_dam/interior/dam_interior/engine_room) -"cco" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/caves/central_caves) -"ccp" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) -"ccq" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) -"ccs" = ( -/turf/open/floor/darkyellow2, -/area/desert_dam/building/security/prison) -"cct" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/freezerfloor, /area/desert_dam/building/security/prison) -"ccu" = ( +"gAZ" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/north_valley_dam) +"gBr" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 6 + dir = 8 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"ccv" = ( -/turf/open/floor/prison/darkredcorners2/east, -/area/desert_dam/building/security/deathrow) -"ccw" = ( -/turf/open/floor, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"ccx" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"ccy" = ( -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"ccz" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/desert_dam/exterior/valley/south_valley_dam) +"gBz" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_northwest) +"gBA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/control_room) -"ccA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/desert_dam/building/security/northern_hallway) +"gCb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3/north, +/area/desert_dam/interior/dam_interior/hanger) +"gCg" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"gCq" = ( +/obj/structure/stairs{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"ccB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"gCr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"ccC" = ( -/turf/open/floor/whiteyellow/southwest, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) -"ccD" = ( -/obj/structure/bed/chair{ +"gCw" = ( +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"gCD" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"gCF" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"ccE" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"ccF" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"ccG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"gCS" = ( +/obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"ccH" = ( -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"ccI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"ccJ" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"ccK" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/central_caves) -"ccL" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"ccM" = ( +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"gDe" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"ccN" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"ccO" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"ccP" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"ccQ" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"ccR" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"ccY" = ( -/turf/open/floor/prison/darkredcorners2/north, -/area/desert_dam/building/security/deathrow) -"ccZ" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cda" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cdb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cdc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_cargo) +"gDf" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"gDg" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" + icon_state = "road_edge_decal10" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cdd" = ( -/obj/structure/machinery/power/apc{ +/area/desert_dam/exterior/landing_pad_one) +"gDA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_hydro) +"gDK" = ( +/turf/open/floor/filtrationside/east, +/area/desert_dam/exterior/valley/valley_hydro) +"gDQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - pixel_y = 24; - start_charge = 0 + name = "\improper Marshal Office" }, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/building/security/deathrow) -"cdf" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/darkbrown2/northwest, -/area/desert_dam/building/warehouse/warehouse) -"cdg" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/warden) -"cdh" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/exterior/valley/valley_telecoms) -"cdi" = ( -/obj/structure/machinery/computer/station_alert, -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"cdj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"gEd" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/exterior/valley/valley_telecoms) -"cdk" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"cdl" = ( -/turf/open/floor, -/area/desert_dam/exterior/valley/valley_telecoms) -"cdm" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/break_room) -"cdn" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"gEj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"gEm" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"gEw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"gEO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cdo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cdp" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 9 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"gET" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cdq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"cdr" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/obj/structure/platform{ + dir = 8 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"gEU" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"cds" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cdt" = ( -/obj/structure/catwalk, -/turf/open/floor/plating, -/area/desert_dam/building/security/prison) -"cdu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"gEV" = ( /obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"gEX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/desert_dam/building/security/prison) -"cdv" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_medical) -"cdw" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"cdx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"gFa" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"cdy" = ( -/obj/structure/stairs{ - dir = 1 + dir = 4 }, -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"gFe" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"gFf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/evidence, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) -"cdz" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"gFt" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) +"gFx" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) -"cdA" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"cdB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"cdC" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cdD" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"gFI" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"gFT" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 6 + dir = 8 }, /turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"gFV" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) +"gGs" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"gGC" = ( +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/desert_dam/interior/caves/temple) +"gGO" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/interior/caves/central_caves) +"gGU" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"gGX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) -"cdE" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_medical) -"cdF" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_medical) -"cdG" = ( -/obj/structure/toilet{ - dir = 4 +"gHH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/security/prison) -"cdH" = ( -/obj/structure/closet/secure_closet/injection, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cdJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/obj/item/stack/sheet/glass{ + amount = 30 }, -/turf/open/floor/freezerfloor, +/turf/open/floor/prison/darkpurple2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"gIe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) -"cdK" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt, +"gIl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"gID" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_civilian) -"cdL" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"cdN" = ( +"gIP" = ( +/obj/structure/closet/bombclosetsecurity, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"gIV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/freezerfloor, -/area/desert_dam/building/security/prison) -"cdO" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/area/desert_dam/interior/dam_interior/break_room) +"gIW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cdP" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"gJj" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/south_valley_dam) +"gJm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper CE Office" }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cdQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/workshop) -"cdR" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cdS" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"gJE" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cdT" = ( -/obj/structure/platform_decoration{ +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cdU" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"gJK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cdV" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"gJP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"gKj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_labs) +"gKt" = ( +/obj/structure/machinery/computer/station_alert, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"gKz" = ( /obj/effect/decal/sand_overlay/sand2{ - dir = 8 + dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cdX" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/caves/central_caves) -"cdY" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"gKN" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/control_room) +"gKO" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/west_tunnel) +"gKY" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gKZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/north_valley_dam) +"gLg" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"cdZ" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"cea" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/cheesie, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"ceb" = ( -/obj/structure/surface/table/woodentable, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gLi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"cec" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"ced" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cee" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_mining) +"gLl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cef" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_central_south) -"ceg" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"ceh" = ( -/obj/structure/platform{ - dir = 8 +/area/desert_dam/exterior/valley/valley_crashsite) +"gLK" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"gLZ" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"cei" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_central_south) -"cej" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"cek" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"gMh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/central_tunnel) +"gMt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Workshop" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"gMv" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"gMw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"gMA" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"gMJ" = ( +/obj/structure/largecrate, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"cel" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) -"cen" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/exterior/valley/valley_medical) -"ceo" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"cep" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/exterior/valley/valley_mining) +"gMM" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"ceq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/exterior/valley/valley_medical) -"cer" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_medical) -"cet" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"gMS" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"gNe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/garage) +"gNg" = ( +/turf/open/desert/excavation/component6/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"gNs" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"gNN" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"gOc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/storage/donut_box, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"gOl" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gOE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Isolation" +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"gOJ" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_two) +"gOM" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/deathrow) -"ceu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/chemistry) -"cev" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered/west, -/area/desert_dam/exterior/river/riverside_central_south) -"cew" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/central) +"gPi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"gPq" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/item/storage/box/masks{ + pixel_x = -5; + pixel_y = 5 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"cex" = ( -/obj/structure/stairs{ - dir = 8 +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 }, -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/whiteredcorner/west, +/area/desert_dam/building/medical/primary_storage) +"gPt" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"cey" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"gPy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"gPK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"gPO" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"cez" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"ceA" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"ceB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/area/desert_dam/exterior/valley/valley_crashsite) +"gPY" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"gQi" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/north_valley_dam) +"gQj" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_south) +"gQo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Checkpoint" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"ceC" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"gQs" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/lobby) +"gQy" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"gQA" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/control_room) +"gQL" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, /turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/western_dam_cave) -"ceD" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_telecoms) -"ceF" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"ceG" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_telecoms) -"ceH" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"ceI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gQM" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ceJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"ceK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"ceL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"gQP" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"gQV" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"gRf" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"ceM" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"ceN" = ( -/obj/structure/bed/stool, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"ceO" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"ceP" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"ceQ" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"ceR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ceS" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"gRg" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ceT" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"ceU" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"ceV" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/river/pool, -/area/desert_dam/building/dorms/pool) -"ceW" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_medical) -"ceX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) -"ceY" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_medical) -"ceZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"cfa" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"gRt" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"cfb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_medical) -"cfd" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"cfe" = ( -/turf/open/desert/rock/edge1/east, -/area/desert_dam/exterior/valley/valley_telecoms) -"cff" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_telecoms) -"cfg" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"gRu" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"gRw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cfh" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cfj" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gRC" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 31; + start_charge = 0 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cfl" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"gRS" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_1" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"gRV" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cfm" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"cfn" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_south) -"cfo" = ( -/obj/structure/platform_decoration, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_two/lobby) +"gRZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/warning_cone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"gSm" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"gSF" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"gSM" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"cfp" = ( -/obj/structure/stairs{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"gSR" = ( +/obj/structure/safe, +/obj/item/weapon/sword/katana/replica, +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"cfq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"gTc" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"gTp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"cfr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"cfs" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"cft" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_medical) -"cfv" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/building/water_treatment_one/hallway) +"gTD" = ( +/obj/item/tool/wrench, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"gTK" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/virology_isolation) +"gTM" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/southwest, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"gUl" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"gUM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_mining) +"gUO" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cfw" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cfx" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"gUR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cfy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"gVm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"gVo" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cfz" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) +"gVq" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cfA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"gVF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gVQ" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"gVV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"gVW" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/overseer_office) +"gWh" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"gWu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cfB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/area/desert_dam/building/hydroponics/hydroponics_loading) +"gWC" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"gWH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"gWK" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cfC" = ( -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cfD" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"gWM" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"gWR" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river_mouth/southern) -"cfE" = ( -/obj/structure/platform{ +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/desert/rock/edge1/east, -/area/desert_dam/exterior/valley/valley_telecoms) -"cfG" = ( -/turf/open/desert/rock/edge1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"cfH" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river_mouth/southern) -"cfJ" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gWZ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cfN" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/warden) -"cfP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"gXe" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/armory) +"gXq" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gXx" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"gXH" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"gXM" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_hydro) +"gYb" = ( +/turf/open/floor/prison/redcorner/west, +/area/desert_dam/building/security/northern_hallway) +"gYx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"gYA" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"gYP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"gYR" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cfQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"gZf" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1" }, -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cfR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_hydro) +"gZA" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"gZC" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cfS" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"gZJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N" }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"gZL" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_labs) +"hak" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"hal" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cafeteria) +"ham" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cfX" = ( +/area/desert_dam/exterior/landing_pad_two) +"hao" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"cfY" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"cfZ" = ( -/obj/structure/platform{ +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_south) +"hay" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"cga" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"haz" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/warehouse) +"haD" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"cgb" = ( -/obj/structure/platform_decoration{ +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"haK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) -"cgc" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_medical) -"cgd" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"haM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"haU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark2, +/area/desert_dam/building/substation/northwest) +"hbe" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cge" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"hbh" = ( +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"hbL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/north_valley_dam) +"hcc" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cgf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cgh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/turf/open/floor/plating, /area/desert_dam/exterior/landing_pad_two) -"cgi" = ( -/obj/effect/blocker/toxic_water/Group_2, +"hcd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_cargo) +"hcf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"hch" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"hcl" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, /turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) -"cgj" = ( -/obj/structure/platform{ - dir = 1 - }, +"hcq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"hcs" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"cgk" = ( -/obj/structure/platform{ - dir = 1 + dir = 4 }, -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"hcF" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"hcH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/garage) +"hcL" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 6 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"cgm" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/building/substation/west) -"cgn" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/west) -"cgo" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river_mouth/southern) -"cgp" = ( +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_mining) +"hcQ" = ( /obj/structure/surface/table, -/obj/structure/machinery/filtration_button{ - id = "filter 1" - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"cgq" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river_mouth/southern) -"cgr" = ( -/obj/structure/platform{ +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"hda" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river_mouth/southern) -"cgs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"hde" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"hdi" = ( +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"hdD" = ( +/obj/item/storage/fancy/vials/random, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"hdM" = ( +/obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ - dir = 8 + dir = 1 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river_mouth/southern) -"cgt" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/plating, -/area/desert_dam/building/substation/west) -"cgy" = ( -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cgz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"hdO" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"hea" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cgA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cgB" = ( -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cgC" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"heo" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/central) +"heX" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/north_valley_dam) +"heZ" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered/east, -/area/desert_dam/exterior/river/riverside_central_south) -"cgD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cgG" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/exterior/river/riverside_central_south) -"cgI" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/closed/wall/r_wall/bunker/floodgate, -/area/desert_dam/exterior/river/riverside_south) -"cgJ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/building/substation/west) -"cgK" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_medical) -"cgL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_east) +"hfa" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/lobby) +"hfc" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cgM" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"hfk" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"hfl" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/northwest, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"hfA" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"hfH" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"hfI" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"hfS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cgN" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"hfW" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cgR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_two) +"hfX" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"hgl" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"hgq" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cgU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"hgE" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"hgY" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"hgZ" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"cgY" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"hhl" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"hhm" = ( +/turf/open/mars/mars_dirt_14, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"hhH" = ( /turf/open/floor/plating/warnplate/southwest, -/area/desert_dam/building/substation/west) -"cgZ" = ( -/obj/structure/machinery/power/terminal{ +/area/desert_dam/building/substation/northwest) +"hir" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hiu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/plating/warnplate, -/area/desert_dam/building/substation/west) -"cha" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/building/substation/west) -"chb" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison, -/area/desert_dam/building/substation/west) -"chd" = ( -/obj/structure/urinal{ - pixel_y = 32 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/freezerfloor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"hiS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) -"che" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +"hjm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"chg" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/area/desert_dam/exterior/valley/valley_hydro) +"hjq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"hjt" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"chh" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"chi" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"hju" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"hjD" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal8" }, -/obj/effect/decal/sand_overlay/sand2/corner2, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"chj" = ( +/area/desert_dam/exterior/landing_pad_one) +"hjF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"hjM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"hjN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"hjX" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/interior/dam_interior/control_room) +"hkb" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal11" }, -/obj/effect/decal/sand_overlay/sand2, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"chk" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/area/desert_dam/exterior/landing_pad_one) +"hkc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hkd" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/dorms/pool) +"hkm" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"chl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/caves/east_caves) -"chm" = ( -/obj/structure/platform{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"hko" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"hkC" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"hlg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"hlk" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"hlv" = ( +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/lobby) +"hlz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"hlA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"chn" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) -"cho" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"chp" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_south) -"chq" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"hlJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"hlR" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/red/southeast, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"hmb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"chr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"chs" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"hmk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"cht" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/telecomm/lz2_storage) +"hmm" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hmy" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"hmB" = ( +/turf/open/floor/coagulation/icon8_4, +/area/desert_dam/exterior/valley/valley_hydro) +"hmH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"hmL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security Checkpoint" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"chu" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"hmU" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"chv" = ( -/obj/structure/platform_decoration{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"chw" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"chx" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"hmX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Administration Hallway" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"hna" = ( /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"chy" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/exterior/valley/valley_hydro) +"hnf" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hnh" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"hnq" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/southwest) +"hnE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/telecomm/lz1_valley) +"hnJ" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"chz" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"hnK" = ( +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/baseballbat/metal{ + pixel_x = 5 }, -/obj/structure/platform{ +/obj/structure/surface/rack, +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"chA" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/dorms/pool) +"hnM" = ( /obj/structure/platform{ - dir = 1 + dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"hnX" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_south) -"chB" = ( +"hoc" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"hoi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"hor" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"how" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"hoJ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet10_8/west, +/area/desert_dam/building/administration/overseer_office) +"hoQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hoR" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"hoV" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"hpm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"hpx" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/platform{ - dir = 4 + dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"chC" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"hpy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical" }, -/obj/structure/platform, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"hpL" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"hpN" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"hpV" = ( +/obj/structure/cargo_container/grant/left, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"chD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/desert_dam/exterior/valley/valley_mining) +"hqc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"chF" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/temple) -"chG" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"chJ" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"chK" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"hql" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"hqz" = ( +/obj/structure/disposalpipe/junction, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"chN" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"hqB" = ( +/turf/open/floor/darkyellow2/southeast, +/area/desert_dam/building/substation/northeast) +"hqU" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 }, -/turf/open/floor/plating, -/area/desert_dam/building/substation/west) -"chQ" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"hrb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"chS" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"hrh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/telecomm/lz2_storage) +"hrj" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"hrp" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_1" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"chT" = ( -/obj/structure/platform{ +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"hrx" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_south) -"chU" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_south) -"chV" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"hrU" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/west_wing_hallway) +"hrZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"hsf" = ( /obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"chW" = ( -/obj/structure/platform_decoration{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) -"chX" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/east, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) -"chY" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) -"chZ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"cia" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"cib" = ( +"hsv" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"hsA" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"hsL" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) -"cic" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/substation/west) -"cid" = ( -/obj/structure/platform_decoration{ +/area/desert_dam/exterior/valley/valley_hydro) +"hsO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"hsP" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"hsW" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) -"cie" = ( -/obj/structure/platform{ +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"hsY" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"htd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_hydro) +"hty" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"htA" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/bar_valley_dam) +"htE" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"htL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ dir = 8 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"cif" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"cig" = ( -/obj/structure/platform{ +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"htP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"cih" = ( -/turf/open/floor/prison, -/area/desert_dam/building/substation/west) -"cii" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"cij" = ( -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cik" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"htS" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/bluecorner, +/area/desert_dam/interior/dam_interior/tech_storage) +"htX" = ( +/obj/item/stack/sheet/wood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_civilian) +"hui" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cil" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"huo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cim" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"hur" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"hus" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"hut" = ( +/obj/effect/landmark/static_comms/net_one, +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cin" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/telecomm/lz1_valley) +"huY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"hvg" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cio" = ( +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/smes_main) +"hvj" = ( +/obj/structure/stairs, /obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"hvs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"hvu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"hvD" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"hvF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/structure/largecrate/random/secure, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"hvH" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/holding) +"hvN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"hvP" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cip" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"hvR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_telecoms) +"hvU" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cir" = ( +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"hvX" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"hwp" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"hwz" = ( /obj/effect/decal/sand_overlay/sand2{ - dir = 6 + dir = 8 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cit" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"ciu" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"civ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_medical) -"ciw" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"hwE" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/briefcase, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/administration/overseer_office) +"hwK" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/central_tunnel) +"hwQ" = ( /obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/north_tunnel) -"cix" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/area/desert_dam/interior/dam_interior/central_tunnel) +"hwU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"ciy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"hxm" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/warnplate, +/area/desert_dam/exterior/valley/valley_telecoms) +"hxr" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"ciC" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/substation/west) -"ciD" = ( -/obj/structure/platform{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"hxH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/platform{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"hxO" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"ciE" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"hxZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Central" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hyd" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/warden) +"hyn" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"ciF" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/filtration/machine_96x96{ + icon_state = "disinfection" + }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_two/purification) +"hyr" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"hyG" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"hyH" = ( +/obj/structure/tunnel, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"ciG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"ciH" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/plating, -/area/desert_dam/building/substation/west) -"ciI" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/substation/west) -"ciK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"hyO" = ( +/obj/structure/toilet, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/security/prison) -"ciL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"hyP" = ( +/obj/effect/blocker/toxic_water, +/turf/open/floor/filtrationside/east, +/area/desert_dam/exterior/valley/valley_hydro) +"hyV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/deathrow) -"ciM" = ( -/turf/open/asphalt/cement/cement14, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/central_tunnel) -"ciN" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 +"hyZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"ciO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ciP" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_south) -"ciQ" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"ciR" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/chemistry) -"ciS" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/chemistry) -"ciT" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/hardpoint/locomotion/van_wheels{ + unacidable = 1 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/garage) +"hzf" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"hzi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ciU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"ciV" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/break_room) -"ciW" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/break_room) -"cjc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/east_caves) -"cjf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/desert_dam/interior/dam_interior/smes_backup) +"hzl" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"hzp" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_cargo) +"hzw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, /turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"hzC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"hzI" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"hzJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) -"cjg" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/desert_dam/building/substation/west) -"cjh" = ( -/obj/effect/decal/sand_overlay/sand1{ +"hzL" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"hAm" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cji" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"hAv" = ( +/obj/item/stack/sheet/mineral/sandstone{ + amount = 50 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"cjj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/obj/effect/decal/remains/xeno{ + pixel_x = 1; + pixel_y = 31 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cjk" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"hAB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_south) -"cjl" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"hAH" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"hAT" = ( +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/church) +"hBa" = ( +/obj/structure/machinery/optable, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"hBi" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_medical) +"hBx" = ( +/obj/structure/cargo_container/trijent/mid/alt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"hBJ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"cjm" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_one) +"hCe" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"hCf" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/south_valley_dam) +"hCh" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hCk" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) -"cjn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitepurplecorner/east, -/area/desert_dam/building/medical/chemistry) -"cjo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/turf/open/floor/whitepurplecorner/east, -/area/desert_dam/building/medical/chemistry) -"cjp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/packageWrap, -/obj/item/tool/hand_labeler, -/turf/open/floor/whitepurplecorner/east, -/area/desert_dam/building/medical/chemistry) -"cjq" = ( -/turf/open/floor/whitepurple/north, -/area/desert_dam/building/medical/chemistry) -"cjr" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/whitepurple/north, -/area/desert_dam/building/medical/chemistry) -"cjs" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/west_wing_hallway) -"cjt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical" - }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"cju" = ( -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/lobby) -"cjv" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/morgue) -"cjw" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"cjx" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"cjy" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/break_room) -"cjz" = ( -/obj/structure/machinery/light{ - dir = 1 +"hCo" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"hCv" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_civilian) +"hCG" = ( +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/dorms/hallway_westwing) +"hCQ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/office1) +"hCV" = ( /obj/structure/surface/table, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/medical/break_room) -"cjA" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/medical/break_room) -"cjB" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/medical/break_room) -"cjC" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/medical/break_room) -"cjD" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/building/medical/break_room) -"cjE" = ( +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"hCY" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"cjF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"cjG" = ( -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"cjH" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/exterior/telecomm/lz1_south) -"cjI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/prison, +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"hDc" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_medical) +"hDu" = ( +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/west) -"cjK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"hDS" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/loading) +"hDT" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cjO" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"cjP" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"hDU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"hDY" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/telecomm/lz2_storage) +"hDZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cjQ" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_south) -"cjR" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_south) -"cjS" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"hEb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"hEH" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"hEP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_labs) +"hEU" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northeast, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_south) -"cjT" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"cjU" = ( -/obj/structure/machinery/light{ - dir = 8 +"hFq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/whitepurple/north, -/area/desert_dam/building/medical/chemistry) -"cjV" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/chemistry) -"cjW" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/west_wing_hallway) -"cjX" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/west_wing_hallway) -"cjY" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/lobby) -"cjZ" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"hFx" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/deathrow) +"hFC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"cka" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/morgue) -"ckb" = ( -/obj/structure/morgue, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"ckc" = ( -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"ckd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/lobby) -"cke" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hFM" = ( /obj/structure/surface/table, -/obj/item/bodybag, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"ckf" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"hFR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_two) +"hGd" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river_mouth/southern) +"hGm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"hGp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/deathrow) +"hGq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"hGD" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hGI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"hGP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Restroom" + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"hGT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"hGU" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"hHh" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"hHj" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - pixel_y = 24; - start_charge = 0 + name = "\improper Visitation" }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"ckg" = ( -/obj/structure/morgue{ - dir = 8 +/turf/open/floor/dark2, +/area/desert_dam/building/security/southern_hallway) +"hHA" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_mining) +"hHD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"ckh" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"hHE" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"cki" = ( -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"ckj" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"ckk" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/medical/break_room) -"ckm" = ( +/area/desert_dam/building/water_treatment_one/lobby) +"hHJ" = ( +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/exterior/valley/valley_mining) +"hHK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_two) +"hHQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/smes_backup) -"ckn" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"hHR" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/staffroom) +"hIp" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"hIz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_south) -"cko" = ( /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"ckp" = ( +/area/desert_dam/exterior/valley/valley_telecoms) +"hID" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"hIE" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_cargo) -"ckq" = ( -/obj/effect/landmark/survivor_spawner, +"hIO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"hIU" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"hJi" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"ckr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cks" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"ckt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"hJu" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"hJz" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2; + icon_state = "pipe-u" }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cku" = ( -/obj/structure/showcase{ - icon_state = "bus" +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"hKq" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, -/turf/open/floor/greengrid, -/area/desert_dam/building/substation/west) -"ckv" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/west) -"ckw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 3" +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"hKA" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/drill, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"hKB" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"hKC" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_isolation) +"hKI" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/whiteyellowfull/east, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) -"ckx" = ( -/obj/structure/platform{ - dir = 8 +"hKX" = ( +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"hLc" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"cky" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"ckA" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"hLl" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/emergency_room) +"hLs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/chemistry) -"ckB" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/chemistry) -"ckC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/chemistry) -"ckD" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/chemistry) -"ckE" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"hLA" = ( +/turf/open/desert/desert_shore/shore_corner1/north, +/area/desert_dam/interior/caves/temple) +"hLD" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"hMe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"ckF" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"ckG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"hMi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/bible, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"hMs" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"hMK" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"hMR" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"ckH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/west_wing_hallway) +"hMY" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"ckI" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"hNl" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_civilian) +"hNt" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/disposals) +"hNA" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"hNB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"hND" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/northwest) +"hNS" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/lobby) +"hNU" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"ckJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"hNV" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/filtrationside/north, +/area/desert_dam/exterior/valley/valley_mining) +"hOr" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"ckL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ckM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"hOt" = ( +/obj/structure/computerframe, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"hOC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/west_wing_hallway) -"ckN" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"hOI" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"hOM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) -"ckO" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"ckP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"ckQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ckR" = ( +"hPb" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"hPc" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"ckS" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"hPe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"hPj" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/medical/break_room) -"ckT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ckU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"ckV" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"hPq" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ckW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/lobby) -"ckX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/lobby) -"ckY" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/breakroom) -"ckZ" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"hPB" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"cla" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"hPC" = ( +/obj/structure/morgue, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"hPE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/south_valley_dam) +"hPI" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/west) +"hPN" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_storage" }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"clb" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/breakroom) -"clc" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"cld" = ( -/obj/structure/platform{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"cle" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"hPP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"hPV" = ( +/turf/open/floor/warnwhite/southeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"hQi" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/control_room) +"hQA" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"hQE" = ( /obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"clf" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"hQI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"clg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_cargo) +"hQO" = ( /obj/structure/platform{ dir = 1 }, -/obj/structure/platform{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"hQW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"hRa" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"hRd" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_south) -"clh" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"cli" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"hRh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_south) -"clj" = ( -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/breakroom) -"clk" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"cll" = ( -/obj/structure/platform{ +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"hRm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"hRs" = ( +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"hRy" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hRE" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"hRM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"hRX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"hSb" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"hSd" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"hSu" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river_mouth/southern) +"hSy" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"hSz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"hSA" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"hTk" = ( +/turf/open/floor/filtrationside/northwest, +/area/desert_dam/exterior/valley/valley_hydro) +"hTs" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"hTu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"hTz" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"clm" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river_mouth/southern) -"cln" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river_mouth/southern) -"clo" = ( -/obj/structure/platform{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"hTC" = ( +/turf/open/desert/excavation/component7/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"hTH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"clp" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "upper_2" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"hTP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"hTX" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"clq" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Lab Maintenance" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"clr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"hTY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"hUb" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"hUc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"clt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"clw" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/building/substation/west) -"clz" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 3" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"hUq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"clA" = ( -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"clB" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow/covered, -/area/desert_dam/exterior/river/riverside_central_south) -"clC" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/bar_valley_dam) -"clD" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"hUD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/church) +"hUI" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/smes_main) +"hUQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"hVe" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellow/southeast, +/area/desert_dam/interior/dam_interior/break_room) +"hVg" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/north_tunnel) +"hVi" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"hVs" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/chigusa, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"hVU" = ( /obj/structure/platform{ - dir = 8 + dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_south) -"clE" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) -"clF" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +"hWk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"hWn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_mining) +"hWv" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"hWz" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"hWB" = ( +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northwest) +"hWN" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/conveyor_switch{ + id = "cargo_landing" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"clG" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Office" +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"hWQ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/chemistry) -"clH" = ( -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/chemistry) -"clI" = ( -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"clJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"hXd" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"clK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"clL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Chemistry" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"hXw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"clM" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"clN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"clO" = ( -/obj/structure/surface/table, -/obj/item/device/autopsy_scanner, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"clP" = ( -/obj/structure/machinery/optable, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"clQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) +"hXy" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"hXD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/medical/break_room) -"clR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"hXY" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"clS" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"hYh" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_central_south) +"hYl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/lobby) -"clT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"hYn" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"hYu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"hYy" = ( +/turf/open/desert/excavation/component9/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"hYW" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/garage) +"hYZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/east, -/area/desert_dam/interior/dam_interior/lobby) -"clU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"clV" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"hZb" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_civilian) +"hZf" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"hZg" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"hZl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"hZU" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"clW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"clX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"clY" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"clZ" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cma" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"iae" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"iap" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cmb" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"iav" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "green-new-bridge" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cmc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"cmf" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/hanger) -"cmg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"cmh" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/exterior/valley/valley_medical) +"iaw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/loading) +"iaV" = ( +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/south_tunnel) +"iaX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"ibl" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"ibs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"ibt" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"ibx" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/platform{ +/turf/open/floor/prison/greencorner/north, +/area/desert_dam/building/dorms/hallway_northwing) +"ibE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"ibZ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"cmi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/desert_dam/exterior/valley/valley_hydro) +"ice" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cmj" = ( -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cmk" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/armory) +"ick" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cml" = ( -/turf/open/floor/greengrid, -/area/desert_dam/building/substation/west) -"cmm" = ( -/obj/structure/window/framed/bunker/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/substation/west) -"cmp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cmr" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"icy" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) -"cms" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"cmt" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/chemistry) -"cmu" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/chemistry) -"cmv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/pillbottles, -/obj/structure/disposalpipe/segment, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"cmw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"cmx" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/west_wing_hallway) -"cmB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"icB" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"icE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"icL" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northeast) +"icM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"cmC" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/medical/break_room) -"cmD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"cmE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"cmF" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"icV" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"cmG" = ( -/turf/open/floor/carpet, -/area/desert_dam/building/warehouse/breakroom) -"cmH" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cmI" = ( -/obj/structure/flora/bush/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cmJ" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cmK" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cmL" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/southwest) +"icX" = ( /obj/structure/surface/table/woodentable, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/carpet, -/area/desert_dam/building/warehouse/breakroom) -"cmM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_civilian) -"cmN" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"cmO" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/warehouse) -"cmP" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"idg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"idj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/trackimp, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"idp" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/hanger) +"idz" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cmQ" = ( -/obj/structure/platform{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"idP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_labs) +"idX" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"idY" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"cmR" = ( -/turf/open/desert/dirt/dirt2, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"cmS" = ( -/turf/open/floor/prison, +"ieb" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/warehouse) -"cmU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_civilian) -"cmV" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/breakroom) -"cmW" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cmX" = ( +"ieB" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"ieW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/garage) +"ifp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"ifq" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/exterior/valley/valley_wilderness) +"ifu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire{ + pixel_x = 3 + }, +/obj/item/tool/extinguisher{ + pixel_x = -10 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"ifL" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"ifT" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"iga" = ( +/obj/structure/surface/table, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"cmY" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/breakroom) -"cmZ" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/building/substation/west) -"cna" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/area/desert_dam/exterior/valley/valley_crashsite) +"igb" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"igf" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"cnb" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/warehouse/breakroom) -"cnc" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"cne" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"igl" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"igm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"igG" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"cnf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/chapel, +/area/desert_dam/building/church) +"igT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; - name = "\improper Foremans Office" + name = "\improper Toilet Unit" }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"igU" = ( +/turf/open/desert/excavation/component4/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"ihc" = ( +/obj/structure/closet/athletic_mixed, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"cng" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cni" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"ihd" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"ihf" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"ihg" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/warden) +"ihz" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"ihP" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"ihX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"iif" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"iih" = ( /turf/open/floor/prison/greencorner/north, /area/desert_dam/building/substation/west) -"cnp" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"iii" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_central_north) +"iit" = ( +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"iiC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"cnq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"iiG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"iiR" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"iiY" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_room) +"iiZ" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/north_tunnel) +"ijd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ijw" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_labs) +"ijC" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/valley/valley_labs) +"ijD" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"ijG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"ijP" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/carpet, -/area/desert_dam/building/warehouse/breakroom) -"cnr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/wood, +/area/desert_dam/building/security/southern_hallway) +"ijT" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"ijW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"cnu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/carpet, -/area/desert_dam/building/warehouse/breakroom) -"cnv" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"ijX" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cnw" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"ikf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"ikt" = ( /obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/lobby) -"cnx" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cny" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cnz" = ( -/obj/structure/bed/chair/comfy/beige{ +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"ikx" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/floor/carpet, -/area/desert_dam/building/warehouse/breakroom) -"cnA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"iky" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cnB" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"ikz" = ( +/obj/structure/morgue{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_south) -"cnC" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_south) -"cnD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"ikB" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"ikK" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/red/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"ikS" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/bar/bar) +"ila" = ( +/obj/structure/stairs{ + dir = 8 }, +/obj/structure/platform, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"cnE" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"cnF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/desert_dam/exterior/valley/valley_wilderness) +"ild" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"cnG" = ( -/turf/open/floor/whitepurple, -/area/desert_dam/building/medical/chemistry) -"cnH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"ilr" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"ilx" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"ilC" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"ilM" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/whitepurple, -/area/desert_dam/building/medical/chemistry) -"cnI" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"cnJ" = ( -/obj/structure/machinery/smartfridge/chemistry, -/turf/closed/wall, -/area/desert_dam/building/medical/chemistry) -"cnK" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"ilX" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/west_wing_hallway) -"cnL" = ( /obj/structure/machinery/light, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"cnN" = ( -/obj/structure/toilet{ - dir = 1 - }, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"cnO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrown2/southwest, -/area/desert_dam/building/medical/break_room) -"cnP" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/medical/break_room) -"cnQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"cnR" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cnS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/landing/console2) -"cnT" = ( +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"imf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "W" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cnU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"imj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/south_valley_dam) +"imp" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"imx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"imJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"imN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"imR" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/exterior/valley/valley_wilderness) +"inv" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_one) +"inS" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/desert_dam/building/substation/northwest) +"iod" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"ioo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/east_caves) +"iox" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"ioA" = ( +/turf/open/gm/river/desert/shallow, +/area/desert_dam/interior/caves/temple) +"ioS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"ioW" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"ipc" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_civilian) -"cnV" = ( +"ipp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet10_8/west, +/area/desert_dam/building/church) +"ipC" = ( +/obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cnW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"cnX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/prison/darkpurple2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ipQ" = ( +/obj/docking_port/stationary/trijent_elevator/empty{ + id = "trijent_omega"; + name = "Omega Elevator"; + airlock_exit = "east"; + airlock_area = /area/shuttle/trijent_shuttle/omega; + elevator_network = "B" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"cnZ" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"coa" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"cob" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"coc" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"cod" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"coe" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison/darkbrown2/northeast, -/area/desert_dam/building/warehouse/warehouse) -"cof" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Lab Maintenance" +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/omega) +"iqf" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/warehouse/breakroom) +"iqn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cog" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow/covered, -/area/desert_dam/exterior/river/riverside_central_south) -"coh" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"iqs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/liquidfood, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"iqy" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_mining) +"iqA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"iqC" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/virology_isolation) +"iqG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"iqK" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating, +/area/desert_dam/building/substation/northwest) +"irk" = ( +/obj/item/seeds/soyaseed, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"irn" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/warehouse/breakroom) -"coj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"cok" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"col" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/largecrate/random/barrel/green, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"iro" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"iru" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"irP" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/virology_isolation) +"isc" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"com" = ( -/obj/effect/blocker/toxic_water, -/turf/open/floor/filtrationside/east, -/area/desert_dam/exterior/valley/valley_hydro) -"con" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_east) +"ish" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"isw" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"isy" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"coo" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river_mouth/southern) -"cop" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river_mouth/southern) -"cos" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/desert_dam/building/medical/west_wing_hallway) +"isD" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/lobby) +"isJ" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"isR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"isT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) -"cou" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/warehouse/breakroom) -"cov" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"isX" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cox" = ( -/obj/structure/prop/dam/torii, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"coy" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"coz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"coA" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/desert_dam/building/warehouse/breakroom) -"coB" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison/darkbrown2/west, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"isY" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"ito" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"itr" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"itD" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"itF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) -"coC" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/prison, +"itO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/landmark/good_item, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) -"coE" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/bar_valley_dam) -"coF" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_south) -"coG" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"iub" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"iuh" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_medical) -"coH" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"iut" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/desert_dam/building/mining/workshop_foyer) +"iuB" = ( +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"iuH" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"iuN" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"iva" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"ivd" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"coI" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"coJ" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"coK" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"ivi" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_medical) -"coL" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/item/storage/toolbox/emergency, +/obj/item/circuitboard/firealarm, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ivm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/telecomm/lz2_storage) +"ivr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"coM" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitered, -/area/desert_dam/building/medical/chemistry) -"coN" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/whitered, -/area/desert_dam/building/medical/chemistry) -"coO" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"coP" = ( -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"coQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"coR" = ( -/obj/structure/bed/stool, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"coS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 4 - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"coT" = ( +/area/desert_dam/exterior/valley/valley_hydro) +"ivu" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/valley/valley_labs) +"ivv" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"ivP" = ( +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/bar/bar) +"ivU" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"iwg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Morgue" @@ -28654,1442 +24626,1806 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) -"coU" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/break_room) -"coV" = ( +"iwl" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"iwN" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"iwX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"ixk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"ixv" = ( +/turf/open/floor/prison/bluecorner, +/area/desert_dam/building/administration/hallway) +"ixV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"iye" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/valley/valley_labs) +"iym" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/valley/valley_labs) +"iys" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"iyQ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_east) +"izu" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_backup) -"coW" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"coX" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"coY" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"coZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/area/desert_dam/interior/dam_interior/garage) +"izz" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_wing) +"izI" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"izY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/carpet/edge/north, +/area/desert_dam/building/administration/meetingrooom) +"iAb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"iAf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cpa" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cpb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"cpc" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/warehouse/warehouse) -"cpd" = ( -/obj/structure/platform_decoration, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river_mouth/southern) -"cpf" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"cpg" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/building/warehouse/warehouse) -"cph" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/warehouse/warehouse) -"cpi" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/desert_dam/building/warehouse/warehouse) -"cpj" = ( +/area/desert_dam/exterior/valley/valley_medical) +"iAl" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/carpet6_2/west, -/area/desert_dam/building/bar/bar) -"cpm" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"iAs" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"iAx" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"iAz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"iBi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/greengrid, -/area/desert_dam/building/substation/west) -"cpn" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"iBB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/bar_valley_dam) +"iBJ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/break_room) +"iBV" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"iCc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"iCh" = ( +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"iCm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"iCG" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cpp" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"iCH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/blue{ + pixel_x = -3 }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/building/warehouse/breakroom) -"cpq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet14_10/west, -/area/desert_dam/building/bar/bar) -"cps" = ( +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/tool/stamp, +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"iCT" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"iDj" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_east) +"iDq" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/warehouse/breakroom) -"cpu" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/north_valley_dam) -"cpv" = ( -/obj/structure/platform{ +/obj/item/reagent_container/food/snacks/chips, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"iDD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_south) -"cpw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"iDL" = ( +/obj/item/shard/shrapnel, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"iEd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) -"cpx" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/office1) -"cpy" = ( -/obj/structure/closet, -/turf/open/floor/prison/whitered/northeast, -/area/desert_dam/building/medical/office1) -"cpz" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/office2) -"cpA" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"cpB" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"cpC" = ( -/obj/structure/machinery/reagentgrinder, -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"cpD" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"cpE" = ( -/obj/structure/machinery/power/port_gen/pacman, +"iEe" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/tool/hand_labeler, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"iEo" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/virology_wing) +"iEx" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"iEy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/interior/dam_interior/smes_backup) -"cpF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_hydro) +"iEI" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river_mouth/southern) +"iEW" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river_mouth/southern) +"iEZ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"iFd" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/workshop) +"iFk" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"iFz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy/tank{ + icon_state = "jarshelf_7" + }, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"iFB" = ( +/obj/item/reagent_container/hypospray, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"iGa" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"iGc" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/armory) +"iGd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"iGg" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/blue/southeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"iGt" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Personal Computer" + }, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"iGV" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"iHj" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"iHM" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"iIc" = ( +/obj/structure/tunnel, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/east_caves) +"iIo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"cpG" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/west_wing_hallway) -"cpH" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/north_wing_hallway) -"cpI" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"cpJ" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/north_wing_hallway) -"cpL" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/north_wing_hallway) -"cpM" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"iIv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"cpN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"iIK" = ( /obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; + dir = 8; + pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"cpP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) -"cpQ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"iJa" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"cpR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"iJo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Armoury" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cpS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Telecommunications" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"iJv" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) +"iJC" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, -/area/desert_dam/building/substation/west) -"cpT" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cpU" = ( +/area/desert_dam/exterior/valley/south_valley_dam) +"iJG" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"iJH" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"iKf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"iKl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"iKm" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_two) +"iKr" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"cpV" = ( -/obj/structure/platform{ +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) +"iKw" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/virology_wing) +"iKE" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"iLg" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"iLh" = ( +/obj/structure/bedsheetbin, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_central_south) -"cpW" = ( +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"iLi" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"iLn" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river_mouth/southern) +"iLA" = ( +/turf/open/floor/darkredcorners2/east, +/area/desert_dam/building/administration/lobby) +"iLC" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 6 + dir = 5 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"cpX" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/exterior/valley/valley_medical) +"iLL" = ( +/turf/open/floor/filtrationside/northeast, +/area/desert_dam/exterior/valley/valley_hydro) +"iLM" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"iLW" = ( +/obj/structure/machinery/light, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"iMb" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"iMu" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_civilian) -"cpY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"iMH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"cpZ" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_civilian) -"cqa" = ( -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"cqb" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/warehouse/breakroom) -"cqc" = ( -/obj/structure/machinery/light, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"iMZ" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/valley/valley_labs) +"iNd" = ( /turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/warehouse/breakroom) -"cqd" = ( -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/substation/west) -"cqf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"cqg" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/warehouse/breakroom) -"cqh" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/warehouse/breakroom) -"cqj" = ( -/obj/structure/surface/table, -/obj/item/restraint/handcuffs, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/warden) -"cqk" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/warden) -"cql" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"cqm" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/head/beret/sec/warden, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/warden) -"cqn" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cqo" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/area/desert_dam/interior/dam_interior/smes_main) +"iNf" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/staffroom) +"iNF" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/interior/caves/temple) +"iNK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"cqq" = ( -/obj/structure/flora/grass/desert/lightgrass_6, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"iNT" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"iOa" = ( +/obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"cqr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 2 - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"cqt" = ( -/obj/structure/machinery/light{ - dir = 8 +"iOi" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"iOj" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office2) +"iOn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/garage) +"iOs" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"cqu" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqv" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"iOM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"iOT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"cqw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/south_valley_dam) +"iOY" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"iPa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"iPr" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"iPu" = ( +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/west_wing_hallway) -"cqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iPB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"iQk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"cqy" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"iQm" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"iQs" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"iQy" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"iQA" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"iQD" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"iQE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"iQN" = ( +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/north_wing_hallway) -"cqC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/lobby) -"cqE" = ( -/obj/structure/pipes/vents/pump, +"iQO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Hallway" + }, /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqF" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/glasses/welding, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqG" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"cqH" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"iQT" = ( +/obj/structure/machinery/power/apc{ dir = 1; - name = "\improper Flight Control" + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cqI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder, -/obj/item/device/assembly/signaller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqJ" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"iRe" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqK" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cqQ" = ( -/obj/structure/cargo_container/trijent/left/alt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cqS" = ( +/area/desert_dam/interior/dam_interior/control_room) +"iRf" = ( +/obj/effect/blocker/toxic_water/Group_2/delay, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"iRk" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_wilderness) -"cqT" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cqU" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_civilian) -"cra" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_telecoms) +"iRs" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"crb" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"crc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_one/lobby) +"iRu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"iRM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"crd" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"crg" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_x = 3; - pixel_y = 2 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"iSo" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_catwalk" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"crh" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cri" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"crj" = ( -/obj/structure/showcase{ - icon_state = "broadcaster_send" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"iSr" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/greengrid, -/area/desert_dam/building/substation/west) -"crk" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/substation/west) -"crl" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio{ - pixel_x = 3; - pixel_y = 2 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"iSw" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"iSz" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/west) -"crm" = ( -/obj/structure/platform{ +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"iSG" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"iSJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/garage) +"iSO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_two/lobby) +"iTb" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"crn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/yellowfull, +/area/desert_dam/building/hydroponics/hydroponics) +"iTp" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"iTr" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"iTX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"iTY" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"iUj" = ( +/obj/structure/bed, +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cro" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security Checkpoint" +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office2) +"iUk" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"iUp" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/prison, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"crq" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_cargo) -"crr" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_cargo) -"cru" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"crv" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"crw" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/disposals) +"iUt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"crx" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"crz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"iUu" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"iUN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/bar/bar) +"iVb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"crA" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/lobby) -"crB" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/bar_valley_dam) +"iVi" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"crC" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/lobby) -"crD" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"crE" = ( -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/lobby) -"crF" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"crG" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"iVl" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"iVn" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"crH" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/lobby) -"crI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/lobby) -"crK" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/west_wing_hallway) -"crL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Hallway" - }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"crM" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"crN" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"iVq" = ( +/obj/structure/machinery/optable, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"iVt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/interior/dam_interior/smes_backup) -"crO" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/virology_isolation) +"iVC" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitered, +/area/desert_dam/building/medical/primary_storage) +"iVF" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement/cement3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) -"crP" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"iVN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"iVT" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/north_wing_hallway) -"crQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/workshop) -"crR" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"crS" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"crV" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/desert_dam/building/mining/workshop_foyer) -"crW" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"iVZ" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal4" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"crX" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/area/desert_dam/exterior/valley/valley_hydro) +"iWb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/alienjar, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"iWd" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"iWh" = ( +/obj/structure/kitchenspike, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"iWm" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"iWF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"crY" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"iWK" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"iWR" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"csa" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"csb" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/exterior/telecomm/lz1_south) +"iWU" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_northwest) +"iWX" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/treatment_room) +"iWZ" = ( +/turf/open/floor/coagulation/icon8_7_2, +/area/desert_dam/exterior/valley/valley_hydro) +"iXg" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"csc" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cse" = ( +/area/desert_dam/exterior/landing_pad_one) +"iXE" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"iXG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"iXH" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"iXO" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/substation/west) +"iXW" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/cheesie, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"iYg" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/telecomm/lz2_storage) +"iYj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/workshop) -"csf" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_civilian) -"csg" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"iYm" = ( /obj/structure/platform{ - dir = 4 + dir = 1 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"csh" = ( -/turf/open/floor/darkyellow2/southwest, -/area/desert_dam/building/security/prison) -"csi" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_civilian) -"csj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"iYt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"iYB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/breakroom) +"iYE" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"iYP" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"iZb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"iZd" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"csl" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"iZA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"iZB" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"iZE" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"iZI" = ( +/turf/open/floor/warnwhite/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"iZL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/desert_dam/building/security/prison) -"csm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"iZV" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/treatment_room) +"jad" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"jam" = ( +/turf/open/floor/whitegreencorner/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"jbs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"jbv" = ( +/turf/open/floor/coagulation/icon8_7_2, +/area/desert_dam/exterior/valley/valley_mining) +"jbD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"jbM" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jbQ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jbS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"jcm" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Isolation" + dir = 1; + name = "\improper Security" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"csn" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"jcA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jcC" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river_mouth/southern) +"jcE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cso" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper CMO's Officer" }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/CMO) +"jcI" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"jcK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/telecomm/lz2_storage) +"jcM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/desert_dam/interior/dam_interior/hanger) +"jcU" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_hydro) +"jcW" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) -"csp" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +"jcY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/poddoor/shutters{ + dir = 2 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"jdk" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/west) -"css" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/west) -"cst" = ( -/obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/west) -"csu" = ( -/obj/structure/stairs, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"csw" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/substation/west) -"csx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/area/desert_dam/building/mining/workshop) +"jdn" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"jds" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"csy" = ( -/turf/open/floor/carpet14_10/west, -/area/desert_dam/building/bar/bar) -"csz" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"csA" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_cargo) -"csB" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"csC" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"csD" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_cargo) -"csE" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"csF" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"jdQ" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/red, +/area/desert_dam/building/water_treatment_two/lobby) +"jdR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"csG" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/southern_hallway) +"jdS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_cargo) -"csH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" - }, -/turf/open/asphalt, +"jdT" = ( +/obj/structure/machinery/light, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"jdV" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river_mouth/southern) +"jdX" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"jez" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) -"csI" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/lobby) -"csJ" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/lobby) -"csK" = ( -/obj/structure/pipes/vents/pump{ +"jeR" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"jeV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"csL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Engineering Hallway" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"csM" = ( -/obj/effect/spawner/random/toolbox, +/area/desert_dam/interior/dam_interior/control_room) +"jeZ" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"jfb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"jfe" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"jfh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"jfA" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"jfE" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"jfH" = ( /obj/structure/surface/table/reinforced, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"jfJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"csN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"csO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"jfM" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"jfN" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"jfW" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/west_wing_hallway) -"csP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"jgn" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"csQ" = ( -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/west_wing_hallway) -"csR" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hanger) +"jgu" = ( +/obj/structure/largecrate/random/secure, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"jgL" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, /obj/structure/machinery/light, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"csS" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/north_wing_hallway) -"csT" = ( -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/north_wing_hallway) -"csU" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/north_wing_hallway) -"csV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/north_wing_hallway) -"csW" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Execution" - }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"csX" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/west) +"jhc" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) -"csY" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) -"csZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Workshop" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"jhd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/workshop) -"cta" = ( -/obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"ctb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ctc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"jhe" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"jhk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ctd" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"cte" = ( -/obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/west) -"ctf" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"jhn" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ctg" = ( -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cth" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/west) -"cti" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ctj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctl" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"jhz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"jhK" = ( +/obj/structure/bed, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"jia" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/interior/caves/central_caves) +"jie" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"jio" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctm" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_civilian) -"ctn" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"cto" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"ctp" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_civilian) -"ctq" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"jiu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"jiC" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"jiH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_civilian) -"cts" = ( -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctw" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/west) -"ctz" = ( -/obj/structure/platform{ +"jiN" = ( +/obj/structure/barricade/sandbags{ dir = 1 }, -/obj/structure/platform{ +/obj/structure/barricade/sandbags{ dir = 4 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) -"ctA" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/west) -"ctB" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"jiO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/substation/west) -"ctD" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"jiR" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"jjl" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/treatment_room) +"jjp" = ( /obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"jjA" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctE" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"jjC" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/disposals) +"jjF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"ctF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/desert_dam/exterior/valley/valley_crashsite) +"jjH" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"jkb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"jkw" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" }, -/turf/open/asphalt, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"jkE" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"jkV" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/substation/northeast) +"jkY" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jle" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"jlP" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"ctH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +"jlU" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"jlW" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"jlY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"jmd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"ctK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"jmf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"jmn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"jnw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"ctL" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_medical) -"ctM" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"ctN" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"jnI" = ( +/obj/structure/toilet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"jnT" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/head/beret/sec/warden, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"jnV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) -"ctO" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"ctP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/area/desert_dam/exterior/landing_pad_two) +"jof" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/exterior/valley/valley_mining) +"joy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ctQ" = ( -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/lobby) -"ctR" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/lobby) -"ctS" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"ctT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Lobby" - }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"ctV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"joC" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"ctW" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/primary_storage) -"ctX" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/primary_storage) -"ctY" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/surgury_observation) -"ctZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Observation" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"joF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgury_observation) -"cua" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgury_observation) -"cub" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cuc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Hallway" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cud" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"cue" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/CMO) -"cuf" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/CMO) -"cug" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/CMO) -"cuh" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/north_wing_hallway) -"cuj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"joI" = ( +/obj/structure/stairs{ dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"joQ" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_wilderness) +"joU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cul" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jpb" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"jpe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"jpl" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cum" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"jpr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"jpy" = ( +/turf/open/floor/coagulation/icon0_4, +/area/desert_dam/exterior/valley/valley_mining) +"jpE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Research Substation" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/substation/northeast) +"jpO" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_mining) +"jpQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"jpT" = ( +/turf/open/desert/excavation/component7/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"jpZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"jqj" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"jqK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"jqQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cun" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"jqW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuo" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cup" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"jri" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_central_south) +"jrm" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"jrx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"jrJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"cuq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cur" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cus" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"jrV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cut" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light{ +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"jrW" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/mining/workshop_foyer) +"jso" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"jsu" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuw" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_civilian) -"cux" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_civilian) -"cuy" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/desert_transition_edge1/west, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) -"cuz" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, +"jsv" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cuA" = ( -/turf/open/floor/prison/greencorner/west, -/area/desert_dam/building/substation/west) -"cuB" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/desert_dam/building/substation/west) -"cuH" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_cargo) -"cuI" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_medical) +"jsB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cuJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"jsN" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cuK" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/landmark/nightmare{ + insert_tag = "purple-south-bridge" }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cuL" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"jsO" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"jsS" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"cuM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"jui" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/garage) +"jup" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cuN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"jut" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"jux" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"juA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"juK" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"jve" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cuO" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cuP" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_telecoms) +"jvg" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cuQ" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) -"cuR" = ( -/obj/structure/platform{ +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"jvl" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"jvs" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/obj/structure/platform{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jvt" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"jvH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/item/clothing/head/soft/ferret, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_central_south) -"cuS" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"jvM" = ( +/obj/structure/disposalpipe/junction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"jwm" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"jwq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Water Treatment" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"jwB" = ( +/obj/structure/fence, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/east_caves) +"jwG" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/hanger) +"jwS" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"jxb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"jxe" = ( +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"jxp" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) -"cuT" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +"jxu" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"jxw" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"jxz" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"jxE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"cuU" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"cuV" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/lobby) -"cuW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/smes_backup) -"cuX" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"jxH" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"jya" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"jyd" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"jyj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"jyn" = ( +/turf/open/floor/darkyellowcorners2, +/area/desert_dam/building/substation/northwest) +"jyA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"jyI" = ( /obj/structure/surface/table/reinforced, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"cuY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/primary_storage) -"cuZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/primary_storage) -"cva" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison/whitered/northeast, -/area/desert_dam/building/medical/primary_storage) -"cvb" = ( -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"cvc" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"cvd" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"jyM" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"jzb" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"cve" = ( +/turf/open/floor/whiteyellow/northwest, +/area/desert_dam/interior/dam_interior/break_room) +"jzm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"jzt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"jzx" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"jzy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"jzz" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"jzF" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"jzU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"jzX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 2" + }, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"jAd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"jAu" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"jAx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jAz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"jAV" = ( +/turf/open/floor/prison/darkpurplecorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"jBa" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/landing_pad_one) +"jBd" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"jBl" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"jBy" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"jBM" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_south) +"jBQ" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"jCc" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_north) +"jCd" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"jCg" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/virology_wing) +"jCj" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/interior/caves/central_caves) +"jCJ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall, +/area/desert_dam/building/dorms/hallway_northwing) +"jCN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"jCR" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cvf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"cvg" = ( -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"cvh" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cvi" = ( -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cvj" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"jCS" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"jDh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ dir = 1; @@ -30097,8925 +26433,10656 @@ }, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) -"cvk" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cvl" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cvm" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +"jDn" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"jEd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cvn" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_civilian) -"cvo" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cvp" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"jEl" = ( +/turf/open/floor/darkyellowcorners2, +/area/desert_dam/building/security/prison) +"jEA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) -"cvq" = ( -/turf/open/floor/carpet10_8/west, -/area/desert_dam/building/bar/bar) -"cvr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cvs" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, +"jEI" = ( +/obj/effect/vehicle_spawner/van/decrepit, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cvt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cvu" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cvv" = ( -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cvw" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"cvx" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_civilian) -"cvz" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cvA" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cvB" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/building/substation/west) -"cvC" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/obj/structure/machinery/light, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"jEQ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"jET" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/treatment_room) +"jEU" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/turf/open/floor/prison/whitered/southeast, +/area/desert_dam/building/medical/primary_storage) +"jFd" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/blue/southeast, +/area/desert_dam/building/administration/control_room) +"jFf" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"jFr" = ( +/obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/substation/west) -"cvD" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/red/southeast, +/area/desert_dam/building/water_treatment_two/lobby) +"jFv" = ( +/turf/open/desert/excavation/component8/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"jFY" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jGg" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"jGp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"jGx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteblue/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"jGH" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"jGM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"jGP" = ( +/turf/open/desert/excavation/component1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"jHk" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"jHp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"jHE" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"cvE" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"jHK" = ( /obj/structure/surface/table, -/obj/item/device/encryptionkey, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/substation/west) -"cvF" = ( -/turf/open/floor/prison/greencorner, -/area/desert_dam/building/substation/west) -"cvG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"jHR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cvH" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/bar_valley_dam) -"cvI" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +"jHT" = ( +/turf/open/floor/filtrationside/southwest, +/area/desert_dam/exterior/valley/valley_mining) +"jIt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cvJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"jIF" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/prop/dam/truck/damaged, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"jIH" = ( +/obj/structure/window/framed/colony, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"jIQ" = ( +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"jIZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cvK" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_south) -"cvL" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_south) -"cvM" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/lobby) -"cvN" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jJa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"jJs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"jJw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/lobby) -"cvO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hangar_storage) +"jJE" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"jJM" = ( +/turf/open/desert/excavation/component8/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"jJO" = ( +/turf/open/floor/filtrationside/southeast, +/area/desert_dam/exterior/valley/valley_hydro) +"jJV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"cvP" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"jKj" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"jKl" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"jKD" = ( +/turf/open/desert/excavation/component8/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"jKE" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"jKL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"jKX" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_telecoms) +"jLd" = ( +/obj/structure/pipes/standard/simple/hidden{ + dir = 4 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"cvQ" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/window/reinforced{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"jLe" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 + }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_two/purification) +"jLg" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) +"jLi" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/warehouse/breakroom) +"jLt" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"jLC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"cvS" = ( -/obj/structure/cargo_container/trijent/mid/alt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cvT" = ( -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/primary_storage) -"cvU" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"cvV" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"jLD" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"jLG" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"cvW" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"cvZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Observation" +"jLK" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgury_observation) -"cwb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"jLY" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cwc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cwd" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/east_wing_hallway) -"cwf" = ( -/obj/structure/bed/chair/office/light{ +/area/desert_dam/building/hydroponics/hydroponics_loading) +"jMa" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/landing_pad_one) +"jMg" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/south_valley_dam) +"jMj" = ( +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"jMt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cwg" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"jMz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cwj" = ( -/obj/structure/cargo_container/trijent/right/alt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cwk" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/landing_pad_one) +"jMF" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"jMH" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"jML" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"jMO" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/substation/west) -"cwl" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_telecoms) -"cwm" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_telecoms) -"cwn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cwo" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_civilian) -"cwp" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"cwq" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"jMT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cwr" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" +/area/desert_dam/exterior/valley/bar_valley_dam) +"jMV" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"jNf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"jNB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"jNC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"jNF" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"jNQ" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"jNV" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/virology_wing) +"jOd" = ( +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/hanger) -"cws" = ( -/obj/structure/disposalpipe/segment{ +"jOm" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"jOv" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/south_valley_dam) +"jOy" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cwu" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"jOz" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"jOR" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"jPo" = ( +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"cww" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/west) -"cwx" = ( -/turf/open/floor/prison/darkyellowcorners2/southwest, -/area/desert_dam/building/substation/west) -"cwy" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +"jPE" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/caves/central_caves) +"jPG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/substation/west) -"cwz" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"jPK" = ( /turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_cargo) -"cwA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/area/desert_dam/exterior/landing_pad_one) +"jPL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/break_room) +"jQc" = ( +/obj/structure/sink/kitchen, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"jQq" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cwB" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"cwC" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"cwD" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/folder/black_random{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"jQO" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"jQW" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"jRc" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cwE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"jRg" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"jRu" = ( +/turf/open/desert/excavation/component8/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"jRZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cwF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"jSp" = ( +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"jSq" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"jSB" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"jSH" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"jSK" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_catwalk" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"jSS" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cwG" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cwH" = ( -/obj/structure/bed/chair{ +/area/desert_dam/exterior/valley/bar_valley_dam) +"jTp" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/interior/caves/central_caves) +"jTy" = ( +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"jTA" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"jTB" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"jTG" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/lobby) -"cwI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jTU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"jTX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"cwJ" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"jTZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"jUn" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office2) +"jUv" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"cwK" = ( -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"cwL" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"cwM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/pillbottles, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"cwN" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/primary_storage) -"cwO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"cwP" = ( +/area/desert_dam/building/medical/office2) +"jUB" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/caves/east_caves) +"jUP" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher/mini, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"jUU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"jUX" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"jVg" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"cwQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" + dir = 4 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"cwR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"jVn" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"cwS" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cwT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cwU" = ( -/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"jVu" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"jVv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cwV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"jVA" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"jVO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"jVP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"jVS" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/central_caves) +"jWu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cwW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"jWV" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper CMO's Officer" +/turf/open/floor/carpet/edge/west, +/area/desert_dam/building/administration/meetingrooom) +"jXp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"jXu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/CMO) -"cwX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"jXv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"jXw" = ( +/turf/open/desert/excavation/component3/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"jXC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper SMES" }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cwY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"jXS" = ( /obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"jYh" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"jYv" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cxb" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cxc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" + name = "\improper Research Office" }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jYL" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cxe" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cxf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cxg" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cxh" = ( -/obj/structure/bed/chair/wood/normal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cxi" = ( -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cxj" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"jYN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"jYY" = ( +/turf/open/floor/whitegreen/east, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"jZp" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"jZA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand2, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"cxk" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_telecoms) -"cxl" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/building/dorms/restroom) +"jZL" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"cxm" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_civilian) -"cxn" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_telecoms) -"cxo" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/telecomm/lz1_south) +"jZR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/substation/west) -"cxq" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"jZY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"kac" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"cxr" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"kah" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) +"kay" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"cxt" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"kaJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"kaM" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/exterior/valley/valley_wilderness) +"kaS" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"kaW" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"kbg" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"kbh" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"kbo" = ( +/obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cxu" = ( -/obj/structure/platform{ - dir = 1 +/area/desert_dam/exterior/valley/bar_valley_dam) +"kbB" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"kbJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cxv" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"kbS" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"kbT" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"kcs" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/desert_dam/building/warehouse/loading) +"kcF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"kcH" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/exterior/telecomm/lz2_containers) +"kcK" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"kcL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"kcP" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"kdk" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"kdv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"kdC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) -"cxw" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cxx" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cxy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"keP" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"keT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"kfg" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"kfj" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"kfD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"kfI" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cxz" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"kfJ" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) -"cxA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"kgh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"kgm" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"cxB" = ( -/turf/open/floor/prison/whiteredcorner/east, -/area/desert_dam/building/medical/primary_storage) -"cxC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"kgq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Workshop" + dir = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/workshop) -"cxD" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/kelotane{ - pixel_x = -7 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"kgy" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"kgA" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_cargo) +"kgL" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/obj/item/storage/pill_bottle/dexalin, -/obj/item/storage/pill_bottle/inaprovaline{ - pixel_x = 7 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"kgM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"cxE" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/surgury_observation) -"cxG" = ( -/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"kgT" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/darkred2/northeast, +/area/desert_dam/building/administration/lobby) +"kgU" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"cxH" = ( -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/east_wing_hallway) -"cxI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cxJ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/west) -"cxK" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"cxL" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"cxN" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/west) -"cxP" = ( +"kgX" = ( /obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river_mouth/southern) +"khK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"khY" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/obj/structure/platform{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"khZ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_mining) +"kir" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/desert_dam/building/water_treatment_one/garage) +"kiP" = ( +/obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cxQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cxR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/prison/greencorner, -/area/desert_dam/building/substation/west) -"cxS" = ( -/obj/structure/platform{ - dir = 1 +/area/desert_dam/exterior/valley/valley_crashsite) +"kiZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"kjn" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"kjs" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"kjw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"cxT" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cxU" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_cargo) -"cxV" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_cargo) -"cxW" = ( -/obj/structure/platform{ +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) -"cxY" = ( -/obj/structure/window/reinforced, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kjz" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"cxZ" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/light{ +/obj/item/clothing/glasses/welding, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"kjC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/lobby) -"cyb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kjF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"kjG" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"cyc" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_central_north) +"kjM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"kjP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"kkc" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/green/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"kkj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/west_wing_hallway) -"cyd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"kkn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"kkr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"cye" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"kkC" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) +"kkH" = ( +/turf/open/desert/cave/cave_shore/southeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"kkR" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"cyf" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cyg" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/surgery_room_one) -"cyh" = ( -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/surgery_room_one) -"cyj" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/whitered/northeast, -/area/desert_dam/building/medical/surgery_room_one) -"cyk" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/surgery_room_one) -"cyl" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/prison/whitered/northwest, -/area/desert_dam/building/medical/surgery_room_two) -"cym" = ( -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/surgery_room_two) -"cyn" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/surgery_room_two) -"cyo" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/whitered/northeast, -/area/desert_dam/building/medical/surgery_room_two) -"cyp" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/surgery_room_two) -"cyq" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cyr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cys" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"kkV" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"klF" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" }, -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cyt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/vault2/west, -/area/desert_dam/building/mining/workshop) -"cyv" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"klL" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/caves/east_caves) +"klM" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cyw" = ( -/turf/open/floor/prison/darkbrown2/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"cyx" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"cyB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/north_valley_dam) +"klZ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 9 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"kmc" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_cargo) -"cyC" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"kmr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_cargo) -"cyD" = ( -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cyE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_cargo) -"cyG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"kmt" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_cargo) -"cyH" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/armory) -"cyL" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"cyN" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cyP" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"kmG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"kmL" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"kmS" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_north) -"cyQ" = ( -/obj/structure/flora/grass/desert/heavygrass_5, +"kmU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cyR" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) -"cyS" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/exterior/valley/valley_crashsite) +"kny" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"cyU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/workshop) -"cyV" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-j2" }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/west_wing_hallway) -"cyW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Medical Storage" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"knB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/conveyor_switch{ + id = "cargo_storage" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"cyX" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"knI" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/mining/workshop) +"knQ" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"cyY" = ( -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_one) -"cyZ" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"cza" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"czb" = ( -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_two) -"czc" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_two) -"czd" = ( -/obj/item/tool/surgery/surgicaldrill, -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/bonesetter, -/obj/item/tool/surgery/FixOVein, -/obj/item/stack/nanopaste, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_two) -"cze" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_south) +"koi" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"czf" = ( -/turf/closed/wall, -/area/desert_dam/building/substation/central) -"czg" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/substation/central) -"czh" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"czj" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_central_south) -"czk" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"czn" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"czq" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"koo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"kop" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"koA" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"koN" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"czt" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/rock/edge1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"czv" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/CE_office) +"koZ" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) -"czw" = ( -/obj/structure/platform{ +"kpj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_labs) +"kpm" = ( +/turf/open/floor/prison/yellow/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"kpY" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"czx" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"czy" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/bar_valley_dam) -"czz" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/bar_valley_dam) -"czA" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/landing_pad_two) -"czB" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_south) -"czC" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"kqm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached6, +/area/desert_dam/exterior/telecomm/lz2_storage) +"kqo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"czD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/CE_office) -"czE" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"kqs" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_two) +"kqu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/item/storage/box/masks{ - pixel_x = -5; - pixel_y = 5 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"kqy" = ( +/obj/structure/closet/crate, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"kqB" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/south_valley_dam) +"kqF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Treatment Showers" }, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"kqV" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"kqY" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"kry" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison/whiteredcorner/west, -/area/desert_dam/building/medical/primary_storage) -"czF" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"krF" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"krH" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_hydro) +"krO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"krP" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/workshop) +"krR" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"kse" = ( /obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"czG" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"ksp" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_one) -"czH" = ( -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel/manager, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"ksu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_one) -"czI" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) +"ksB" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"ksC" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_two) -"czJ" = ( -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel/manager, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"kti" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"kts" = ( +/obj/structure/platform, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"ktt" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/southern_hallway) +"ktB" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"ktD" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"ktI" = ( +/turf/open/floor/coagulation/icon7_0, +/area/desert_dam/exterior/valley/valley_mining) +"ktJ" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/temple) +"ktX" = ( +/obj/item/frame/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"kue" = ( +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/warden) +"kuo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/telecomm/lz1_south) +"kuu" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"kuH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Engine Room" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"kuS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_medical) +"kva" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_two) -"czL" = ( -/obj/structure/machinery/light{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_north) +"kvm" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/medical/break_room) +"kvr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"kvx" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/exterior/valley/valley_hydro) +"kvK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"kvQ" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_telecoms) +"kvV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"kwe" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/central) -"czM" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/central) -"czN" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/central) -"czO" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/office1) -"czP" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/office2) -"czQ" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"kwl" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"kwt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"kwK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/desert/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"kwN" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/control_room) +"kxb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_civilian) -"czR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"kxg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"czS" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_south) -"czT" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"kxh" = ( +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/office) +"kxs" = ( /obj/structure/platform{ - dir = 1 + dir = 4 }, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river_mouth/southern) +"kxt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"kxO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"kxP" = ( +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"kyb" = ( /obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"czU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 + dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"czV" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_south) -"czW" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"czX" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered/east, -/area/desert_dam/exterior/river/riverside_south) -"czY" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_cargo) -"czZ" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"kyi" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 5 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_cargo) -"cAa" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"kyo" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cAb" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"kyT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAc" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"kyU" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cAd" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cAe" = ( -/obj/structure/platform{ +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"kzh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_south) -"cAf" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_south) -"cAg" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"cAh" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"kzN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"cAi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) -"cAj" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_south) -"cAk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"kzP" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kzQ" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_south) -"cAl" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_south) -"cAm" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"kAo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Disposals" }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"cAn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"kAE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"kAU" = ( +/obj/structure/machinery/computer/secure_data, /obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/primary_storage) -"cAo" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/warden) +"kAV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"kAZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"cAp" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"kBb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_one) -"cAq" = ( -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"kBe" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"kBj" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"kBm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"kBG" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cAr" = ( -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/bonegel, -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/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" +/area/desert_dam/building/water_treatment_one/hallway) +"kBM" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_civilian) +"kBQ" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_one) -"cAs" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_two) -"cAt" = ( -/obj/structure/machinery/optable, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_two) -"cAu" = ( -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/bonegel, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"kCo" = ( /obj/structure/surface/table/reinforced, -/obj/item/reagent_container/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" +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"kCv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"kCO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Delivery" }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_two) -"cAv" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/central) -"cAx" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/turf/open/floor/dark, +/area/desert_dam/building/cafeteria/loading) +"kCU" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/substation/central) -"cAA" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/building/substation/central) -"cAB" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/office1) -"cAC" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitered/northeast, -/area/desert_dam/building/medical/office2) -"cAD" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/office1) -"cAE" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/office1) -"cAF" = ( +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"kDh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"kDv" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"kDy" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"cAG" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/office2) -"cAH" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/structure/disposalpipe/junction{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"kDA" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"kDP" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "pipe-j2" + name = "\improper Detectives Office" }, -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/emergency_room) -"cAI" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/office2) -"cAJ" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/office2) -"cAK" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/detective) +"kEi" = ( /obj/structure/disposalpipe/segment, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/emergency_room) -"cAL" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cAM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"kEm" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"kEr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAO" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"kER" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"kEX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_isolation) +"kEY" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAQ" = ( -/obj/structure/stairs{ +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"kFf" = ( +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"kFs" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/virology_wing) +"kFX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_cargo) -"cAR" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"kFY" = ( +/turf/open/floor/prison/darkpurplecorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"kGu" = ( +/obj/structure/prop/dam/boulder/boulder2{ + desc = "A large rock. It looks very hard to get around." }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"kGQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"kHd" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"kHx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/edge/northwest, +/area/desert_dam/building/administration/meetingrooom) +"kHR" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_cargo) -"cAT" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"kHU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"kHY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_hydro) +"kIa" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_north) +"kIf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Rec Yard" }, -/obj/effect/decal/sand_overlay/sand2/corner2{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"kIi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cAU" = ( -/turf/open/floor/carpet7_3/west, -/area/desert_dam/building/bar/bar) -"cAV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cAW" = ( -/obj/structure/flora/bush/desert/cactus, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cAX" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"kIt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_south) -"cAY" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"kIC" = ( /obj/structure/platform{ - dir = 4 + dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_south) -"cAZ" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"cBa" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"cBb" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_medical) -"cBc" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_east) +"kIG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kIP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"kJe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"kJn" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"kJP" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" + icon_state = "road_edge_decal2" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cBd" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, +/area/desert_dam/exterior/valley/valley_hydro) +"kKm" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"kKr" = ( /obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/lobby) -"cBe" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"cBf" = ( -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/lobby) -"cBg" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"cBh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/area/desert_dam/building/bar/bar_restroom) +"kKG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/west_wing_hallway) -"cBi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"kKQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"cBj" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"kLe" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"kLr" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"cBk" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/chemistry) +"kLw" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"cBl" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"kLD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/primary_storage) -"cBm" = ( -/obj/structure/machinery/power/apc{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"kLE" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - pixel_x = -30; - start_charge = 0 + icon_state = "pipe-c" }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_one) -"cBo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cBp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"kLW" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_one) -"cBq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"kMa" = ( +/obj/structure/holohoop{ + dir = 4 + }, +/turf/open/floor/warnwhite/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"kMo" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/engi{ + pixel_x = -32 + }, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"kMy" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/valley/valley_labs) +"kNa" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"kNb" = ( /obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; + dir = 1; + pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/surgery_room_two) -"cBr" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/west) -"cBs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_two) -"cBt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"kNh" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_two) -"cBu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/central) -"cBx" = ( -/turf/open/floor/prison, -/area/desert_dam/building/substation/central) -"cBy" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/central) -"cBz" = ( -/turf/open/floor/plating, -/area/desert_dam/building/substation/central) -"cBB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"kNr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_mining) +"kNQ" = ( /obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office1) -"cBC" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office1) -"cBD" = ( -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/office1) -"cBF" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"kNR" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/southeast, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"kOa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon7_0, +/area/desert_dam/exterior/valley/valley_mining) +"kOf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"kOh" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"kOi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"kOu" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"kOw" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office2) -"cBG" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office2) -"cBH" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) +"kOx" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/office2) -"cBI" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_two) +"kOC" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_room) +"kOD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cBJ" = ( +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"kOE" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"kOJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"kOR" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"kPb" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"kPc" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/desert_dam/building/substation/northwest) +"kPl" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"kPm" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kPo" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"cBL" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"kPq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_civilian) -"cBN" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kPs" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"kPA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"kPX" = ( +/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"kPY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cBP" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"kQj" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_telecoms) +"kQq" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"kQv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/control_room) +"kQM" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/workshop) +"kRw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"kRB" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"kRK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, /obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cBQ" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"kRU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"kSa" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"kSg" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" + icon_state = "road_edge_decal2" }, /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 8 }, /turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"kSs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"kSt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/north_valley_dam) +"kSy" = ( +/obj/structure/prop/dam/gravestone, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_hydro) +"kSG" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"kSV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_civilian) -"cBS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) -"cBT" = ( +"kSX" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"kTl" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"kTF" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"kTH" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kTI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"kTL" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"kTW" = ( /obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cBU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"kUB" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"kUG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_cargo) -"cBV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"kUT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/mining/workshop) +"kUU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_cargo) -"cBW" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"kUV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/hanger) +"kVn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"kVs" = ( +/obj/item/clothing/head/surgery/blue, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/treatment_room) +"kVO" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"kWd" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"kWh" = ( +/obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cBX" = ( +/area/desert_dam/exterior/valley/bar_valley_dam) +"kWj" = ( +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"kWs" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"kWz" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"kWM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/bar/bar) -"cBY" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cBZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Waterway" +/turf/open/floor/darkyellowcorners2, +/area/desert_dam/building/security/prison) +"kWS" = ( +/obj/structure/sink, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"kWT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/exterior/valley/south_valley_dam) -"cCa" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cCb" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/medical/break_room) +"kXa" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_south) -"cCc" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/garage) -"cCd" = ( -/obj/structure/machinery/door/poddoor/shutters, -/turf/open/asphalt, -/area/desert_dam/building/medical/garage) -"cCe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Garage" +"kXc" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = null; + name = "\improper Elevator Lock" }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cCf" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/emergency_room) -"cCg" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/emergency_room) -"cCh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"cCi" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"cCj" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, +/turf/open/floor/prison/cell_stripe/east, +/area/shuttle/trijent_shuttle/lz2) +"kXd" = ( +/obj/structure/pipes/standard/manifold/hidden, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) -"cCk" = ( +"kXp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"kXs" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Emergency Room" }, /turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/emergency_room) -"cCl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/emergency_room) -"cCm" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/prison/whitered/southwest, -/area/desert_dam/building/medical/primary_storage) -"cCn" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/whitered, -/area/desert_dam/building/medical/primary_storage) -"cCo" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +"kXB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"kXI" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/whitered/southeast, -/area/desert_dam/building/medical/primary_storage) -"cCp" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison/whitered/southwest, -/area/desert_dam/building/medical/surgery_room_one) -"cCq" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/prison/whiteredcorner/west, -/area/desert_dam/building/medical/surgery_room_one) -"cCr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"cCs" = ( -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_one) -"cCt" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison/whitered/southwest, -/area/desert_dam/building/medical/surgery_room_two) -"cCu" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/prison/whiteredcorner/west, -/area/desert_dam/building/medical/surgery_room_two) -"cCv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_two) -"cCw" = ( -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_two) -"cCx" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/central) -"cCy" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"kXQ" = ( +/obj/structure/surface/table, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/central) -"cCz" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 }, -/turf/open/floor/plating, -/area/desert_dam/building/substation/central) -"cCA" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office1) -"cCC" = ( -/obj/structure/bed, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/floor/darkred2/west, +/area/desert_dam/building/security/warden) +"kYf" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/office1) -"cCE" = ( -/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"kYh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"kYl" = ( /obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; + dir = 1; + pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/office2) -"cCF" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/east_wing_hallway) -"cCG" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cCH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"kYm" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cCI" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/structure/platform{ + dir = 4 }, -/obj/structure/desertdam/decals/road_stop{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"kYo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"kYp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cCJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_telecoms) -"cCL" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_cargo) -"cCM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"cCO" = ( -/obj/structure/stairs{ +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"kYr" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"cCP" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"cCQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"cCR" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"kYs" = ( +/turf/open/floor/carpet10_8/west, +/area/desert_dam/building/bar/bar) +"kYD" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/smes_main) +"kYG" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/turf/open/gm/river/desert/shallow_edge/covered/east, -/area/desert_dam/exterior/river/riverside_central_north) -"cCS" = ( -/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/exterior/valley/valley_wilderness) +"kYH" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/interior/dam_interior/smes_backup) +"kYM" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"kYO" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden, -/turf/open/gm/river/desert/shallow_edge/covered/east, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_central_north) -"cCT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cCU" = ( +"lac" = ( /obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/north_tunnel) +"las" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"laF" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"lbk" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"lby" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lbB" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"cCW" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/mining/workshop_foyer) -"cCZ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"lbQ" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/temple) +"lcb" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"lcj" = ( +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 + }, +/area/shuttle/trijent_shuttle/lz1) +"lck" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/desert_dam/building/security/prison) +"lcw" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_two) -"cDb" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"lcx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_two) -"cDc" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cDd" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"lcy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"cDe" = ( +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/chunk, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"lcH" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/northeast) +"lcK" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"ldh" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"ldq" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/medical/garage) -"cDf" = ( -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cDg" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"ldv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/medical/garage) -"cDh" = ( -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"cDi" = ( -/obj/structure/pipes/portables_connector{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"ldE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/pipes/standard/cap/hidden{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"cDj" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"ldM" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden{ - dir = 10 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/south_valley_dam) +"leD" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"leO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/emergency_room) -"cDk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"cDl" = ( -/obj/structure/machinery/cryo_cell, -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"leX" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_one) +"leZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"cDm" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"lfk" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"cDn" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"lfs" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"cDo" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/structure/machinery/light{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"cDp" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/emergency_room) -"cDq" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/emergency_room) -"cDr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/emergency_room) -"cDs" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/surgery_room_one) -"cDt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Operating Theatre 1" - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"cDu" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/surgery_room_two) -"cDv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Operating Theatre 2" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"lfx" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_two) -"cDy" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/office1) -"cDz" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Examination Room" +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"lfM" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"lfR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office1) -"cDA" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/office2) -"cDB" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Examination Room" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_medical) +"lfX" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/east_caves) +"lgb" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"lgd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/hanger) +"lgl" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"lgp" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/office2) -"cDC" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"cDD" = ( -/obj/structure/machinery/vending/coffee, +/turf/open/floor/coagulation/icon8_6, +/area/desert_dam/exterior/valley/valley_mining) +"lgs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/medical_diagnostics_manual, /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"cDE" = ( -/obj/structure/machinery/vending/snack, +/area/desert_dam/building/medical/treatment_room) +"lgu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"lgv" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"lgy" = ( +/obj/structure/filtration/machine_96x96/filtration, +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/building/water_treatment_two/purification) +"lgB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"lgJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"lgM" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/interior/caves/central_caves) +"lgS" = ( +/turf/open/floor/whitegreencorner/east, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"lha" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"lho" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"cDF" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"cDK" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_two) -"cDL" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell{ + pixel_x = 5 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_two) -"cDM" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) -"cDN" = ( -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cDP" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/spawner/random/tool{ + pixel_x = -6 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"cDQ" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"lhx" = ( /obj/structure/platform{ - dir = 1 + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_east) -"cDR" = ( -/obj/structure/platform_decoration{ +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"lhH" = ( +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_westwing) +"lid" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"lip" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"lit" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"liu" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_mining) +"liB" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northwest, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) -"cDT" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"cDU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"cDV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_two) -"cDX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"cDY" = ( -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"cEa" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cEb" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/bar/bar) -"cEc" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_one) -"cEd" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cEe" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_central_north) -"cEf" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cEg" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/medical/garage) -"cEh" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/medical/garage) -"cEi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +"liC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"liE" = ( +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"liW" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"cEj" = ( -/obj/structure/pipes/portables_connector{ +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"liZ" = ( +/obj/structure/platform, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/valley/valley_labs) +"ljg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/pipes/standard/cap/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/emergency_room) -"cEk" = ( -/obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"cEl" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"cEn" = ( -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cEo" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"lji" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"ljm" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "uppcrash-supply" }, -/obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"cEp" = ( -/obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"cEq" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"ljp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Kitchen" }, -/obj/structure/pipes/standard/simple/hidden{ - dir = 9 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"ljq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/chemistry) +"ljs" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"lju" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"cEr" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"cEs" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"ljB" = ( +/obj/structure/closet/cabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"ljO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cEt" = ( +/obj/structure/prop/dam/van{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"lkE" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"lkN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"lkV" = ( +/obj/effect/decal/sand_overlay/sand2, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cEu" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"llg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hanger) +"llq" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"llG" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"llQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_northwest) +"llW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/junction{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-j2" + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"llY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"cEv" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cEy" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cEz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) -"cEA" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"lmf" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"lmj" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/treatment_room) -"cEB" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"cEC" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/treatment_room) -"cED" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/treatment_room) -"cEE" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/treatment_room) -"cEF" = ( -/obj/structure/machinery/light{ +/area/desert_dam/building/warehouse/breakroom) +"lmm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"cEG" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/treatment_room) -"cEH" = ( -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecalbottomleft" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/east_wing_hallway) -"cEI" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"lmE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"cEJ" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/east_wing_hallway) -"cEM" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"cEN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"cEO" = ( -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/east_wing_hallway) -"cEP" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cEQ" = ( -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cES" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_two) -"cET" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/substation/west) +"lmQ" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"lmS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cEU" = ( -/obj/structure/flora/bush/desert/cactus, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cEV" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_9" +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lnf" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/loading) +"lng" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/yellowcorner, +/area/desert_dam/building/hydroponics/hydroponics) +"lnC" = ( +/obj/structure/flora/grass/desert/lightgrass_4, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cEW" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_east) -"cEX" = ( -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cEY" = ( +/area/desert_dam/exterior/landing_pad_one) +"lnH" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"lnI" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_south) +"lnS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"lnY" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/redcorner, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"lnZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/lobby) +"lon" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"lop" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal10" }, -/obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cEZ" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds2/delayone{ +/area/desert_dam/exterior/valley/valley_telecoms) +"lot" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"lov" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"loB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_two) -"cFa" = ( -/obj/docking_port/stationary/marine_dropship/lz2, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"cFb" = ( -/obj/structure/machinery/landinglight/ds2{ +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_two) -"cFc" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"cFd" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"loD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"loK" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_telecoms) -"cFe" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +"loS" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"loZ" = ( +/obj/structure/toilet, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"lpm" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_two) -"cFf" = ( -/obj/structure/platform{ +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"lpq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"cFg" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"lpy" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"cFh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"lpG" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"lpK" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"lpT" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze{ + pixel_x = -7 + }, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/whiteyellow/northwest, +/area/desert_dam/interior/dam_interior/garage) +"lpW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Lobby" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"lqH" = ( +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/south_tunnel) +"lqK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"lqO" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/east_caves) +"lqU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_labs) +"lrw" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"lrK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"lrV" = ( +/obj/structure/largecrate/random/secure, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"lrW" = ( +/turf/open/floor/carpet/edge/east, +/area/desert_dam/building/administration/meetingrooom) +"lrY" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"lsc" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/central_tunnel) +"lsf" = ( +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/obj/structure/machinery/power/apc{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/interior/dam_interior/south_tunnel) +"lsk" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"lsu" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"lsR" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = 28; - start_charge = 0 + icon_state = "pipe-c" }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"cFi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"lsT" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cFj" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cFk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/CE_office) -"cFl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"cFm" = ( -/obj/structure/barricade/wooden, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cFn" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/emergency_room) -"cFp" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/treatment_room) -"cFq" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"cFr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"lta" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"cFs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/bar_valley_dam) -"cFt" = ( +"ltA" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet11_12/west, -/area/desert_dam/building/bar/bar) -"cFu" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/yellowfull/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"ltE" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"ltH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ltK" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_medical) +"ltY" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"lur" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"luz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"cFv" = ( +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"luF" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_two) +"luY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark2, -/area/desert_dam/interior/dam_interior/CE_office) -"cFw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper CE Office" - }, -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"lva" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"lvq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"lvw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"cFx" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"lvz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"lvA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/break_room) +"lvK" = ( +/obj/structure/platform{ dir = 4 }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"lwf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cFy" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"lwj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cFA" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/building/water_treatment_one/hallway) +"lwu" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/desert_dam/building/substation/northwest) +"lwY" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"lxa" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/warehouse/loading) +"lxq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"lxB" = ( +/turf/open/floor/prison/red, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"lxH" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/surgery_room_two) +"lxP" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"lxQ" = ( +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/overseer_office) +"lyg" = ( +/turf/open/floor/prison/darkbrowncorners3/east, +/area/desert_dam/interior/dam_interior/hanger) +"lyq" = ( +/obj/effect/decal/medical_decals{ dir = 4; - icon_state = "pipe-c" + icon_state = "triagedecalbottomleft" }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/east_wing_hallway) +"lyv" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cFC" = ( +/area/desert_dam/exterior/telecomm/lz1_valley) +"lyw" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lyx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen, +/obj/item/oldresearch/Blood, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"lyy" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"lyB" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cFD" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"lyI" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cFE" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"lyW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"lzp" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"lzH" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"cFF" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/disposalpipe/segment{ - dir = 4 +"lzM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Operating Theatre 2" }, -/obj/item/ashtray/bronze, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cFG" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"lzN" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cFH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, -/turf/open/asphalt, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"cFI" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"cFJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +"lAd" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cFK" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_11" +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/staffroom) +"lAt" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cFL" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"lAA" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"lAB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"lAD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cFN" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"lAK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"lAL" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"lAX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/southwest) +"lBa" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/control_room) +"lBb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cFO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_isolation) +"lBr" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"lBt" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"lBw" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cFP" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"lBx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"lBQ" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/zippo, +/obj/item/tool/lighter/zippo, +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"lBW" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/caves/east_caves) +"lCc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_two) -"cFR" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/warehouse/warehouse) -"cFS" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +"lCp" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"lCF" = ( +/obj/structure/pipes/portables_connector{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"cFT" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"cFV" = ( -/turf/open/floor/white, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) -"cFY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"lCS" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_central_north) +"lCX" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"lDf" = ( +/obj/structure/closet/radiation, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cFZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 2 +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"lDg" = ( +/obj/structure/platform{ + dir = 8 }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_labs) +"lDN" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cGa" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/area/desert_dam/building/mining/workshop) +"lDT" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lEw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/darkyellowcorners2/west, +/area/desert_dam/building/security/prison) +"lER" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_two) -"cGb" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"cGc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_cargo) -"cGe" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"lES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"lEY" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/green/northeast, +/area/desert_dam/interior/dam_interior/atmos_storage) +"lEZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"lFc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"cGf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"lFn" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"cGg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"lFs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lFF" = ( +/obj/structure/filtration/collector_pipes, +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_hydro) +"lFP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"lGa" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"lGb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"lGd" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"lGo" = ( +/obj/structure/bed, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/deathrow) +"lGO" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"lHk" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/mining/workshop) +"lHl" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"lHD" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"cGh" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"cGi" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_cargo) -"cGj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"lHE" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lHL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"lHV" = ( +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_northwing) +"lHX" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"lIv" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cGk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"lIw" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cGl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lIS" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"lIZ" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/central) +"lJi" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"lJF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"lJI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/machinery/door/window/southleft{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cGm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"lJL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cGn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"lJO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) -"cGp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"lJR" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"lJY" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"cGq" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"lKc" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_1" }, /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"cGr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cGs" = ( -/obj/structure/disposalpipe/junction, +/area/desert_dam/building/water_treatment_two/purification) +"lKe" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cGt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/desert_dam/interior/dam_interior/lobby) +"lKO" = ( +/obj/structure/closet, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/office1) +"lKW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lLl" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/landing_pad_one) +"lLr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"cGu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/hallway) +"lLz" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_two) -"cGv" = ( -/obj/structure/flora/bush/desert, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_cargo) -"cGw" = ( -/obj/structure/prop/dam/gravestone, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_hydro) -"cGx" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/mining/workshop_foyer) +"lLC" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_cargo) -"cGy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/workshop) -"cGz" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"lLF" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"cGA" = ( +/area/desert_dam/interior/dam_interior/north_tunnel) +"lLK" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"lLX" = ( +/obj/item/weapon/gun/revolver/small, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"lMb" = ( +/turf/open/desert/excavation/component4/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"lMc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"lMr" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/CE_office) -"cGB" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"cGC" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/east_wing_hallway) -"cGD" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"cGF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"lNi" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"cGG" = ( -/obj/structure/machinery/landinglight/ds2{ +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"lNk" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) +"lNr" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river_mouth/southern) +"lNs" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"lNu" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lNB" = ( +/turf/open/floor/coagulation/icon8_7_2, +/area/desert_dam/building/water_treatment_two/purification) +"lNC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"lNE" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hanger) +"lNG" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"lNO" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"lNW" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"lOs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"lOI" = ( +/turf/open/floor/coagulation/icon0_4, +/area/desert_dam/exterior/valley/valley_hydro) +"lOM" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"lOY" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"lPb" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) -"cGH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_cargo) -"cGI" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cGJ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_civilian) -"cGK" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cGL" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cGM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/tile, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_cargo) -"cGN" = ( -/obj/structure/machinery/door_control{ - id = "cargo_hangar1"; - name = "Warehouse Shutters" - }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/warehouse/warehouse) -"cGO" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_hydro) -"cGP" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/armory) -"cGQ" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/landing_pad_two) -"cGR" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_two) -"cGS" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/landing_pad_two) -"cGT" = ( +"lPc" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_south) -"cGU" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal3" - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"cGV" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" - }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"cGW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Emergency Room" +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"lPm" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"lPr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/emergency_room) -"cGX" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"cGY" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"cGZ" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"cHa" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"lPs" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_one/lobby) +"lPt" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"cHb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"lPB" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/interior/caves/central_caves) +"lPG" = ( +/obj/structure/disposalpipe/segment{ dir = 2; - name = "\improper Surgery" - }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"cHc" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"cHd" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/treatment_room) -"cHe" = ( -/obj/item/reagent_container/hypospray, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"cHf" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/treatment_room) -"cHg" = ( -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/treatment_room) -"cHh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" + icon_state = "pipe-c" }, -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cHi" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"lPN" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cHj" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"cHk" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cHl" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"cHn" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"lQd" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"lQj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/whiteyellow/northwest, +/area/desert_dam/building/water_treatment_one/breakroom) +"lQz" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_two) -"cHo" = ( -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"cHp" = ( +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/office) +"lQA" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"cHr" = ( -/turf/open/floor/prison/darkred2/southeast, -/area/desert_dam/building/security/armory) -"cHs" = ( -/obj/structure/cargo_container/hd/left, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"cHt" = ( -/obj/structure/cargo_container/hd/mid, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"cHu" = ( -/obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"lQD" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"lQJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"cHv" = ( -/obj/structure/platform_decoration{ +/obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"lQU" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"cHx" = ( -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/building/medical/garage) -"cHy" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal4" +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"lRc" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"cHz" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"lRf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/healthanalyzer, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/lobby) +"lRr" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"cHA" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/emergency_room) -"cHB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/dam/truck/damaged, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cHC" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cHD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"lRQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_wilderness) +"lRS" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_medical) +"lSk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cHE" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cHF" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"lSl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cHG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"lSm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"lSv" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cHH" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"lSx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"cHI" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/treatment_room) -"cHJ" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/treatment_room) -"cHK" = ( -/obj/structure/machinery/light, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"lSI" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"lST" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"lSY" = ( /turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/treatment_room) -"cHL" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/east_wing_hallway) -"cHM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +"lTd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"lTp" = ( +/obj/structure/surface/rack, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cHN" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/virology_wing) -"cHO" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"cHP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"cHQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"cHR" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Patient Room 1" +/obj/item/stack/sheet/plasteel{ + amount = 15 }, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"lTI" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) -"cHS" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Patient Room 2" +"lTO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cHT" = ( -/obj/structure/cargo_container/hd/right, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"cHU" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"lUf" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/treatment_room) +"lUK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"lUW" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Patient Room 3" + icon_state = "pipe-c" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cHV" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cHX" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"lUZ" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"lVb" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cHY" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"lVh" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/caves/temple) +"lVi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cIa" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered/north, -/area/desert_dam/exterior/river/riverside_east) -"cIc" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cId" = ( -/obj/structure/flora/grass/desert/heavygrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cIe" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cIg" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cIh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_cargo) -"cIi" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"lVr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cIk" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"cIl" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"lVB" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/warehouse) -"cIo" = ( -/obj/structure/machinery/door_control{ - id = "cargo_hangar2"; - name = "Warehouse Shutters" +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"lVD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/building/warehouse/warehouse) -"cIp" = ( -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/loading) -"cIq" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"cIr" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/desert_dam/building/water_treatment_one/hallway) +"lVW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"lWa" = ( +/turf/open/floor/prison/darkbrowncorners3/north, +/area/desert_dam/interior/dam_interior/hangar_storage) +"lWc" = ( /obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"cIt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/loading) -"cIu" = ( +/area/desert_dam/building/water_treatment_one/lobby) +"lWd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"lWH" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/exterior/valley/valley_wilderness) +"lWI" = ( /obj/structure/surface/table, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/loading) -"cIv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"lWJ" = ( +/obj/structure/pipes/standard/simple/hidden{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_cargo) -"cIx" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/loading) -"cIy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/loading) -"cIz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"lWL" = ( /obj/structure/surface/table/reinforced, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cIA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cIB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/belt/medical/lifesaver/full, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cIC" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" +/obj/item/evidencebag, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"lWM" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"lWN" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/holding) +"lXh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"lXk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"lXp" = ( +/turf/open/floor/coagulation/icon1_7, +/area/desert_dam/exterior/valley/valley_hydro) +"lXI" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/turf/open/floor/white, -/area/desert_dam/building/medical/garage) -"cID" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"cIE" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"cIF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/surgery_room_two) +"lXY" = ( +/obj/structure/machinery/power/apc{ dir = 1; - name = "\improper Medical Office" + pixel_y = 24; + start_charge = 0 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"lYg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"lYm" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"lYn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_mining) +"lYu" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"lYv" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"lYD" = ( +/obj/structure/machinery/computer/arcade, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/treatment_room) -"cIG" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/treatment_room) -"cIH" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cII" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cIJ" = ( -/obj/structure/machinery/iv_drip, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"lYG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lYX" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"lZe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"lZr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) +"lZw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_northwest) +"lZG" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"mac" = ( +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"mas" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Hallway" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"mbf" = ( /obj/structure/machinery/light, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cIK" = ( -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cIL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cIM" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/virology_wing) -"cIN" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"cIO" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"cIP" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"cIQ" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/virology_wing) -"cIS" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/virology_wing) -"cIT" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"cIU" = ( -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/virology_wing) -"cIV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"mbl" = ( /obj/structure/surface/table, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cIW" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cIX" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cIY" = ( -/obj/structure/machinery/door_control{ - id = "cargo_hangar3"; - name = "Warehouse Shutters" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"mbm" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/area/desert_dam/building/warehouse/loading) -"cIZ" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar1"; - name = "\improper Cargo Bay Hangar" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"mbo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"mbz" = ( +/turf/open/floor/whitebluecorner, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"mbH" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/signaller, +/obj/item/circuitboard/airlock, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mbJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"mbU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/asphalt, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mbZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"mcd" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/armory) +"mcm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2, /area/desert_dam/building/warehouse/warehouse) -"cJb" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" +"mcn" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/landing_pad_one) +"mcp" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"mcv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"mcz" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/desert_dam/building/security/prison) +"mcG" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/mining/workshop_foyer) +"mcI" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"mcY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"mdg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"mdi" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"mdu" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"mdz" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_backup) +"mdL" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/hanger) +"mdP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, /turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cJc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/desert_dam/exterior/valley/south_valley_dam) +"mdX" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"mem" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"mes" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cJd" = ( -/turf/closed/wall, -/area/desert_dam/building/church) -"cJe" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/church) -"cJg" = ( -/turf/open/floor/dark, -/area/desert_dam/building/church) -"cJh" = ( -/obj/structure/disposalpipe/segment, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"mex" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cJj" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"mez" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"meN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cJk" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"cJl" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cJm" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"cJn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"mfe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"mfg" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/valley/valley_labs) +"mfs" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/telecomm/lz2_storage) +"mft" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_wilderness) +"mfM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"mgf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/northeast, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"mgm" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"mgp" = ( +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"mgq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"mgw" = ( /obj/structure/desertdam/decals/road_stop{ - dir = 4; icon_state = "stop_decal5" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cJo" = ( -/turf/open/floor/plating/warnplate/north, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJp" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJq" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJr" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/armory) -"cJs" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/armory) -"cJt" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/holdout, -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/armory) -"cJv" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/armory) -"cJw" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJx" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"mgD" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_cargo) -"cJz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Garage" - }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cJA" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/treatment_room) -"cJB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 +"mgM" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"mhl" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/warden) +"mhm" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cJC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/exterior/valley/valley_hydro) +"mhq" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"mhr" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"mhD" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cJD" = ( -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/treatment_room) -"cJE" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/treatment_room) -"cJF" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cJG" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/virology_isolation) -"cJH" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/red/west, +/area/desert_dam/building/security/lobby) +"mhR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cJI" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"mhS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"cJJ" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"cJK" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"cJL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/virology_wing) -"cJM" = ( -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"cJN" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"cJO" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJP" = ( -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJR" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"mhW" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/telecomm/lz2_storage) +"mhX" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_hydro) -"cJS" = ( -/obj/structure/cargo_container/hd/left, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJT" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"mip" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/welding, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"miq" = ( +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/building/water_treatment_two/purification) +"miw" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"miD" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/caves/temple) +"miR" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"miU" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"cJU" = ( -/obj/structure/cargo_container/hd/mid, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJV" = ( -/obj/structure/cargo_container/hd/right, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJW" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJX" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJZ" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKa" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKb" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"miV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"miW" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 }, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"miY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKd" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKe" = ( -/obj/structure/cargo_container/trijent/left/alt, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKf" = ( -/obj/structure/cargo_container/trijent/mid/alt, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKg" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"mja" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"mjz" = ( +/turf/open/floor/prison/yellow/southeast, +/area/desert_dam/building/hydroponics/hydroponics) +"mjA" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) +"mkb" = ( +/turf/open/floor/filtrationside/southwest, +/area/desert_dam/exterior/valley/valley_medical) +"mkg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/tile, +/area/desert_dam/interior/caves/east_caves) +"mkh" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/west) +"mkr" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cKh" = ( -/obj/structure/cargo_container/trijent/right/alt, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKi" = ( -/turf/open/floor/plating/warnplate, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKj" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/armory) -"cKk" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cKl" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"mkJ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mkR" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_central_south) +"mkU" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cKn" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKp" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cKq" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"mkW" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"mkX" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"mlk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"mlN" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"mlQ" = ( +/turf/open/desert/excavation/component9/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"mlT" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/darkbrowncorners3/west, +/area/desert_dam/interior/dam_interior/hanger) +"mlW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"mmB" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKr" = ( -/obj/structure/fence, -/turf/open/desert/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_cargo) -"cKs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"cKt" = ( +"mmD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"mmF" = ( /obj/structure/surface/table/reinforced, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cKu" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/obj/item/paper_bin, +/obj/structure/machinery/door/window/brigdoor/westright{ + name = "Security Desk" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cKv" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/obj/structure/machinery/door/window/eastleft{ + name = "Security Desk" }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/treatment_room) -"cKw" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cKx" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"cKy" = ( -/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"cKC" = ( +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"mmS" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mmW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"mnu" = ( +/obj/structure/machinery/computer/turbine_computer, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"mnG" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"mnN" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"mnP" = ( +/obj/structure/toilet, /obj/structure/machinery/light{ - dir = 4 + dir = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"mob" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"moc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"moe" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/medical/break_room) +"mox" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cKD" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"cKE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"moO" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/north_valley_dam) +"moQ" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/caves/temple) +"mpf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"mpk" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"cKF" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/building/medical/virology_isolation) +"mpm" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar/red, +/obj/item/device/flash, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"cKG" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"mpp" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"mpG" = ( +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"cKH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"cKI" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"cKJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_cargo) -"cKK" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"cKL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKM" = ( -/obj/structure/prop/dam/crane/cargo{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cKO" = ( -/obj/structure/stairs, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cKP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKQ" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"cKR" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"cKS" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_cargo) -"cKT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/area/desert_dam/building/medical/lobby) +"mpN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"mpX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/defibrillator, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"mql" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"mqo" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_cargo) -"cKU" = ( +/turf/open/floor/chapel, +/area/desert_dam/building/church) +"mqu" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKV" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_cargo) -"cKX" = ( -/turf/open/floor/prison/darkred2, -/area/desert_dam/building/security/deathrow) -"cLa" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"cLc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"mqy" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/dorms/pool) +"mqA" = ( +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_hydro) +"mqM" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_wilderness) +"mqU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLe" = ( -/obj/structure/machinery/landinglight/ds2{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mqZ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light{ dir = 4 }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"mrl" = ( +/obj/structure/disposalpipe/segment, /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_two) -"cLh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_south) -"cLi" = ( -/obj/structure/platform{ +/area/desert_dam/exterior/valley/valley_civilian) +"mrI" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"mrJ" = ( +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"mrU" = ( +/obj/structure/machinery/r_n_d/protolathe, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"msa" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"msm" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"cLj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northeast) +"msp" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"cLk" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"msy" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"msz" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/workshop) +"msO" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"cLl" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cLm" = ( -/obj/structure/surface/table, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cLo" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/virology_wing) -"cLp" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_wing) -"cLq" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cLr" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"msU" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"mtD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"mtQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cLs" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_wing) -"cLt" = ( -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_wing) -"cLu" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/virology_wing) -"cLv" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"cLG" = ( -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLL" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_two) -"cLO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"mtW" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLP" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/staffroom) +"mua" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_cargo) -"cLQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLR" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cLS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cLT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/defibrillator, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cLU" = ( +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"mue" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/garage) +"muk" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon7_0, +/area/desert_dam/exterior/valley/valley_mining) +"mul" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"muM" = ( /obj/structure/surface/table/reinforced, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cLV" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"muR" = ( /obj/structure/surface/table/reinforced, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"cLX" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"muU" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"mva" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"mve" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_central_north) +"mvg" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cLY" = ( -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_isolation) -"cMa" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 - }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"cMb" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cMc" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/medical/virology_wing) -"cMd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"mvi" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "distribution" }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"mvo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cMe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"mvt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/prison/cell_stripe/north, /area/desert_dam/building/warehouse/warehouse) -"cMf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mvz" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"mvK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/emergency_room) +"mvS" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"mwb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cMi" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"mwl" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_central_north) +"mwm" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/lobby) +"mwn" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"mwz" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"mwJ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"mwN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_hydro) -"cMj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mwW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"mxa" = ( +/obj/structure/machinery/door_control{ + id = "garage_dd"; + name = "Garage Lockdown"; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) +"mxc" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) +"mxq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, /area/desert_dam/building/warehouse/loading) -"cMl" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_hydro) -"cMm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"mxy" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/substation/northwest) +"mxI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"mxJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"mxK" = ( +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/dorms/hallway_northwing) +"mxL" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/north_valley_dam) +"mxV" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"mxW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Cargo Bay" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"myg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/cell_stripe/west, +/area/desert_dam/interior/dam_interior/hanger) +"mym" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cMn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"myz" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"myF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"myN" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellow2/southwest, +/area/desert_dam/building/security/prison) +"myR" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/item/clothing/suit/storage/CMB, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"myX" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/deathrow) +"mzC" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"mzK" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"mAg" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mAk" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/building/administration/control_room) +"mAm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cMo" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"cMq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/landing_pad_two) -"cMw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cMB" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cMC" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_two) -"cMD" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_two) -"cME" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"mAr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cMF" = ( -/obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cMI" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/north_valley_dam) -"cMJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cML" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/area/desert_dam/exterior/valley/bar_valley_dam) +"mAG" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"mAM" = ( +/turf/open/floor/prison/darkyellowcorners2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"mAZ" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/landing_pad_two) -"cMM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"mBd" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_cargo) -"cMN" = ( -/obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"cMO" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/landmark/nightmare{ + insert_tag = "purple-center-bridge" }, -/turf/open/asphalt/tile, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"mBl" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_medical) -"cMP" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/virology_isolation) -"cMQ" = ( +"mBu" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/computer/crew, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"mBv" = ( /obj/structure/surface/table, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/virology_isolation) -"cMR" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/virology_isolation) -"cMS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/exterior/telecomm/lz1_south) -"cMT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/machinery/computer/emails, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"mBB" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"mBH" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"mBR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/virology_isolation) -"cMU" = ( -/obj/structure/surface/table, -/obj/item/tool/weedkiller/D24, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"cMV" = ( -/obj/structure/machinery/computer/operating, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"mBW" = ( +/obj/structure/toilet, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"mBX" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"mCr" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/control_room) +"mCL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"mCU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"mDb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/north_valley_dam) +"mDe" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"mDj" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"cMW" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/spaceacillin, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"mDt" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"mDy" = ( /obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"mDA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"cMX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"mDC" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_civilian) +"mDF" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"mDO" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/virology_isolation) -"cMY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"mDQ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_isolation) -"cMZ" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/virology_isolation) -"cNa" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_isolation) -"cNb" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"mEb" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mEo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) -"cNc" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"cNd" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/virology_wing) -"cNe" = ( +"mEs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Administration Office" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/office) +"mEv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/transition/northwest, -/area/desert_dam/exterior/telecomm/lz1_south) -"cNf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/lobby) +"mEO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"cNg" = ( -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mET" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cNh" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/bar/bar_restroom) +"mEU" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cNi" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"mFb" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"mFp" = ( +/turf/open/floor/warning/southeast, +/area/desert_dam/interior/dam_interior/engine_room) +"mFv" = ( +/obj/item/stool, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"mFG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"mFV" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"mFX" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office2) +"mGe" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cNj" = ( +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"mGl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cNl" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cNm" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"mGD" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"mGJ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_labs) +"mHb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"cNo" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/warehouse) -"cNr" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/vault2/north, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"cNs" = ( -/obj/structure/prop/dam/gravestone, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cNu" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cNv" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/chapel/north, -/area/desert_dam/building/church) -"cNw" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"mHk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"cNx" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cNy" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cNz" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cNA" = ( -/obj/structure/disposalpipe/segment{ +"mHr" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/caves/east_caves) +"mHu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cNC" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) -"cND" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"mHv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"mIc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/primary_storage) +"mId" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/mining/workshop) +"mIe" = ( /obj/structure/platform{ dir = 1 }, -/obj/structure/platform{ - dir = 4 - }, /turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) -"cNE" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_isolation) -"cNF" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_isolation) -"cNG" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_isolation) -"cNH" = ( -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"cNI" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"cNK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/desert_dam/exterior/valley/north_valley_dam) +"mIB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"cNL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/weapon/broken_bottle, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"mIN" = ( +/turf/open/floor/coagulation/icon8_6, +/area/desert_dam/exterior/valley/valley_hydro) +"mIR" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) -"cNM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"mJa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"mJs" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"mJw" = ( +/obj/structure/prop/dam/gravestone, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_hydro) +"mJK" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"mJP" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"cNN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Central" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cNP" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_7" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cNQ" = ( -/obj/structure/flora/bush/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cNR" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar1"; - name = "\improper Cargo Bay Hangar" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"mJR" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_north) +"mJS" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mKe" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cNS" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"mKh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"mKj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) +"mKk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"mKl" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"mKs" = ( +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/valley/valley_telecoms) +"mKz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") + }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"mLa" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"mLr" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/chapel/east, -/area/desert_dam/building/church) -"cNU" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mLG" = ( +/obj/structure/machinery/light, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/workshop) +"mLR" = ( +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"mLV" = ( +/turf/open/desert/excavation/component9/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"mMc" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/chapel/east, -/area/desert_dam/building/church) -"cNV" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_hydro) -"cNW" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"cNX" = ( -/obj/structure/prop/dam/gravestone, -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_hydro) -"cNY" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"mMs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/chapel/north, -/area/desert_dam/building/church) -"cNZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"cOa" = ( -/obj/structure/stairs{ +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/smes_main) +"mMv" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"cOb" = ( -/turf/open/floor/cult, -/area/desert_dam/building/church) -"cOc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cOd" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"mMS" = ( +/obj/structure/barricade/sandbags{ dir = 1 }, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"cOe" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/obj/structure/barricade/sandbags{ + dir = 4 }, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"cOf" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cOi" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"mMV" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"mMY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"mNc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cOj" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cOk" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) -"cOl" = ( -/obj/structure/platform{ +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/warehouse/warehouse) +"mNg" = ( +/turf/open/floor/whiteyellowcorner/west, +/area/desert_dam/building/water_treatment_one/breakroom) +"mNi" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/mining/workshop) +"mNk" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mNv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"mNx" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/building/warehouse/warehouse) +"mNI" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"mNM" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) -"cOm" = ( -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"cOn" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/item/seeds/riceseed, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"mNZ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/chapel/west, -/area/desert_dam/building/church) -"cOo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cOp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cOq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cOr" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"mOg" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal4" }, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"mOl" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/chips, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cOs" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cOt" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"mOo" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/chapel, -/area/desert_dam/building/church) -"cOu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/fancy/candle_box, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"cOv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/landing_pad_one) +"mOw" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"mOx" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"cOw" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/candle, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"cOx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/bible, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_two) +"mOB" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"cOy" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cOA" = ( -/obj/structure/prop/dam/crane/damaged, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cOC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet6_2/west, -/area/desert_dam/building/church) -"cOD" = ( -/turf/open/floor/carpet14_10/west, -/area/desert_dam/building/church) -"cOE" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/mining/workshop_foyer) +"mOE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"mOS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"mOU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet14_10/west, -/area/desert_dam/building/church) -"cOF" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cOG" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"cOH" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/substation/southwest) -"cOI" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/virology_isolation) -"cOJ" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, +/obj/item/trash/raisins, /turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"cOK" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 +/area/desert_dam/building/medical/north_wing_hallway) +"mPj" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_northwest) +"mPq" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/shuttle/red, +/area/desert_dam/interior/caves/temple) +"mPA" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_telecoms) +"mPC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cOL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cOM" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_wing) -"cOO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_wing) -"cOP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cOQ" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cOR" = ( -/obj/structure/surface/table, -/obj/item/tank/anesthetic, -/obj/item/storage/pill_bottle/spaceacillin, /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cOS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet10_8/west, -/area/desert_dam/building/church) -"cOT" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" +/area/desert_dam/building/medical/east_wing_hallway) +"mPG" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"mPS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"mPV" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"mPX" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/valley/valley_labs) +"mQp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cOU" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"cOV" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cOW" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cOX" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"cOY" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"cOZ" = ( +/area/desert_dam/exterior/landing_pad_two) +"mQt" = ( +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") + }, +/obj/structure/surface/table, +/turf/open/floor/prison/red/northwest, +/area/desert_dam/building/water_treatment_one/lobby) +"mQD" = ( +/turf/open/floor/warning/northeast, +/area/desert_dam/interior/dam_interior/engine_room) +"mQI" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mQT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Chapel" + name = "\improper RnD" }, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"cPd" = ( -/turf/open/floor/carpet5_1/west, -/area/desert_dam/building/church) -"cPe" = ( -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/church) -"cPf" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"mQX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"mRj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/church) -"cPg" = ( -/turf/open/floor/carpet9_4/west, -/area/desert_dam/building/church) -"cPh" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Backroom" - }, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"cPi" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"cPj" = ( -/obj/structure/machinery/light, -/turf/open/floor/cult, -/area/desert_dam/building/church) -"cPk" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/machinery/light, -/turf/open/floor/chapel, -/area/desert_dam/building/church) -"cPl" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"mRp" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Patient Room 2" }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"mRr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/chapel, -/area/desert_dam/building/church) -"cPm" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"mRB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/multitool, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mRD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/welding, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mSp" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/lobby) +"mSt" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"mSD" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"mSI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_wilderness) +"mSJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"mSO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/chapel/west, -/area/desert_dam/building/church) -"cPn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"mSV" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_civilian) +"mSW" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"mSY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"mTf" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cPo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/desert_dam/exterior/valley/valley_medical) +"mTr" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mTx" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"mTy" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/armory) +"mTH" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"mTS" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"mTU" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cPp" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/obj/structure/barricade/wooden{ - dir = 4 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"cPq" = ( -/obj/structure/machinery/light, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"mTY" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cPr" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached6, -/area/desert_dam/exterior/telecomm/lz2_storage) -"cPt" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"cPu" = ( -/obj/vehicle/train/cargo/engine, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/area/desert_dam/building/cafeteria/loading) +"mUy" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cPx" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"mUE" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"cPy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/desertdam/decals/road_stop{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) +"mUI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"mUK" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"mUS" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - icon_state = "stop_decal5" + name = "\improper Containment Lock"; + unacidable = 0 + }, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"mUT" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mUV" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"mVk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cPz" = ( -/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"mVy" = ( +/obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cPB" = ( -/turf/open/floor/carpet5_1/west, -/area/desert_dam/building/bar/bar) -"cPC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/exterior/valley/valley_medical) +"mVI" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) -"cPF" = ( -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"cPG" = ( +"mVQ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 10 }, -/turf/open/asphalt/tile, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_cargo) -"cPH" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/substation/southwest) -"cPI" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/obj/structure/machinery/landinglight/ds2{ +"mVZ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cPJ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/southwest) -"cPK" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/building/substation/southwest) -"cPL" = ( -/turf/closed/wall, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cPM" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_isolation) -"cPN" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Virology Lab Cell" - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"cPO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"cPP" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cPQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/landing_pad_one) +"mWe" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cPR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cPS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cPT" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cPU" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"cPV" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_cargo) -"cPW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"mWh" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/obj/item/hunting_trap{ + desc = "A bizarre alien device used for trapping and killing prey."; + name = "Alien Mine" }, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"mWi" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_civilian) +"mWm" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cPX" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"mWn" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"mWt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/bar/bar) -"cPY" = ( -/turf/open/floor/carpet13_5/west, -/area/desert_dam/building/bar/bar) -"cPZ" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"mWy" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet9_4/west, -/area/desert_dam/building/bar/bar) -"cQa" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"mWz" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cQb" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"mWM" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cQc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"mWQ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cQd" = ( -/obj/item/trash/cheesie, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cQe" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/turf/open/gm/river/desert/shallow_edge/covered/west, +/area/desert_dam/exterior/river/riverside_central_north) +"mWW" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"mXe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cQf" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"mXz" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"cQg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Bar" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"mXS" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cQh" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"mXZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mYi" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"mYo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/hanger) -"cQi" = ( -/turf/open/floor/prison/red/west, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cQk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "pipe-u" }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cQl" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/red/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cQm" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cQn" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"mYu" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"mYv" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_two) -"cQo" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/building/substation/southwest) -"cQq" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/building/substation/southwest) -"cQr" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/southwest) -"cQs" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/southwest) -"cQv" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/building/substation/southwest) -"cQw" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cQx" = ( -/turf/closed/wall/wood, -/area/desert_dam/building/bar/bar_restroom) -"cQy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cQz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"mYI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/warehouse) +"mYS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cQA" = ( -/obj/structure/toilet{ +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cQB" = ( -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"cQC" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"cQD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cQE" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cQF" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cQG" = ( -/obj/structure/sink, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"cQH" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"mYU" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cQI" = ( -/obj/structure/toilet{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"mYV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/machinery/light/small{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"mZi" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"mZz" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northeast) +"mZA" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"cQJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"mZN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/sink/kitchen, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"cQK" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/desert/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"mZR" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"mZY" = ( +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_civilian) -"cQL" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"cQN" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"cQO" = ( -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") +"nai" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/surface/table, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/lobby) -"cQP" = ( -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cQQ" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"cQR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"nal" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cQS" = ( -/obj/effect/landmark/crap_item, +/obj/item/trash/kepler, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"nar" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cQT" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"nas" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cQU" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/bronze, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cQV" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"cQW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"cQX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/straight_jacket, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"cQY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"cQZ" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/structure/platform{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRa" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/valley/south_valley_dam) +"naF" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"naH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRc" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"naP" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"naR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"naU" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"naX" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/substation/southwest) +"nbb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"nbl" = ( +/obj/structure/stairs{ dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"cRd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRg" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/building/substation/southwest) -"cRi" = ( +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"nbs" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 24; + start_charge = 0 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"nbD" = ( +/obj/structure/bed/chair, /turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/substation/southwest) -"cRj" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/area/desert_dam/building/medical/surgury_observation) +"nbM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/security/prison) +"nbV" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_northwest) +"ncd" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/substation/southwest) -"cRk" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/building/substation/southwest) -"cRl" = ( -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/southwest) -"cRm" = ( -/turf/open/floor/plating, -/area/desert_dam/building/substation/southwest) -"cRn" = ( -/obj/structure/sink{ +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/popcorn, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"ncl" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"ncm" = ( +/turf/open/desert/rock/deep, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"ncx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ncC" = ( +/obj/structure/machinery/power/apc{ dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"cRp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"cRq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + pixel_x = -30; + start_charge = 0 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"cRr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"ncK" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/bar/bar_restroom) -"cRs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"ncN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cRt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_northwest) +"nda" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"ndl" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"ndp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"ndy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cRv" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"ndA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"ndI" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/church) +"ndN" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"ndP" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cRx" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"ndT" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"nec" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"nef" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/donut, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"nei" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"nex" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cRA" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRB" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/landing_pad_two) -"cRC" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"neG" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/northern_hallway) +"neJ" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"nfv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"nfF" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cRD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"nfJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRE" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_two) -"cRF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRG" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"cRH" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cRI" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"nfV" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"ngb" = ( /obj/structure/machinery/light, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cRJ" = ( +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ngh" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/telecomm/lz1_south) +"ngo" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" + icon_state = "road_edge_decal10" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRK" = ( -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRL" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/exterior/valley/south_valley_dam) +"ngC" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_cargo) -"cRM" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cRQ" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"cRR" = ( -/obj/structure/bed, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"cRS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Checkpoint" - }, -/turf/open/floor/prison, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRV" = ( -/turf/open/floor/prison/red/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRX" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"ngG" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"ngI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cRY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Bar" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"ngS" = ( +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_medical) +"ngV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cRZ" = ( -/obj/structure/window/framed/wood/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/building/bar/bar) -"cSa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"ngW" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"nhh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"nhq" = ( +/turf/open/desert/excavation/component3/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"nht" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Garage Breakroom" }, /obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cSb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/whiteyellow/southeast, +/area/desert_dam/interior/dam_interior/garage) +"nhz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSd" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"nhB" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSe" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/red/west, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSg" = ( -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_west"; - name = "Checkpoint Lockdown" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"nhG" = ( /obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; + dir = 1; + pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSl" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nip" = ( +/obj/structure/machinery/colony_floodlight, /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"nis" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_civilian) -"cSn" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/landing_pad_one) -"cSo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" +/area/desert_dam/exterior/valley/valley_telecoms) +"nix" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"niG" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"niV" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSp" = ( -/obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"cSq" = ( -/obj/structure/bed/chair/office/light{ +/area/desert_dam/exterior/landing_pad_two) +"njd" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_medical) +"njg" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/caves/east_caves) +"njE" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison/red/west, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSr" = ( -/turf/open/floor/prison, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSs" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"njJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/prison/red/east, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSu" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/substation/southwest) -"cSv" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/substation/southwest) -"cSw" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/substation/southwest) -"cSx" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"njM" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/chemistry) +"njV" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"nkc" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/office1) +"nkk" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_two) +"nku" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nky" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"nkD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"nkI" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_east) +"nkN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"nkO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"nkU" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"nkW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"nkY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner/north, +/area/desert_dam/building/hydroponics/hydroponics) +"nll" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"nlu" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nlv" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/substation/west) +"nlx" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/interior/caves/temple) +"nlH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"nme" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"nmn" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nmN" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"nmP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating/warnplate/west, -/area/desert_dam/building/substation/southwest) -"cSy" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"nmZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating, -/area/desert_dam/building/substation/southwest) -"cSz" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"nni" = ( +/obj/structure/platform, +/turf/open/desert/excavation/component5/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"nnx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 4 + dir = 8 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cSA" = ( +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"nnD" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"nnI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"nnN" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/mining/workshop) +"nop" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/north_valley_dam) +"nou" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_hydro) +"noB" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_mining) +"noI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cSB" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"noY" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/office) +"npa" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cSC" = ( -/turf/closed/wall, -/area/desert_dam/exterior/valley/valley_civilian) -"cSE" = ( -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" + dir = 4 }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"npo" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/item/tool/stamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSG" = ( -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSH" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"npp" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/workshop) +"npQ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cSK" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/red/southeast, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"npS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Treatment Breakroom" }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/breakroom) +"nqe" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"nqf" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"nqg" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" +/turf/open/floor/whiteblue/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"nqG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nqT" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSR" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cSU" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"cSX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"cSY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"cSZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) +"nrf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"nrh" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 + dir = 8 }, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) -"cTa" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cTc" = ( +"nri" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"nrN" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_cargo) +"nrR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/exterior/telecomm/lz1_south) +"nrY" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkbrown2, +/area/desert_dam/interior/dam_interior/disposals) +"nsf" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" + icon_state = "road_edge_decal12" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cTd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/area/desert_dam/exterior/valley/valley_civilian) +"nsj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"nsm" = ( +/turf/open/floor/coagulation/icon1_1, +/area/desert_dam/building/water_treatment_two) +"nss" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"nst" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"nsL" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_crashsite) -"cTg" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"cTh" = ( -/obj/structure/flora/grass/desert/heavygrass_10, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cTi" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/substation/southwest) -"cTj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Restroom" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTk" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTl" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTn" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTo" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTp" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_10" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cTq" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_civilian) -"cTr" = ( +"nsV" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/exterior/valley/valley_wilderness) +"ntd" = ( +/turf/open/floor/prison/darkbrowncorners3/north, +/area/desert_dam/interior/dam_interior/hanger) +"ntl" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"ntu" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/voice, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ntB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cTs" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cTu" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"ntW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cTv" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/desert_dam/building/mining/workshop) -"cTw" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"cTA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"cTB" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"nuj" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"nuH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"nuI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"nuR" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"cTC" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_cargo) -"cTD" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_cargo) -"cTE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) -"cTF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"cTG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) -"cTH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"nuV" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"nvd" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"nvn" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"nvr" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"cTI" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_hydro) -"cTJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cTL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTO" = ( -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTP" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTQ" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_civilian) -"cTR" = ( -/obj/structure/surface/table, +"nvW" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/interior/caves/east_caves) +"nwB" = ( +/obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"cTS" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/building/mining/workshop) -"cTU" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"nwU" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"nwV" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"nwX" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"nxi" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"cTZ" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/building/mining/workshop) -"cUa" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"cUb" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"nxm" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cUc" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"cUd" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"cUf" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/obj/structure/platform{ + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cUg" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cUh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"cUi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"cUj" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_hydro) -"cUk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"nxn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_labs) +"nxw" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/emergency_room) +"nxA" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/CE_office) +"nxP" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"nxZ" = ( +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/substation/northwest) +"nyd" = ( +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/substation/west) +"nyh" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/dorms/pool) +"nyl" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/interior/caves/central_caves) +"nyn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cUl" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"nyq" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/asphalt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"nyw" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_cargo) -"cUo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +"nyF" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"nyT" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"nyX" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/west) +"nzm" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/interior/caves/central_caves) +"nzq" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"nzv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cUs" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/southeast, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nzB" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"nzF" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) -"cUy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +"nzJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"nzX" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"nAm" = ( +/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"nAq" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/interior/dam_interior/control_room) +"nAI" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"nAL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) -"cUz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"nBc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"nBD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cUA" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_cargo) -"cUB" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_cargo) -"cUD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"nBL" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"nBO" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Office" }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"nCi" = ( +/obj/item/stack/medical/advanced/ointment/predator, +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/temple) +"nCm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cUE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"nCn" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 4 + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"nCs" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUF" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUG" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUH" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUI" = ( +/area/desert_dam/building/medical/primary_storage) +"nCw" = ( +/obj/item/stool, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"nCC" = ( +/obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt/dirt2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"nCL" = ( +/turf/open/floor/filtrationside/north, /area/desert_dam/exterior/valley/valley_hydro) -"cUJ" = ( -/obj/structure/platform{ - dir = 1 +"nCP" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/landing_pad_one) +"nDb" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"nDe" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"nDg" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"nDJ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"nDK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_south) -"cUK" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_7" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nDW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cUL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"nDZ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/north_tunnel) +"nEh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"nEv" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"nEM" = ( +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 + }, +/area/shuttle/trijent_shuttle/lz2) +"nEP" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 }, /turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"nEY" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_civilian) -"cUP" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +"nFh" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"nFm" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"nFq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cUU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"nFr" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/obj/structure/machinery/computer/communications, +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"nFz" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/asphalt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"nFB" = ( +/turf/open/floor/prison/darkbrown2/southeast, /area/desert_dam/building/warehouse/loading) -"cUV" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" - }, +"nFD" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"nGg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cUW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"nGu" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/west_tunnel) -"cUX" = ( +"nGU" = ( +/turf/open/floor/prison/darkpurplecorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"nHs" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"nHx" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"nHK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"nHL" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"nHM" = ( +/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cUY" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/warehouse) -"cUZ" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"nHQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"nIa" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_two) +"nIg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"nIr" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"nIS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/warehouse) -"cVa" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"nIT" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/warehouse) -"cVh" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/treatment_room) +"nIU" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"nIX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Tool Storage" }, -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/warehouse) -"cVi" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/loading) -"cVo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/loading) -"cVq" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cVr" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"nJb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/office) +"nJq" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"nJs" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cVs" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"nJF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"nKf" = ( /obj/structure/machinery/light, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cVu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nKh" = ( +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_civilian) -"cVv" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"nKu" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = null; + name = "\improper Elevator Lock" + }, +/turf/open/floor/prison/cell_stripe/west, +/area/shuttle/trijent_shuttle/omega) +"nKC" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/interior/caves/central_caves) +"nKD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"nKH" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"cVz" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nKP" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nLa" = ( +/obj/structure/machinery/chem_dispenser, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"nLc" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nLh" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"nLl" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"nLs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"nLt" = ( +/obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"cVA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/area/desert_dam/exterior/valley/valley_crashsite) +"nLw" = ( +/obj/structure/cargo_container/trijent/right/alt, +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/telecomm/lz2_containers) +"nLx" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"nLM" = ( +/obj/structure/stairs, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"nLP" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nLQ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_labs) +"nLT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"nLV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Hallway" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cVC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nLZ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"nMn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cVE" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"nMG" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"nMK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison/cell_stripe/north, -/area/desert_dam/building/warehouse/loading) -"cVH" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"cVI" = ( +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/exterior/valley/valley_mining) +"nMV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"cVJ" = ( +/area/desert_dam/interior/dam_interior/hangar_storage) +"nMW" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"nNk" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"nNv" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"nNH" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"nNV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"nOn" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river_mouth/southern) +"nOo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"nOq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"nOO" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"nOP" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"cVK" = ( +/area/desert_dam/building/water_treatment_one/hallway) +"nOR" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/building/water_treatment_one/purification) +"nPt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"nPN" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"nPX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"nQc" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"nQw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"cVL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellowcorners2/east, -/area/desert_dam/building/mining/workshop) -"cVM" = ( +/area/desert_dam/interior/dam_interior/lobby) +"nQA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"nQD" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"nQE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/exterior/valley/valley_civilian) -"cVN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"cVO" = ( +"nQI" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"nQK" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/snacks/stew, +/obj/item/tool/kitchen/utensil/spoon, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"nQR" = ( +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel/manager, +/obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"cVP" = ( -/turf/open/floor/prison/darkbrowncorners2, -/area/desert_dam/building/warehouse/loading) -"cVS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cVU" = ( -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/loading) -"cVV" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cVX" = ( +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"nRl" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/north, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_south) -"cWa" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +"nRv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_civilian) -"cWb" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +"nRG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cWc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cWe" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"nRL" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/obj/structure/machinery/disposal, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/desert_dam/building/security/prison) +"nRV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cWj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/loading) -"cWk" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"cWn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Loading Bay" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"cWo" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"nSb" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/warehouse) -"cWp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"cWq" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cWr" = ( +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"nSB" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 + dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"cWv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"cWw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/desert_dam/exterior/valley/valley_northwest) +"nSW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 30 }, -/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nTp" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cWx" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_cargo) -"cWy" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) -"cWA" = ( +/area/desert_dam/exterior/valley/valley_medical) +"nTq" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/north_valley_dam) +"nTs" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"nTL" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"nTU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nTW" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cWB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"nTX" = ( +/obj/structure/lamarr, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"nUa" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/exterior/telecomm/lz2_containers) +"nUs" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Engineering Office" + }, +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"cWC" = ( +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"nUu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"nUP" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_south) -"cWD" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_south) +"nUV" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"nVL" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"cWE" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"cWF" = ( +/turf/open/floor/chapel/east, +/area/desert_dam/building/church) +"nVO" = ( /obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"cWH" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_civilian) -"cWN" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/valley/valley_labs) +"nWe" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"cWP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_civilian) -"cWV" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"cWW" = ( +/area/desert_dam/exterior/valley/valley_crashsite) +"nWf" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"nWr" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"cWX" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"cXa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/warehouse/loading) -"cXd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"cXh" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"cXj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_hydro) -"cXk" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"nWC" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cXl" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"nWF" = ( +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"nWO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cXm" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"nWX" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"nXf" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cXn" = ( -/obj/structure/stairs{ - dir = 1 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"nXg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Hallway" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"nXm" = ( /obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"nXu" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"cXo" = ( -/obj/structure/stairs{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"nXy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"nXW" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/west_wing_hallway) +"nXZ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"nYc" = ( +/obj/structure/window/framed/chigusa, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"nYf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"nYg" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"nYh" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight/lantern, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"nYo" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"nYt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/asphalt/tile, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"nYw" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"nYN" = ( +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"nYW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"nZg" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nZn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner/west, +/area/desert_dam/building/hydroponics/hydroponics) +"nZq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"nZu" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"nZx" = ( +/turf/open/floor/coagulation/icon7_8, /area/desert_dam/exterior/valley/valley_hydro) -"cXp" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_south) -"cXt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"nZF" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/mining/workshop) +"nZI" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/east_wing_hallway) +"nZM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/structure/desertdam/decals/road_stop{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"nZO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"nZW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/interior/caves/central_caves) +"oax" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "stop_decal5" + icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cXw" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"oaY" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_north) +"obb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/excavation/component6/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"obv" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cXx" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/obj/item/weapon/harpoon/yautja{ + name = "Alien Harpoon" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cXz" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"cXA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"obx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cXD" = ( -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"cXI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/warehouse/warehouse) -"cXK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cXL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2, -/area/desert_dam/building/warehouse/warehouse) -"cXM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"obA" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_east) +"obI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"cXN" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"cYe" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"cYf" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_south) -"cYg" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_south) -"cYh" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) -"cYi" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_south) -"cYj" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_4" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cYk" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"ocj" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/landing_pad_two) +"ock" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"ocG" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_civilian) +"ods" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"odG" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_cargo) -"cYp" = ( +"odM" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_medical) +"odU" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) -"cYs" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_civilian) -"cYu" = ( -/obj/effect/decal/sand_overlay/sand1{ +"oej" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/garage) +"oek" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"oev" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/interior/caves/central_caves) +"oey" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/west) +"oeF" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cYv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"oeP" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cYw" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered, -/area/desert_dam/exterior/river/riverside_east) -"cYx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/CE_office) +"oeU" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"ofa" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"ofc" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"ofj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"ofr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"ofB" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cYy" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/warehouse/loading) -"cYz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/loading) -"cYA" = ( +/area/desert_dam/exterior/valley/valley_crashsite) +"ofM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/desert_dam/building/warehouse/loading) -"cYB" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"cYC" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"ofN" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"ofW" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"oga" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ogq" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northeast) +"ogA" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"ogQ" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"ohb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "W" }, /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) -"cYF" = ( +"ohf" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"ohh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"ohI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"ohN" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"oiN" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/chapel/north, +/area/desert_dam/building/church) +"oji" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"ojo" = ( +/obj/structure/flora/pottedplant, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/building/administration/lobby) +"ojp" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/dorms/hallway_northwing) -"cYG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"ojr" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/effect/landmark/good_item, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"cYH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"ojI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"ojN" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"ojW" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/emergency_room) +"ojX" = ( +/obj/structure/closet/secure_closet/RD, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"oku" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"oky" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"okS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"okZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"cYI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/warehouse) -"cYJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cYK" = ( +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"olf" = ( +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/church) +"olk" = ( +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") + }, /obj/structure/surface/table, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"cYL" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/warehouse/warehouse) -"cYN" = ( +/turf/open/floor/darkred2/northwest, +/area/desert_dam/building/administration/lobby) +"olp" = ( +/turf/open/floor/darkyellow2/southeast, +/area/desert_dam/building/substation/northwest) +"olx" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, /obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/dorms/pool) +"olD" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "garage_dd"; + name = "\improper Garage" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"olG" = ( +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"olL" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"olM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Showers" + }, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/pool) +"olV" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"omi" = ( +/obj/structure/sink{ dir = 1; - icon_state = "pipe-c" + pixel_y = -10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"omt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/bar_valley_dam) +"omU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"omY" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/east_wing_hallway) +"oni" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/hanger) +"onj" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_northwest) +"oob" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"cYO" = ( +/area/desert_dam/exterior/landing_pad_two) +"oog" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/armory) +"ooh" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + icon_state = "conveyor-1" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"oon" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"ooB" = ( +/turf/open/floor/warnwhite/southwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"ooL" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_mining) +"ooP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"ooQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"opf" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"opo" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"opq" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"opB" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction{ - dir = 8; + dir = 1; icon_state = "pipe-j2" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"oqa" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, +/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"cYP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/exterior/landing_pad_two) +"oqc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_hydro) -"cYQ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"oqe" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_hydro) -"cYR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"oqy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"cYS" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"orb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/backroom) +"ord" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"cYT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"org" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/garage) +"orw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"cYV" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"osx" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_hydro) -"cYW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_hydro) -"cYY" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"cYZ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) -"cZb" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_cargo) -"cZc" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"cZd" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/platform, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"cZe" = ( -/obj/structure/largecrate/random/barrel/blue, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"cZf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"cZl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, +/area/desert_dam/exterior/valley/valley_telecoms) +"osy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"cZn" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cZo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cZp" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cZq" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"cZs" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"osL" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"osP" = ( +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"osT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"osW" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"osZ" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"otn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"cZt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"cZu" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/cafeteria) -"cZv" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) -"cZw" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"otw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cZx" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/warehouse/loading) -"cZy" = ( -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"otJ" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"oub" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 2 + }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"cZz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) -"cZB" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ouh" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/office2) +"ouH" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/loading) -"cZD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, +"ouL" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/asphalt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"ouU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon7_0, /area/desert_dam/exterior/valley/valley_hydro) -"cZE" = ( +"ouW" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/lobby) +"ovd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/landing_pad_one) +"ovx" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"ovE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"owb" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 6 }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/valley/valley_wilderness) -"cZF" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"owr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/landing_pad_one) +"owJ" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_hydro) -"cZJ" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"owM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"owR" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"owT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Workshop" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"owY" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"oxd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) -"cZK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"cZP" = ( +"oxe" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"oxj" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"oxm" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"oxq" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"oxt" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cZQ" = ( +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/bar/bar) +"oxy" = ( +/turf/open/desert/excavation/component3/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"oxB" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"oxX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" - }, -/turf/open/asphalt, +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"oya" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) -"cZR" = ( +"oyf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_civilian) -"cZS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_civilian) -"cZV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dag" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"oyj" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 6 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"oyo" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"oyq" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"oyt" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"oyu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"oyM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"oyY" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/telecomm/lz2_storage) -"dak" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/exterior/valley/valley_civilian) -"dam" = ( -/obj/structure/disposalpipe/segment{ +"ozu" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ozK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dao" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/cafeteria/backroom) -"dap" = ( -/turf/closed/wall, -/area/desert_dam/building/cafeteria/cold_room) -"das" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"ozQ" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"oAl" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"oAm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/virology_wing) +"oAo" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"daw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"oAz" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"dax" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"oAM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"oBa" = ( +/obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"daB" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"daD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"daF" = ( -/turf/closed/wall, -/area/desert_dam/building/hydroponics/hydroponics) -"daG" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/prison/yellowfull/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"daH" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"oBv" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison/yellowfull/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"daI" = ( -/turf/open/floor/prison/yellow/west, -/area/desert_dam/building/hydroponics/hydroponics) -"daK" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"daL" = ( -/turf/open/floor/prison/yellow/east, -/area/desert_dam/building/hydroponics/hydroponics) -"daM" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"daN" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"daO" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/cafeteria/cafeteria) -"daP" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"daQ" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"daT" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"oBC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/bar/bar) +"oBD" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"oBM" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_civilian) +"oBR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"oCs" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"oCt" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"oCu" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"daX" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/exterior/valley/valley_telecoms) +"oCK" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"daY" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2/southeast, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"dba" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"dbc" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_landing" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"dbd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"dbe" = ( -/obj/item/stool, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"dbf" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_storage" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"oDi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"dbh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"oDq" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"dbi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/warehouse) -"dbj" = ( +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"oDr" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"oDv" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"oDD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/warehouse/warehouse) -"dbk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"dbm" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"dbn" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/prison/yellowfull, -/area/desert_dam/building/hydroponics/hydroponics) -"dbo" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics) -"dbp" = ( -/turf/open/floor/prison/yellow/northwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dbq" = ( /turf/open/floor/prison/yellow/north, /area/desert_dam/building/hydroponics/hydroponics) -"dbr" = ( -/turf/open/floor/prison/yellowcorner/east, -/area/desert_dam/building/hydroponics/hydroponics) -"dbs" = ( -/turf/open/floor/prison/yellowcorner/north, -/area/desert_dam/building/hydroponics/hydroponics) -"dbt" = ( -/turf/open/floor/prison/yellow/northeast, -/area/desert_dam/building/hydroponics/hydroponics) -"dbu" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics) -"dbw" = ( -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dbx" = ( +"oDK" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/mining/workshop) +"oDR" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"oDS" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dby" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dbz" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dbA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dbB" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"oEh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner, +/area/desert_dam/building/hydroponics/hydroponics) +"oEX" = ( +/obj/item/tool/surgery/surgicaldrill, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/bonesetter, +/obj/item/tool/surgery/FixOVein, +/obj/item/stack/nanopaste, /obj/structure/surface/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"oFg" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dbC" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_storage" +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"oFh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"dbD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dbE" = ( -/obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dbF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"oFk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dbG" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, +"oFB" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"oFF" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dbH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/sink/kitchen, -/obj/structure/machinery/light{ +"oFR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"oGf" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"oGh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/southern_hallway) +"oGm" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"oGn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"oGr" = ( +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/emergency_room) +"oGF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"oGP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"oGT" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"oGU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"oGZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"oHb" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Office" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"oHc" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dbI" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_landing" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"oHf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dbJ" = ( -/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"oHi" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkyellow2/northwest, +/area/desert_dam/building/security/prison) +"oHz" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dbK" = ( -/turf/closed/wall, -/area/desert_dam/building/cafeteria/cafeteria) -"dbL" = ( -/turf/closed/wall, -/area/desert_dam/building/cafeteria/loading) -"dbM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Delivery" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"oHA" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dbN" = ( -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dbO" = ( -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 5; - pixel_y = 3 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"oHG" = ( +/turf/open/floor/prison/darkpurplecorners2, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"oHI" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"oHQ" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"oHR" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"oHZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/obj/structure/machinery/light/small{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"oIc" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"dbP" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"dbQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"dbR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"oIf" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/darkred2/west, +/area/desert_dam/building/administration/lobby) +"oIj" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 5 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"dbT" = ( -/obj/item/stool, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dbU" = ( +"oIl" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"oIn" = ( +/turf/open/gm/river/darkred_pool, +/area/desert_dam/building/dorms/pool) +"oIr" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"oIA" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"oIB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"oID" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"oIE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dbY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/desert_dam/exterior/valley/bar_valley_dam) +"oIK" = ( +/obj/item/frame/table, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"oIO" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dbZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"oJc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"oJV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dca" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe, -/area/desert_dam/building/warehouse/loading) -"dcb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/desert_dam/building/warehouse/loading) -"dcc" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/loading) -"dcf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/yellow/north, -/area/desert_dam/building/hydroponics/hydroponics) -"dcg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/yellow/north, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) -"dch" = ( +"oJW" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/yellowcorner/east, -/area/desert_dam/building/hydroponics/hydroponics) -"dci" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"oKj" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_south) +"oKp" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"oKs" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"oKy" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_south) +"oKG" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/turf/open/floor/prison/yellowcorner/north, -/area/desert_dam/building/hydroponics/hydroponics) -"dcj" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"oKS" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/turf/open/floor/prison/yellow/north, -/area/desert_dam/building/hydroponics/hydroponics) -"dck" = ( -/turf/closed/wall, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dcl" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dcn" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dco" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"dcp" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dcq" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/disposalpipe/segment{ dir = 1; - pixel_y = 25 - }, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dcs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/backroom) -"dcw" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dcx" = ( -/obj/structure/machinery/light{ - dir = 1 + icon_state = "pipe-c" }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dcy" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"oLa" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"oLg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"dcz" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"oLs" = ( +/turf/open/desert/excavation/component1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"oLA" = ( +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"oLR" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"dcD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"dcL" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"oMd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"dcM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dcN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"oMm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/substation/southwest) +"oMp" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dcO" = ( -/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"oMz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon8_4, +/area/desert_dam/exterior/valley/valley_mining) +"oME" = ( +/obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"dcP" = ( +/area/desert_dam/exterior/landing_pad_two) +"oMJ" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/telecomm/lz1_south) +"oNh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"oNl" = ( +/turf/open/floor/warning/west, +/area/desert_dam/interior/dam_interior/engine_room) +"oNv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"oNw" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"oND" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"oNH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"oNO" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/building/water_treatment_two/purification) +"oNX" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dcR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"oOt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"oOu" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 2 }, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dcS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"oOM" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"oOQ" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hangar_storage) +"oOT" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/telecomm/lz1_south) +"oOZ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"oPp" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"oPu" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_northwest) +"oPJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Office" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/treatment_room) +"oPX" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dcV" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"oQg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/vault2/north, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dcW" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/vault2/north, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dcY" = ( -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dcZ" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"oQr" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dda" = ( -/turf/closed/wall, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Loading" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"oQE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"oQF" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"oQG" = ( +/turf/open/floor/coagulation/icon6_8, +/area/desert_dam/exterior/valley/valley_mining) +"oQH" = ( +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"oRi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/west_wing_hallway) +"oRv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"oRw" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/dark2, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddd" = ( -/turf/open/floor/dark2, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dde" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddh" = ( +/area/desert_dam/building/administration/archives) +"oSL" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/north_wing_hallway) +"oSQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, +/turf/open/floor/prison/blue/north, +/area/desert_dam/landing/console) +"oSV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"oTg" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"oTx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"ddi" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/building/cafeteria/loading) +"oTz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"oTF" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"ddl" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"oTI" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"oTQ" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"oTT" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_two) +"oTU" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"oUq" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"oUr" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"oUs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Decontamination" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"oUE" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"oUG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"oUN" = ( +/obj/structure/window/framed/chigusa, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"oUR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"ddm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"oVb" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_cargo) +"oVf" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/cafeteria) -"ddn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"oVh" = ( +/obj/structure/platform_decoration{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"ddo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"ddp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"oVv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"oVB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/holding) +"oVK" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/interior/dam_interior/break_room) +"oWb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"oWl" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/interior/caves/central_caves) +"oWx" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) +"oWD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 2 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"ddq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Freezer" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/garage) +"oWI" = ( +/turf/open/desert/excavation/component3/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"oWQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"oWW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Workshop" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"ddr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"oXb" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"oXr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"dds" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"ddu" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"oXs" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"ddv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"ddw" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"oXy" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"oXK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"oXQ" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"oXW" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"oYa" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"oYj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) -"ddx" = ( +"oYu" = ( +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"oYv" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"ddJ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/warehouse) -"ddK" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_storage" - }, -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/warehouse) -"ddL" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_storage" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/warehouse) -"ddM" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_storage" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"oYz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"oYD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/warehouse) -"ddO" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"oYE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - name = "\improper Hydroponics" + name = "\improper Chapel" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"ddP" = ( +/turf/open/floor/dark, +/area/desert_dam/building/church) +"oYG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ddQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"ddR" = ( -/obj/structure/machinery/fermenter, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"ddS" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"ddT" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"ddU" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - icon_state = "conveyor-1" - }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"ddV" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - icon_state = "conveyor-1" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"ddW" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - icon_state = "conveyor-1" - }, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddX" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - icon_state = "conveyor-1" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/dark2, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddY" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dea" = ( -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"deb" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"oYQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_wilderness) +"oYS" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dec" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_12" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"ded" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dee" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"deg" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"deh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dej" = ( -/obj/structure/kitchenspike, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"dek" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"del" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_civilian) -"dem" = ( +/area/desert_dam/interior/dam_interior/north_tunnel) +"oZs" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/central) +"oZu" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"den" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"deo" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"oZD" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"oZK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"oZU" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/landing_pad_two) +"oZW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"pal" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pan" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"pao" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/prison/yellowfull, +/area/desert_dam/building/hydroponics/hydroponics) +"pas" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/substation/southwest) +"paA" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"paB" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pba" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"pbo" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"pbq" = ( +/obj/structure/platform_decoration{ + dir = 8 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"pbw" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"pbC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dep" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"deq" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"der" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"des" = ( -/turf/open/floor/prison/yellowcorner/west, -/area/desert_dam/building/hydroponics/hydroponics) -"det" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"deu" = ( -/turf/open/floor/prison/yellow, -/area/desert_dam/building/hydroponics/hydroponics) -"dev" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dex" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"dey" = ( -/turf/open/floor/vault2/north, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dez" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/obj/effect/landmark/railgun_camera_pos, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"deA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_loading) -"deB" = ( +"pbN" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"pbS" = ( +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/break_room) +"pcr" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"pcz" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"deC" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"deD" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"deE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"deF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"deG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"deH" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"deI" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/substation/central) -"deJ" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"pcJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"deK" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"pcO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"pdt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"deM" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"pdu" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"pdA" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"pdE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") + }, +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/warden) +"pdU" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"pdV" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"pdX" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"peb" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"deP" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"deQ" = ( -/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"pec" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pet" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_hydro) +"pev" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"deR" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"peF" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"peH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"peN" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/telecomm/lz2_storage) +"peT" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"pfa" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"pfc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) -"deS" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"pfm" = ( +/obj/structure/prop/dam/drill, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"pgf" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"deU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"pgj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"pgD" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"pgI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/south_valley_dam) +"pgV" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"deV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"pgZ" = ( +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_one/purification) +"phb" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" }, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"deW" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"phf" = ( +/turf/open/floor/whiteblue/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"phk" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"phu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"phx" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_south) +"phz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"deX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "hangar_dam_2"; + name = "\improper Hangar Shutters" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"phA" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"deY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/warehouse) -"deZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"dfa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/chapel/east, +/area/desert_dam/building/church) +"phK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/warehouse) -"dfb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"phL" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dfc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"pid" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"dfe" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"pif" = ( +/obj/docking_port/stationary/trijent_elevator/empty{ + id = "trijent_engineering"; + name = "Engineering Elevator"; + airlock_exit = "east"; + airlock_area = /area/shuttle/trijent_shuttle/engi; + elevator_network = "A" }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dfh" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dfi" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dfj" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dfk" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dfm" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cafeteria) -"dfn" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/engi) +"pit" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_hydro) +"piw" = ( +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"piz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dfo" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"piE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_telecoms) +"piG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dfp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"dfq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"piI" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_mining) +"piK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"piL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dfr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_wilderness) -"dfs" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"piO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"piP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"piX" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/central) +"pjj" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dft" = ( -/obj/structure/machinery/light{ +/area/desert_dam/interior/dam_interior/north_tunnel) +"pjl" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"pjB" = ( +/obj/structure/stairs{ dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dfv" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dfw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"pjR" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"dfx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"pjV" = ( +/obj/item/trash/c_tube, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"pke" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"pkg" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"pkp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/south_valley_dam) +"pkt" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecalbottomleft" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"dfy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Loading Bay" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"pku" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"dfz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/north, -/area/desert_dam/building/warehouse/warehouse) -"dfA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/building/warehouse/warehouse) -"dfB" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/desert_dam/building/warehouse/loading) -"dfC" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"dfD" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"dfE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners2, -/area/desert_dam/building/warehouse/loading) -"dfG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"dfH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/loading) -"dfI" = ( -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/loading) -"dfJ" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"pkw" = ( +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pkM" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"dfK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"dfL" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"dfN" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/desert_dam/building/security/northern_hallway) +"pkV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/obj/structure/surface/rack, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"dfS" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/valley/valley_wilderness) +"pkZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dfT" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel/spade, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"dfU" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"dga" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"plb" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dgb" = ( -/obj/structure/bed/chair{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dgc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dgd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"plo" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"plw" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dge" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"dgf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/interior/dam_interior/south_tunnel) +"plM" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/caves/central_caves) +"pmv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"pmx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Treatment Garage" }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"dgg" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/building/warehouse/warehouse) -"dgh" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"pmI" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/mining/workshop_foyer) +"pmN" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"pmP" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/temple) +"pmV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"pna" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/radio, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dgm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"pnd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"pni" = ( +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"pnk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/window/reinforced{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgo" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/loading) -"dgp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"pnv" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"pnA" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"pnB" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river_mouth/southern) +"pnI" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"pnL" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"pnU" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"pnY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"poa" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) -"dgs" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/warehouse/loading) -"dgt" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"dgu" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrown2/west, -/area/desert_dam/building/warehouse/loading) -"dgv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgw" = ( +"pob" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"poi" = ( +/obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgy" = ( +/area/desert_dam/exterior/valley/valley_medical) +"pol" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/building/water_treatment_one/purification) +"pon" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"poy" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"poB" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_one) +"poH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"poP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"poS" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"poT" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_hydro) +"ppd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgz" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrown2/southwest, -/area/desert_dam/building/warehouse/loading) -"dgA" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/desert_dam/building/warehouse/loading) -"dgC" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/warehouse/loading) -"dgD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"dgE" = ( -/turf/open/floor/prison/darkbrown2/southwest, -/area/desert_dam/building/warehouse/loading) -"dgF" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"dgG" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"dgH" = ( +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"ppB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dgI" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"pqa" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"pqk" = ( +/obj/structure/sink, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"pqO" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"pqU" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"pqX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dgJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"pre" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"dgK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"prn" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) -"dgL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_north) +"prA" = ( +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"prC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"prW" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"pse" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) -"dgM" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"psp" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"pst" = ( +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dgN" = ( -/obj/structure/machinery/door_control{ - id = "dam_stormlock_north2"; - name = "Storm Shutter Lockdown" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"psA" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/holding) +"psH" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"psS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"ptq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"dgO" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"dgP" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"dgT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dgU" = ( -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) -"dgW" = ( +"pts" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"ptx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"ptE" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"ptN" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"dgX" = ( -/obj/structure/platform{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_south) +"ptW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"pub" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"pug" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Observation" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgury_observation) +"puj" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_civilian) -"dgY" = ( -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dhc" = ( -/obj/structure/toilet, /obj/structure/machinery/light{ dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dhd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" +"pun" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"puq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, +/obj/item/reagent_container/food/snacks/cheesewedge, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dhe" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"dhf" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"dhg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"put" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"puv" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"pux" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"puy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"dhh" = ( -/turf/open/asphalt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"puz" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_south) +"puM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) -"dhj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"puO" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"puS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Break Room" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"puX" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"puY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pva" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, /turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"dhs" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/hallway) -"dhA" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/purification) -"dhT" = ( -/obj/effect/decal/sand_overlay/sand2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dhU" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/area/desert_dam/exterior/valley/valley_hydro) +"pvd" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"pvx" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"pvD" = ( +/obj/structure/bed/chair{ dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dhX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"pvP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dhZ" = ( -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dia" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"dib" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"dic" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/building/water_treatment_one/control_room) +"pvQ" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"pwb" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"pwd" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"die" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/lobby) -"dif" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"pws" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteyellow/northeast, +/area/desert_dam/building/water_treatment_one/breakroom) +"pwy" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"pwz" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"pwE" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_crashsite) -"dil" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/garage) -"dim" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/dorms/hallway_northwing) -"din" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"diq" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/equipment) -"dir" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/building/substation/northwest) -"diG" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/yellow, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) +"pwI" = ( +/turf/open/floor/prison/yellow/northwest, /area/desert_dam/building/hydroponics/hydroponics) -"diH" = ( -/obj/structure/machinery/light{ +"pwT" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison/yellow, -/area/desert_dam/building/hydroponics/hydroponics) -"diI" = ( -/obj/structure/machinery/light{ +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"pwW" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison/yellowcorner/west, -/area/desert_dam/building/hydroponics/hydroponics) -"diJ" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/warehouse/breakroom) +"pxJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security Office Space" }, -/turf/open/floor/prison/yellowcorner, -/area/desert_dam/building/hydroponics/hydroponics) -"diK" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/office) +"pxN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/floor/prison/yellow, -/area/desert_dam/building/hydroponics/hydroponics) -"diL" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"diM" = ( -/obj/structure/platform{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"pxP" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_cargo) +"pyI" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"diN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"diO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"pyT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/telecomm/lz2_storage) +"pzc" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"diP" = ( +/area/desert_dam/exterior/valley/valley_labs) +"pze" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/item/tool/surgery/retractor, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"pzf" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/excavation/component7/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"pzg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_mining) +"pzl" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"diR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_medical) +"pzm" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"pzn" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"pzr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southeast, +/area/desert_dam/interior/dam_interior/disposals) +"pzv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dja" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 +/area/desert_dam/exterior/valley/valley_hydro) +"pzB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" + }, +/obj/structure/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Security Desk" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"djg" = ( /obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"djh" = ( -/obj/item/device/flashlight/lamp, /obj/item/tool/pen/blue{ - pixel_x = 5 + pixel_x = -6 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"djk" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/water_treatment_two/lobby) +"pzG" = ( +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/building/security/lobby) +"pzK" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" + icon_state = "road_edge_decal5" }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"djl" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"djr" = ( -/turf/open/floor/prison/yellow/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"djs" = ( -/turf/open/floor/prison/yellow/southeast, -/area/desert_dam/building/hydroponics/hydroponics) -"djt" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light, -/turf/open/floor/prison/yellowfull, -/area/desert_dam/building/hydroponics/hydroponics) -"dju" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"djw" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_south) -"djx" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_south) -"djy" = ( -/obj/structure/platform_decoration{ +/area/desert_dam/exterior/landing_pad_one) +"pzW" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) -"djz" = ( -/obj/structure/platform, -/obj/structure/platform{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"pzY" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"pAh" = ( +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"pAo" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"pAv" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/substation/southwest) +"pAw" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_south) -"djA" = ( +/turf/open/floor/darkred2/west, +/area/desert_dam/building/security/warden) +"pAH" = ( +/obj/structure/fence, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/east_caves) +"pAS" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/lobby) +"pBc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/north_valley_dam) +"pBU" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"djV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"djW" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"djY" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"pCa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper SMES" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/northwest, -/area/desert_dam/interior/dam_interior/disposals) -"djZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"pCj" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"pCk" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) -"dka" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Loading" - }, -/turf/open/floor/dark2, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dkb" = ( -/obj/structure/stairs{ - dir = 1 +"pCn" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"pCH" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_civilian) +"pCX" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"pDa" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/interior/caves/temple) +"pDk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"pDD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"pDJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"pDT" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"dkc" = ( -/obj/structure/stairs{ - dir = 1 +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/west_tunnel) +"pEf" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"pEh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"pEi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) -"dkd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" +"pEr" = ( +/turf/open/desert/excavation/component1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"pEA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"pEM" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dke" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light{ +/area/desert_dam/building/dorms/pool) +"pEQ" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"pFm" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pFq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"pFz" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dkh" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pFB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dki" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"pFK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitepurplecorner/east, +/area/desert_dam/building/medical/chemistry) +"pFW" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/prison/whiteredcorner/west, +/area/desert_dam/building/medical/surgery_room_one) +"pGn" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"pGr" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"pGF" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/garage) +"pGG" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/building/substation/west) +"pGK" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"pGZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"pHl" = ( +/obj/effect/blocker/toxic_water, +/turf/open/floor/filtrationside/north, +/area/desert_dam/exterior/valley/valley_mining) +"pHo" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_central_south) +"pHE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"pHK" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/disk/nuclear, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"pHS" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"pHW" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/lobby) +"pIe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) -"dkj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Delivery" +"pIk" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"pIl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"pIn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Overseer's Office" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/overseer_office) +"pIz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Central" }, -/turf/open/floor/dark, -/area/desert_dam/building/cafeteria/loading) -"dkk" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"pII" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/tile, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/warden) +"pIM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) -"dkl" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +"pJb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"pJi" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/valley/valley_labs) +"pJm" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pJu" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dkm" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"pJD" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_wilderness) +"pJW" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"pKb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"pKk" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"pKm" = ( +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"pKu" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/breakroom) +"pKx" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dkn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river_mouth/southern) +"pKH" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"pKK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Breakroom" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/meetingrooom) +"pLq" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"pLt" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dko" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dkG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics" + icon_state = "S" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dkH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Packaging" +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{ + pixel_y = 32; + shuttleId = "trijentshuttle22" }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/exterior/valley/valley_medical) +"pLx" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"pLE" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dkI" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/building/warehouse/loading) +"pLM" = ( +/obj/structure/barricade/sandbags, +/obj/structure/barricade/sandbags{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/desert_dam/exterior/valley/valley_hydro) -"dkJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/building/substation/southwest) -"dkK" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) -"dkL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Breakroom" - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dkM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dkN" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_civilian) -"dkZ" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"dlb" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dlc" = ( -/obj/structure/prop/dam/large_boulder{ - icon_state = "boulder_large1" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"pMb" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"dld" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"pMd" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/interior/caves/east_caves) +"pMs" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"pMz" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pMB" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/spaceacillin, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/north, -/area/desert_dam/interior/dam_interior/disposals) -"dle" = ( -/obj/structure/toilet, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dlu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"dlx" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"pME" = ( +/turf/open/floor/prison/yellowcorner/west, +/area/desert_dam/building/hydroponics/hydroponics) +"pMN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"pMQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"pNr" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"pNs" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"dly" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"pNu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"pNE" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_cargo) -"dlz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"pNT" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_civilian) -"dlA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/prison/yellowfull/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"pNW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dlB" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/loading) -"dlC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +"pOi" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/southern_hallway) +"pOo" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/interior/caves/temple) +"pOw" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dlD" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"pOx" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dlE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dlF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dlJ" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"dlM" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"pOy" = ( +/turf/open/floor/whitepurple, +/area/desert_dam/building/medical/chemistry) +"pON" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/lobby) +"pOS" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/north_valley_dam) +"pPg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/south_valley_dam) +"pPm" = ( +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/administration/hallway) +"pPq" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_labs) +"pPE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Loading" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dlN" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dlP" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"pPL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"pPT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"pPU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"pQz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"pQG" = ( /obj/structure/platform{ dir = 4 }, @@ -39023,1088 +37090,1314 @@ /obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment, /turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dlQ" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/desert_dam/interior/dam_interior/west_tunnel) +"pQN" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dlR" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dlS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dlT" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"pQW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"pRc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"pRe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dme" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dmf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"pRj" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/warehouse/breakroom) +"pRl" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_northwest) +"pRn" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dmg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"pRA" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"pRQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dmz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"pRU" = ( +/obj/item/frame/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"pRX" = ( +/obj/item/clothing/head/welding, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"pSk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"pSn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_wilderness) +"pSB" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"pSE" = ( +/turf/open/desert/excavation/component5/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"pSG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Operating Theatre 1" }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"dmJ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"pSU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/pillbottles, +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"pTd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"pTf" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"pTj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"pTm" = ( +/turf/open/floor/coagulation/icon1_7, +/area/desert_dam/building/water_treatment_two) +"pTq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dmK" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dmL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Mess Hall" - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dmO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dmP" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dmQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dmR" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"pTt" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dny" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Break Room" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"pTG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"pTQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"dnB" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dnC" = ( -/obj/structure/platform_decoration{ +/area/desert_dam/interior/dam_interior/lobby) +"pUm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"pUt" = ( +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) -"dnD" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_south) -"dnP" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) -"dod" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/bar_valley_dam) -"dof" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"doi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"doj" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_cargo) -"dok" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"dol" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/bar_valley_dam) -"dom" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_civilian) -"doE" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"doH" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_one/hallway) -"doL" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_one/purification) -"doN" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_south) -"doO" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"doQ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"dpc" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_hydro) -"dps" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"dpu" = ( /obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dpw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dpx" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/holding) +"pUz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/overseer_office) +"pUN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dpy" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dpA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"dpB" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" + name = "\improper Surgery" }, -/area/desert_dam/building/water_treatment_one/control_room) -"dpC" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"dpD" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"pUO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"dpE" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"pUR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) -"dpF" = ( -/obj/structure/machinery/vending/dinnerware, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dpG" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dpH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dpI" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/exterior/valley/valley_medical) +"pUT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/building/mining/workshop) +"pVa" = ( +/obj/structure/surface/table, +/obj/item/tool/shovel, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"pVg" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/interior/caves/central_caves) +"pVh" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dpJ" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"pVD" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dpK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river_mouth/southern) +"pVF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"pWe" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 4 }, +/obj/structure/barricade/wooden, +/turf/open/gm/river/desert/shallow_edge/covered/west, +/area/desert_dam/exterior/river/riverside_central_north) +"pWE" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"pWJ" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"pWQ" = ( +/obj/item/clothing/under/shorts/red, +/obj/structure/surface/rack, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dpL" = ( -/obj/structure/desertdam/decals/road_stop, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"pWY" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"pXn" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"pXM" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/green/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"pXP" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"pYj" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"pYo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dqd" = ( -/turf/open/desert/rock/deep, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"dqf" = ( -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dqg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dqh" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dqi" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/water_treatment_one/lobby) -"dqm" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/lobby) -"dqn" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"pYt" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_south) +"pYv" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"pYz" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"pYD" = ( /obj/structure/surface/table, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dqo" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dqp" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"dqs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dqt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dqu" = ( +/obj/item/device/analyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"pYF" = ( /obj/structure/machinery/power/apc{ dir = 8; pixel_x = -30; start_charge = 0 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"pYP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Filtration" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"pYU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dqJ" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/structure/barricade/wooden{ - dir = 1 +"pZi" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/CE_office) +"pZs" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_south) -"dqO" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"pZy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"pZD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"pZL" = ( +/obj/structure/machinery/centrifuge, +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"pZN" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/caves/central_caves) +"pZR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"qaa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"qaq" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"qaH" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"qbf" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/building/water_treatment_two/purification) +"qbw" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"qbx" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"qbC" = ( +/obj/structure/surface/table/woodentable, /turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dqR" = ( -/obj/structure/flora/pottedplant, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/area/desert_dam/building/administration/meetingrooom) +"qbF" = ( +/obj/structure/stairs, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"qbG" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Administration Office" }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"dqS" = ( -/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/office) +"qbI" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"dqT" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"dqV" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"dqW" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/lobby) -"drc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/darkyellowcorners2/north, +/area/desert_dam/building/security/prison) +"qbR" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"drg" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"drh" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"qbW" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/desert/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"dri" = ( -/obj/structure/disposalpipe/segment{ +"qca" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"qch" = ( +/obj/structure/stairs{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"qcu" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/building/security/lobby) +"qcA" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/north_tunnel) +"qcC" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/staffroom) +"qcO" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"drL" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"drN" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +"qcV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"drO" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/obj/effect/landmark/nightmare{ + insert_tag = "shipgone_northlz" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"drQ" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/prison/red/north, -/area/desert_dam/building/water_treatment_one/lobby) -"drT" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"qdq" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"qdz" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"qdH" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qdK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"qdW" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/administration/control_room) +"qeh" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"drU" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"qen" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"qfb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"qfd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"drV" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"qfk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"drY" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"qfl" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"qfo" = ( +/obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"qfq" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"qft" = ( +/obj/structure/machinery/washing_machine, /turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"qfv" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"drZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" +"qfy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"qfA" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"qfI" = ( +/obj/structure/flora/bush/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"qfM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"qfS" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) +"qfV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Security Desk" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"qfX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"qgh" = ( +/turf/open/desert/excavation/component3/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"qgl" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"qgn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/control_room) +"qgp" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"qgu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"qht" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/valley/valley_labs) +"qhU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark2, -/area/desert_dam/building/water_treatment_one/lobby) -"dsa" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/red/northeast, -/area/desert_dam/building/water_treatment_one/lobby) -"dsb" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qhY" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whitepurple/north, +/area/desert_dam/building/medical/chemistry) +"qic" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"qin" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/prison/red/west, -/area/desert_dam/building/water_treatment_one/lobby) -"dsc" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"dsf" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_central_south) -"dsg" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_central_south) -"dsh" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_central_south) -"dsi" = ( -/obj/structure/platform_decoration{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"qiD" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"qiQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"qiR" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_central_south) -"dsk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, +/turf/open/floor/prison/darkpurplecorners2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"qja" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) -"dsA" = ( -/turf/open/floor/prison/red/west, -/area/desert_dam/building/water_treatment_one/lobby) -"dsE" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"dsJ" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_one/garage) -"dsM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dsO" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/water_treatment_one/lobby) -"dsR" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dsS" = ( -/turf/open/floor/filtrationside/northwest, -/area/desert_dam/exterior/valley/valley_hydro) -"dsT" = ( -/turf/open/floor/filtrationside/north, +"qjc" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_hydro) -"dsU" = ( -/obj/structure/platform_decoration{ - dir = 1 +"qjh" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/lobby) +"qjk" = ( +/turf/open/floor/filtrationside/northwest, +/area/desert_dam/exterior/valley/valley_mining) +"qjq" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"qjA" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/turf/open/desert/dirt/dirt2, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/east_wing_hallway) +"qjT" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_south) -"dsV" = ( -/turf/open/floor/filtrationside/northeast, -/area/desert_dam/exterior/valley/valley_hydro) -"dsW" = ( -/obj/structure/platform{ - dir = 1 +"qkk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_south) -"dto" = ( -/obj/structure/surface/table, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dtp" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dtq" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dtr" = ( +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"qkl" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"qkm" = ( +/turf/open/floor/whiteyellow/southeast, +/area/desert_dam/building/water_treatment_one/breakroom) +"qks" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/exterior/valley/valley_mining) +"qkz" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_one/purification) +"qkA" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"qkH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"qkI" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_hydro) +"qkJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/item/stack/sheet/wood/medium_stack, /turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dtt" = ( +/area/desert_dam/exterior/valley/bar_valley_dam) +"qkP" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"qlb" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/landing_pad_two) +"qlk" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qls" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"qlG" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_wilderness) +"qlM" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/welding, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"qmk" = ( /obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; + dir = 4; + pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dtu" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"dtw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"qmn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dtx" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"dty" = ( -/obj/structure/machinery/washing_machine, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"qmw" = ( /turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"dtz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dtE" = ( -/turf/open/floor/filtrationside/west, -/area/desert_dam/exterior/valley/valley_hydro) -"dtF" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"dtG" = ( -/obj/structure/platform{ +/area/desert_dam/building/medical/virology_wing) +"qmy" = ( +/obj/structure/surface/rack, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"qmz" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"dtH" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_south) -"dtI" = ( -/turf/open/floor/filtrationside/east, -/area/desert_dam/exterior/valley/valley_hydro) -"dtT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dtX" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"dtY" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"duc" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"qmA" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"dud" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_two) +"qmH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"dun" = ( -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/administration/office) -"duo" = ( -/obj/structure/machinery/computer/guestpass, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet11_12/west, -/area/desert_dam/building/administration/office) -"duq" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"qmK" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"qmO" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"dus" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"dut" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"duu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northeast) +"qmR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_northwest) +"qmY" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/break_room) +"qna" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/warehouse/breakroom) +"qny" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random{ + pixel_x = -4; + pixel_y = -4 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"duw" = ( +/obj/item/folder/black_random, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"qnE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"qnG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "N" }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"qnP" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"dux" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"qoe" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "3,7" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"qow" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"qoE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Decontamination" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"qoG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Tool Storage" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"qoP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Filtration" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"qoQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qpe" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"qph" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"qpC" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"qqe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/interior/caves/east_caves) +"qqj" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river_mouth/southern) +"qqr" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"qqw" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"qqO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"qqR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"duy" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"qqU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"qrk" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) -"duz" = ( -/obj/structure/platform{ +"qrp" = ( +/obj/structure/toilet{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"duA" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) -"duB" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_civilian) -"duC" = ( -/turf/closed/wall, -/area/desert_dam/building/dorms/hallway_northwing) -"duD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"duJ" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/bar_valley_dam) -"duP" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"qrx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"qrz" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/disposals) -"duR" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle/red, -/area/desert_dam/interior/caves/temple) -"duU" = ( -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"duV" = ( -/obj/structure/machinery/computer/guestpass, -/obj/structure/machinery/light{ +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_two) +"qrM" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"qrN" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"qrO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"duW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"duY" = ( -/obj/structure/machinery/computer/cameras/wooden_tv, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, -/area/desert_dam/building/administration/overseer_office) -"duZ" = ( -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/administration/overseer_office) -"dvf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Kitchen" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"qrP" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"qrS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/garage) +"qrV" = ( +/obj/structure/machinery/light{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dvg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dvj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_civilian) -"dvk" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"qrW" = ( +/turf/open/gm/river/red_pool, +/area/desert_dam/building/dorms/pool) +"qsu" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"dvm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_civilian) -"dvn" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"qsy" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/desert_dam/exterior/valley/valley_mining) +"qsI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"qsJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dvo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dvt" = ( -/obj/structure/machinery/computer/area_atmos, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dvx" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_south) -"dvy" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_south) -"dvz" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_south) -"dvA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"dvB" = ( +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/disposals) +"qsR" = ( +/turf/open/floor/coagulation/icon5_8, +/area/desert_dam/exterior/valley/valley_hydro) +"qsV" = ( /obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) -"dvD" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"dvE" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"dvW" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"dvZ" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +/obj/structure/platform{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"dwd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"qsX" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"qtc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/smes_main) -"dwe" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"qtk" = ( /obj/structure/surface/table, -/obj/item/stack/rods{ - amount = 25 +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"dwf" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"qtl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qtp" = ( /obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/smes_main) -"dwg" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"qtx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"qty" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"qtC" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qtY" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/blue, +/area/desert_dam/interior/dam_interior/tech_storage) +"quc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"que" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkred2/north, +/area/desert_dam/building/administration/lobby) +"qug" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"qui" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/northeast, -/area/desert_dam/interior/dam_interior/smes_main) -"dwh" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"quq" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_south) +"quG" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/control_room) -"dwl" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"dwm" = ( -/obj/structure/surface/table, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"quH" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_central_south) +"quJ" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"dws" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"dwy" = ( -/obj/structure/machinery/computer/turbine_computer, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dwC" = ( -/turf/open/floor/filtrationside/southwest, -/area/desert_dam/exterior/valley/valley_hydro) -"dwD" = ( -/turf/open/floor/filtrationside, -/area/desert_dam/exterior/valley/valley_hydro) -"dwE" = ( -/turf/open/floor/filtrationside/southeast, -/area/desert_dam/exterior/valley/valley_hydro) -"dwF" = ( -/turf/open/floor/wood, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/workshop) +"qvc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greencorner, /area/desert_dam/building/dorms/hallway_northwing) -"dwG" = ( +"qvg" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/lobby) +"qvi" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/carpet/edge/north, +/area/desert_dam/building/administration/meetingrooom) +"qvW" = ( +/obj/structure/dispenser, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"qwV" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand1{ - dir = 6 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"dwH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"qxh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dwI" = ( -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dwJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dwW" = ( -/obj/structure/surface/table/reinforced, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"qxv" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"qxA" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 8; icon_state = "pipe-c" }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/smes_backup) -"dwX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/smes_backup) -"dxb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"qxC" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"qxD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"dxd" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"qxO" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/caves/central_caves) +"qxU" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "damtemple_intact" }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"dxe" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"qya" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dxf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"qye" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"dxg" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/green/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"dxh" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dxi" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dxj" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/dorms/hallway_northwing) -"dxk" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"qyC" = ( +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"qyF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/prison/greencorner/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dxl" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dxm" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"qyP" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"qyT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dxL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics Breakroom" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"qyU" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_wilderness) +"qyZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"dxM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qzc" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/reagent_container/food/snacks/cheesewedge, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dxN" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dxO" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"qzi" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/interior/caves/east_caves) +"qzW" = ( +/obj/item/trash/burger, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_labs) +"qAa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"qAu" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"dxR" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/substation/southwest) +"qAE" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/donut, +/obj/effect/landmark/crap_item, /turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"dxS" = ( +"qAH" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qAU" = ( +/obj/structure/toilet, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"qBi" = ( +/turf/open/floor/coagulation/icon7_7_2, +/area/desert_dam/building/water_treatment_two) +"qBQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"qBU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"qCs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"qCH" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/substation/northwest) +"qDs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_crashsite) +"qDw" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"qDz" = ( +/obj/structure/prop/dam/boulder/boulder3, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"qDC" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"qDF" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/valley/valley_labs) +"qDK" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -40112,593 +38405,743 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dxT" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dxW" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/bot/north, -/area/desert_dam/building/water_treatment_one/garage) -"dxX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"qEo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dxY" = ( +/obj/structure/desertdam/decals/road_stop, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"qEI" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"qEJ" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"qEM" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"qFc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/courtroom) +"qFd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dya" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"qFv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"qFw" = ( +/turf/open/floor/prison/darkbrown3/north, +/area/desert_dam/interior/dam_interior/hangar_storage) +"qFx" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"qFE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"qFF" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "sedimentation_A_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"qFM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"qFP" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/desert_dam/building/water_treatment_one/garage) -"dyb" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"qGd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"qGn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dyi" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"qGq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dyj" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dyk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"qGJ" = ( +/turf/open/floor/coagulation/icon5_8, +/area/desert_dam/exterior/valley/valley_mining) +"qGL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"qGM" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/valley/valley_wilderness) +"qHe" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"dyl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/lobby) +"qHu" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) -"dym" = ( -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dyn" = ( +"qHv" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"qHy" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dyo" = ( -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/dorms/hallway_northwing) -"dyp" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"qHE" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"qHF" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qHM" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dyt" = ( -/obj/structure/closet/lasertag/blue, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"qHO" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"dyS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dyT" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"qHP" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"qHU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"qIf" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/lobby) +"qIr" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/yautja_rope, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"qIt" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"qIw" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qIy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/lobby) +"qIA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"qIR" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"qIX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"qJh" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + pixel_y = 30 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/control_room) +"qJj" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/prison/yellowfull/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"qJl" = ( +/turf/open/desert/excavation/component9/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"qJE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_hydro) +"qJG" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_labs) +"qJI" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"qJR" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"qKh" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dyU" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"qKk" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qKo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars/mars_dirt_10, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"qKs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"qKz" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"qKO" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dyW" = ( -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/central) -"dyX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/treatment_room) +"qKQ" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/deathrow) +"qKR" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/whiteyellow/northwest, -/area/desert_dam/building/water_treatment_one/breakroom) -"dyY" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qLb" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_northwest) +"qLc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/whiteyellowcorner/north, -/area/desert_dam/building/water_treatment_one/breakroom) -"dzb" = ( -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/building/water_treatment_one/breakroom) -"dzc" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/building/water_treatment_one/breakroom) -"dzd" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/filtration_a) -"dze" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whiteyellow/northeast, -/area/desert_dam/building/water_treatment_one/breakroom) -"dzf" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/equipment) -"dzg" = ( +/obj/item/seeds/soyaseed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/equipment) -"dzh" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "upper_2"; - layer = 2 +/area/desert_dam/building/hydroponics/hydroponics) +"qLh" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"qLi" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/filtration_a) -"dzi" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/equipment) -"dzj" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/equipment) -"dzk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/CE_office) +"qLm" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/lobby) +"qLs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_labs) +"qLv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_0" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dzm" = ( /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dzo" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_south) -"dzr" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/exterior/river_mouth/southern) -"dzs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dzt" = ( +/area/desert_dam/building/water_treatment_two/purification) +"qLz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"dzv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dzw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"qLA" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"qLJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dzx" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"qLN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"qLW" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"qMy" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/armory) +"qMB" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"qME" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dzy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_civilian) -"dzz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dzA" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"qMV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Mess Hall" + name = "\improper Water Treatment Foyer" }, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cafeteria) -"dzB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"qNk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"qNs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"qNy" = ( +/turf/open/desert/excavation/component6/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"qNB" = ( +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_hydro) +"qNU" = ( +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 + }, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"qNW" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dzC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qOc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dzD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"qOh" = ( +/obj/structure/platform_decoration{ dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"qOu" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"qOv" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dzE" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dzO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"dzU" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"qOx" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/prison/whiteredcorner/west, +/area/desert_dam/building/medical/surgery_room_two) +"qOG" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/valley/valley_labs) -"dzY" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/objective, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"dAd" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dAf" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor/prison/kitchen/southwest, +"qPg" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"qPk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"qPo" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dAg" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, +"qPE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dAk" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"qQi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"qQw" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"qQD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"qQE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_civilian) +"qQQ" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"qQV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"qQX" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_south) +"qRq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"qRH" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_crashsite) +"qRJ" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dAl" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/obj/item/clothing/glasses/welding{ + pixel_x = -7; + pixel_y = -2 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"dAn" = ( -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"dAo" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river_mouth/southern) -"dAq" = ( -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"dAr" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 +/obj/item/device/radio{ + pixel_x = 7; + pixel_y = 5 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dAA" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 +/obj/item/tool/lighter/random{ + pixel_x = -4; + pixel_y = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/filtration_a) -"dAB" = ( +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/garage) +"qRV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/CE_office) +"qSp" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) -"dAD" = ( -/turf/open/floor/prison/green, +"qSx" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"qTw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"qTy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"qTC" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/virology_isolation) +"qTD" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"qTG" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"qTL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) -"dAF" = ( +"qUj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/CE_office) +"qUm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"qUn" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/northern_hallway) +"qUr" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/temple) +"qUv" = ( /turf/open/floor/prison/greencorner/west, /area/desert_dam/building/dorms/hallway_northwing) -"dAG" = ( -/obj/structure/bed/chair{ - dir = 8 +"qUH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"qUM" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/soft/ferret, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"qVE" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"qVN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dAH" = ( -/turf/open/floor/prison/greencorner, -/area/desert_dam/building/dorms/hallway_northwing) -"dAI" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"qVQ" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_main) +"qWb" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"dAJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_mining) +"qWc" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qWg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"qWl" = ( +/turf/open/floor/coagulation/icon7_7, +/area/desert_dam/building/water_treatment_two) +"qWr" = ( /obj/structure/machinery/light, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"dAK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dAL" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dBb" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dBc" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dBd" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dBe" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"qWD" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dBf" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dBh" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"qWL" = ( +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/hanger) +"qWP" = ( +/obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/desert/dirt, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/temple) +"qWS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"qXg" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"qXi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"qXp" = ( +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_medical) -"dBi" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBj" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/whiteyellowcorner/north, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBo" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/dorms/hallway_westwing) -"dBp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +"qXx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"qXE" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_south) +"qXO" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"qXZ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dBr" = ( -/turf/closed/wall, -/area/desert_dam/building/dorms/hallway_westwing) -"dBs" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"dBt" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"dBu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"dBv" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"dBw" = ( +/area/desert_dam/building/water_treatment_one/control_room) +"qYu" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/north_valley_dam) +"qYB" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/exterior/valley/valley_mining) +"qZB" = ( /obj/structure/surface/table, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"dBx" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/desert_dam/building/dorms/hallway_northwing) -"dBy" = ( -/turf/closed/wall, -/area/desert_dam/building/dorms/restroom) -"dBz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Restroom" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dBC" = ( -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 - }, -/obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/dorms/pool) -"dBD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"dBF" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"qZN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) -"dBJ" = ( -/obj/structure/machinery/computer/pod/old{ - name = "Personal Computer" +"qZQ" = ( +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/exterior/valley/valley_mining) +"qZU" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"raa" = ( +/obj/item/clothing/head/welding, +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"rae" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dBK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dBM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dBN" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) -"dBO" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"dBP" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"dBQ" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"dBR" = ( +/area/desert_dam/interior/dam_interior/hanger) +"ray" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/disposals) -"dBT" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBU" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/soft/ferret, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBV" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"raH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"raZ" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rbi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"rbv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"rbz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Decontamination" }, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBW" = ( -/turf/open/floor/whiteyellowcorner, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/disposals) -"dCb" = ( -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dCc" = ( -/turf/open/floor/prison/green/east, -/area/desert_dam/building/dorms/hallway_westwing) -"dCd" = ( -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dCe" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"rbC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood{ dir = 4; @@ -40706,1997 +39149,1782 @@ }, /turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"dCf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dCg" = ( -/obj/structure/toilet{ +"rbN" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"rbS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/interior/caves/central_caves) +"rch" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2, +/area/desert_dam/building/warehouse/loading) +"rcs" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"rcL" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dCj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"dCo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"dCt" = ( -/turf/open/asphalt/tile, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"rcM" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/south_valley_dam) -"dCw" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10, +"rdb" = ( +/obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dCy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Disposals" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/disposals) -"dCz" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"rde" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dCB" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"dCD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dCE" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"rdu" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/west_wing_hallway) -"dCF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"dCG" = ( -/turf/open/floor/whiteyellowcorner/west, -/area/desert_dam/building/water_treatment_one/breakroom) -"dCH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/whiteyellow, -/area/desert_dam/building/water_treatment_one/breakroom) -"dCI" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"rdx" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_two/lobby) +"rdy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"rdK" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"rdW" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"rdY" = ( +/obj/structure/stairs{ dir = 8 }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/dorms/pool) -"dCJ" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/whiteyellow, -/area/desert_dam/building/water_treatment_one/breakroom) -"dCK" = ( -/turf/open/floor/whiteyellow/southeast, -/area/desert_dam/building/water_treatment_one/breakroom) -"dCL" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"rei" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"rem" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"ret" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/area/desert_dam/building/water_treatment_one/equipment) -"dCM" = ( -/turf/open/floor/coagulation/icon0_8, -/area/desert_dam/exterior/valley/valley_hydro) -"dCN" = ( -/turf/open/floor/coagulation/icon5_8, -/area/desert_dam/exterior/valley/valley_hydro) -"dCO" = ( -/turf/open/floor/coagulation/icon4_8, -/area/desert_dam/exterior/valley/valley_hydro) -"dCP" = ( -/turf/open/floor/coagulation/icon6_8, -/area/desert_dam/exterior/valley/valley_hydro) -"dCQ" = ( -/turf/open/floor/coagulation/icon7_8, -/area/desert_dam/exterior/valley/valley_hydro) -"dCR" = ( -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/exterior/valley/valley_hydro) -"dCS" = ( -/turf/open/floor/coagulation/icon6_8_2, -/area/desert_dam/exterior/valley/valley_hydro) -"dCT" = ( -/turf/open/floor/coagulation/icon7_8_2, -/area/desert_dam/exterior/valley/valley_hydro) -"dCU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"reA" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"reC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Packaging" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"reE" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/east, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) -"dCV" = ( -/obj/structure/machinery/light{ +"reP" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_hydro) +"rfc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"rfd" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"dCW" = ( -/turf/open/floor/prison/greencorner/north, -/area/desert_dam/building/dorms/hallway_westwing) -"dCX" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"dCY" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"dDa" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"dDb" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"rfi" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dDk" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/whitered/north, -/area/desert_dam/building/medical/surgery_room_one) -"dDs" = ( -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/exterior/valley/valley_hydro) -"dDt" = ( -/turf/open/floor/coagulation/icon1_7, -/area/desert_dam/exterior/valley/valley_hydro) -"dDv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/welding, -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"dDw" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/welding, -/turf/open/floor/prison/darkbrown2, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"dDx" = ( -/obj/item/clothing/head/welding, -/obj/structure/surface/rack, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"dDz" = ( -/turf/open/floor/coagulation/icon7_7, -/area/desert_dam/exterior/valley/valley_hydro) -"dDA" = ( -/turf/open/floor/coagulation/icon8_7, -/area/desert_dam/exterior/valley/valley_hydro) -"dDB" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt/desert_transition_edge1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"rfj" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"rfk" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) -"dDD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/welding, +"rfm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"rfn" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/southwest) +"rfq" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"rfr" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"dDG" = ( -/turf/open/floor/coagulation/icon7_7_2, -/area/desert_dam/exterior/valley/valley_hydro) -"dDH" = ( -/turf/open/floor/coagulation/icon8_7_2, -/area/desert_dam/exterior/valley/valley_hydro) -"dDI" = ( -/obj/structure/platform{ - dir = 8 +/area/desert_dam/building/mining/workshop) +"rfC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_south) -"dDJ" = ( -/turf/open/floor/prison/green/west, -/area/desert_dam/building/dorms/hallway_westwing) -"dDK" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/staffroom) +"rfJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dDL" = ( +/obj/effect/decal/sand_overlay/sand2, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"dDM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" +/area/desert_dam/interior/dam_interior/western_dam_cave) +"rfL" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_B_1" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"dDQ" = ( -/obj/item/seeds/soyaseed, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"rfP" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"rfU" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/yellow/east, -/area/desert_dam/building/hydroponics/hydroponics) -"dDZ" = ( -/obj/structure/toilet{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"rgf" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/holding) +"rgB" = ( +/obj/structure/machinery/light, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"rgH" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"rgL" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"dEb" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) -"dEe" = ( -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_hydro) -"dEj" = ( -/obj/structure/platform{ +"rgN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Backup SMES" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"rhh" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_east) -"dEk" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"rhr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"rhA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"rhK" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"rhO" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_east) -"dEl" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"rhP" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"dEm" = ( -/obj/structure/platform{ +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rih" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_mining) +"rio" = ( +/obj/structure/closet/l3closet/virology, +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_east) -"dEn" = ( -/obj/structure/platform{ +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"rit" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/mining/workshop) +"riE" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"riF" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/desert_dam/building/security/prison) +"riT" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/hallway) +"riW" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rjb" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dEo" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"rjg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"rjC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkpurplecorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"rjE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Water Treatment" }, -/obj/structure/platform{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"rjR" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dEr" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"dEt" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"dEu" = ( -/obj/structure/machinery/power/apc{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rjY" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"rkb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"rke" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/north_valley_dam) +"rkp" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - pixel_x = -30; - start_charge = 0 + icon_state = "pipe-c" }, -/turf/open/floor/prison/green/west, -/area/desert_dam/building/dorms/hallway_westwing) -"dEv" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/donut, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dEx" = ( -/turf/open/floor/prison/greencorner, -/area/desert_dam/building/dorms/hallway_westwing) -"dEP" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"rkw" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/building/water_treatment_two/purification) +"rkE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/structure/machinery/colony_floodlight, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"dEV" = ( -/obj/structure/filtration/collector_pipes, -/turf/open/floor/filtrationside/west, -/area/desert_dam/exterior/valley/valley_hydro) -"dEW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"dEX" = ( -/obj/structure/platform_decoration{ +"rkP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/hallway) +"rkR" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"rlc" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"rlh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"rlK" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"dEY" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"dEZ" = ( -/obj/structure/platform{ +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river_mouth/southern) -"dFc" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"rlL" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Research Director Office" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_south) -"dFd" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_south) -"dFe" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/filtrationside/east, -/area/desert_dam/exterior/valley/valley_hydro) -"dFf" = ( -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"dFg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dFh" = ( -/obj/item/frame/table, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"rlS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"rlU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dFi" = ( -/obj/structure/catwalk, -/turf/open/floor/plating, -/area/desert_dam/building/dorms/restroom) -"dFj" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"rmc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/darkpurplecorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"rmN" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"rmO" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"rmV" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dFk" = ( -/obj/structure/bed/chair{ +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"rnc" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dFn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dFo" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"rnr" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_central_south) +"rnt" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"rob" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal7" }, -/obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dFr" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, +/area/desert_dam/exterior/valley/valley_labs) +"rok" = ( +/obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/yellowfull, -/area/desert_dam/building/hydroponics/hydroponics) -"dFD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrowncorners3, -/area/desert_dam/interior/dam_interior/disposals) -"dFL" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"dFM" = ( -/turf/open/floor/coagulation/icon0_4, -/area/desert_dam/exterior/valley/valley_hydro) -"dFN" = ( -/turf/open/floor/coagulation/icon8_4, -/area/desert_dam/exterior/valley/valley_hydro) -"dFP" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 + dir = 10 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dFQ" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"rop" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Water Treatment Hallway" }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dFR" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"roJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_civilian) +"roR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") }, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rph" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) -"dFS" = ( +"rpk" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_south) -"dFU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"dFV" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"dFW" = ( -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"dFX" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"rpo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/lobby) +"rpQ" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_hydro) +"rpS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"dFZ" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dGa" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/donkpocket, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dGr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"rqa" = ( +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/building/water_treatment_one/purification) +"rqw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_mining) +"rqA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/exterior/valley/valley_hydro) -"dGs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_civilian) -"dGt" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/filtrationside/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/west_wing_hallway) +"rqO" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"rqR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" + }, +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" + }, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"rqS" = ( +/obj/structure/cargo_container/hd/mid, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"rqZ" = ( +/obj/structure/fence, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_hydro) -"dGu" = ( -/obj/structure/platform{ +"rrh" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"rrj" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_east) -"dGv" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dGw" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"rrn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "garage_dd"; + name = "\improper Garage" }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dGx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) -"dGy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +"rru" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/floor/whiteyellow/northeast, +/area/desert_dam/interior/dam_interior/garage) +"rrv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"rrJ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_telecoms) +"rrL" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) +"rrQ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"rsf" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"rsm" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"rso" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/virology_wing) +"rsw" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Examination Room" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office2) +"rsx" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/warehouse/breakroom) +"rsz" = ( +/turf/open/floor/darkyellow2, +/area/desert_dam/building/security/prison) +"rsC" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"rsK" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"rtc" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_medical) -"dGz" = ( -/obj/structure/platform{ +"rtg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"rul" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/substation/northeast) +"rum" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkred2, +/area/desert_dam/building/administration/lobby) +"ruA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Mess Hall" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"ruP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"ruQ" = ( +/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/prison) +"ruS" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) +"ruX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"rvd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"rvl" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/medical/break_room) +"rvn" = ( +/turf/open/floor/warnwhite/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"rvA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Lobby" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"rvG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/smes_main) +"rvM" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"rvN" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"rwf" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"rwg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Administration Hallway" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"rwl" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_east) -"dGA" = ( -/obj/structure/platform{ +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/building/water_treatment_two/purification) +"rws" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dGB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/south_valley_dam) +"rww" = ( /obj/structure/platform{ dir = 8 }, /obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) -"dGC" = ( -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_westwing) -"dGD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dGE" = ( -/turf/open/floor/prison/greencorner/east, -/area/desert_dam/building/dorms/hallway_westwing) -"dGF" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/green/east, -/area/desert_dam/building/dorms/hallway_westwing) -"dGG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"dGI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"dGN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"dGQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_civilian) -"dGU" = ( -/obj/docking_port/stationary/marine_dropship/lz1, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_one) -"dGV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/exterior/valley/valley_hydro) -"dGY" = ( -/turf/open/floor/coagulation/icon8_6, -/area/desert_dam/exterior/valley/valley_hydro) -"dHa" = ( -/obj/effect/decal/sand_overlay/sand1{ +"rwA" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_cargo) -"dHb" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"dHc" = ( /obj/structure/platform{ dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dHd" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"rwJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"rwN" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) +"rxm" = ( +/obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river_mouth/southern) -"dHe" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rxo" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river_mouth/southern) -"dHf" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_south) -"dHg" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dHh" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Lab Maintenance" +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rxs" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dHi" = ( -/obj/item/frame/table, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dHj" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"rxE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/central_caves) +"rxI" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"rxJ" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/donkpocket, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"dHk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"rxP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"rxQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"rxS" = ( +/obj/docking_port/stationary/trijent_elevator/occupied{ + id = "trijent_lz1"; + name = "Lz1 Elevator"; + elevator_network = "A"; + airlock_area = /area/shuttle/trijent_shuttle/lz1; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/A + }, +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz1) +"ryc" = ( +/obj/structure/machinery/reagentgrinder, +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"ryn" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dHl" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"ryz" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"rzi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"rzr" = ( +/obj/structure/flora/bush/desert, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_cargo) +"rzQ" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"rzX" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/covered/west, +/area/desert_dam/exterior/river/riverside_central_north) +"rAd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"rAi" = ( +/turf/open/desert/excavation/component5/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"rAo" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"rAw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"rAA" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rAG" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"rAP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dHm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"dHo" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dHp" = ( +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"rAX" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rBc" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dHr" = ( -/obj/structure/surface/table, +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/southern_hallway) +"rBs" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"rBz" = ( +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"rBQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"dHs" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"dHt" = ( -/turf/open/floor/coagulation/icon1_1, -/area/desert_dam/exterior/valley/valley_hydro) -"dHv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_civilian) -"dHw" = ( -/turf/open/floor/coagulation/icon7_1, -/area/desert_dam/exterior/valley/valley_hydro) -"dHx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/exterior/valley/valley_hydro) -"dHy" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"rBS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2 }, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river_mouth/southern) -"dHA" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/machinery/door/window/southleft{ + dir = 1 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dHB" = ( -/obj/structure/platform{ +/turf/open/floor/dark, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"rBV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_south) -"dHD" = ( -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_westwing) -"dHE" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_westwing) -"dHF" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/restroom) -"dHG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/lobby) +"rBZ" = ( +/obj/structure/largecrate/random/barrel/blue, /obj/structure/machinery/light, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dHI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rCj" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"rCp" = ( +/obj/structure/platform/mineral/sandstone/runed, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dHK" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dHM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dHO" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dHQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dHS" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dHT" = ( +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"rCr" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"rCH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/lobby) +"rCU" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) +"rDr" = ( +/obj/item/trash/semki, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/treatment_room) +"rDu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"rDx" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 1 }, -/turf/open/floor/coagulation/icon0_0, -/area/desert_dam/exterior/valley/valley_hydro) -"dHX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon7_0, -/area/desert_dam/exterior/valley/valley_hydro) -"dHY" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/exterior/valley/valley_hydro) -"dIa" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/north_valley_dam) +"rDD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"rDQ" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/warehouse/loading) +"rDS" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 6 + dir = 1 }, -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/exterior/valley/valley_hydro) -"dId" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon7_0, -/area/desert_dam/exterior/valley/valley_hydro) -"dIe" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation/icon8_0, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"dIf" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"rDT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"dIh" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_central_south) -"dIi" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dIj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"rDX" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/central_tunnel) +"rDY" = ( +/obj/structure/machinery/computer/guestpass, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/office) +"rDZ" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/plating/asteroidfloor/north, -/area/desert_dam/exterior/valley/valley_civilian) -"dIk" = ( -/turf/closed/wall, -/area/desert_dam/building/dorms/pool) -"dIl" = ( -/obj/structure/window/framed/colony, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"rEa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, -/area/desert_dam/building/dorms/pool) -"dIm" = ( +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"rEs" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/east_caves) +"rEC" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dIn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"dIo" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Showers" +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/north_wing_hallway) +"rED" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"rEE" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/prison/kitchen, -/area/desert_dam/building/dorms/pool) -"dIp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Restroom" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rFb" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_east) +"rFe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"dIq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"rFi" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz2) +"rFx" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"rFR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"rFS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"rFU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dIr" = ( -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"dIs" = ( -/obj/structure/surface/table, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dIu" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"dIw" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"dIz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rFZ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"rGj" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/caves/east_caves) +"rGo" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"rGx" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"dIA" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_hydro) -"dIC" = ( -/obj/structure/stairs{ +/turf/open/floor/prison/darkpurplecorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"rGy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/mining/workshop) +"rGU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/mining/workshop) +"rGY" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"rHa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"rHd" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/platform{ - dir = 1 +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/security/prison) +"rHf" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) -"dID" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"rHt" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/interior/caves/central_caves) +"rHw" = ( +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"rHU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"rId" = ( +/obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"dIG" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"rIf" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"rIj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river_mouth/southern) -"dIH" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river_mouth/southern) -"dII" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"rIo" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 + }, +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"rIr" = ( +/obj/structure/platform_decoration{ dir = 8 }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rIC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"rIJ" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river_mouth/southern) -"dIJ" = ( -/turf/open/floor/prison/blue/west, -/area/desert_dam/building/dorms/pool) -"dIK" = ( -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/building/dorms/pool) -"dIL" = ( -/obj/structure/machinery/light{ - dir = 1 +"rIM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"rIR" = ( +/obj/item/tool/surgery/surgicaldrill, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/bonesetter, +/obj/item/tool/surgery/FixOVein, +/obj/item/stack/nanopaste, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"rIW" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/telecomm/lz1_south) +"rJg" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_northwest"; + name = "Checkpoint Lockdown" }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"dIM" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"rJK" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rKx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Hydroponics" }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"dIN" = ( -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/dorms/pool) -"dIO" = ( -/obj/structure/machinery/disposal, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"rKB" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"rKG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"rKJ" = ( /obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"dIP" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, +/obj/structure/machinery/disposal, /obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"dIQ" = ( -/obj/item/clothing/under/shorts/red, -/obj/structure/surface/rack, -/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"dIR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/warden) +"rKL" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"rKX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northwest) +"rLi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bluecorner/east, -/area/desert_dam/building/dorms/pool) -"dIS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) -"dIT" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/prison/blue/north, -/area/desert_dam/building/dorms/pool) -"dJd" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"dJe" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river_mouth/southern) -"dJf" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river_mouth/southern) -"dJg" = ( +"rLk" = ( /obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river_mouth/southern) -"dJh" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_civilian) +"rLt" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"rLu" = ( /obj/structure/machinery/light, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"dJi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dJj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"dJm" = ( -/obj/item/tool/mop, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"rLv" = ( /obj/structure/surface/rack, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/dorms/pool) -"dJA" = ( +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"rLx" = ( /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river_mouth/southern) -"dJB" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_east) -"dJC" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river_mouth/southern) -"dJD" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river_mouth/southern) -"dJE" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"rLE" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "purple-new-bridge" }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river_mouth/southern) -"dJG" = ( -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"dJJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/break_room) -"dJK" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"rLF" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/central) +"rLH" = ( +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"rMc" = ( /obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/administration/hallway) -"dJL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"dJN" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"dJP" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" + dir = 1; + pixel_y = -10 }, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"dJQ" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/darkred2/west, -/area/desert_dam/building/administration/lobby) -"dJR" = ( -/obj/structure/lz_sign/dam_sign/damaged, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"dJS" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river_mouth/southern) -"dJT" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_east) -"dJU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"dJV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dJW" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/desert_dam/building/warehouse/breakroom) +"rMj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dJX" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/blue/east, -/area/desert_dam/building/dorms/pool) -"dJY" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/lobby) -"dJZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"dKa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"dKb" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/hallway) -"dKc" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/carpet11_12/west, -/area/desert_dam/building/administration/overseer_office) -"dKd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet/edge/southeast, -/area/desert_dam/building/administration/meetingrooom) -"dKe" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"dKf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"dKg" = ( -/obj/structure/prop/dam/van/damaged, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"dKh" = ( -/obj/structure/prop/dam/van, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"dKi" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"rMl" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/administration/overseer_office) -"dKk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dKl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dKm" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/building/dorms/pool) -"dKn" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"rMn" = ( /obj/structure/surface/table, -/turf/open/floor/prison/blue, -/area/desert_dam/building/dorms/pool) -"dKo" = ( -/turf/open/floor/prison/bluecorner/west, -/area/desert_dam/building/dorms/pool) -"dKp" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"dKs" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dKt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"dKv" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"rMq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rMw" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"rMD" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - health = 80 + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/disposals) -"dKx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dKz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"rMI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dKA" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_east) -"dKB" = ( -/obj/structure/platform{ +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"rML" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_civilian) +"rMU" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river_mouth/southern) -"dKE" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/bar_valley_dam) -"dKF" = ( -/turf/open/floor/prison/blue, -/area/desert_dam/building/dorms/pool) -"dKG" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"dKI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dKJ" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river_mouth/southern) -"dKK" = ( /obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river_mouth/southern) -"dKL" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river_mouth/southern) -"dKM" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river_mouth/southern) -"dKN" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river_mouth/southern) -"dKO" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river_mouth/southern) -"dKP" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river_mouth/southern) -"dKQ" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river_mouth/southern) -"dKR" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river_mouth/southern) -"dKS" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"rNh" = ( +/turf/open/floor/coagulation/icon6_8, /area/desert_dam/exterior/valley/valley_hydro) -"dKT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dKU" = ( +"rNx" = ( +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"rNy" = ( /obj/structure/bed/chair{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"rNA" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"rNH" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"rNZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"rOk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dKV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"rOo" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"rOp" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dKW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"rOv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"rOw" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_northwest) +"rOG" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"rOI" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dKY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"rOM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_telecoms) +"rOY" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"rPp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"dKZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Break Room" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"rPB" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"rPC" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/break_room) -"dLa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"rPJ" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"rPO" = ( +/turf/open/floor/whiteblue/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"rPR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_cargo) +"rPW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_telecoms) +"rQf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"rQk" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"rQA" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"rQQ" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"rQS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Administration Control Room" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dLb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/administration/control_room) +"rQV" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/building/warehouse/warehouse) +"rRo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rRw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/central_tunnel) -"dLd" = ( -/obj/structure/machinery/door/window/northright{ - dir = 8 - }, +"rRB" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"rRC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/west, -/area/desert_dam/interior/dam_interior/disposals) -"dLe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"rRK" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_hydro) +"rRR" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"rSf" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"rSg" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"rSk" = ( /obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/storage/toolbox/emergency, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"rSt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/item/trash/used_stasis_bag, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"rSx" = ( +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/bar/bar) +"rSB" = ( +/obj/structure/surface/table, +/obj/item/device/lightreplacer, +/obj/item/clothing/mask/rebreather, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/disposals) -"dLf" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"dLg" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_east) -"dLh" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"dLi" = ( -/obj/structure/platform{ - dir = 8 +"rSC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"rSD" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"rSO" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"rSW" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"rTa" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_east) -"dLj" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_east) -"dLk" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_east) -"dLl" = ( -/obj/structure/platform{ +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"rTf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"rTk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"dLn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"rTn" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rTs" = ( +/obj/structure/cargo_container/trijent/right/alt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"rTt" = ( +/obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"dLp" = ( -/obj/structure/platform{ - dir = 8 + dir = 10 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"dLq" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_central_south) -"dLr" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_central_south) -"dLt" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_east) -"dLu" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"dLv" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_east) -"dLz" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_east) -"dLA" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_east) -"dLC" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_central_south) -"dLE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"rTw" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"rTz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/office2) +"rTF" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_northwest) +"rTN" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"rTT" = ( +/obj/structure/surface/table, +/obj/item/stack/rods{ + amount = 25 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"dLF" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"rTU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"dLI" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_central_south) -"dLJ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_central_south) -"dLK" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"dLL" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_central_south) -"dLM" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_central_south) -"dLN" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"rTV" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLO" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLP" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_east) -"dLQ" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_east) -"dLR" = ( -/obj/structure/platform{ +/area/desert_dam/exterior/rock) +"rUh" = ( +/obj/structure/barricade/sandbags, +/obj/structure/barricade/sandbags{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLS" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"rUD" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dLT" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"rUH" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLU" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_east) -"dLV" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLW" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_east) -"dLX" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_east) -"dLY" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_east) -"dLZ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_east) -"dMf" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"rUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"rUK" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rUO" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/valley/valley_mining) -"dMg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"rVc" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/break_room) -"dMo" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rVh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hangar" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rVo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"rVu" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"rVy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dMq" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"dMw" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/river/riverside_east) -"dMx" = ( -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dMC" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/northern_hallway) +"rVD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics Breakroom" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"rVJ" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/break_room) -"dMN" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"rWb" = ( +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/northern_hallway) +"rWl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"rWv" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dMV" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/substation/southwest) -"dMX" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dMY" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 150 +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"dNa" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"rWy" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dNf" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"rWO" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"rWQ" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/interior/caves/temple) +"rXj" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_south) +"rXs" = ( +/turf/open/desert/excavation/component1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"rXI" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal8" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dNh" = ( -/obj/item/seeds/riceseed, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dNi" = ( -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") - }, -/obj/structure/surface/table, -/turf/open/floor/prison/red/northwest, -/area/desert_dam/building/water_treatment_one/lobby) -"dNk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowcorner, -/area/desert_dam/interior/dam_interior/break_room) -"dNl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dNm" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/area/desert_dam/exterior/valley/bar_valley_dam) +"rXR" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/treatment_room) +"rXU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Administration Hallway" }, -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown3/southwest, -/area/desert_dam/interior/dam_interior/disposals) -"dNo" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_hydro) -"dNp" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_hydro) -"dNr" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"dNs" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_one/purification) -"dNt" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"rXV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"rYb" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) +"rYk" = ( +/turf/open/floor/whitegreencorner, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"rYt" = ( +/obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"dNu" = ( +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"rYv" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"dNv" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_hydro) -"dNw" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_hydro) -"dNx" = ( -/obj/effect/blocker/toxic_water/Group_1, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"dNB" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/good_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkbrown2, -/area/desert_dam/interior/dam_interior/disposals) -"dNC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"dNF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southeast, -/area/desert_dam/interior/dam_interior/disposals) -"dNG" = ( -/obj/structure/bed/chair{ +"rYz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"dNI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_medical) -"dNR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/item/clothing/glasses/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"rZo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"dNS" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"dNT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"dNU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"dNV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"dNW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"dNX" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dNY" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dOa" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dOc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dOe" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dOf" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/control_room) -"dOg" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/hallway) -"dOh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOi" = ( -/obj/structure/machinery/light{ - dir = 1 +"rZt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"rZw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"rZU" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/west_wing_hallway) -"dOk" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"sai" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/equipment) -"dOl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/west_wing_hallway) -"dOm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/west_wing_hallway) -"dOn" = ( +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"saF" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/red/northwest, +/area/desert_dam/building/security/lobby) +"saP" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"sbd" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"dOo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"dOp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dOq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dOr" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/desert_dam/building/medical/chemistry) -"dOu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_one/lobby) +"sbC" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/west_wing_hallway) -"dOv" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"sbQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -42704,912 +40932,1313 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/west_wing_hallway) -"dOw" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"sbW" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_two) +"scm" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dOx" = ( -/obj/item/alien_embryo, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"dOy" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"scH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Research Hallway" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"dOA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/medical/break_room) -"dOC" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"scK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"scR" = ( +/turf/open/floor/prison/bluecorner, +/area/desert_dam/building/administration/lobby) +"scY" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOD" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOE" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/medical/ointment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"dOH" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"sdg" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"sdj" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"dOI" = ( -/obj/effect/decal/cleanable/blood, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"dOJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dOK" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/desert_dam/building/medical/treatment_room) +"sdk" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"sdt" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) +"sdF" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_east) +"sdI" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 1; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"sdS" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"sea" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/exterior/valley/valley_hydro) +"seb" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"sec" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dOL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/medical/break_room) -"dOM" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOO" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/church) +"seh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"seE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"seU" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/obj/item/tool/pen, /turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOP" = ( -/obj/structure/bed/chair{ +/area/desert_dam/building/dorms/hallway_westwing) +"seV" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"sfc" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/chemistry) -"dOT" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/west_tunnel) +"sfj" = ( +/turf/open/floor/prison/whiteredcorner/east, +/area/desert_dam/building/medical/primary_storage) +"sfl" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"dOV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dOW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/medical/break_room) -"dOX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOY" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/southwest) +"sfr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dPa" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/hallway_westwing) +"sfB" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/central) +"sfO" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"sfR" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"sgm" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_wing) +"sgq" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitepurple, -/area/desert_dam/building/medical/chemistry) -"dPb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"dPd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitepurplecorner, -/area/desert_dam/building/medical/chemistry) -"dPe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"sgY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dPf" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/north_tunnel) +"she" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"shr" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"shz" = ( +/turf/open/desert/cave/cave_shore/northeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"sil" = ( +/turf/open/floor/prison/darkpurplecorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"siz" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"siD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dPj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/prison/whitered/southwest, -/area/desert_dam/building/medical/chemistry) -"dPk" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"dPl" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"siY" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"dPm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/north_wing_hallway) -"dPo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"dPr" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"sja" = ( +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"sjd" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"sjk" = ( /obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"sjq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"sjL" = ( +/obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"dPs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"sjN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"sjW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_medical) +"sjX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/west_wing_hallway) -"dPt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"sjY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"ska" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"sks" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"skB" = ( +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_hydro) +"sla" = ( +/obj/structure/stairs{ dir = 4 }, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"slq" = ( +/obj/structure/closet/crate/secure, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"slw" = ( +/obj/structure/surface/table, +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"slC" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/desert_dam/building/hydroponics/hydroponics) +"slE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"slL" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"slN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"dPu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"slO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"slW" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"slX" = ( +/obj/structure/bed/alien{ + color = "#aba9a9" + }, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"smf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"dPy" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"smg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"sms" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"dPz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"smw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"smH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"snv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"snD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"snU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Floodgate Controlroom" + }, /turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/north_wing_hallway) -"dPG" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"dPH" = ( +/area/desert_dam/building/water_treatment_one/floodgate_control) +"snX" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"sob" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"sod" = ( +/turf/open/floor/whiteyellow/southwest, +/area/desert_dam/interior/dam_interior/break_room) +"soh" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"soE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"soX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"soZ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/south_valley_dam) +"spz" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"spD" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"spI" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"dPI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"dPJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"dPK" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"spK" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"spN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"dPL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/raisins, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"dPM" = ( +/area/desert_dam/building/medical/virology_isolation) +"spP" = ( +/turf/open/floor/whitebluecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"sqc" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"sqe" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"sqw" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"sqF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"sqL" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"sqS" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"sqX" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"src" = ( /obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"srd" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/north_valley_dam) +"sru" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_south) +"srI" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/east_wing_hallway) +"srM" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"srS" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"srT" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/east_wing_hallway) +"srY" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"srZ" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) +"ssg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet6_2/west, +/area/desert_dam/building/bar/bar) +"sst" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "pipe-c" + name = "\improper Marshals Office" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/north_wing_hallway) -"dPN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/north_wing_hallway) -"dPO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"dPR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/marshals_office) +"ssx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"ssy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"dPS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) -"dPT" = ( +/area/desert_dam/exterior/valley/south_valley_dam) +"ssD" = ( +/obj/item/toy/inflatable_duck, +/turf/open/gm/river/red_pool, +/area/desert_dam/building/dorms/pool) +"ssX" = ( +/turf/open/desert/excavation/component7/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"std" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkblue2/northeast, +/area/desert_dam/building/administration/control_room) +"stl" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_two) +"stn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"dPU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"stq" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"stO" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/treatment_room) +"stZ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"dPW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_one) +"sub" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"suf" = ( +/turf/open/floor/prison/darkbrowncorners3/west, +/area/desert_dam/interior/dam_interior/hanger) +"sus" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/west_wing_hallway) -"dPX" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/north_wing_hallway) -"dPY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"dPZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"dQa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - name = "\improper Medical Lobby" + name = "\improper Engine Room" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"dQb" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/lobby) -"dQc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/lobby) -"dQd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"dQe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"dQf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/west_wing_hallway) -"dQg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/west_wing_hallway) -"dQh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/healthanalyzer, -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/lobby) -"dQj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"dQk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/west_wing_hallway) -"dQl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"dQm" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"sux" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"suC" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"dQn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"suT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"svd" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"svn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"svq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"svt" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"svy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"svB" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/warning/north, +/area/desert_dam/interior/dam_interior/engine_room) +"swo" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"swu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"dQp" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"swD" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_northwest) +"swK" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"swL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_civilian) +"swZ" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/desert_dam/interior/dam_interior/hanger) +"sxg" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"sxz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"sxL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"sxW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"dQq" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/smes_backup) +"sxX" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"sye" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"sym" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"syF" = ( /turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"dQr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/desert_dam/building/medical/virology_wing) +"syH" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"syL" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"syN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"syW" = ( +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"szb" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"sze" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"szg" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"dQs" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"szB" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "sedimentation_A_1"; + pixel_y = -16 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"dQt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/primary_storage) -"dQu" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"szI" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - icon_state = "pipe-c" + name = "\improper Virology Lab Cell" }, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"szK" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/bar_valley_dam) +"szY" = ( +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/security/prison) +"sAb" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"sAD" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"sAI" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"sAX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"dQv" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"sBh" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river_mouth/southern) +"sBk" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"sBn" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"dQw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"dQx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/east_wing_hallway) -"dQy" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"sBP" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"sBV" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/lobby) +"sBW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"dQz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/lobby) -"dQA" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"sCt" = ( +/turf/open/desert/excavation/component4/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"sDb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" + }, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"sDg" = ( +/obj/structure/surface/table/reinforced, +/obj/item/packageWrap, +/obj/item/tool/hand_labeler, +/turf/open/floor/whitepurplecorner/east, +/area/desert_dam/building/medical/chemistry) +"sDi" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"dQB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"dQC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/lobby) -"dQD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/lobby) -"dQE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/lobby) -"dQF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/lobby) -"dQG" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"sDp" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/blue, +/area/desert_dam/building/dorms/pool) +"sDK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/west_wing_hallway) -"dQH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/west_wing_hallway) -"dQI" = ( -/obj/effect/decal/cleanable/blood, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"dQJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/lobby) -"dQK" = ( -/obj/effect/decal/cleanable/blood, +/area/desert_dam/building/medical/emergency_room) +"sDL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Hallway" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/lobby) -"dQL" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"sDR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_cargo) +"sDS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/yellowcorner/north, +/area/desert_dam/building/hydroponics/hydroponics) +"sEn" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 2; name = "\improper Medical Lobby" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/lobby) -"dQM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"dQO" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"dQP" = ( -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/building/medical/lobby) +"sEp" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/valley/valley_labs) +"sEK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/candle, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"sEM" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"sFe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /obj/effect/decal/cleanable/dirt, -/obj/item/trash/kepler, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"dQQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"sFh" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"sFl" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_0" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"dQR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Emergency Room" +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"sFq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"sFF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"sFO" = ( +/obj/item/tool/pen, +/obj/item/paper_bundle, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"sFQ" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"sFS" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/emergency_room) -"dQX" = ( +"sFU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"dQY" = ( -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/emergency_room) -"dRc" = ( -/obj/structure/pipes/standard/simple/hidden{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"dRd" = ( -/obj/structure/pipes/standard/simple/hidden{ +/turf/open/floor/prison/yellow/west, +/area/desert_dam/building/hydroponics/hydroponics) +"sGn" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"dRe" = ( -/obj/structure/pipes/standard/simple/hidden{ +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"sGv" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"sGz" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"dRf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"dRg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/emergency_room) -"dRh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"dRi" = ( -/obj/item/clothing/head/surgery/blue, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/treatment_room) -"dRj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/east_wing_hallway) -"dRk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/east_wing_hallway) -"dRl" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/warehouse/breakroom) +"sGP" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"dRm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"dRn" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell1decal" +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"sGZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/emergency_room) -"dRo" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell2deval" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_cargo) +"sHb" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/darkred2/southwest, +/area/desert_dam/building/administration/lobby) +"sHc" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/staffroom) +"sHk" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"sHm" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/northwest, -/area/desert_dam/building/medical/emergency_room) -"dRp" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"dRq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"dRr" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/healthanalyzer, -/turf/open/floor/prison/whitegreen/northeast, -/area/desert_dam/building/medical/treatment_room) -"dRs" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"sHv" = ( +/obj/structure/platform_decoration, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) +"sHy" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"sHP" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"sIb" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"dRt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"dRu" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/hanger) +"sIm" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"sIn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"sIr" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"sID" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"dRv" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"dRy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"dRz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"dRA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"dRC" = ( -/obj/item/device/healthanalyzer, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"dRD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/east_wing_hallway) -"dRE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"dRF" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"sIO" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"dRG" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"sIR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/yellowcorner/west, +/area/desert_dam/building/hydroponics/hydroponics) +"sIV" = ( +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"sJe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"sJp" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"sJu" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating/warnplate, +/area/desert_dam/building/substation/northwest) +"sJA" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/deathrow) +"sJE" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/interior/caves/east_caves) +"sJM" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"sKg" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"sKh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") + }, +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"sKk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"sKq" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_landing" + }, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"sKv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Hallway" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"sKA" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"sKQ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/northeast) +"sLg" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"sLj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"sLq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Break Room" + }, /turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"dRH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/desert_dam/building/warehouse/breakroom) +"sLv" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"dRI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_central_south) +"sLx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/emergency_room) -"dRJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"sLL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_two/lobby) +"sLS" = ( +/obj/structure/window/framed/bunker/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"sMb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/south_valley_dam) +"sMf" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_wilderness) +"sMg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"sMi" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"sML" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/treatment_room) -"dRL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"sMM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/treatment_room) -"dRM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"sMQ" = ( +/turf/open/floor/coagulation/icon7_8, +/area/desert_dam/exterior/valley/valley_mining) +"sMU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"dRN" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/garage) +"sNm" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/desert_dam/building/administration/lobby) +"sNu" = ( +/obj/structure/machinery/light, +/turf/open/floor/whiteyellowcorner, +/area/desert_dam/building/water_treatment_one/breakroom) +"sNz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"sND" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link/green, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) -"dRO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"sNJ" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/disposalpipe/junction{ +/obj/structure/machinery/light{ dir = 8 }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"sNM" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/building/medical/garage) +"sNN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/treatment_room) -"dRP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"sNT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"dRQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Surgery" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"sOf" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"sOi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet/edge/southeast, +/area/desert_dam/building/administration/meetingrooom) +"sOm" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"sOr" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"dRR" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"sOx" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"sPi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"sPo" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"dRS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"dRT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"sPB" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"dRV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"sPI" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_two) +"sPU" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"dRX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/prison/darkbrown3/north, +/area/desert_dam/interior/dam_interior/disposals) +"sQb" = ( +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/building/water_treatment_one/purification) +"sQo" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"sQF" = ( +/obj/structure/dispenser, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"sQR" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"sQS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"dRY" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/northern_hallway) +"sQW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -43618,7800 +42247,8896 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"dRZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"sQZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/whitepurple/north, +/area/desert_dam/building/medical/chemistry) +"sRk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"sRC" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"sRZ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_two) +"sSg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/east_wing_hallway) -"dSa" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"sSh" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"sSk" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"dSb" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"sSo" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"sSs" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) +"sSt" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"dSc" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"sSz" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/holding) +"sSE" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"dSd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/staffroom) +"sSQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"dSe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"dSf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"dSg" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"dSh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"dSi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/emergency_room) -"dSj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"dSk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"dSl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/treatment_room) -"dSm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/southwest, -/area/desert_dam/building/medical/treatment_room) -"dSn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/east_wing_hallway) -"dSo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/east_wing_hallway) -"dSq" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel) +"sTa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dSr" = ( -/obj/item/frame/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dSs" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"dSt" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/emergency_room) -"dSu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/emergency_room) -"dSv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"dSw" = ( -/obj/structure/machinery/medical_pod/sleeper, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"dSx" = ( -/obj/structure/machinery/sleep_console, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"dSy" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"sTc" = ( /obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"dSB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"dSD" = ( -/obj/item/trash/semki, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/treatment_room) -"dSF" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/holding) +"sTk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"sUc" = ( +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"sUl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"dSG" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/southwest, -/area/desert_dam/building/medical/virology_isolation) -"dSH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"dSO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Containment Pen" +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"sUr" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"sUD" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_isolation) -"dSS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_isolation) -"dSU" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_wing) -"dSV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"sVW" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/virology_wing) -"dSW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Containment Pen" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"sWh" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, /turf/open/floor/freezerfloor, -/area/desert_dam/building/medical/virology_wing) -"dSX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_isolation) -"dSY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"dSZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"dTa" = ( -/obj/structure/machinery/chem_master, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/area/desert_dam/building/cafeteria/cold_room) +"sWu" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"dTb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_isolation) -"dTc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"dTd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"dTf" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"sWA" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"sWC" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"sWL" = ( +/obj/structure/barricade/wooden{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"dTg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_isolation) -"dTh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_wing) -"dTi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"sWN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/virology_wing) -"dTj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"dTk" = ( -/obj/structure/bed/stool, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"sWS" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/virology_wing) -"dTl" = ( -/obj/structure/window/framed/colony, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_isolation) -"dTm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner/west, -/area/desert_dam/building/medical/virology_wing) -"dTn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/virology_wing) -"dTo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreencorner, -/area/desert_dam/building/medical/virology_wing) -"dTp" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/virology_wing) -"dTs" = ( -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/rock) -"dTv" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_civilian) -"dTx" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 - }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"sXh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"sXC" = ( +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/administration/control_room) +"sXF" = ( +/obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"sXM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"sXR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"dTA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"sXT" = ( +/turf/open/floor/filtrationside/northeast, +/area/desert_dam/exterior/valley/valley_mining) +"sXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"dTB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"sYi" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"dTH" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"sYp" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal9" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, /turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"dTK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_hydro) -"dTL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"dTP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dTQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellow/east, -/area/desert_dam/building/hydroponics/hydroponics) -"dTX" = ( +/area/desert_dam/exterior/valley/bar_valley_dam) +"sYu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"sYw" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dTY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dTZ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUa" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/building/cafeteria/loading) +"sYS" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/north_tunnel) +"sYT" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) +"sYX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitebluecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"sYY" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"sZe" = ( +/obj/structure/sink{ dir = 4; - icon_state = "pipe-c" + pixel_x = 11 }, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"sZg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Kitchen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"sZn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dUd" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"sZo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"sZr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) +"sZz" = ( /obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/desert_dam/building/cafeteria/cafeteria) -"dUe" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/poddoor/shutters{ - dir = 2 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"tah" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Loading Bay" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dUf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters{ - dir = 2 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"taE" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/interior/dam_interior/hanger) +"taG" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dUg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellowcorner, -/area/desert_dam/building/hydroponics/hydroponics) -"dUh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellowcorner/west, -/area/desert_dam/building/hydroponics/hydroponics) -"dUi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellow, -/area/desert_dam/building/hydroponics/hydroponics) -"dUj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellow, -/area/desert_dam/building/hydroponics/hydroponics) -"dUm" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"taJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison/yellow/west, -/area/desert_dam/building/hydroponics/hydroponics) -"dUn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/north_valley_dam) +"taK" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/control_room) +"taT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Research Workshop" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"taW" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_east) +"tbb" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"tbc" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellow/east, -/area/desert_dam/building/hydroponics/hydroponics) -"dUp" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellowfull/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dUr" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dUt" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dUu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/window/framed/colony, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dUv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellow/north, -/area/desert_dam/building/hydroponics/hydroponics) -"dUw" = ( -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"tbs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Hallway" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"tbK" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"tbR" = ( +/obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellowcorner/east, -/area/desert_dam/building/hydroponics/hydroponics) -"dUx" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"tbU" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"tca" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUy" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"tch" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/yellowcorner/north, -/area/desert_dam/building/hydroponics/hydroponics) -"dUz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/interior/caves/central_caves) -"dUA" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"tcs" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"tcB" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"tcC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUB" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"tdb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"tdj" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tdk" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"tdw" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"tdz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"ten" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/desert_dam/building/security/southern_hallway) +"tes" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"teN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUC" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"teP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"teR" = ( +/obj/structure/bed/chair/comfy/beige{ dir = 4 }, -/obj/item/seeds/soyaseed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUD" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/temple) +"tfG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"tfI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Restroom" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"tgb" = ( +/turf/open/floor/prison/yellow/northeast, /area/desert_dam/building/hydroponics/hydroponics) -"dUF" = ( -/obj/effect/landmark/survivor_spawner, +"tgd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy/tank{ + icon_state = "jar_sample" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"tge" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"tgf" = ( +/obj/structure/filtration/flacculation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"tgj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Emergency Room" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUG" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"tgu" = ( +/obj/structure/machinery/power/apc{ dir = 1; - icon_state = "pipe-c" + pixel_y = 24; + start_charge = 0 }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"tgx" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/water_treatment_one/lobby) +"tgz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUH" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"tgA" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/prison/yellow/west, -/area/desert_dam/building/hydroponics/hydroponics) -"dUI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUJ" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dUK" = ( -/obj/effect/decal/cleanable/vomit, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dUL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"dUM" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"thg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"thi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"thj" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"thl" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"thp" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_south) +"thr" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"thA" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"thL" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) -"dUN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_hydro) -"dUO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/area/desert_dam/exterior/valley/valley_crashsite) +"thO" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"tia" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"tii" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz2_storage) +"tim" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"tiu" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"tiB" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river_mouth/southern) +"tiG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dVb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"tjb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dVc" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dVj" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dVk" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"tjC" = ( +/obj/structure/pipes/standard/simple/hidden{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dVl" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cookie, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dVm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"dVn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"tjO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dVo" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dVp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"dVr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) -"dVs" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dVt" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/area/desert_dam/building/security/northern_hallway) +"tjX" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"dVu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) -"dVv" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dVw" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dVx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dVy" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"tkh" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"tkv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dVz" = ( -/obj/structure/machinery/door_control{ - id = "warehouse_dam_2"; - name = "Warehouse Shutters" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"tkx" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"tky" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/garage) -"dVA" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"tkC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"tkF" = ( +/turf/open/floor/carpet/edge/northeast, +/area/desert_dam/building/administration/meetingrooom) +"tkI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"tkO" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"tkU" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"tlc" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"tlg" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"tlw" = ( +/obj/structure/bed/stool, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"tmm" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVC" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"tmo" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/south_valley_dam) +"tmr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"tmz" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"tnt" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVD" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dVE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/overseer_office) +"tnu" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/yellowcorner/east, -/area/desert_dam/building/hydroponics/hydroponics) -"dVH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"dVI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dVJ" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dVK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/robot, /turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVL" = ( +/area/desert_dam/exterior/valley/valley_hydro) +"tnw" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"dVM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tny" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dVN" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"tnF" = ( /obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; + dir = 8; + pixel_x = -30; start_charge = 0 }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dVO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dVP" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dVR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dVS" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"tnQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"tnY" = ( +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/bonegel, +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/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" + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"tod" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"top" = ( +/turf/open/desert/excavation/component6/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"tow" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_east) +"toz" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"dVT" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/building/hydroponics/hydroponics_storage) +"toE" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"toL" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"toT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) +"toW" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"tpl" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"dVU" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"dVY" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"tpz" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"tpB" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/red/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"tpD" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"dVZ" = ( +/area/desert_dam/interior/dam_interior/lobby) +"tqc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"tqI" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_south) +"tqR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dWa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"dWd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dWe" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/southern_hallway) +"trp" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"trq" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"trs" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/exterior/telecomm/lz2_containers) +"trP" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"trZ" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"tsk" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"tsl" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 + }, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"tsw" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/t_scanner, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"tsA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/largecrate/random, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"ttc" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"ttr" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"tty" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"ttC" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/exterior/valley/valley_hydro) +"ttF" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{ + pixel_x = 32; + shuttleId = "trijentshuttle22" }, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/loading) +"ttG" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/control_room) +"ttL" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_labs) +"ttV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_wilderness) +"tuc" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dWf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/desert_dam/interior/dam_interior/control_room) +"tuj" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"tuk" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"tus" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 }, -/obj/effect/decal/cleanable/blood/gibs/robot, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dWg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"tut" = ( +/obj/structure/surface/rack, +/obj/item/device/multitool, +/obj/item/storage/belt/utility/full, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"tuA" = ( +/obj/structure/closet/secure_closet/bar, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"tuJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dWh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"tuP" = ( +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"tuY" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"tve" = ( +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/administration/overseer_office) +"tvh" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "3,7" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dWi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dWj" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"tvr" = ( +/turf/open/floor/prison/red/east, +/area/desert_dam/building/security/lobby) +"tvs" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_hydro) +"tvP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"tvS" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/office2) +"tvW" = ( +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/lobby) +"tvY" = ( +/turf/open/floor/coagulation/icon7_7, +/area/desert_dam/exterior/valley/valley_hydro) +"twa" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"twc" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dWk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"twg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"twr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dWl" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"twy" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"twJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) +"twS" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/temple) +"twW" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"txc" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dWm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"txl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/item/seeds/riceseed, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"dWn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/turf/open/floor/coagulation/icon8_7, +/area/desert_dam/exterior/valley/valley_mining) +"txm" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"txp" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"txq" = ( +/turf/open/floor/prison/greencorner/west, +/area/desert_dam/interior/dam_interior/atmos_storage) +"txv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"txE" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) +"txH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dWo" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Security Desk" + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/desert_dam/building/water_treatment_one/lobby) +"txO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"txZ" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"tyc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"tyi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - icon_state = "pipe-c" + name = "\improper Xenoflora" }, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"tyl" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/southern_hallway) +"tyn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dWp" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"tyI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dWq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"dWr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dWs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dWu" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWy" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWA" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dWB" = ( -/obj/item/shard/shrapnel, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"dWC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWG" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dWK" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWM" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWN" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"tza" = ( /obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWO" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dWP" = ( +/obj/item/device/encryptionkey, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/substation/west) +"tzb" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/east_caves) +"tzg" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) +"tzj" = ( /obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/whiteyellow, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Mess Hall" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"dWT" = ( +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/control_room) +"tzx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"dWV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/desertdam/decals/road_stop{ +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tzF" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"tzH" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - icon_state = "stop_decal5" + id = null; + name = "\improper Elevator Lock" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/prison/cell_stripe/west, +/area/shuttle/trijent_shuttle/engi) +"tzL" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_civilian) -"dWW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"tzR" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"tAt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dWZ" = ( +/area/desert_dam/exterior/valley/valley_labs) +"tAy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"tAB" = ( +/obj/structure/bed/stool, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXa" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"tBi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"tBl" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tBs" = ( +/obj/structure/platform{ + dir = 1 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"tBw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXc" = ( -/obj/structure/desertdam/decals/road_stop, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"tBD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXf" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal3" +/area/desert_dam/exterior/valley/valley_labs) +"tBL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Administration Lobby" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"tBM" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"tCc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXj" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"tCe" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXm" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXn" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tCi" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/southwest) +"tCw" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"tCz" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"tCO" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"tCQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXp" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/item/stool, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"tDd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"tDR" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river_mouth/southern) +"tDS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXq" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hangar_storage) +"tDV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"tEg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/structure/barricade/wooden{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_cargo) +"tEt" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"dXr" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"tEy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"dXs" = ( -/obj/structure/barricade/wooden{ +/area/desert_dam/exterior/valley/valley_hydro) +"tEz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/east_caves) +"tEB" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"dXt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/structure/barricade/wooden{ +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tEE" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/warehouse/warehouse) +"tEH" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/barricade/wooden{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"tEV" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"tFa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"tFe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"dXu" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"tFt" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/whitered, +/area/desert_dam/building/medical/chemistry) +"tFL" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"dXv" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"tFN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"dXw" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"tFO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"tFS" = ( +/obj/effect/decal/remains/human, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"tGa" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/barricade/wooden{ - dir = 4 + dir = 10 }, -/turf/open/asphalt/tile, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) -"dXx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" +"tGj" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"tGm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXz" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"tGt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXA" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"tGw" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river_mouth/southern) +"tGN" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_cargo) +"tGQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/barricade/wooden{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"dXC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dXD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXE" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"tHj" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"tHl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"tHm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"tHs" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXH" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"tHy" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Checkpoint" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_civilian) -"dXI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"tHG" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/medical/garage) +"tHM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"tHN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"tHY" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/interior/caves/central_caves) +"tHZ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"tIh" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"tIt" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"tIx" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXL" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"dXN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"tIy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/south_valley_dam) +"tIA" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"tIR" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"tIT" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"tIU" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_cargo) +"tIV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Medical Storage" }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"tIW" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/excavation/component1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"tJb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"tJq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/structure/barricade/wooden{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"tJw" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"dXY" = ( -/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"tJz" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"tJT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"dXZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"dYa" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/loading) +"tJV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greencorner/west, /area/desert_dam/building/dorms/hallway_northwing) -"dYb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dYc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greencorner, -/area/desert_dam/building/dorms/hallway_northwing) -"dYi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dYk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dYm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dYx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" +"tKb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_northeast"; + name = "Checkpoint Lockdown" }, +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"tKl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/hallway_westwing) -"dYy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"dYz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dYC" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dYD" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dYI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"dYK" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dYM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dYN" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"tKs" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "3,7" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green/east, -/area/desert_dam/building/dorms/hallway_westwing) -"dYP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dYR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green/east, -/area/desert_dam/building/dorms/hallway_westwing) -"dYS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"tKz" = ( +/turf/open/floor/white, +/area/desert_dam/exterior/valley/valley_telecoms) +"tKJ" = ( +/obj/structure/machinery/sensortower, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"tLd" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"dYX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_westwing) -"dZf" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"tLm" = ( /obj/structure/machinery/light, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"dZk" = ( -/obj/item/stack/sheet/wood, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_civilian) -"dZl" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"dZm" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"tLO" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_storage" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dZn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"tMe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dZp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"tMg" = ( +/obj/structure/stairs{ dir = 4 }, +/obj/structure/platform, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"tMi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dZz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_westwing) -"dZE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"dZG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"dZH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"dZI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"tMm" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"tMs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"tMx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"tMy" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, +/area/desert_dam/building/mining/workshop) +"tMK" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tML" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"dZL" = ( -/turf/open/gm/river/pool, -/area/desert_dam/building/dorms/pool) -"dZM" = ( -/turf/open/gm/river/red_pool, -/area/desert_dam/building/dorms/pool) -"dZN" = ( -/turf/open/gm/river/darkred_pool, -/area/desert_dam/building/dorms/pool) -"dZO" = ( -/obj/item/toy/inflatable_duck, -/turf/open/gm/river/red_pool, -/area/desert_dam/building/dorms/pool) -"dZR" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"dZS" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"dZT" = ( -/obj/structure/closet/athletic_mixed, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"dZU" = ( -/obj/structure/surface/table, -/turf/open/floor/prison/green/west, -/area/desert_dam/building/dorms/hallway_westwing) -"dZX" = ( -/obj/item/stool, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"dZY" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/prison/green/west, -/area/desert_dam/building/dorms/hallway_westwing) -"ead" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"eae" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) -"eag" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) -"eak" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"eal" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"eau" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"eav" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"eaw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"eaz" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"eaA" = ( -/obj/item/stool, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"eaC" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"eaG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"eaH" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"eaK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cheesie, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"eaL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"tMM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/mirror{ - pixel_x = -28 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/central_tunnel) +"tMR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/primary_storage) +"tMS" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_south) +"tMX" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered/north, +/area/desert_dam/exterior/river/riverside_east) +"tNf" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"tNi" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/interior/caves/central_caves) +"tNS" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/whiteblue, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"tOi" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"tOB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"eaO" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"eaP" = ( +/area/desert_dam/building/security/northern_hallway) +"tOD" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"tOE" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"tOM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/desert_dam/interior/dam_interior/hanger) +"tPk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_westwing) -"eaQ" = ( -/obj/item/tool/hatchet, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_westwing) -"eaT" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"eaU" = ( -/obj/structure/machinery/light, +/area/desert_dam/interior/dam_interior/control_room) +"tPo" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/filtrationside/northwest, +/area/desert_dam/exterior/valley/valley_medical) +"tPG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"tPK" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/lobby) +"tPP" = ( +/obj/structure/platform, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) +"tPT" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"tQa" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"tQf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"tQn" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) -"eaV" = ( -/obj/structure/machinery/light{ - dir = 1 +"tQs" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/holdout, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"eaW" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"tQw" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"eaX" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_hydro) -"eba" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"tQx" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tQy" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"tQL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_hydro) -"ebb" = ( +"tQR" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"tQU" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/trash/syndi_cakes, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"ebc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"ebf" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"tRi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"tRn" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/security/prison) +"tRu" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_labs) +"tRI" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_0" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"ebi" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/gm/river/darkred_pool, -/area/desert_dam/building/dorms/pool) -"ebj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_westwing) -"ebk" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison/green/east, -/area/desert_dam/building/dorms/hallway_westwing) -"ebn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"ebo" = ( -/obj/item/weapon/gun/revolver/small, -/turf/open/floor/prison/whitegreenfull, -/area/desert_dam/building/dorms/pool) -"ebp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison/blue/southwest, -/area/desert_dam/building/dorms/pool) -"ebq" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"tRR" = ( +/obj/structure/closet/radiation, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"tRV" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"tSd" = ( /obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/prison/blue, -/area/desert_dam/building/dorms/pool) -"ebs" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/wirecutters, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"tSo" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"tSt" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/desert_dam/exterior/rock) -"ebt" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"tSB" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"tSK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"ebu" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"tTk" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"tTo" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"tTt" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/green/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"tTJ" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison/red/east, -/area/desert_dam/building/water_treatment_one/lobby) -"ebv" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"tTK" = ( +/obj/structure/stairs{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"ebx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"eby" = ( -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"ebz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"tTL" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"tTR" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"tTV" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"tUa" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tUn" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"tUD" = ( /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ebA" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"ebB" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"ebC" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"ebD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"ebE" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/building/water_treatment_one/breakroom) -"ebF" = ( -/obj/structure/closet/l3closet/virology, -/obj/structure/machinery/light{ +/area/desert_dam/building/hydroponics/hydroponics) +"tUZ" = ( +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/southern_hallway) +"tVv" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"tVA" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/workshop) +"tVG" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/equipment) -"ebG" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_northwest) +"tVW" = ( +/turf/open/floor/prison/darkpurplecorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"tWu" = ( +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/substation/northwest) +"tWX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tWZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"ebJ" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/desert_dam/exterior/valley/valley_crashsite) +"tXe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, /turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"ebK" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 8 +/area/desert_dam/interior/dam_interior/break_room) +"tXm" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/building/water_treatment_one/breakroom) -"ebL" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"tXs" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"ebM" = ( -/obj/structure/machinery/light, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/equipment) -"ebN" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 +/obj/structure/platform{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"ebO" = ( -/obj/structure/machinery/light, -/turf/open/floor/whiteyellowcorner, -/area/desert_dam/building/water_treatment_one/breakroom) -"ebP" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"tXA" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"tXB" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"tXE" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"ebQ" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"tXI" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"tYa" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"tYv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/control_room) -"ebT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ebU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/substation/southwest) -"ebW" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ebZ" = ( -/obj/structure/window/framed/hangar/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/garage) -"ece" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"tYz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_one) +"tYB" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"ecf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"tYD" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"ecg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"tYN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/interior/dam_interior/south_tunnel) +"tYS" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"tYV" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office1) +"tYW" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tZd" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteyellow/northeast, +/area/desert_dam/interior/dam_interior/break_room) +"tZh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 3" + }, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"tZk" = ( +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"tZq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ech" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"eci" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ecj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/desert_dam/interior/dam_interior/control_room) +"tZx" = ( +/obj/structure/closet/lasertag/blue, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"tZy" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + name = "\improper Containment Lock"; + unacidable = 0 + }, +/turf/open/floor/plating/platebot, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"tZC" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/substation/southwest) +"tZD" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"tZI" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"tZM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"tZN" = ( +/obj/structure/surface/table/reinforced, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"tZP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/interior/dam_interior/west_tunnel) +"tZQ" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/exterior/rock) +"uas" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"eck" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ecl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"uaw" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/desert_dam/building/administration/lobby) +"uaI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ecm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"uaJ" = ( +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"uaK" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"uaS" = ( +/obj/structure/showcase{ + color = "#880808"; + desc = "A large red statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "The Titan" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ecn" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1; + icon_state = "halfarmor7_ebony" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1; + icon_state = "y-boots4_ebony" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"eco" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + icon_state = "pred_mask12_ebony"; + unacidable = 0 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ecp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/strata/grey_multi_tiles, +/area/desert_dam/interior/caves/temple) +"ubr" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ubu" = ( +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/hangar_storage) +"uby" = ( +/obj/structure/bed/chair{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"ubB" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"ubG" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"ubJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/primary_storage) +"ubK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"ubV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"ucb" = ( +/obj/item/stack/sheet/wood, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ecq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/building/water_treatment_one/control_room) +"ucz" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/item/phone, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"ucA" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"ucC" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/surgery_room_one) +"ucF" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ucN" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_telecoms) +"ucT" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) +"udg" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ecr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ect" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"udI" = ( +/turf/open/floor/coagulation/icon1_1, +/area/desert_dam/exterior/valley/valley_hydro) +"udJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Observation" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"uep" = ( +/obj/item/tool/hatchet, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"uex" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"uez" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/garage) +"ueB" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"ecu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"ueR" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"ueT" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"ecv" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"ueZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"ecw" = ( -/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ufj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"ecx" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"ecy" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"ecA" = ( -/obj/structure/disposalpipe/junction{ +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "pipe-j2" + name = "\improper Restroom" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"ecB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"ufk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/equipment) -"ecH" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"ufy" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"ufI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecL" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office1) +"ufW" = ( +/turf/closed/wall/mineral/sandstone/runed, +/area/desert_dam/exterior/rock) +"uga" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/south_tunnel) +"ugc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/equipment) -"ecM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"edo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"edC" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"ugj" = ( +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"ugn" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ugq" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"ugw" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"ugN" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"ugQ" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"edJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Water Treatment Foyer" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"ugS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) -"edK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Office" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"edL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Water Treatment Hallway" +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"ugU" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"uhj" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"edM" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_civilian) -"edO" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/hallway) -"edP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Treatment Checkpoint" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_central_south) +"uhp" = ( +/turf/open/floor/prison/redcorner, +/area/desert_dam/building/security/northern_hallway) +"uhB" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"uhF" = ( +/obj/structure/surface/table/reinforced, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/lobby) -"edQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Water Treatment" +/obj/structure/machinery/door/poddoor/shutters{ + dir = 2 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"edR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Treatment Controlroom" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"uhS" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"uhT" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"uig" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"uiH" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ujf" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/control_room) -"edT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Breakroom" + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/breakroom) -"edU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Decontamination" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ujg" = ( +/turf/open/floor/carpet/edge/north, +/area/desert_dam/building/administration/meetingrooom) +"ujr" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/hallway) -"edY" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/purification) -"eed" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Treatment Showers" +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"eee" = ( -/obj/structure/window/framed/hangar, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/hallway) -"eei" = ( -/turf/closed/shuttle{ - dir = 1; - icon_state = "pwall" +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"ujv" = ( +/obj/structure/platform{ + dir = 1 }, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river_mouth/southern) -"eeo" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/control_room) -"eeq" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/breakroom) -"eer" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Floodgate Controlroom" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"ees" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"ujD" = ( +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"ujE" = ( +/obj/structure/target, +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"ujJ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/exterior/valley/valley_wilderness) +"ujM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/healthanalyzer, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/treatment_room) +"ukl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"ukr" = ( +/obj/structure/surface/table, +/obj/item/stack/rods{ + amount = 25 }, -/obj/structure/barricade/wooden{ +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"ukD" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"eet" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Treatment Breakroom" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/breakroom) -"eev" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Decontamination" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/equipment) -"eez" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" - }, -/turf/open/floor/white, -/area/desert_dam/building/water_treatment_one/breakroom) -"eeC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Restroom" +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"eeD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Treatment Garage" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"ukN" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_cargo) +"ukX" = ( +/turf/open/floor/coagulation/icon6_8_2, +/area/desert_dam/exterior/valley/valley_hydro) +"ulB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_one/garage) -"eeE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Water Treatment" +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"eeK" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_3"; - name = "\improper Warehouse Shutters" +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/west_wing_hallway) +"ulJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_medical) +"ulN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"umg" = ( +/obj/structure/floodgate, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"uml" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, /turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"eeL" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"eeM" = ( -/obj/structure/machinery/door_control{ - id = "warehouse_dam_2"; - name = "Warehouse Shutters" - }, -/turf/closed/wall, -/area/desert_dam/building/cafeteria/loading) -"eeP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"eeR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/desert_dam/exterior/valley/south_valley_dam) +"ump" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"ums" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"eeS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"une" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/north_valley_dam) +"unn" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"eeT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"uoc" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/obj/structure/platform{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"eeU" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/item/clothing/head/soft/ferret, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_south) +"uod" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitepurple, +/area/desert_dam/building/medical/chemistry) +"uoi" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"eeV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_3"; - name = "\improper Warehouse Shutters" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) +"uow" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"uoF" = ( +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/hallway) +"uoK" = ( +/obj/structure/stairs{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"eeW" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_3"; - name = "\improper Warehouse Shutters" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"upe" = ( +/turf/open/desert/excavation/component2/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"upn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"upr" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/lobby) +"ups" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"upB" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"upJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"upQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"eeX" = ( -/obj/structure/machinery/door_control{ - id = "warehouse_dam_3"; - name = "Warehouse Shutters" +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"uqe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"uqu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/closed/wall, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"efl" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"uqI" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uqV" = ( /obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" + name = "\improper Backroom" }, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"eft" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"efT" = ( +/turf/open/floor/cult, +/area/desert_dam/building/church) +"urk" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/smes_backup) +"urt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"ury" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Lab Maintenance" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"urN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) -"ehg" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/area/desert_dam/building/water_treatment_one/control_room) +"urO" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"urS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_mining) +"urZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/south_valley_dam) +"usc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"usu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_cargo) +"usC" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_medical) +"usF" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 15 + }, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"usM" = ( +/obj/structure/platform_decoration{ + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"usT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"usZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"uta" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ute" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ehx" = ( -/obj/structure/fence, -/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_medical) -"ehz" = ( -/obj/effect/decal/sand_overlay/sand1{ +"utr" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"utw" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"utx" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/warehouse/loading) +"uty" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"utE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_mining) +"utF" = ( +/turf/open/floor/prison/red, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"utH" = ( +/obj/structure/machinery/computer/area_atmos, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"uug" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"uuo" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"uuz" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/chapel/west, +/area/desert_dam/building/church) +"uuC" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cookie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"uuL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"uuY" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/substation/west) +"uvd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/southwest, +/area/desert_dam/building/substation/northeast) +"uvf" = ( /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"ehB" = ( -/turf/open/floor/coagulation/icon0_8, -/area/desert_dam/building/water_treatment_one/purification) -"ehC" = ( -/turf/open/floor/coagulation/icon4_8, -/area/desert_dam/building/water_treatment_one/purification) -"ehD" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "sedimentation_0" +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"uvs" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ehE" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "sedimentation_A_1" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ehF" = ( -/obj/structure/filtration/machine_64x128{ - icon_state = "filtration_1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"uvM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ehG" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_1" +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/office) +"uvU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ehH" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_0" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "hangar_dam_2"; + name = "\improper Hangar Shutters" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ehI" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_catwalk" +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"uwc" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/exterior/valley/valley_wilderness) +"uwm" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"uww" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ehJ" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_0" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"uwD" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ehK" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_1" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"uwE" = ( +/turf/open/floor/cult, +/area/desert_dam/building/church) +"uwJ" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_northwest) +"uxv" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"uxz" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ehL" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_1" +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"uxF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"uxH" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"uxL" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"uxW" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/medical/break_room) +"uyh" = ( +/obj/structure/stairs{ + dir = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ehM" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_B_1" +/turf/open/floor/dark, +/area/desert_dam/building/church) +"uyn" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"uyY" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 24; + start_charge = 0 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"ehN" = ( -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/building/water_treatment_one/purification) -"ehO" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1" +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"uyZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/virology_wing) +"uzd" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"uzh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_one/purification) -"ehP" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/building/water_treatment_one/purification) -"ehQ" = ( -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_one/purification) -"ehR" = ( -/turf/open/floor/coagulation/icon0_5, -/area/desert_dam/building/water_treatment_one/purification) -"ehS" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"uzp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"uzq" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"uzv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"uzA" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/building/water_treatment_one/purification) -"ehT" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_one/purification) -"ehU" = ( -/turf/open/floor/coagulation/icon0_0, -/area/desert_dam/building/water_treatment_one/purification) -"ehV" = ( -/turf/open/floor/coagulation/icon2_0, -/area/desert_dam/building/water_treatment_one/purification) -"ehW" = ( -/turf/open/floor/coagulation/icon8_0, -/area/desert_dam/building/water_treatment_one/purification) -"ehX" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/structure/machinery/dispersal_initiator{ - id = "filter 1" +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/lobby) +"uzB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/building/water_treatment_one/purification) -"ehZ" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "disinfection" +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"uzE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/coagulation/icon8_3, -/area/desert_dam/building/water_treatment_one/purification) -"eia" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation/icon8_8, -/area/desert_dam/building/water_treatment_one/purification) -"eib" = ( -/obj/effect/blocker/toxic_water/Group_1/delay, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"eic" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"eid" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "sedimentation_1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"uzI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/water_treatment_one/purification) -"eiq" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "distribution" +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"uzR" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"ejR" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/warehouse/breakroom) +"uzW" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"uAp" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"uAy" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"uAK" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"ekg" = ( -/obj/effect/decal/remains/xeno{ - pixel_x = 1; - pixel_y = 31 +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/caves/temple) -"ekH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"uAV" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"uBi" = ( +/obj/effect/blocker/toxic_water/Group_1/delay, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"uBr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ekN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"emt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/warning, +/area/desert_dam/interior/dam_interior/engine_room) +"uBs" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_one/lobby) +"uBu" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"eqo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"erB" = ( -/obj/item/tool/surgery/surgicaldrill, -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/bonesetter, -/obj/item/tool/surgery/FixOVein, -/obj/item/stack/nanopaste, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/surgery_room_one) -"erF" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_two) -"esG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ett" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) -"euG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/south_valley_dam) -"eyL" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/engi) -"eAe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"uBw" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_one/purification) +"uBD" = ( +/obj/structure/stairs{ + dir = 4 }, +/obj/structure/platform, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"uBF" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"uBJ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"uBP" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, /turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"eBZ" = ( -/obj/item/storage/fancy/vials/random, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"eCk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/area/desert_dam/interior/caves/central_caves) +"uBQ" = ( +/turf/open/floor/prison/darkyellowcorners2/southwest, +/area/desert_dam/building/substation/west) +"uBV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"eCK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"eDQ" = ( +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"uCf" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"eHi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/bar_valley_dam) -"eJh" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"eKN" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"uCq" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"uCG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/west, -/area/desert_dam/interior/dam_interior/hanger) -"eNU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"eRn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"uDi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"eRL" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"uDk" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"uDF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"uDL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Loading Bay" }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"eRX" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"uDN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"uEi" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"uEk" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"uEx" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"eTi" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"uEG" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/security/prison) -"eVk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"eVo" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/building/security/deathrow) -"eVJ" = ( -/obj/structure/window/framed/chigusa, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"eVR" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/yellow/west, +/area/desert_dam/building/hydroponics/hydroponics) +"uES" = ( +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"uFr" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"uFD" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_hydro) -"eWn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"eXM" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"uFM" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"uFR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"uFX" = ( +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) -"eYn" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/objective{ - dir = 4 - }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"eYK" = ( +"uGb" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"uGq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"uGz" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/armory) +"uGB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"uGJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"eYP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_civilian) -"eZC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"uGL" = ( +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"uGO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"uGV" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/desert_dam/exterior/valley/valley_hydro) +"uHb" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"uHn" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"uHo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"uHC" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"uHK" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"eZE" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"uHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"uHT" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_one) +"uIc" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"eZN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"faE" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/interior/dam_interior/west_tunnel) +"uIf" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"uIh" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"uIi" = ( +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/holding) +"uID" = ( +/turf/open/floor/warnwhite/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"uIT" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/desert_dam/interior/dam_interior/hanger) +"uIY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Surgery" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fbK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"fcu" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "uppcrash-supply" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"fcE" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"fcG" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"uJb" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uJc" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/exterior/telecomm/lz1_south) -"fdk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"feU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) -"fgo" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"uJm" = ( +/obj/structure/machinery/floodlight, +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"uJv" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"uJw" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"fgU" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) +"uJC" = ( +/obj/structure/platform{ + dir = 8 }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/telecomm/lz1_valley) +"uJJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"fiW" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/temple) -"flj" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"flq" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"flu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) -"fmP" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz1) -"foq" = ( +"uJQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fpu" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/south_valley_dam) -"fpJ" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"uKe" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"uKo" = ( +/obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/rock) -"fqj" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/landing_pad_one) -"fqt" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/telecomm/lz2_storage) -"fqy" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"fqI" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"fsK" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"fsP" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"fxs" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/turf/open/gm/river/desert/shallow, +/area/desert_dam/interior/caves/temple) +"uKq" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/dam_interior/south_tunnel) +"uKy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/central) +"uKA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_hydro) +"uKC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"uKY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fyq" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/south_valley_dam) -"fyO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"fBF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"uLj" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" + icon_state = "road_edge_decal3" }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fCB" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/area/desert_dam/exterior/landing_pad_one) +"uLy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"uLF" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/building/substation/southwest) +"uLR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_hydro) -"fDh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"uMr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"uMs" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"fEQ" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"uMu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_mining) +"uMx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"fFw" = ( -/obj/structure/prop/dam/boulder/boulder2{ - desc = "A large rock. It looks very hard to get around." +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"uMR" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"uMT" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "garage_dd"; + name = "\improper Garage" }, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/temple) -"fHg" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/south_valley_dam) -"fHr" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"uNu" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/central_tunnel) +"uNw" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uNF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"uNL" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"uNR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"uOf" = ( +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_two/purification) +"uOo" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"uOr" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"fHJ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"uOw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) -"fHX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, +"uOC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) -"fNw" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fPc" = ( -/turf/closed/wall/r_wall/bunker{ - acided_hole_dir = 4 +"uOX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/garage) -"fPp" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"fRy" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"uPn" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"uPu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitepurple, +/area/desert_dam/building/medical/chemistry) +"uPv" = ( +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_crashsite) -"fSc" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"fTk" = ( -/obj/structure/sink/kitchen, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 1 +"uPy" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"fUO" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"uPB" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"fYz" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"fYS" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"fZd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"fZj" = ( -/obj/effect/landmark/static_comms/net_one, +/area/desert_dam/exterior/valley/north_valley_dam) +"uPD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") + }, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_two/lobby) +"uPI" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"uQh" = ( +/obj/effect/blocker/toxic_water, /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/telecomm/lz1_valley) -"gab" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/chigusa, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"gak" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/whitegreencorner/east, -/area/desert_dam/building/medical/emergency_room) -"gca" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"gdW" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"gea" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ggn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river_mouth/southern) +"uQp" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"uQt" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"ghz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/south_valley_dam) +"uQx" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/central_tunnel) +"uQG" = ( +/obj/structure/showcase, +/turf/open/floor/carpet6_2/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"uQU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"uRb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"gls" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"glx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/desert_dam/building/hydroponics/hydroponics) +"uRz" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"uRN" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"uSq" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_wilderness) +"uSs" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"glz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/desert_dam/interior/dam_interior/garage) -"glD" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/temple) -"glO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"gmk" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"uSu" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"gmZ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_3"; - name = "\improper Warehouse Shutters" +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"uSD" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/interior/caves/east_caves) +"uSL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"uSO" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/central_tunnel) +"uSY" = ( +/turf/open/desert/excavation/component8/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"uTa" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"gnu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"uTo" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"uTy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/straight_jacket, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"uTH" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"goq" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"uTI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"goY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_5, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"gpi" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"gpZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/temple) -"grk" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/interior/caves/central_caves) -"grQ" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"gsr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, +/area/desert_dam/exterior/valley/valley_crashsite) +"uTU" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_one/purification) +"uUa" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"uUg" = ( +/obj/structure/machinery/sleep_console, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"guK" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/central_caves) -"gxo" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"uUv" = ( /obj/structure/surface/table, -/obj/item/clothing/glasses/welding{ - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/device/radio{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/tool/lighter/random{ - pixel_x = -4; - pixel_y = 8 +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"uUC" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/garage) -"gBQ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"uVa" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"uVz" = ( +/obj/structure/toilet, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"uVK" = ( +/obj/item/tool/pickaxe, +/obj/effect/decal/remains/human, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"uVO" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"uWe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"gBV" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"uWo" = ( +/obj/structure/surface/table, /obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"gCg" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"gCS" = ( -/obj/structure/platform/mineral/sandstone/runed{ +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"uWs" = ( +/obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"gEj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"gFr" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"gGC" = ( -/turf/closed/wall/mineral/sandstone/runed/decor, -/area/desert_dam/interior/caves/temple) -"gIA" = ( -/obj/structure/toilet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/freezerfloor, +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) -"gIS" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"gKm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_civilian) -"gKn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/temple) -"gKo" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/exterior/valley/valley_wilderness) -"gLb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 2 +"uWt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/garage) -"gLg" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/landing_pad_two) -"gLl" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/administration/overseer_office) +"uWD" = ( +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"uWH" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"gMN" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"gNq" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"gOE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"uWJ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 6 + dir = 4 }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"gQE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_hydro) +"uWK" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) -"gRC" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 31; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"gTD" = ( -/obj/item/tool/wrench, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"gTW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/interior/caves/central_caves) -"gUh" = ( +"uWN" = ( /obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"gUz" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"uWP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark2, -/area/desert_dam/building/substation/northwest) -"gVm" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"gVo" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/lattice{ - layer = 2.9 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"uWR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"uWT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) -"gWu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"gWH" = ( +/area/desert_dam/exterior/valley/valley_labs) +"uWU" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/control_room) +"uXq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"uXE" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_northwest) +"uXF" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/caves/east_caves) +"uXJ" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 8; icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"gXr" = ( -/obj/effect/decal/remains/xeno{ - pixel_x = 31 +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"uYb" = ( +/obj/structure/target, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/warnplate, +/area/desert_dam/exterior/valley/valley_telecoms) +"uYf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_crashsite) -"gYP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"gYT" = ( -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/exterior/telecomm/lz1_valley) -"gYU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/telecomm/lz2_storage) -"hcP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"het" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/objective, -/turf/open/floor/prison/red/north, -/area/desert_dam/building/water_treatment_one/lobby) -"heR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"uYh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"hhj" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"uYj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/south_valley_dam) -"hiN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"uYl" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/armory) +"uYz" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_civilian) +"uYB" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"hjm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/telecomm/lz1_valley) +"uYC" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"uYD" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"hjz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/desert_dam/exterior/valley/valley_medical) +"uYH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"hjW" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/landing_pad_two) -"hmA" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/folder/black, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/CE_office) -"hnJ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"uYJ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"uYM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"uYS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"hoc" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"uYV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"hpw" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/south_valley_dam) -"hpL" = ( -/obj/structure/platform/mineral/sandstone/runed{ +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northwest) +"uZn" = ( +/obj/structure/filtration/machine_64x128{ + icon_state = "filtration_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"uZo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"hqp" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"hqT" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) -"htc" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/landing_pad_two) -"hvD" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" +"uZr" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"hvG" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_telecoms) -"hwc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/red/northeast, +/area/desert_dam/building/security/lobby) +"uZK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office2) +"vac" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_isolation) +"vap" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 30; + start_charge = 0 + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"vaE" = ( +/obj/structure/machinery/flasher/portable, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"vaN" = ( +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"vaR" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"vbq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"vbw" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"vbx" = ( +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_two) +"vby" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/south_valley_dam) -"hxj" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/exterior/valley/valley_labs) +"vbS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_hydro) -"hyH" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"hzg" = ( -/obj/effect/decal/sand_overlay/sand2, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"hzC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"hAf" = ( -/obj/structure/machinery/door_control{ - id = "garage_dd"; - name = "Garage Lockdown"; - pixel_y = -28 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"vbZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/garage) -"hAv" = ( -/obj/item/stack/sheet/mineral/sandstone{ - amount = 50 - }, -/obj/effect/decal/remains/xeno{ - pixel_x = 1; - pixel_y = 31 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"hAB" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"vcg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "W" }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"vco" = ( +/obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"hBr" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) +"vct" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_hydro) -"hCf" = ( -/turf/open/asphalt/cement_sunbleached, +"vcA" = ( +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/staffroom) +"vcD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"vcQ" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"vdf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"vdM" = ( +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"vdW" = ( +/obj/structure/bed/stool, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"vee" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/west_tunnel) +"veg" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"vem" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/south_valley_dam) -"hCY" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"hDT" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_4" +"vet" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"hEU" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/structure/barricade/wooden{ - dir = 4 +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_south) -"hIO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"hMc" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_telecoms) -"hOt" = ( -/obj/structure/computerframe, -/turf/open/shuttle/can_surgery/red, +/obj/item/storage/briefcase/inflatable, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/green/east, +/area/desert_dam/interior/dam_interior/atmos_storage) +"veu" = ( +/turf/open/mars/mars_dirt_12, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"veB" = ( +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/interior/dam_interior/hanger) -"hOv" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_westwing) -"hOA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"hOK" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"hPB" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +"veH" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"veN" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"veP" = ( +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_one/purification) +"veQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"hQM" = ( -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/caves/temple) -"hRU" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"hTf" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"hTg" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark, -/area/desert_dam/building/church) -"hTr" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"veX" = ( +/obj/structure/toilet, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"hVs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/chigusa, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"hVV" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"hWz" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"ibg" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"veY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"vfg" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/caves/east_caves) +"vfn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"vfD" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/staffroom) +"vfN" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/whiteyellow/east, -/area/desert_dam/interior/dam_interior/garage) -"ibl" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"ibE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"ibU" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_hydro) -"ick" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"vfY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/south_valley_dam) +"vgm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "N" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"icM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, +/area/desert_dam/exterior/valley/south_valley_dam) +"vgr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"idg" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"vgu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"vgF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"vgM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"idG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/telecomm/lz2_storage) -"ieU" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vgU" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"vgW" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_0" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"vhe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"ifh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"vhl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"ifB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/desert_dam/building/security/observation) -"igf" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/whiteblue/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"vhp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"vhH" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ign" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/landing_pad_one) -"ihT" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/warehouse/breakroom) -"iiQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreen, -/area/desert_dam/building/medical/emergency_room) -"iiY" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/lattice{ - layer = 2.9 +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/lobby) +"vhI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"ijc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"ilq" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"ioA" = ( -/turf/open/gm/river/desert/shallow, -/area/desert_dam/interior/caves/temple) -"ipQ" = ( -/obj/docking_port/stationary/trijent_elevator/empty{ - id = "trijent_omega"; - name = "Omega Elevator"; - airlock_exit = "east"; - airlock_area = /area/shuttle/trijent_shuttle/omega; - elevator_network = "B" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/omega) -"iqs" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/trash/liquidfood, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"iqK" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"vhN" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/building/substation/northwest) -"iri" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/building/substation/west) +"vhP" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"vic" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) +"vit" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"viv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"viB" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"viN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"viS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"viV" = ( +/obj/structure/fence, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"isz" = ( +"viW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/north_valley_dam) +"vje" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"vjp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"vjt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"vjw" = ( +/obj/structure/machinery/computer/telecomms/traffic, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"vjL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Lobby" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"isZ" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"vjM" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"iuk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_crashsite) -"iuY" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"ivd" = ( +"vjU" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/red/northeast, +/area/desert_dam/building/water_treatment_one/lobby) +"vjW" = ( +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"vke" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"ivr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_cargo) +"vkf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/coagulation/icon0_0, /area/desert_dam/exterior/valley/valley_hydro) -"ivs" = ( -/obj/structure/machinery/door/airlock/sandstone/runed{ - name = "Strange Temple" - }, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"ivQ" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/temple) -"iwh" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/south_valley_dam) -"iwy" = ( -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/caves/temple) -"ixe" = ( -/obj/structure/machinery/light{ - dir = 8 +"vkK" = ( +/turf/open/floor/whitebluecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"vkU" = ( +/obj/structure/pipes/portables_connector{ + dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/obj/effect/landmark/good_item, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/garage) -"iAf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/emergency_room) +"vkV" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"iCw" = ( -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/garage) -"iCE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_wilderness) -"iHF" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/landing_pad_two) -"iIB" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"iJC" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/desert_dam/exterior/valley/south_valley_dam) -"iKp" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"iNg" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Garage Breakroom" - }, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"vlf" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/whiteyellow/southeast, -/area/desert_dam/interior/dam_interior/garage) -"iNF" = ( -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/interior/caves/temple) -"iOa" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"iPJ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"iRU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"iTi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"iTX" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"iVN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"iVZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"iXt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"iYy" = ( -/obj/structure/surface/table, -/obj/item/device/lightreplacer, -/obj/item/clothing/mask/rebreather, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"vlj" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkbrown3/east, -/area/desert_dam/interior/dam_interior/disposals) -"iYI" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"vlm" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 5 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/bar_valley_dam) -"iZY" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"jbx" = ( /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jcb" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"jci" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"jcK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/telecomm/lz2_storage) -"jdT" = ( -/obj/structure/machinery/light, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"jfA" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"jlP" = ( -/obj/structure/flora/grass/desert/heavygrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jmd" = ( +/area/desert_dam/interior/caves/east_caves) +"vlo" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/exterior/telecomm/lz1_valley) +"vlr" = ( /obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jpa" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_hydro) -"jqU" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"vlt" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/building/mining/workshop_foyer) +"vlA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"jre" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"jrV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"jsN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"vlH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"vlW" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"vmH" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"vmI" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 }, -/obj/effect/blocker/toxic_water/Group_1, -/obj/effect/landmark/nightmare{ - insert_tag = "purple-south-bridge" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vmN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"vnf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"jtz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"jvo" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_two/equipment) -"jvZ" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"vnC" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/platform{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"von" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/south_valley_dam) -"jxq" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/warehouse/breakroom) +"vor" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"vov" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"voF" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"voS" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_east) +"vpa" = ( /obj/structure/machinery/power/apc{ dir = 8; pixel_x = -24; start_charge = 0 }, -/turf/open/floor/delivery, -/area/desert_dam/exterior/telecomm/lz1_south) -"jxN" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_crashsite) -"jAr" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/vault2/north, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"jAS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_civilian) -"jBh" = ( -/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"vpk" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"jCJ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall, -/area/desert_dam/building/dorms/hallway_northwing) -"jFf" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"jHR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/area/desert_dam/interior/dam_interior/hangar_storage) +"vpl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jIH" = ( -/obj/structure/window/framed/colony, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"jIQ" = ( -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"jJa" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"vpz" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"jJn" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/cafeteria/cold_room) -"jJE" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"jLI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"vpF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"jMT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"vpH" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") + }, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"vpL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"vpS" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/southern_hallway) +"vqn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"vqt" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"jNB" = ( +"vqv" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/smes_backup) +"vqI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"vqR" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"jOe" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_hydro) -"jSS" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +"vqY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"vrl" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/telecomm/lz2_storage) +"vrn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jTF" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"vrp" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/central_caves) +"vrt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"vrw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"vrx" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"vrO" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"vsl" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/prison/red/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"vsp" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Examination Room" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"vsv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"jVa" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/east_wing_hallway) +"vsI" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"vsS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"jVr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) -"jVv" = ( -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"vsT" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"vte" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"jXv" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"jXy" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"jZZ" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_telecoms) -"kbo" = ( -/obj/structure/prop/dam/boulder/boulder1, +/area/desert_dam/interior/caves/central_caves) +"vth" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"vtB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"vtC" = ( +/obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kcH" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/exterior/telecomm/lz2_containers) -"kee" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/dorms/restroom) -"kge" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"kiy" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/exterior/landing_pad_two) +"vtE" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"kiP" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"kkm" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) -"kmr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"kmU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"vtP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/bot/north, +/area/desert_dam/building/water_treatment_one/garage) +"vtV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/northeast) +"vus" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"vuu" = ( +/obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"vuU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"vuX" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_crashsite) -"knm" = ( +"vvh" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/loading) -"kry" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/computer/objective, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/water_treatment_one/lobby) +"vvr" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"vvy" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"krR" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 +/area/desert_dam/exterior/valley/valley_telecoms) +"vvX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"ktJ" = ( -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/temple) -"kzQ" = ( -/obj/structure/platform{ +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"vvZ" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"vwp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"vwC" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/bar/bar) +"vwH" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/west) +"vwI" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"vxB" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"vxC" = ( +/turf/open/floor/filtrationside/east, +/area/desert_dam/exterior/valley/valley_mining) +"vxO" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"kAJ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/prop/dam/truck/cargo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"vxP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/stew, -/obj/item/tool/kitchen/utensil/spoon, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"kAV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"kEq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"vxQ" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_wing) -"kFW" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "garage_dd"; - name = "\improper Garage" +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"vyk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"vyu" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"vyv" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"vyW" = ( +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/garage) -"kIl" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kIP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"kJP" = ( +"vzf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"vzg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"vzk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"vzp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"vzw" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, /turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"vzB" = ( +/turf/open/floor/coagulation/icon8_7, /area/desert_dam/exterior/valley/valley_hydro) -"kLf" = ( +"vzZ" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/northwest) +"vAd" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 10 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kMM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"vAi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"kMT" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"vAk" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"kOC" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"kOR" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" + dir = 1 }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"kPo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"vAp" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"kPs" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/control_room) +"vAr" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"kQd" = ( -/obj/structure/tunnel, -/turf/open/desert/rock/deep/rock3, -/area/desert_dam/interior/caves/east_caves) -"kRX" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/whitegreen/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"kTX" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kUz" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whiteyellow/southeast, -/area/desert_dam/interior/dam_interior/break_room) -"kVU" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/south_valley_dam) -"kWh" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lcj" = ( -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 - }, -/area/shuttle/trijent_shuttle/lz1) -"lcy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/item/trash/kepler, +/area/desert_dam/exterior/valley/valley_crashsite) +"vAC" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"vBb" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/trash/chunk, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"lei" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"leJ" = ( -/obj/structure/closet/crate/secure, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"leZ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"vBd" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"lfM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"lfZ" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/telecomm/lz1_valley) -"lib" = ( +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vBm" = ( /obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison/bright_clean2/southwest, +/obj/item/device/lightreplacer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"vBH" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/lobby) -"liN" = ( -/obj/structure/disposalpipe/segment{ +"vBJ" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/north_wing_hallway) -"ljB" = ( -/obj/structure/closet/cabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/interior/wood, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"vBN" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/mining/workshop) +"vBP" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"vCe" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"vCg" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"vCk" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"ljO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/dam/van{ +"vCo" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/staffroom) +"vCQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"lkZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whiteyellow, -/area/desert_dam/interior/dam_interior/break_room) -"lmq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/smes_main) -"lnG" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"lop" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"lrn" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "damtemple_intact" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"vCV" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"vCZ" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/desert/dirt/desert_transition_edge1, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_crashsite) -"lrY" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"ltq" = ( -/obj/structure/toilet{ +"vDa" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/break_room) -"ltE" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"ltH" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"lwh" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/engi{ - pixel_x = -32 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"vDd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"lxq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"lyw" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/mining/workshop_foyer) +"vDf" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"vDJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lyB" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"lzs" = ( -/turf/open/desert/dirt/rock1, +"vDN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"vEc" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"vEo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"vEs" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/landing_pad_two) -"lzZ" = ( +"vEy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"lAb" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"lDT" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lFc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"lHW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whiteyellowfull/east, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"lIt" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"lIK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"vEP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/lobby) +"vET" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"vEZ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"lJM" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"vFf" = ( +/obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1{ - dir = 9 + dir = 4 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"lKW" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"vFh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lKY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/north_wing_hallway) -"lLI" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"lMc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"lNu" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lNN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"lOM" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"vFi" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_cargo) +"vFn" = ( +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"vFs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vFC" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/valley/valley_labs) +"vFD" = ( +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/south_tunnel) -"lOY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"lPn" = ( +"vFJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) -"lQM" = ( -/obj/structure/stairs{ - dir = 4 +"vFL" = ( +/turf/open/floor/coagulation/icon7_1, +/area/desert_dam/exterior/valley/valley_hydro) +"vFM" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 + }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/south_tunnel) +"vFT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"vFU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"vFW" = ( /obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"lUl" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/desert_dam/building/administration/office) -"lUU" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/south_valley_dam) -"lVW" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/platform{ dir = 4 }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"lYm" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"vGb" = ( +/obj/structure/stairs, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"vGk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"vGz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Chemistry" + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"vGG" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"vGN" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"vGQ" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"vGU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Decontamination" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"vHg" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"vHj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"lYv" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, +"vHo" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) -"lZP" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +"vHt" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/telecomm/lz1_south) +"vHE" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"mar" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"mbl" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"vHG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"mdP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark2, +/area/desert_dam/interior/dam_interior/CE_office) +"vHQ" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/omega) +"vHW" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/lobby) +"vHY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"vId" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"vIx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"vID" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "sedimentation_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"vIG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vIR" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_one) +"vJr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/south_valley_dam) -"med" = ( +"vJw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"vJI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"vJW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"vKc" = ( +/turf/open/floor/filtrationside/southeast, +/area/desert_dam/exterior/valley/valley_mining) +"vKA" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) +"vKF" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_labs) -"mej" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{ - pixel_x = 32; - shuttleId = "trijentshuttle22" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"vKQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"vKS" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/darkbrown2/east, -/area/desert_dam/building/warehouse/loading) -"meN" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"vKV" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"vLb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"vLd" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" + icon_state = "road_edge_decal11" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"vLh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) -"mfH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +"vLi" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"vLw" = ( +/obj/structure/window/shuttle, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"mfK" = ( +/turf/open/shuttle/plating, +/area/desert_dam/interior/dam_interior/hanger) +"vLy" = ( +/obj/structure/machinery/light, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vLz" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/north_wing_hallway) +"vLO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"mgw" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_northwest) +"vLT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) -"mhR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"mhU" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/interior/dam_interior/workshop) -"mjR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +"vMh" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_one) +"vMj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, +/obj/structure/largecrate/random/case/small, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_one) -"mkd" = ( +"vMm" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"vMp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"mkJ" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mkU" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"mlK" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"vMt" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"vMx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"vMz" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/telecomm/lz1_valley) -"mnc" = ( -/turf/open/desert/dirt/dirt2, -/area/desert_dam/interior/caves/temple) -"mnA" = ( -/obj/structure/machinery/floodlight, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/prison/green/north, -/area/desert_dam/interior/dam_interior/atmos_storage) -"moq" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/landing_pad_one) -"mqM" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/rock, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"vMA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"vMS" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) -"mth" = ( -/obj/structure/showcase{ - color = "#880808"; - desc = "A large red statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "The Titan" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1; - icon_state = "halfarmor7_ebony" - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1; - icon_state = "y-boots4_ebony" - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - icon_state = "pred_mask12_ebony"; - unacidable = 0 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/desert_dam/interior/caves/temple) -"muj" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"myx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"mAm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"mAr" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +"vMT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"vMX" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mAZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"vNy" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"mBd" = ( -/obj/structure/platform{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"vOv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"vOE" = ( +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"vOQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"vOS" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/obj/effect/landmark/nightmare{ - insert_tag = "purple-center-bridge" - }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"mBO" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"mDd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/turf/open/floor/whiteblue, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"vOW" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"vOX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"mDz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"mDA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"vOZ" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"vPB" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"mEC" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"mEV" = ( -/obj/structure/machinery/light, -/turf/open/desert/rock/deep/transition/southwest, -/area/desert_dam/interior/dam_interior/west_tunnel) -"mGo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"vPF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"vPG" = ( +/obj/structure/barricade/sandbags{ + dir = 4 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"mHf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) -"mHV" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/telecomm/lz2_storage) -"mKs" = ( -/turf/closed/wall/rock/orange, /area/desert_dam/exterior/valley/valley_telecoms) -"mKW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"mKZ" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"vPN" = ( +/obj/structure/toilet{ + dir = 8 }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"vQl" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/red/northeast, -/area/desert_dam/building/security/lobby) -"mMm" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mNk" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mNn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"mNC" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkred2/north, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"mOS" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"mRU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"vQm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"vQr" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"vQv" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"vQx" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"vQy" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mTf" = ( +/obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"vQA" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"vQB" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"mTY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"mVy" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"mXN" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"vQD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mZa" = ( +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"vQH" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_hydro) +"vQU" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) -"mZb" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"mZj" = ( +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/dorms/pool) +"vQW" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"vRo" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"vRp" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel) +"vRs" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/holding) +"vRv" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"vRB" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"vRH" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"vSh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"vSi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Tool Storage" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"vSn" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/obj/structure/pipes/standard/manifold/hidden, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"vSs" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_medical) +"vSH" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"naF" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"naH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"vTc" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"vTo" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ncd" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"vTH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper SMES" + }, +/turf/open/floor/dark2, +/area/desert_dam/interior/dam_interior/smes_main) +"vTR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" }, /obj/effect/decal/cleanable/dirt, -/obj/item/trash/popcorn, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"ncm" = ( -/turf/open/desert/rock/deep, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"ndF" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/landing_pad_one) -"ndP" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" +"vTU" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"vUb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"ngk" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/administration/control_room) -"ngo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"vUe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/edge/west, +/area/desert_dam/building/administration/meetingrooom) +"vUj" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"vUl" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"nil" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/south_valley_dam) -"niN" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +/area/desert_dam/exterior/valley/valley_labs) +"vUF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"vUL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"nji" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/desert_dam/interior/dam_interior/hanger) -"njF" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"vVb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) -"nlH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"nlU" = ( +"vVs" = ( +/obj/structure/surface/table/gamblingtable, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/green/west, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) -"nmr" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/south_valley_dam) -"nmP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +"vVQ" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"vVR" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_northwest) +"vVY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"vVZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Evidence" + }, +/turf/open/floor/dark, +/area/desert_dam/building/security/evidence) +"vWo" = ( +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"vWq" = ( +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/bonegel, +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/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" + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"vWy" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"vWO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"vWU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"vXo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"vXp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"vXw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"vXx" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/south_tunnel) +"vXQ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"vXR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"vXU" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) -"nnl" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/science, +"vYl" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"vYH" = ( +/turf/open/desert/excavation/component3/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"vYX" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/restroom) -"nnv" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/landing_pad_one) -"nsf" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/area/desert_dam/building/cafeteria/cafeteria) +"vZr" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"vZX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Kitchen" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"ntt" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/floor_marked, -/area/desert_dam/building/security/armory) -"nue" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/south_valley_dam) -"nvr" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"nyN" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"vZY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"nyR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"nzB" = ( -/obj/structure/flora/grass/tallgrass/desert, +/area/desert_dam/building/administration/control_room) +"waj" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"wak" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"wav" = ( +/obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"nAm" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"nCi" = ( -/obj/item/stack/medical/advanced/ointment/predator, -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/temple) -"nEM" = ( -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 +/area/desert_dam/exterior/valley/bar_valley_dam) +"waw" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/shuttle/trijent_shuttle/lz2) -"nFh" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"nFW" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/white, -/area/desert_dam/building/administration/meetingrooom) -"nIz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_northwing) -"nJZ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"waA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"waC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/landing_pad_one) -"nMO" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"waD" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/largecrate/random, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"waJ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"waL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"waO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"nRV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wbl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" + }, +/obj/structure/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Security Desk" + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/lobby) +"wbn" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"wbG" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/gm/river/darkred_pool, +/area/desert_dam/building/dorms/pool) +"wbI" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"wbV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"wcc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"nSN" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/office2) -"nTa" = ( +/area/desert_dam/exterior/valley/valley_medical) +"wcg" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellowcorners2/east, -/area/desert_dam/interior/dam_interior/control_room) -"nTn" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"nTp" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"wcn" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"wcu" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/hallway) +"wcx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/bar_valley_dam) +"wcy" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"wcz" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"wcH" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/structure/machinery/light{ + dir = 1 }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"wcK" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"wcO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"wda" = ( +/obj/effect/decal/cleanable/vomit, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"nXu" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"wdf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"wdy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"wdT" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"nYf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"nYh" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight/lantern, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"nYz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) -"nYZ" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"oaz" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/bar_valley_dam) -"obv" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/weapon/harpoon/yautja{ - name = "Alien Harpoon" +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/break_room) +"wdX" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"odr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/west_wing_hallway) -"odR" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/garage) -"ofB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"wdY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"ogc" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/landing_pad_one) -"oit" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/southwest, +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_northwing) +"wew" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"weP" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_crashsite) -"olL" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"wfc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"wfj" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"wfA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wfM" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/east_wing_hallway) +"wfN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 }, +/obj/structure/machinery/light, +/obj/item/trash/kepler, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"wgi" = ( +/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"onm" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"onA" = ( +/area/desert_dam/exterior/valley/valley_hydro) +"wgj" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"ooQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"ooW" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_labs) -"opZ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/bar_valley_dam) -"oqy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"osV" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"otn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"oua" = ( +/area/desert_dam/interior/dam_interior/garage) +"wgu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"wgB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"wgD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"wgT" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/bar_valley_dam) -"ouK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"oyf" = ( -/obj/effect/decal/cleanable/dirt, +"whm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"whA" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) -"ozu" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ozQ" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"oAM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"oBR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"oCu" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, +"whK" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/bar_valley_dam) +"whP" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_labs) +"whR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"oCD" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/medical/break_room) +"whX" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_one) -"oHw" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/blue, -/area/desert_dam/interior/dam_interior/tech_storage) -"oHA" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"wil" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"win" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"wit" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"wiD" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"oIE" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"oJw" = ( -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_hydro) -"oJT" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"oJW" = ( -/obj/structure/machinery/light{ +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"wjq" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"oKG" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"wjv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wjA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"oMz" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/landing_pad_one) -"oNS" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"wjL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/landing/console2) +"wjV" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/south_valley_dam) -"oOj" = ( -/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"oQx" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) -"oQK" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"wkc" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"wkf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/freezerfloor, -/area/desert_dam/interior/dam_interior/break_room) -"oRZ" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkpurple2/north, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"oUr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"oUN" = ( -/obj/structure/window/framed/chigusa, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"oVs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_wilderness) +"wkj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"wkk" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"wkl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/coagulation/icon8_4, +/area/desert_dam/exterior/valley/valley_mining) +"wkp" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"wkA" = ( +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_one/purification) +"wkD" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"wkG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"wkI" = ( /obj/structure/surface/table, +/obj/item/tool/pen, +/obj/item/paper_bundle, /turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) -"oWx" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) -"oXx" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"oXK" = ( +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"wkT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"wle" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"wll" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wly" = ( +/obj/structure/machinery/chem_master/condimaster, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"wlA" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"wlC" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkbrown3/north, +/area/desert_dam/interior/dam_interior/disposals) +"wlG" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"wlL" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wmk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"oYa" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"oYp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"wmq" = ( /obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 + dir = 1; + pixel_y = 24; + start_charge = 150 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/exterior/telecomm/lz1_valley) -"pac" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"wmu" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"wmA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"wmJ" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"wmP" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"wnc" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellow/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"wnm" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_east) +"wnr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/telecomm/lz2_storage) +"wnN" = ( +/turf/open/floor/whitebluecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"woy" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/bright_clean/southwest, +/turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/garage) -"pal" = ( +"woz" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"pba" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"pbC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"woA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"pdi" = ( -/obj/effect/decal/sand_overlay/sand2{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/southern_hallway) +"woM" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/interior/caves/central_caves) -"pif" = ( -/obj/docking_port/stationary/trijent_elevator/empty{ - id = "trijent_engineering"; - name = "Engineering Elevator"; - airlock_exit = "east"; - airlock_area = /area/shuttle/trijent_shuttle/engi; - elevator_network = "A" +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/medical/garage) +"woU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/engi) -"pij" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/bar_valley_dam) -"pke" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"plo" = ( -/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"woY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/workshop) +"wpb" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/telecomm/lz1_valley) +"wpl" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"wpM" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wpW" = ( +/obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"poi" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"wpX" = ( +/turf/open/jungle/impenetrable, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"wqb" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + name = "\improper Entrance Gate Alpha"; + unacidable = 1 + }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"poH" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/area/desert_dam/exterior/landing_pad_one) +"wqM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"poM" = ( -/obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 8 }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"ppS" = ( +/area/desert_dam/exterior/valley/valley_telecoms) +"wrl" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cavein_engineering" + }, +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) +"wrz" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreen/west, -/area/desert_dam/building/medical/virology_isolation) -"puM" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/paper, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"wrE" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"wrH" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/substation/southwest) +"wrM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/staffroom) +"wrV" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_medical) +"wsw" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"pva" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) +"wsx" = ( +/obj/structure/machinery/cryo_cell, +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"wsy" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"wsB" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/surgery_room_one) +"wsN" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"wta" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"pvs" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/south_valley_dam) -"pvy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/whitepurple/east, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"pwc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/building/mining/workshop) -"pyP" = ( +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"wtc" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"wtl" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/south_tunnel) +"wtv" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"wtA" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"pzd" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/garage) -"pzk" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"wtI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Treatment Checkpoint" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/landing_pad_one) -"pzv" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"wtK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 2 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"pAE" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"pDd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/warnplate/east, -/area/desert_dam/building/substation/northwest) -"pDW" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"wtY" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/landing_pad_two) +"wug" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Holding" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"pEh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/holding) +"wut" = ( +/obj/structure/machinery/botany/extractor, +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wuy" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) +"wuC" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"wuG" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"wuY" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"wwd" = ( +/obj/structure/platform_decoration{ dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) +"wwk" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"wwo" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"pFj" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"pFY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wwv" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/north_valley_dam) +"wwO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"wxm" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/north_tunnel) +"wxn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/loading) +"wxJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"wxS" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/telecomm/lz2_storage) -"pGn" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"pGF" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/garage) -"pHs" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"wya" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"pHU" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"pIe" = ( +/area/desert_dam/exterior/valley/valley_hydro) +"wyR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"pIg" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/warehouse/breakroom) -"pJW" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"pLm" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/south_valley_dam) -"pNG" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"pOE" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"wyS" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_central_south) +"wzl" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"wzr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) +"wzv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"wzw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wzB" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/delivery, +/area/desert_dam/exterior/telecomm/lz1_south) +"wzI" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wzQ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"wAf" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wAi" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_civilian) -"pRD" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/landing_pad_one) -"pSM" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "purple-new-bridge" +"wAG" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"pSV" = ( -/obj/item/tool/pen, -/obj/item/paper_bundle, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"pTU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/south_valley_dam) -"pUO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"pUR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/exterior/valley/valley_medical) +"wAP" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal9" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"pWn" = ( +/area/desert_dam/exterior/valley/valley_telecoms) +"wBn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/southern_hallway) +"wBo" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_crashsite) -"qbC" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"qbW" = ( -/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"wBt" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"wBu" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"wBG" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) +"wBH" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qfI" = ( -/obj/structure/flora/bush/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"qjg" = ( -/turf/open/desert/rock/deep/transition/southeast, -/area/desert_dam/interior/caves/temple) -"qkz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/chapel/west, +/area/desert_dam/building/church) +"wBK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"wBY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wCe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"qkJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"wCm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"wCs" = ( +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wCB" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"wCD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/north_wing_hallway) +"wCE" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/warehouse/loading) +"wCK" = ( +/obj/structure/toilet, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"wCS" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qkZ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/telecomm/lz1_south) -"qlr" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"qlx" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_civilian) -"qlG" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) -"qlU" = ( -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qmn" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northwest, +/area/desert_dam/interior/dam_interior/disposals) +"wCX" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/shuttle/can_surgery/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) -"qmy" = ( -/obj/structure/surface/rack, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"qmU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +"wDb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Courtroom" }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"qoJ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/courtroom) +"wDe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/prop/dam/truck/damaged, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_one) -"qqR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"wDI" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_central_north) +"wDL" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"wDU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"wEu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"wEY" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"wFa" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"wFb" = ( +/obj/structure/platform, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/telecomm/lz1_valley) +"wFi" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"wFx" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"qtb" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_labs) -"qwZ" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/surgury_observation) -"qxv" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"qyu" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qyD" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/hangar_storage) -"qyX" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"wFT" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/whiteyellow/east, -/area/desert_dam/interior/dam_interior/garage) -"qzo" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/valley_telecoms) -"qCr" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"wGo" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"qCR" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"wGq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"qDb" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"qDl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/landing_pad_one) -"qEJ" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"wGG" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"wGI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"qGb" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/floor_plate, -/area/desert_dam/building/security/evidence) -"qGd" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"qHh" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wGN" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"qHt" = ( -/obj/structure/surface/table, +/turf/open/floor/whitegreen/east, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wGS" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"wGV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"wHa" = ( +/obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"qHF" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qIC" = ( -/obj/structure/flora/tree/joshua, +/turf/open/floor/prison/blue, +/area/desert_dam/interior/dam_interior/tech_storage) +"wHl" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill, +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/temple) +"wHn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) +"wHt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"wHK" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/building/dorms/pool) +"wHS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"wHV" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_central_north) +"wIi" = ( +/obj/structure/prop/dam/boulder/boulder2, /turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"qJI" = ( +/area/desert_dam/exterior/valley/south_valley_dam) +"wIC" = ( +/obj/structure/surface/table, +/obj/item/device/autopsy_scanner, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"wIJ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 + }, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"wIV" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"qJU" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/caves/temple) -"qKe" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/south_tunnel) -"qKA" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qKE" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_hydro) -"qLD" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) -"qLE" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/landing_pad_one) -"qLT" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"wJA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 + }, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"wJB" = ( +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/building/security/northern_hallway) +"wJC" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_mining) +"wJL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"wKj" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, /turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) -"qNk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"qPl" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "garage_dd"; - name = "\improper Garage" +"wKo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"wKq" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"qQz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"wKA" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"qVN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"qXM" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"wKQ" = ( +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"wKR" = ( +/obj/structure/machinery/door/window/northright{ + dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qXZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"qYC" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/dark2, -/area/desert_dam/building/administration/archives) -"ray" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/disposals) +"wLo" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"rbp" = ( -/turf/open/desert/desert_shore/shore_corner1/north, -/area/desert_dam/interior/caves/temple) -"rbM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/telecomm/lz2_storage) -"rdW" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"rdX" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"wLq" = ( /obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/garage) -"rfm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"rfU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"rgT" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" + dir = 8 }, -/obj/item/stack/yautja_rope, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"rjd" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/filtrationside/northwest, -/area/desert_dam/exterior/valley/valley_medical) -"rlU" = ( +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"wLt" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"wLA" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_mining) +"wLC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"rmo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/north_tunnel) +"wLD" = ( +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) -"rob" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"rpc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"wLO" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"wLY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"wMh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"rpQ" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_hydro) -"rqk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/bluecorner, -/area/desert_dam/interior/dam_interior/tech_storage) -"rtW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wMm" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/south_valley_dam) -"ruJ" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_medical) -"ruS" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) -"rvd" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_east) +"wMp" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"rxS" = ( -/obj/docking_port/stationary/trijent_elevator/occupied{ - id = "trijent_lz1"; - name = "Lz1 Elevator"; - elevator_network = "A"; - airlock_area = /area/shuttle/trijent_shuttle/lz1; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/A +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"wMr" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"wMz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz1) -"ryG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/garage) -"rAo" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"rAL" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/telecomm/lz1_south) -"rAP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"rBr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellow2/west, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wMO" = ( +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/building/water_treatment_two/purification) +"wMW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"wNB" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, /area/desert_dam/building/mining/workshop) -"rBP" = ( +"wNE" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/interior/caves/central_caves) +"wNF" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"wNT" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"wOd" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 4 }, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"rCp" = ( -/obj/structure/platform/mineral/sandstone/runed, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"rDa" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"rEa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"rEH" = ( +/area/desert_dam/exterior/valley/valley_mining) +"wOe" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"wOj" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/north_wing_hallway) +"wOn" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"wOu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"wOw" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 24; + start_charge = 0 + }, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"wOx" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/whiteyellow, -/area/desert_dam/building/water_treatment_one/breakroom) -"rFi" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz2) -"rFz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/northwest) -"rFU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/clothing/head/welding, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wOE" = ( +/obj/structure/closet, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"wOK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Emergency Room" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rGu" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_hydro) -"rHw" = ( -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"rIY" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_hydro) -"rJA" = ( -/obj/structure/lz_sign/dam_sign, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"rJK" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rNg" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/emergency_room) +"wOU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"wOX" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; + name = "\improper Containment Lock"; unacidable = 0 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/warning, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"rOa" = ( -/obj/structure/toilet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) -"rPp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"rQJ" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/garage) -"rQQ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"wPn" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"wPA" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"wPD" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/south_valley_dam) +"wPO" = ( +/obj/structure/platform{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"rTP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"wPS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/obj/structure/machinery/power/apc{ +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"wPY" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"wQe" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/central) +"wQH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 1 + }, +/turf/open/floor/dark, +/area/desert_dam/building/security/warden) +"wQK" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"wQR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"wQZ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"wRe" = ( +/obj/structure/surface/table, +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wRi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"wRm" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_central_south) +"wRn" = ( +/obj/structure/sink{ dir = 4; - pixel_x = 30; - start_charge = 0 + pixel_x = 11 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"rTV" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"wRq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/rock) -"rUA" = ( -/obj/structure/fence, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_hydro) -"rUK" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"wRv" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/west) +"wRQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"wRR" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rUZ" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"rVo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"rXI" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/area/desert_dam/exterior/valley/south_valley_dam) +"wSd" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rZU" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"wSk" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/medical/garage) +"wSr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Workshop Foyer" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"wSv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"wSB" = ( +/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"wSI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"wTo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"wTK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wTN" = ( +/obj/structure/platform, +/turf/open/desert/excavation/component5/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"wTW" = ( +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"sav" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/landing_pad_two) -"saQ" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"saS" = ( -/obj/structure/flora/grass/desert/heavygrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"sbP" = ( +"wUc" = ( +/turf/open/floor/whitegreencorner/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wUE" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"wUK" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_hydro) -"scm" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"wUV" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"scv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/west, -/area/desert_dam/interior/dam_interior/garage) -"sdq" = ( -/obj/structure/platform{ - dir = 8 +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"wVq" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"wVF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 4 }, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/telecomm/lz1_valley) -"sdu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ser" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"wVL" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_telecoms) +"wVN" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_two) +"wVT" = ( /obj/structure/surface/table, -/obj/item/ashtray/bronze{ - pixel_x = -7 +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"wVW" = ( +/obj/structure/surface/table, +/obj/item/tool/weedkiller/D24, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 5; - pixel_y = 6 +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"wVX" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"wWa" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"wWh" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/whiteyellow/northwest, -/area/desert_dam/interior/dam_interior/garage) -"sfK" = ( -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/garage) -"shm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/south_valley_dam) -"sia" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/bar_valley_dam) -"sjN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"wWo" = ( +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_two/purification) +"wWB" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/hanger) +"wWC" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"skB" = ( -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_hydro) -"slN" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/lobby) +"wWI" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/valley/valley_labs) +"wWM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"wXA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"slX" = ( -/obj/structure/bed/alien{ - color = "#aba9a9" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"wXL" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"sms" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"wXS" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"wYe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"smJ" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison/bright_clean/southwest, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"wYh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/mining/workshop) -"snD" = ( +"wYK" = ( +/obj/effect/decal/sand_overlay/sand1, /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" + icon_state = "road_edge_decal3" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"soS" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"srf" = ( -/obj/effect/decal/sand_overlay/sand1, +/area/desert_dam/exterior/landing_pad_two) +"wYO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"ssy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"wZa" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"wZb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ste" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Hallway" +/obj/structure/pipes/standard/simple/hidden{ + dir = 10 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"svy" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/emergency_room) +"wZg" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"wZi" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/building/substation/northwest) +"wZy" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"wZz" = ( +/obj/structure/machinery/computer/pod/old{ + name = "Personal Computer" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"wZQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wZU" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/dorms/pool) +"xab" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison, +/area/desert_dam/building/substation/west) +"xai" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/interior/caves/central_caves) +"xaz" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/darkred2/north, +/area/desert_dam/building/administration/lobby) +"xaB" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"swg" = ( +/area/desert_dam/exterior/valley/valley_medical) +"xaC" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"xaF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/lobby) +"xaM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/north_wing_hallway) +"xaU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"swK" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_crashsite) +"xbj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"sye" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"syi" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"xbl" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 10 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"xbn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stock_parts/smes_coil, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"xbB" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/substation/northeast) +"xbI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/hallway) +"xbU" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"xce" = ( +/turf/open/floor/prison/greencorner/north, +/area/desert_dam/building/dorms/hallway_westwing) +"xcl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"xco" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"sAm" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/landing_pad_two) -"sAZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"xcG" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"sCW" = ( -/obj/structure/largecrate/random/secure, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"sDf" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) -"sEL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/south_valley_dam) -"sFe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "road_edge_decal3" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"sFQ" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"sGP" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" +/area/desert_dam/exterior/valley/valley_telecoms) +"xcN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"xcV" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = null; + name = "\improper Elevator Lock" }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"sHk" = ( -/obj/structure/prop/dam/boulder/boulder3, +/turf/open/floor/prison/cell_stripe/east, +/area/shuttle/trijent_shuttle/lz1) +"xdj" = ( +/obj/structure/flora/grass/desert/lightgrass_5, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"sLx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"sLS" = ( -/obj/structure/window/framed/bunker/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"sMi" = ( -/obj/effect/landmark/monkey_spawn, +"xdm" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"xdL" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"xdS" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"xec" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/tunnel, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"sML" = ( -/obj/structure/desertdam/decals/road_stop{ +"xef" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"xew" = ( +/obj/effect/decal/cleanable/blood{ dir = 4; - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"sNn" = ( -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/exterior/telecomm/lz1_south) -"sNQ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/telecomm/lz2_storage) -"sNX" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" + icon_state = "gib6" }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xey" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"xeO" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"sOu" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_wilderness) +"xeT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"xfg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/grimy, -/area/desert_dam/building/bar/bar) -"sPL" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"xfj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitered/east, -/area/desert_dam/building/medical/primary_storage) -"sPS" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/interior/caves/temple) -"sQE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"xfn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/landing_pad_one) -"sRl" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "uppcrash" - }, -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/valley/valley_hydro) -"sUe" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"xfs" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"sUr" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"sUF" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"xfK" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"xfM" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"xfT" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"sWS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"sXh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"xgz" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"xgA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, /turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"xgP" = ( +/turf/open/desert/excavation/component8/southeast, /area/desert_dam/exterior/valley/valley_crashsite) -"sXM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +"xgU" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northeast) +"xha" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/dorms/pool) +"xhd" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"xhq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/bar_valley_dam) -"sXR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"sYp" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +"xhv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_wilderness) +"xhZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"sYw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"sYU" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/green/north, -/area/desert_dam/building/dorms/hallway_westwing) -"tai" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"taG" = ( -/obj/structure/desertdam/decals/road_stop{ +/area/desert_dam/exterior/valley/south_valley_dam) +"xir" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"xit" = ( +/obj/structure/machinery/sentry_holder/colony{ dir = 1; - icon_state = "stop_decal5" + pixel_y = -10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"taH" = ( -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_hydro) -"tbb" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"tcB" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"tdf" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/turf/open/floor/dark, -/area/desert_dam/interior/dam_interior/office) -"teR" = ( -/obj/structure/bed/chair/comfy/beige{ +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/south_tunnel) +"xiM" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/temple) -"thd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"thp" = ( +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"xiY" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"xjd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"xje" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"xjf" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_south) -"tii" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz2_storage) -"tjX" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"tlh" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"xjh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"tni" = ( -/obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) -"tnu" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +"xjl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"trP" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"trZ" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"tsL" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/telecomm/lz2_storage) -"tuA" = ( -/obj/structure/closet/secure_closet/bar, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"tuC" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"xjJ" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"xjU" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"txr" = ( -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/landing_pad_one) -"txD" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/security/staffroom) -"tyc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"xjW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tAs" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_telecoms) -"tAt" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xjX" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xjY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"tAy" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tAG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"tBD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/area/desert_dam/building/hydroponics/hydroponics_loading) +"xkh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall, +/area/desert_dam/building/dorms/restroom) +"xkl" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"xkm" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/treatment_room) +"xkJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"tCn" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"tEn" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"xkK" = ( +/obj/structure/machinery/power/apc{ dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" + pixel_x = 31; + start_charge = 0 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"tFi" = ( +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_storage) +"xlb" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"xlq" = ( +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/bar/bar) +"xlu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/central_tunnel) +"xlQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"xmx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"xmI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"xmR" = ( /obj/effect/decal/sand_overlay/sand2, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/interior/caves/central_caves) -"tFG" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"xmT" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/landing_pad_two) +"xmW" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/kelotane{ + pixel_x = -7 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell{ - pixel_x = 5 +/obj/item/storage/pill_bottle/dexalin, +/obj/item/storage/pill_bottle/inaprovaline{ + pixel_x = 7 }, -/obj/effect/spawner/random/tool{ - pixel_x = -6 +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"xnb" = ( +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/east_caves) +"xnm" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Archives" }, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/interior/dam_interior/garage) -"tFS" = ( -/obj/effect/decal/remains/human, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"tKQ" = ( -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_crashsite) -"tKS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/archives) +"xnn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xnq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/dorms/pool) -"tLo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"xnI" = ( +/turf/open/floor/prison/darkbrown3/northwest, +/area/desert_dam/interior/dam_interior/hanger) +"xnQ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/prison/yellowfull, +/area/desert_dam/building/hydroponics/hydroponics) +"xnR" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"xnV" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"xoi" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tLQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"xok" = ( +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/north_tunnel) +"xox" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkred2/west, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"tMi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"tMy" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/spawner/random/powercell, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/telecomm/lz1_south) +"xoL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"xoO" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/building/mining/workshop) -"tOj" = ( +/area/desert_dam/exterior/valley/valley_hydro) +"xoP" = ( +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_mining) +"xoU" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"xoW" = ( /turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"tPP" = ( -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) -"tQR" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"tSK" = ( +/area/desert_dam/interior/caves/central_caves) +"xoZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/staffroom) +"xpj" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" + icon_state = "road_edge_decal3" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"tUF" = ( -/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/bar_valley_dam) -"tVX" = ( -/obj/structure/sink, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/bar/bar_restroom) -"tXS" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/south_valley_dam) -"tYS" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"tZQ" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/exterior/rock) -"uaK" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, +"xpA" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"xpN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"xpS" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"xqa" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/flare, +/obj/item/device/radio, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"xqi" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/warden) +"xql" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"xqv" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/smes_backup) +"xqO" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_east) +"xqQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) -"ucS" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +"xrq" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Patient Room 1" }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"xrL" = ( +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"xrV" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_telecoms) +"xse" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"uez" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/floor/dark2, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"xsv" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/loading) +"xsA" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"xsM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"xsN" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/armory) +"xsO" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/desert_dam/interior/dam_interior/garage) -"ueS" = ( -/turf/open/asphalt/cement/cement12, -/area/desert_dam/exterior/telecomm/lz1_south) -"ueZ" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"xsS" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" + icon_state = "road_edge_decal3" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"ufP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"ufW" = ( -/turf/closed/wall/mineral/sandstone/runed, -/area/desert_dam/exterior/rock) -"uhf" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/interior/caves/temple) -"uic" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"uis" = ( +"xsX" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_hydro) -"uiH" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ujl" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkred2/northeast, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"ukQ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"xtj" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"xtl" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" + }, +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"xtn" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/garage) -"ulg" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/telecomm/lz2_storage) -"ulm" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"xtr" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/turf/open/floor/whiteyellow/northeast, -/area/desert_dam/interior/dam_interior/garage) -"uml" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"xua" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"urC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"xud" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/obj/structure/platform{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"uso" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"xum" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/obj/item/weapon/broken_bottle, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"ute" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"xur" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"xuu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Mess Hall" }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xuy" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"xuT" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"xvj" = ( +/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"xvt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"uty" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/loading) +"xvw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"uvf" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"uvh" = ( -/obj/structure/toilet{ - dir = 4 +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"xvx" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/security/prison) -"uxs" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"xvA" = ( +/obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"uyn" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"uzL" = ( -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/telecomm/lz1_valley) -"uAo" = ( -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/valley/valley_hydro) -"uBP" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"uFX" = ( -/turf/open/asphalt/cement_sunbleached, +"xvG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/turf/open/floor/whitepurplecorner/east, +/area/desert_dam/building/medical/chemistry) +"xwi" = ( +/turf/open/floor/filtrationside/southwest, /area/desert_dam/exterior/valley/valley_hydro) -"uGL" = ( -/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"uGO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"uGU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +"xww" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"xwy" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xwB" = ( +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_crashsite) -"uHx" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"xwI" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/lobby) +"xwS" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_medical) +"xwX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Containment Pen" }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"uHT" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_one) -"uIC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link/green, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/desert_dam/building/medical/treatment_room) -"uJl" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"uKo" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/medical/virology_wing) +"xxd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science{ + req_one_access = null }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/interior/caves/temple) -"uLr" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"xxj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/delivery, -/area/desert_dam/interior/dam_interior/south_tunnel) -"uMk" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"xxJ" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"xxV" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_civilian) +"xyl" = ( +/obj/structure/window/framed/colony, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"uMr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"xyq" = ( +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/desert/rock, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"xyC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) -"uME" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"uMG" = ( -/obj/structure/platform{ - dir = 1 +"xyL" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"xzK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/south_valley_dam) -"uMZ" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/southwest, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"uNF" = ( +"xzN" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/exterior/valley/valley_wilderness) +"xzO" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"xzS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"xzT" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) -"uPS" = ( +"xzV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"xAg" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"xAs" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"xAu" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/interior/caves/east_caves) +"xAE" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"xAO" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"xAR" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_labs) +"xAS" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"xAT" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"xAV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Break Room" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_civilian) -"uRx" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/blue, -/area/desert_dam/interior/dam_interior/tech_storage) -"uRz" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"uSv" = ( -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_two) -"uTo" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"uVm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_civilian) -"uVK" = ( -/obj/item/tool/pickaxe, -/obj/effect/decal/remains/human, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"uWt" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"xAX" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/exterior/landing_pad_two) -"uWT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) +"xBa" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 2 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"uXk" = ( -/obj/effect/decal/sand_overlay/sand2, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"xBg" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"xBs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_crashsite) -"uYD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"xBK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Workshop" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"uZr" = ( -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/landing_pad_one) -"vfr" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/interior/caves/central_caves) -"vgm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"xBS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"vhs" = ( -/obj/structure/surface/table, -/turf/open/floor/whiteyellow/southwest, -/area/desert_dam/interior/dam_interior/lobby) -"vhA" = ( -/obj/structure/surface/table, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xCp" = ( +/obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitegreen/west, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"vir" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"xCB" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/landmark/nightmare{ - insert_tag = "shipgone_northlz" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"xCF" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/desert_dam/interior/dam_interior/hanger) -"viV" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"vjO" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"vnf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/red/west, +/area/desert_dam/building/security/lobby) +"xCM" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"xCN" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"xCR" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"xCT" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"xCW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/turf/open/floor/prison/cell_stripe/east, +/area/desert_dam/interior/dam_interior/hanger) +"xDz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/window/framed/colony, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xDL" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vph" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/south_valley_dam) -"vpn" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"xEb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_two) -"vpz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vpR" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"xEn" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"xEy" = ( /obj/structure/surface/table, +/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"vqt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vqR" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vqS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop_foyer) -"vte" = ( +/area/desert_dam/building/water_treatment_two/hallway) +"xEz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"vud" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"vuu" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"vvy" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"xEA" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"vxt" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/water_treatment_one/breakroom) -"vzj" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_labs) -"vzp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"xED" = ( +/turf/open/desert/excavation/component2/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"xEG" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"xEI" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, +/turf/open/floor/chapel/north, +/area/desert_dam/building/church) +"xET" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vzw" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security" }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"xFb" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"xFc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vAN" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/green, -/area/desert_dam/building/dorms/hallway_northwing) -"vBJ" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vCE" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"xFe" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_labs) -"vDJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"xFz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"xFA" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vEb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"xFJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"xGm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 1" }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"vEW" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/telecomm/lz2_storage) -"vGu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"xGp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"xGD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) -"vHj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"xGO" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vHx" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/valley/valley_civilian) -"vHQ" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/omega) -"vIx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"xGR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"xHa" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz2_storage) +"xHs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vLd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"xHx" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"vLw" = ( -/obj/structure/window/shuttle, -/obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/plating, -/area/desert_dam/interior/dam_interior/hanger) -"vMp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"xHy" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -30; + start_charge = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"xHI" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"vOv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_two) +"xHL" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"xHV" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) -"vRc" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +"xHX" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"xIj" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/primary_storage) +"xIu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/landing_pad_one) -"vSF" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, +"xIC" = ( +/turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz2_storage) -"vSH" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"vSV" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vTA" = ( -/turf/open/desert/dirt/desert_transition_edge1/southeast, -/area/desert_dam/exterior/landing_pad_two) -"vTR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"xIL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Filtration" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vUl" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vYZ" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"xIT" = ( +/obj/structure/machinery/mill, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"xJa" = ( +/obj/structure/filtration/flacculation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"xJh" = ( /obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill, -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/caves/temple) -"wav" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"waC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/obj/item/weapon/gun/revolver/cmb, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"xJn" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Checkpoint" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"wbv" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_crashsite) -"wcc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"wgi" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"wgv" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/bar_valley_dam) -"wiF" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/garage) -"wiI" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellow2/southwest, -/area/desert_dam/interior/dam_interior/garage) -"wjC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"wnE" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"woy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/garage) -"wpr" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/landing_pad_one) -"wpW" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"wqM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"wrk" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"xJp" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellow/north, -/area/desert_dam/interior/dam_interior/garage) -"wrl" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cavein_engineering" +/obj/item/tool/lighter/random, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"xJt" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/rock) -"wsD" = ( -/obj/structure/bed/chair{ +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"xJA" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/white, -/area/desert_dam/interior/dam_interior/garage) -"wta" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/west_tunnel) +"xJC" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"wud" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/whiteyellow/east, -/area/desert_dam/interior/dam_interior/garage) -"wuC" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"wuV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"xJE" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"xJG" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"xJJ" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Archives" }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"wya" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/archives) +"xJO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"wyo" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/interior/caves/temple) -"wyR" = ( +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"xJR" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"wzl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"wAP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"wDC" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"wEy" = ( -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/landing_pad_one) -"wFv" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison/whitered/west, -/area/desert_dam/building/medical/office1) -"wIi" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"wIl" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"wIr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"xJX" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/north_valley_dam) +"xJZ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"wLq" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"wLI" = ( -/turf/open/asphalt/cement/cement1, -/area/desert_dam/exterior/telecomm/lz1_south) -"wLV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"xKc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"xKg" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"wMw" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"xKl" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/south_valley_dam) -"wOO" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river_mouth/southern) +"xKo" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_wilderness) +"xKG" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"xKJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/mining/workshop) -"wPb" = ( +/area/desert_dam/interior/dam_interior/engine_west_wing) +"xKK" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"xKT" = ( +/obj/effect/decal/remains/xeno{ + pixel_x = 31 + }, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_crashsite) +"xKU" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_hydro) -"wQM" = ( +"xLf" = ( +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"xLs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"xLF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"xLG" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"wQS" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_hydro) -"wQZ" = ( -/obj/structure/flora/grass/tallgrass/desert, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"xLS" = ( +/obj/structure/flora/grass/desert/lightgrass_5, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"wRg" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/area/desert_dam/exterior/valley/bar_valley_dam) +"xLY" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"xMh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"xMr" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/landing_pad_two) -"wRi" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"wRR" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"wRX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"wTP" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 +/area/desert_dam/exterior/river/riverside_central_north) +"xMJ" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"xMV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"xMY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"xNd" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/obj/item/stack/sheet/metal{ - amount = 50 +/turf/open/floor/darkyellow2/north, +/area/desert_dam/interior/dam_interior/control_room) +"xNo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Floodgate Control" }, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) -"wYO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"wZM" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt/desert_transition_edge1/northeast, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"xNu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"xND" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_central_north) +"xNE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_labs) -"xab" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison, -/area/desert_dam/building/substation/west) -"xaB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"xNF" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"xNG" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel) +"xNV" = ( +/obj/structure/machinery/chem_master, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"xbj" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"xbA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"xNX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"xcG" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"xdj" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"xec" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/obj/structure/tunnel, +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"xOb" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"xgA" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +"xOu" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_one) +"xOv" = ( +/turf/open/desert/cave/cave_shore/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"xOD" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"xOJ" = ( +/obj/structure/holohoop{ + dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"xhv" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/warnwhite/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"xOK" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/disposalpipe/segment, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"xPd" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/east_wing_hallway) +"xPh" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_wilderness) -"xhZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"xjb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/desert_dam/building/cafeteria/loading) -"xjY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"xPA" = ( +/obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"xkf" = ( -/obj/structure/toilet, +/area/desert_dam/exterior/valley/valley_hydro) +"xPB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"xPC" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"xQc" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) -"xkh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall, -/area/desert_dam/building/dorms/restroom) -"xkF" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"xQh" = ( +/obj/structure/stairs{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_civilian) -"xkK" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 31; - start_charge = 0 +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_storage) -"xls" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"xQm" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"xlE" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/south_tunnel) +"xQU" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/warning/north, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"xmH" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"xRi" = ( +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/administration/office) +"xRj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"xRm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"xRo" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/dorms/pool) +"xRr" = ( +/obj/structure/machinery/power/apc{ + pixel_y = -24; + start_charge = 0 + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"xRw" = ( +/obj/structure/bed/stool, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"xRL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"xSj" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"xSm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"xSq" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/treatment_room) +"xSs" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/rock4, -/area/desert_dam/interior/caves/temple) -"xof" = ( +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"xSw" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"xSy" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"xSE" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"xSL" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_civilian) +"xSR" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"xSV" = ( /obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/blood, /turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"xoL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +/area/desert_dam/exterior/valley/valley_telecoms) +"xSW" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"xTq" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"xTt" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"xTx" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"xoO" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/meetingrooom) +"xTY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Atmospheric Storage" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"xUo" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"xUz" = ( +/obj/structure/filtration/coagulation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"xVb" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_hydro) -"xpj" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +"xVc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"xVs" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_south) +"xVB" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"xVR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xVW" = ( +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"xWa" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"xqQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_hydro) -"xrx" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/dirt/desert_transition_edge1/northwest, -/area/desert_dam/exterior/valley/valley_northwest) -"xss" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = null; - name = "\improper Elevator Lock" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"xWt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/cell_stripe/east, -/area/shuttle/trijent_shuttle/lz1) -"xsQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/structure/disposalpipe/junction{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/treatment_room) +"xWu" = ( +/turf/open/floor/coagulation/icon0_4, +/area/desert_dam/building/water_treatment_two/purification) +"xWK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_crashsite) -"xsS" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +"xWX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"xuS" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_hydro) -"xvX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"xWZ" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"xXa" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal3" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"xxv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"xXm" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"xxQ" = ( -/obj/structure/platform, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/telecomm/lz1_valley) -"xzc" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_westwing) -"xzm" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "green-new-bridge" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/telecomm/lz2_storage) +"xXn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"xBM" = ( -/turf/open/desert/rock/deep/transition/northeast, -/area/desert_dam/interior/caves/temple) -"xCM" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"xEz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"xEP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/white, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"xFk" = ( -/turf/open/desert/dirt/desert_transition_corner1/west, -/area/desert_dam/exterior/valley/valley_hydro) -"xFA" = ( +"xXz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"xXD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Containment" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"xXE" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgury_observation) +"xXK" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/landing_pad_one) +"xXR" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"xXY" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"xYv" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"xHa" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz2_storage) -"xHA" = ( -/obj/structure/machinery/door/poddoor/almayer{ +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"xYw" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"xYx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - id = "garage_dd"; - name = "\improper Garage" + name = "\improper Workshop" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"xIC" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz2_storage) -"xJG" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"xKx" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, +/area/desert_dam/building/mining/workshop) +"xYB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/garage) -"xLS" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"xMr" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"xYD" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"xYG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_dam_1"; + name = "\improper Hangar Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"xYH" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_central_north) -"xNB" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"xYJ" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"xYK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/landing_pad_one) -"xOb" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"xOm" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_two) -"xOK" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/disposalpipe/segment, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"xPA" = ( -/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"xYL" = ( +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"xYP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"xRf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellow2/north, -/area/desert_dam/building/substation/southwest) -"xRP" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/landmark/objective_landmark/science, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"xZq" = ( +/obj/structure/machinery/chem_master, /turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"xTH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +"xZA" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"xUS" = ( -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/landing_pad_two) -"xUU" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/corsat/squareswood/north, -/area/desert_dam/interior/caves/temple) -"xWj" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/landing_pad_one) -"xYb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/darkyellowcorners2, -/area/desert_dam/building/mining/workshop) -"xYc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/vault2/northeast, -/area/desert_dam/building/substation/central) +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "xZE" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -51421,35 +51146,156 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"yaA" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/exterior/valley/valley_telecoms) +"xZK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/desert/excavation/component6/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"xZT" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_south) +"yam" = ( +/obj/structure/surface/table, +/obj/item/device/reagent_scanner, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"yaO" = ( +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/dorms/pool) +"yaX" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"ybn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"ybq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) "ybA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"ybW" = ( -/obj/structure/desertdam/decals/road_edge, +"ybB" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_east) +"ybC" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"ybO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"ybU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"ycq" = ( +/turf/open/gm/river/pool, +/area/desert_dam/building/dorms/pool) +"ycJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"ycK" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"ycS" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"yda" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ydg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"ydk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"ydu" = ( +/obj/structure/platform{ + dir = 1 + }, /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) "ydw" = ( /obj/structure/window/framed/hangar/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/desert_dam/building/mining/workshop) +"ydM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"yen" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"yev" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) "yeL" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/telecomm/lz2_tcomms) -"yfp" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/telecomm/lz2_storage) +"yeU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"yeY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"yff" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"yfi" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) "yfq" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -51457,25 +51303,183 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"yfs" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"yfv" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"yfE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"ygc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"ygk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"ygt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/west_wing_hallway) +"ygM" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"ygN" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"ygO" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"ygR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"yhe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"yht" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"yhy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) +"yhQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"yhW" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"yhZ" = ( +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hangar_storage) +"yif" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"yih" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) "yii" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/rock) -"ykJ" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 +"yio" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"yiA" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/lobby) +"yiB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/building/security/northern_hallway) +"yiI" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"yiK" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/interior/caves/temple) +"yjf" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"yjo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"yjt" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"yjN" = ( +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"ykx" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"ykE" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/mining/workshop) +"ykX" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"ylc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) "ylf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"ylg" = ( +/obj/structure/cargo_container/kelland/right, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) "ylk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/van, @@ -51490,27 +51494,29 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) -"ylo" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/freezerfloor, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"ylS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"ylT" = ( -/obj/structure/machinery/light{ +"ylp" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_hydro) +"ylP" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/obj/item/hardpoint/locomotion/van_wheels{ - unacidable = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"ylR" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"ylZ" = ( +/obj/structure/machinery/computer/WYresearch, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"ymj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/floor/prison/darkyellow2/east, -/area/desert_dam/interior/dam_interior/garage) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) (1,1,1) = {" acu @@ -52552,8 +52558,8 @@ bRH bRH bRH bRH -bUd -bUe +nLx +pWY dTs dTs dTs @@ -52776,18 +52782,18 @@ dTs dTs dTs dTs -bQO +jBl bRI bRH bRH -bUd -bQO -bQO +nLx +jBl +jBl bRI bRH -bUd -bUe -bUf +nLx +pWY +kkH dTs dTs dTs @@ -53011,17 +53017,17 @@ dTs dTs dTs bQP -bRJ -bQO -bQO -bUe -bUf +jjH +jBl +jBl +pWY +kkH dTs -bRJ -bQO -bUe -bUf -arT +jjH +jBl +pWY +kkH +hgE dTs dTs dTs @@ -53245,17 +53251,17 @@ dTs dTs dTs dTs -bRK +shz bQP bQP -bUf +kkH dTs dTs dTs -bTz -bRK +xOv +shz bUg -awh +pRA afD bPO bPO @@ -53278,22 +53284,22 @@ dTs dTs dTs dTs -cfe +iCh dTs dTs dTs dTs dTs -cfe -cfe -cfe +iCh +iCh +iCh dTs dTs dTs dTs dTs dTs -cfe +iCh dTs dTs dTs @@ -53480,40 +53486,40 @@ dTs dTs dTs ahm -bRK +shz bQP bUg -awh +pRA dTs dTs ahm ahn ahm -arT +hgE afD afD bPO bPO cdh cdh -cez -cfe -cfe -cfe -cfe -cfe +pwb +iCh +iCh +iCh +iCh +iCh dTs dTs dTs -cfe -cfe -cfe +iCh +iCh +iCh dTs dTs -cfe -cxn +iCh +loK aRA -cez +pwb dTs dTs dTs @@ -53526,9 +53532,9 @@ dTs dTs dTs dTs -cxn +loK ceA -cez +pwb dTs dTs dTs @@ -53560,10 +53566,10 @@ cpm cml cml cmm -csw -ctA -ckv -cvB +wRv +nYo +hDu +uuY cgm dTs dTs @@ -53572,7 +53578,7 @@ dTs dTs dTs dTs -cuH +nrN dTs dTs dTs @@ -53599,7 +53605,7 @@ dTs dTs dTs dTs -lzs +ocj dTs dTs dTs @@ -53607,7 +53613,7 @@ dTs dTs dTs dTs -lzs +ocj dTs dTs dTs @@ -53712,24 +53718,24 @@ dTs dTs dTs afD -afk +iVl ahm ahm -bTz +xOv ahm -awh -azb -azs +pRA +oZD +eda ahm ahm ahm -awh -azb -azs +pRA +oZD +eda cbJ ccw cdl -cdL +wZg ceA ceA ceA @@ -53770,7 +53776,7 @@ cIe ceA ceA ceA -ceG +nFD beC dTs dTs @@ -53794,22 +53800,22 @@ cml crj cml cmm -cte -ctB -cuA -cvC +vwH +fuJ +bxI +jgL cgm cgm cgm -cfG +mLR dTs dTs -csA -czt -cfG -csD -crr -cCL +nyw +vwI +mLR +odG +oVb +kgA dTs dTs dTs @@ -53831,18 +53837,18 @@ dTs dTs dTs dTs -gLg -sav -gLg -sav +eoo +xmT +eoo +xmT dTs dTs dTs -xUS -xUS -sav -gLg -sav +stl +stl +xmT +eoo +xmT dTs dTs dTs @@ -53946,26 +53952,26 @@ dTs dTs dTs dTs -afn +wVX bRL -bSJ -bSJ -ceC -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -cbK -ccx -cdj -crO -ceB -ceB +gQL +gQL +btd +gQL +gQL +gQL +gQL +gQL +gQL +gQL +gQL +gQL +rhh +rSg +hvR +jve +mPS +mPS aQI aQI aQI @@ -53973,30 +53979,30 @@ aQI aQI aQI aQI -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS +mPS aQI -cCM +vAd ceA cHV pJW @@ -54004,9 +54010,9 @@ cHY bRG ceA ceA -cez -hvG -jZZ +pwb +ljs +ucN beC dTs dTs @@ -54018,9 +54024,9 @@ dTs dTs dTs cgm -cic -cic -ciI +hPI +hPI +oey cgm cku cml @@ -54028,22 +54034,22 @@ cml cml cml cmm -cth -cqd -cuA -cvE -cww -cxJ +mkh +nyd +bxI +tza +eDE +lmQ cmm -cUf -crr -cfG -csD +faY +oVb +mLR +odG doE doE doE doE -crr +oVb dTs dTs dTs @@ -54058,27 +54064,27 @@ dTs dTs dTs dTs -gLg -xUS -sav +eoo +stl +xmT dTs dTs -gLg -xUS -vTA -erF -vTA -erF -xUS -xUS -vTA -lIt -lIt -erF -vTA -erF -sav -lzs +eoo +stl +vEs +sbW +vEs +sbW +stl +stl +vEs +eqY +eqY +sbW +vEs +sbW +xmT +ocj dTs dTs dTs @@ -54180,25 +54186,25 @@ dTs dTs dTs afD -afk +iVl bRM aqn -bbB -bmy -bmy -bmy -bmy -bmy -bmy -bmy -bmy -bmy -bow -bqg -bqg -bub -bOf -bao +nLZ +ihf +ihf +ihf +ihf +ihf +ihf +ihf +ihf +ihf +oAo +lCp +lCp +piE +vKQ +nkD bam bam bam @@ -54208,29 +54214,29 @@ bam bam bbE cdk -bao -bao -bao -bao -bao -bao -bao -bao -bao -bnB +nkD +nkD +nkD +nkD +nkD +nkD +nkD +nkD +nkD +mYV aSK aSK -bOf -bao -bao -bao -bao -bao -bao -bao -bao -bao -cCJ +vKQ +nkD +nkD +nkD +nkD +nkD +nkD +nkD +nkD +nkD +jZR cHC cHV pJW @@ -54240,9 +54246,9 @@ ceA ceA ceA ceA -cez -hvG -jZZ +pwb +ljs +ucN dTs dTs dTs @@ -54262,58 +54268,58 @@ cpS cmm cgm cgm -ctw -cqd -cuA -cuA -cuA -cuA -cxR -cyC -cYk -cYk -cYk -cYk -cYk -cYk -cYk -cBV -cxV -dTs -dTs -dTs -dTs -dTs -dTs -gLg -xUS -sav -dTs -dTs -gLg -xUS -vTA -lIt -sAm -htc -erF -vTA -lIt -lIt -lIt -aMM -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -cGR -xUS -sav +fHo +nyd +bxI +bxI +bxI +bxI +fJs +usu +sOm +sOm +sOm +sOm +sOm +sOm +sOm +hQI +tGN +dTs +dTs +dTs +dTs +dTs +dTs +eoo +stl +xmT +dTs +dTs +eoo +stl +vEs +eqY +wtY +gOJ +sbW +vEs +eqY +eqY +eqY +niV +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +kqs +stl +xmT dTs dTs dTs @@ -54411,489 +54417,489 @@ dTs dTs dTs dTs -dTs -dTs -afD -afk -bRM -aQK -cxj -arT -awi -awi -awi -awi -awi -awj -ahm -ahm -cbc -cbM -ccw -cjO -cdL -ceA -ceA -ceA -ceA -ceA -ceA -axk -ceA -aSI -chG -ceA -ceA -ceA -ceA -ceA -ceA -ceA -ceA -ceA -bPA -aRy -aSL -cdL -ceA -ceA -ceA -ceA -ceA -ceA -ceA -ceA -ceA -ceA -cHE -cHX -cIc -cIg -bRZ -aUm -aUm -aUm -jLI -ceA -ceA -ceG -dTs -dTs -dTs -dTs -dTs -dTs -dTs -cgm -cgn -cgY -cih -cih -cgm -ckv -cmZ -cih -crk -csp -ckv -cmZ -cqd -cuB -cvF -cvF -cvF -cvF -cyE -cfq -cfq -cfq -cfq -cfq -cNm -cZb -cfd -crr -dTs -dTs -dTs -dTs -lzs -gLg -vTA -lIt -erF -xUS -sav -htc -lIt -lIt -lIt -cGR -vTA -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -sAm -dTs -dTs -dTs -dTs -acu -"} -(14,1,1) = {" -acu -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -afD -afk -cEl -aTQ -cxj -awh -afD -dTs -dTs -afD -afD -afD -awi -awi -awi -bPO -bPO -cdh -cdh -ceD -ceD -cwl -ceA -ceA -ceA -axk -ceA -aSI -chG -ceA -acs -acs -aya -aya -aya -aya -acs -acs -cjO -aTH -aTU -cjO -aTZ -aUe -aUe -aUe -aTZ -aTZ -aUe -aUe -aUe -aTZ -ceA -ceA -cId -ceA -bPA -bSv -bSG -bYR -beN -aUm -jLI -cez -jZZ -dTs -dTs -dTs -dTs -cfE -cfe -cgm -cgt -cgZ -cih -cih -cjI -cih -cqd -cqd -cqd -cqd -cqd -cqd -cqd -cih -cvF -cwx -cxN -cmm -cUg -doE -doE -doE -doE -doE -cPG -cTD -cYY -cUf -cxV -dTs -dTs -xUS -xUS -vTA -lIt -lIt -lIt -lIt -erF -vTA -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -lIt -urC -ybW -ybW -mDd -lIt -lIt -erF -sav -dTs -dTs -dTs -acu -"} -(15,1,1) = {" -acu -dTs -dTs -dTs -dTs -dTs -wEy -dTs -dTs -wEy -oMz -uZr -ogc -dTs -dTs -dTs -uZr -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -ogc -wEy -uZr -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs +dTs +dTs +afD +iVl +bRM +hQW +rfJ +hgE +fDK +fDK +fDK +fDK +fDK +qPg +ahm +ahm +cbc +cbM +ccw +paA +wZg +ceA +ceA +ceA +ceA +ceA +ceA +axk +ceA +prC +eVc +ceA +ceA +ceA +ceA +ceA +ceA +ceA +ceA +ceA +fZh +tZM +lXh +wZg +ceA +ceA +ceA +ceA +ceA +ceA +ceA +ceA +ceA +ceA +cHE +cHX +cIc +cIg +dvv +jsu +jsu +jsu +hIz +ceA +ceA +nFD +dTs +dTs +dTs +dTs +dTs +dTs +dTs +cgm +nyX +ewd +cih +cih +cgm +hDu +nlv +cih +iXO +xYv +hDu +nlv +nyd +cuB +eIP +eIP +eIP +eIP +gDe +xRj +xRj +xRj +xRj +xRj +tod +cZb +hIE +oVb +dTs +dTs +dTs +dTs +ocj +eoo +vEs +eqY +sbW +stl +xmT +gOJ +eqY +eqY +eqY +kqs +vEs +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +wtY +dTs +dTs +dTs +dTs +acu +"} +(14,1,1) = {" +acu +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +afD +iVl +cEl +icB +rfJ +pRA +afD +dTs +dTs +afD +afD +afD +fDK +fDK +fDK +bPO +bPO +cdh +cdh +vOZ +vOZ +cUr +ceA +ceA +ceA +axk +ceA +prC +eVc +ceA +acs +acs +aya +aya +aya +aya +acs +acs +paA +rrJ +gpX +paA +aTZ +aUe +aUe +aUe +aTZ +aTZ +aUe +aUe +aUe +aTZ +ceA +ceA +cId +ceA +fZh +uID +kMa +ooB +xMY +jsu +hIz +pwb +ucN +dTs +dTs +dTs +dTs +rYt +iCh +cgm +cgt +vhN +cih +cih +cjI +cih +nyd +nyd +nyd +nyd +nyd +nyd +nyd +cih +eIP +uBQ +rsK +cmm +dNb +doE +doE +doE +doE +doE +vDa +wDU +piP +faY +tGN +dTs +dTs +stl +stl +vEs +eqY +eqY +eqY +eqY +sbW +vEs +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eqY +eLC +rNH +rNH +fth +eqY +eqY +sbW +xmT +dTs +dTs +dTs +acu +"} +(15,1,1) = {" +acu +dTs +dTs +dTs +dTs +dTs +jBa +dTs +dTs +jBa +leX +lLl +jMa +dTs +dTs +dTs +lLl +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +jMa +jBa +lLl +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs bPO -azs +eda cEl -aQK -bTB -awh +hQW +iLi +pRA dTs dTs dTs dTs -aho -aho -aho +hMK +hMK +hMK afD dTs dTs @@ -54901,15 +54907,15 @@ dTs dTs cdh cdh -cff -cxk +jKX +xrV ceA ceA ceA axk ceA -aSI -chG +prC +eVc ceA hyH acs @@ -54920,8 +54926,8 @@ aWF aWF acs boO -bou -brs +iod +gDQ boO aTZ bdQ @@ -54937,15 +54943,15 @@ aTZ aTZ ceA ceA -bPA -bQN -bSH -bUR -cjO -cjO -cdL +fZh +rvn +tKz +dMG +paA +paA +wZg ceA -ceG +nFD dTs dTs dTs @@ -54953,71 +54959,71 @@ dTs kzQ ceA cgm -cic -cha +hPI +pGG cih cih cih cih -cni -cni -cni -cni -cni -cni -cni +iih +iih +iih +iih +iih +iih +iih cih -cvF -cwy +eIP +eoI cgm cgm dTs dTs -cwz -cXl -cuP -cuP -cXm -cAQ -cCO -ctK +ukN +jsS +xKK +xKK +hOC +lPb +nNH +txv dTs dTs -iHF +eJB aKY -cMq -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -aLy -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cMq -cQn -lIK +mOx +dqG +dqG +dqG +dqG +dqG +dqG +dqG +dqG +dqG +dqG +dqG +dqG +lHD +dqG +dqG +dqG +dqG +dqG +dqG +dqG +dqG +mOx +qWg +lfs dws dws -tlh -lIt -lIt -dgG -sAm -lzs +wYK +eqY +eqY +oeU +wtY +ocj dTs dTs acu @@ -55028,25 +55034,25 @@ dTs dTs dTs dTs -ogc -pRD -qLE -aba -abj -cSZ -abN -uZr -ogc -wEy -moq -qLE -uZr -ogc +jMa +vMh +qfS +ewo +bgK +gEw +srZ +lLl +jMa +jBa +poB +qfS +lLl +jMa dTs dTs dTs dTs -wEy +jBa dTs dTs dTs @@ -55058,14 +55064,14 @@ dTs dTs dTs dTs -wEy -oMz -moq -ndF -ogc +jBa +leX +poB +mcn +jMa dTs -oMz -uZr +leX +lLl dTs dTs dTs @@ -55116,11 +55122,11 @@ dTs dTs dTs bPO -bQR -bKb -aQK -bTB -awh +lXY +vvr +hQW +iLi +pRA dTs dTs dTs @@ -55136,14 +55142,14 @@ dTs dTs dTs dTs -ash +kvQ axk axk axk aPu ceA -aSI -chG +prC +eVc ceA ceA aya @@ -55153,10 +55159,10 @@ bbO aZp aWF aya -boW -bou -bou -bsb +wJB +iod +iod +rNx aUe bfz bwE @@ -55171,16 +55177,16 @@ bgz aTZ ceA ceA -bPA -bQN -bSH -bUR -cjO -cjO -bYP +fZh +rvn +tKz +dMG +paA +paA +xSV ceA -cez -jZZ +pwb +ucN dTs dTs dTs @@ -55192,65 +55198,65 @@ chb ciC cih cgm -clw +duf cih -cwk -crl -css -cBr -cst -clw +lmE +xBa +fHN +llG +xYJ +duf cih -cwk -cxo +lmE +bRt cgm dTs dTs dTs dTs dTs -czw -czY +wPO +vFi cAa -cAR -cCU +ugQ +twc cAa dTs dTs -vTA -alh -cMC -aav -cFI -cFS -cGG -cFc -cFI -cFS -cGG -cFc -cFI -cFS -cLe -cEZ -cCZ -cFS -cGG -cFc -cFI -cFS -cGG -cDL -cMC -cgh -kPo -qkz -hjz -tlh -lIt -lIt -lIt -sAm +vEs +hID +eWr +hfW +uAp +jSH +pon +ueB +uAp +jSH +pon +ueB +uAp +jSH +nkk +qmA +nIa +jSH +pon +ueB +uAp +jSH +pon +sPI +eWr +hFR +lgJ +mEo +hfH +wYK +eqY +eqY +eqY +wtY dTs dTs dTs @@ -55260,30 +55266,30 @@ acu acu dTs dTs -ogc -ogc -wEy -moq -uJl -xWj -mBO -mBO -cSZ -aTC -oMz -moq -mZb -mZb -qLE -uZr -ogc +jMa +jMa +jBa +poB +iXg +pku +hgY +hgY +gEw +sYT +leX +poB +tMm +tMm +qfS +lLl +jMa dTs dTs -wEy -moq -qLE -oMz -uZr +jBa +poB +qfS +leX +lLl dTs dTs dTs @@ -55292,15 +55298,15 @@ dTs dTs dTs dTs -moq -oJT -apP -qLE -uZr -txr -ign -qLE -uZr +poB +put +dIg +qfS +lLl +xXK +jPK +qfS +lLl dTs dTs dTs @@ -55350,34 +55356,34 @@ dTs dTs dTs bPO -bQS -bKc -aQK -bTB +ikB +qFM +hQW +iLi dTs dTs dTs dTs arF -ryG -wiF -ukQ -bNo -wiI +fhT +hYW +gNe +iOn +oej arF dTs dTs dTs dTs dTs -cxk +xrV ceA ceA ceA ceA ceA -aSI -chG +prC +eVc aUg ceA aya @@ -55386,11 +55392,11 @@ aZj bbO aZp aWF -bnD -bom -bom -bom -bsh +pxJ +gBA +gBA +gBA +gYb aUe bfz bwF @@ -55400,25 +55406,25 @@ bfz bKf bKl bgz -bMZ -bNK +krF +nbl aTZ ceA ceA -bPA -bQN -bSH -bUR -cjO -cjO -cdL +fZh +rvn +tKz +dMG +paA +paA +wZg ceA ceA -cez -hvG +pwb +ljs dTs dTs -bPA +fZh kzQ ceA cgm @@ -55444,16 +55450,16 @@ dTs dTs dTs dTs -csB +eDU cOj -cJx -cfd +oHc +hIE doE -crr +oVb dTs dTs -cDb -cDK +hHK +mTx cDY tcB cDY @@ -55475,17 +55481,17 @@ cDY cDY tcB cDY -cMD -cBS -kPo +xHI +kQq +lgJ dws dws -tlh -lIt -lIt -lIt -erF -sav +wYK +eqY +eqY +eqY +sbW +xmT dTs dTs acu @@ -55493,52 +55499,52 @@ acu (18,1,1) = {" acu dTs -wEy -oMz -oMz -moq -mZb -mZb -cQL -dja -mBO -dvW -apP -mZb -mZb -mZb -mZb -mZb -qLE -uZr -wEy -oMz -moq -mZb -qIC -mZb -qLE -oMz -uZr -ogc +jBa +leX +leX +poB +tMm +tMm +hPP +nrh +hgY +eMd +dIg +tMm +tMm +tMm +tMm +tMm +qfS +lLl +jBa +leX +poB +tMm +xUo +tMm +qfS +leX +lLl +jMa dTs dTs -moq -ndF -txr -ign -mZb -oJT -mZb -qLE -oMz -moq -mZb -qLE -uZr -ogc -wEy -uZr +poB +mcn +xXK +jPK +tMm +put +tMm +qfS +leX +poB +tMm +qfS +lLl +jMa +jBa +lLl dTs dTs dTs @@ -55585,19 +55591,19 @@ dTs dTs bNY bRj -bKt -csZ +pgj +xBK bRj bNY bNY dTs dTs arF -aPU -aSs -aSs -aSt -rQJ +vyW +ieW +ieW +jui +vco arF dTs dTs @@ -55609,9 +55615,9 @@ vvy oCu ceA aQc -ceB +mPS aSJ -chG +eVc ceA ceA aya @@ -55621,11 +55627,11 @@ aZn aZp aWF aya -bpa -bql -bom -bou -aUr +rVy +fAG +gBA +iod +wDb bgz bgz bzW @@ -55634,25 +55640,25 @@ bgz bgz bKJ bgz -bMZ -bNN +krF +efo aTZ ceA ceA -bPA -bRv -bSI -bUS -bUT -cjO -cdL +fZh +iZI +xOJ +hPV +ovE +paA +wZg ceA ceA ceA ceA dTs -aUm -emt +jsu +vEZ kzQ ceA ceA @@ -55660,34 +55666,34 @@ ceA ceA ceA ceA -bPA -qzo -cdL +fZh +rOM +wZg ceA ceA ceA ceA -bPA -qzo -cdL +fZh +rOM +wZg ceA -bPA +fZh dTs dTs dTs dTs dTs dTs -csD +odG doE -cJx -cfd +oHc +hIE doE doE dTs dTs -cDb -cDM +hHK +hhl cDY cDY cDY @@ -55709,71 +55715,71 @@ cDY cDY cDY cDY -cML -cBS -kPo +gcg +kQq +lgJ dws dws -tlh -lIt -uic -lIt -lIt -sAm -lzs +wYK +eqY +rNA +eqY +eqY +wtY +ocj dTs acu "} (19,1,1) = {" acu dTs -pRD -mZb -qIC -mZb -mZb -aQS -vjO -aHW -cQL -lZP -uJl -mZb -mZb -mZb -aQS -uJl -mZb -qLE -moq -mZb -mZb -mZb -mZb -mZb -mZb -aQS -qLE -oMz -moq -mZb -mZb -qLE -oMz -moq -mZb -mZb -ben -mZb -mZb -mZb -mZb -mZb -bge -oMz -moq -qLE -oMz +vMh +tMm +xUo +tMm +tMm +hXY +nJq +lnC +hPP +tDd +iXg +tMm +tMm +tMm +hXY +iXg +tMm +qfS +poB +tMm +tMm +tMm +tMm +tMm +tMm +hXY +qfS +leX +poB +tMm +tMm +qfS +leX +poB +tMm +tMm +kyU +tMm +tMm +tMm +tMm +tMm +yfi +leX +poB +qfS +leX bht bht bht @@ -55794,8 +55800,8 @@ bht bht bht bht -afc -afc +oni +oni dTs dTs dTs @@ -55818,34 +55824,34 @@ dTs bNY bNY bNY -bQT -bKt -bVf -bTC -aJv +fLF +pgj +swu +ibt +mLG bNY dTs dTs arF -aPV -aSt -aSt -aSt -odR +ifu +jui +jui +jui +sdt arF dTs dTs -yaA -aSv +pun +wZa aPY aSu aSu aPR -aQb +ezh aSJ aSK aSK -aTJ +cwt ceA ceA aya @@ -55855,11 +55861,11 @@ aZp aZp bkI aya -bpb -bqm -brt -bsk -aUK +qUn +nhz +pkM +fYm +qFc biF biF biF @@ -55868,60 +55874,60 @@ biF biF bKZ bgz -bMZ -bNO +krF +teP aTZ ceA ceA -bPB -bRw -bSV -cjO -bUT -cjO -cdL +twg +pwd +mKk +paA +ovE +paA +wZg ceA ceA ceA ceA -bPA -cjO +fZh +paA aIT aKb -ceB -ceB -ceB -ceB -ceB -ceB -bnz +mPS +mPS +mPS +mPS +mPS +mPS +upn aSK -cqo -ceB -ceB -ceB -ceB -bnz +eDC +mPS +mPS +mPS +mPS +upn aSK -cwm +wVL aUh -bPA -cxS -crq +fZh +poy +ekr dTs dTs dTs -csD +odG doE -cyB +tEg cBU cGH -cBV +hQI cSR dTs dTs -cDb -cGS +hHK +oxm cDY cDY cDY @@ -55943,17 +55949,17 @@ cDY cDY cDY cDY -cNb -cRB -kPo -qkz -hjz -tlh -lIt -lIt -lIt -lIt -sAm +luF +lCc +lgJ +mEo +hfH +wYK +eqY +eqY +eqY +eqY +wtY dTs dTs acu @@ -55961,76 +55967,76 @@ acu (20,1,1) = {" acu dTs -pRD -mZb -mZb +vMh +tMm +tMm aPA -aQe -aQT -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aVF -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aVF -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aVF -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -bhe +dvC +kdC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +mwb +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +mwb +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +mwb +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +dvC +mOo bhu -bhN -bik -biD -biZ -bhT -biD -bhT -bhT -bkR -bhT -bhT -biD -bhT -biZ -biD -bhT -bhT -biD -brB -bsr +wLt +feT +jOd +hor +jBd +jOd +jBd +jBd +llg +jBd +jBd +jOd +jBd +hor +jOd +jBd +jBd +jOd +oXr +lpy ada -afh +gSF dTs dTs byn @@ -56047,26 +56053,26 @@ byn byn byn bLU -afv -afv -afv -afv -afz -bQU -bKt -bVf -bTC -aKs -afv +gff +gff +gff +gff +npp +nXf +pgj +swu +ibt +msz +gff dTs dTs arF -aPU -aSQ -tuC -isz -tuC -qPl +vyW +cSi +jCN +izu +jCN +olD wuC wuC wuC @@ -56075,11 +56081,11 @@ aTl aSu cvr aPR -aRy +tZM aSK aSK -aSL -cdL +lXh +wZg aUh acs acs @@ -56089,10 +56095,10 @@ aZp aZp bkJ acs -bpb -bqn -bou -bsl +qUn +hYZ +iod +uhp aUe bfz bwE @@ -56102,60 +56108,60 @@ bfz bKf bLe bgz -bMZ -bOz +krF +nfF aTZ ceA ceA ceA ceA -bPA -bUT -bUT -bvJ -ccu +fZh +ovE +ovE +piK +pxN ceA ceA ceA ceA -bPA -cjO +fZh +paA csu aSK aSK cdk -bao -bao -bao -bao -bnB +nkD +nkD +nkD +nkD +mYV aSK aSK -bOf -bao -bao -bao -bao +vKQ +nkD +nkD +nkD +nkD bbE -gMN -aUm -emt +iVF +jsu +vEZ cxt -crr -cwB -csD +oVb +wCB +odG doE doE -cyB -cAF -cTG -cTG -cji -ckp -crr -dTs -cDb -adf +tEg +soE +xlQ +xlQ +pnY +mVQ +oVb +dTs +hHK +rSD cDY cDY cDY @@ -56179,14 +56185,14 @@ cDY cDY cNh djl -sAZ +hzw dws dws -tlh -lIt -lIt -uME -hjW +wYK +eqY +eqY +pCX +qlb dTs dTs dTs @@ -56195,10 +56201,10 @@ acu (21,1,1) = {" acu dTs -txr -ign -mZb -aPB +xXK +jPK +tMm +lXk aQf aQU aQU @@ -56243,64 +56249,64 @@ aQU aQU aQU bbV -bhO -bil -bil -bil -bil -bil -bil -bil -bil -bhO -bil -bil -bil -bil -bil -bil -bil -bil -bhO -bss -bsr -afh +toT +hXw +hXw +hXw +hXw +hXw +hXw +hXw +hXw +toT +hXw +hXw +hXw +hXw +hXw +hXw +hXw +hXw +toT +sIb +lpy +gSF dTs dTs byo -bzh -bAh -bAh -bzi -bCP -bzh -bFG -bzi -bzi -bJb -bKm +vEc +jpQ +jpQ +pYv +rmN +vEc +lpK +pYv +pYv +esH +oUq byo -bLV -bMD -bMD -bMD -bMD -bMD -bQV -bMW -bVf -bLV -bMD -bMD +mWM +lRc +lRc +lRc +lRc +lRc +hLc +wmu +swu +mWM +lRc +lRc dTs dTs woy -aPU -aSQ -pac -xKx -ieU -xHA +vyW +cSi +wgj +jEI +sze +uMT cvr aQC aQu @@ -56309,11 +56315,11 @@ aSX aUB aWf aXd -aRy +tZM aQt aSK -aSL -cdL +lXh +wZg ceA ceA aya @@ -56323,10 +56329,10 @@ bbO aZp aWF aya -bpb -bqn -bom -bsb +qUn +hYZ +gBA +rNx aUe bfz bwE @@ -56343,44 +56349,44 @@ ceA ceA ceA ceA -bPA -bUT -bUT -bXP +fZh +ovE +ovE +sjL ceA ceA -baz -cwl +fFH +cUr ceA -bPA -cjO -cFd -cgb +fZh +paA +eHM +tYB aSK -chG +eVc chw ciF ciF ciF -cmh -cos -cqG -crm +rMU +dqA +xkl +lvK ciF ciF chv ceA -aSI +prC aSK -beO -cvD -cHu -cYk -cYk -cRL -cRL -cRL -dly +xGR +hvj +yjt +sOm +sOm +mmB +mmB +mmB +jdS cIi cRM cRM @@ -56388,8 +56394,8 @@ cRM dFn doE doE -cDb -abS +hHK +jxH cDY cDY cDY @@ -56416,12 +56422,12 @@ dws dws dws dws -tlh -onm -hTf -xOm -erF -sav +wYK +nwV +gcW +fgl +sbW +xmT dTs dTs acu @@ -56430,9 +56436,9 @@ acu acu dTs dTs -txr -ign -aPB +xXK +jPK +lXk aQg aQV aQV @@ -56476,65 +56482,65 @@ aQV aQV aQV aQV -bdD -bhP -bhP -mKW -mKW -bhP -bhP -bhP -biE +xYG +uQp +uQp +vMT +vMT +uQp +uQp +uQp +rhP bjk blx -bhP -bhP -mKW -bhP -bhP -bhP -bhP -bhP -vir -bst -bth -agP -afc +uQp +uQp +vMT +uQp +uQp +uQp +uQp +uQp +qcV +wWB +erZ +sks +oni byr bhu -qyD -bzi -bBh -bCe -bCQ -bEd -bzi -bzi -bzi -bJc -bKn +oon +pYv +oyt +vpk +njV +dxG +pYv +pYv +pYv +qQQ +sxg byo -bLW -bME -bLW -bNZ -bLW -gUh -bLW -bMW -bVf -bLW -bLW -bUX +tQy +jnw +tQy +vsT +tQy +jQW +tQy +wmu +swu +tQy +tQy +eIn bLU dTs arF -kMM -dGx -ieU -ieU -ieU -kFW +uXq +hlJ +sze +sze +sze +rrn cvr aQC aQC @@ -56543,11 +56549,11 @@ aSX aSu cvr aPR -aRy +tZM aSK aSK -aSL -cdL +lXh +wZg ceA ceA aya @@ -56557,10 +56563,10 @@ bbP bhx aWF aya -boW -bqn -bom -bsb +wJB +hYZ +gBA +rNx aTZ bdQ bwE @@ -56578,8 +56584,8 @@ bNE bNE bNE bNF -bTn -bZI +jOR +kIf bNF bNE bNE @@ -56587,30 +56593,30 @@ bNE bNE bNE bNE -bRw -bSV -cgj -cey -chG +pwd +mKk +mTU +tkI +eVc cfC -cjO -cjO -cjO -cjO -cex -cfp -cjO -cjO -cjO +paA +paA +paA +paA +uoK +rOo +paA +paA +paA kzQ ceA -aSI +prC aSK aSK csu cZb cZb -cYZ +mOE cIi cRM cRM @@ -56622,8 +56628,8 @@ crx dFo doE doE -cDb -cDM +hHK +hhl cDY cDY cDY @@ -56648,14 +56654,14 @@ cDY cNx dws dws -qkz -hjz -tlh -fSc -fYz -niN -hCY -sAm +mEo +hfH +wYK +leD +hTY +jie +sKg +wtY dTs dTs acu @@ -56665,8 +56671,8 @@ acu dTs dTs dTs -pRD -aPB +vMh +lXk aQg aQV aQV @@ -56710,65 +56716,65 @@ aQW aQV aQV aQV -bdD -bhP -bhP -bhP -bhP -bhP -bhP -biE +xYG +uQp +uQp +uQp +uQp +uQp +uQp +rhP bkn bkS bly -bhP -bhP -bhP -bhP -bhP -bhP -asR -bhP -bhA -bst -bti -bsr +uQp +uQp +uQp +uQp +uQp +uQp +kPq +uQp +mXe +wWB +xAE +lpy ada ada bhu -bzj -bzi -bzi -bzi -bCR -bEe -bzi -bzi -bzi -bJd -bzi +ogQ +pYv +pYv +pYv +lyy +tRV +pYv +pYv +pYv +hZf +pYv bMw -bLW -bME -bLW -bNZ -bLW -bPP -bQW -bKt -bVf -bLW -bLW -bUY +tQy +jnw +tQy +vsT +tQy +uwD +gQy +pgj +swu +tQy +tQy +gAp bLU dTs arF -fyO -aSQ -mkd -ggn -ghz -qPl +nky +cSi +rDT +tQU +okS +olD ray fgU nmP @@ -56777,11 +56783,11 @@ aUw cvr cvr aPR -aZN +oYz aSK aSK -aSL -cdL +lXh +wZg ceA ceA aya @@ -56790,11 +56796,11 @@ aZp bbO aZp aWF -bnD -bou -bqn -bom -bsb +pxJ +iod +hYZ +gBA +rNx aTZ aTZ aTZ @@ -56805,46 +56811,46 @@ bsp bGy bsp bKN -bLd -bLL -bLd +fTQ +ten +fTQ bNE -bRz -bTm -bVA -bSz -bSz -cak -caR +oHi +szY +riF +eNk +eNk +mcz +myN bNE -cdG +qrp bNE -uvh +gAJ bNE dTs -bPA +fZh kzQ -aSI -chG +prC +eVc cfC -cjO -ccm -hMc -hMc -bqd -bqd -hMc -aUu -cjO -dGN -aUm -xvX +paA +mPA +rPW +rPW +rOv +rOv +rPW +fVC +paA +hxr +jsu +isT aSK -bqd -cFd -aKo +rOv +eHM +uAK cIv -cYZ +mOE cUl crx crx @@ -56856,8 +56862,8 @@ crx dFo doE doE -cDb -cGS +hHK +oxm cDY cDY cDY @@ -56884,12 +56890,12 @@ dws dws dws dws -tlh -hTf -muj -bFC -lIt -erF +wYK +gcW +syH +god +eqY +sbW dTs dTs acu @@ -56899,8 +56905,8 @@ acu dTs dTs dTs -pRD -aPB +vMh +lXk aQg aQV aQV @@ -56944,11 +56950,11 @@ aQV aQV aQV aQV -bdD -bhP -bhP -bhP -biE +xYG +uQp +uQp +uQp +rhP bjk bjy bjC @@ -56958,50 +56964,50 @@ bjk blx ozQ bmD -bnc -bhP -biE -bnf -bhP -bhA -bst -bhT -bti -bvU -bwV +ijD +uQp +rhP +lpG +uQp +mXe +wWB +jBd +xAE +kTH +fwR bhu -bzi -bzi -bTA -bVj -bzi -bzi -bzi -bzi -bzi -bzi -bzi +pYv +pYv +kCv +mgm +pYv +pYv +pYv +pYv +pYv +pYv +pYv bMw -bLW -mhU -bLW -bNZ -bLW -bPP -cvf -bNc -bVf -bLW -bUj -bUZ +tQy +qty +tQy +vsT +tQy +uwD +huo +lES +swu +tQy +jNF +xJp bLU dTs arF -tFG -aSt -aSs -aSs -hAf +lho +jui +ieW +ieW +mxa uez aPT aQJ @@ -57011,11 +57017,11 @@ aTl aUB aWf aXd -aZN +oYz aQt aSK -aSL -cdL +lXh +wZg ceA ceA aya @@ -57025,60 +57031,60 @@ aWF aWF aWF aya -bpe -bqq -bou -bsm +rWb +fpH +iod +hIU aUS -bld -bwH -bwH -bwH +lVB +jTy +jTy +jTy aUS -bDL +ema bGz -bIW +lNW bsp -bLd -bLd -bLd +fTQ +fTQ +fTQ bNE -bRC -bTn -bTn -bSz -bSz -bTn -caS +iLh +jOR +jOR +eNk +eNk +jOR +lEw bNE -cdJ +leO bNE -cdJ +leO bNE dTs -bPA +fZh kzQ -aSI -chG +prC +eVc cfC -cjO -tAs -cjK -cmi -cmi -cmi -crn -aRy -cvD -cxv -beO +paA +cCB +gJK +glk +glk +glk +uKY +tZM +hvj +oqe +xGR aSK -aSL -cjO -cjO +lXh +paA +paA cxt -cJx -cYZ +oHc +mOE cUl crx crx @@ -57090,8 +57096,8 @@ crx dFo cOj doE -cDb -adf +hHK +rSD cDY cDY cDY @@ -57115,16 +57121,16 @@ cDY cDY cPW djk -eRX +pEA dws dws -tlh -qHh -bFC -hVV -lIt -hjW -czA +wYK +oYD +god +oME +eqY +qlb +oZU dTs acu "} @@ -57133,8 +57139,8 @@ acu dTs dTs dTs -pRD -aPB +vMh +lXk aQg aQV aQV @@ -57178,10 +57184,10 @@ aQU aQV aQV aQV -bdD -bhQ -bhP -asR +xYG +uIT +uQp +kPq sFQ jdT bjz @@ -57193,49 +57199,49 @@ qmn jIQ wta hvD -bnc +ijD bjB -bhP -bhP -brC -bst -btj -bhT -bhT -bwW -cmf -bzk -bzk -bzk -bVo -bzk -bzk -bFH -bVo -bVo -bzk -bzk +uQp +uQp +myg +wWB +xnI +jBd +jBd +suf +sFh +yhZ +yhZ +yhZ +eYz +yhZ +yhZ +jJw +eYz +eYz +yhZ +yhZ bMw -bLW -bLW -cvf -cvf -cvf -cvf -cCh -bOc -bVf -bLW -bLW -bUY +tQy +tQy +huo +huo +huo +huo +sym +vId +swu +tQy +tQy +gAp bLU dTs arF -dMY -aSt -aSt -aSt -iCw +wmq +jui +jui +jui +gFV uez aPY cvr @@ -57245,11 +57251,11 @@ aSX aQC cvr aXd -aZN +oYz aQt aSK -aSL -cdL +lXh +wZg ceA act act @@ -57259,60 +57265,60 @@ aoj aoj act bnF -bpf -bqn -bom -bsb +fsO +hYZ +gBA +rNx aUS -bmk -bwI -bwI -bwH -bGK -bDL +qUm +pwT +pwT +jTy +udJ +ema bGz -bIW -bKP -bLd -bLM -bLd +lNW +hHj +fTQ +ijP +fTQ bNE -bRD -bTn -bWM -bSz -bSz -bTn -bTn +kCo +jOR +nvd +eNk +eNk +jOR +jOR cdt -cdN -cdN -cdN +wuG +wuG +wuG bNE dTs -emt +vEZ kzQ -aSI -chG +prC +eVc cfC -cjO -tAs -ckr -cmj -aKl -crd -csj -aRy +paA +cCB +dKr +gdU +rCr +vjw +qkk +tZM csu aSK aSK aSK aSK -beO -cvD -aKq +xGR +hvj +ukD cBU -cYZ +mOE dlb cMJ cMJ @@ -57324,8 +57330,8 @@ crx dFo doE doE -cDb -abS +hHK +jxH cDY cDY cDY @@ -57347,16 +57353,16 @@ cDY cDY cDY cDY -cMD -cRE -kPo -qkz -hjz -tlh -uME -jcb -lIt -lIt +xHI +stq +lgJ +mEo +hfH +wYK +pCX +vtC +eqY +eqY dTs dTs dTs @@ -57367,8 +57373,8 @@ acu dTs dTs dTs -pRD -aPB +vMh +lXk aQg aQV aQV @@ -57412,9 +57418,9 @@ aQV aQV aQV aQV -bdD -bhP -bhP +xYG +uQp +uQp vLw hOt jIQ @@ -57429,47 +57435,47 @@ jIQ jIQ bnH boy -bhP -bhP -bhA -bst -btk -buB -bvV -bvV -coj -bzl -bzl -bTD -bVP -bTD -bTD -cbS -ccA -bTD -bTD -bTD -aSm -crQ -crQ -crQ -bLX -bLX -crQ -crQ +uQp +uQp +mXe +wWB +riW +dAV +cLJ +cLJ +rAX +gwN +gwN +yih +nMV +yih +yih +mHu +vqI +yih +yih +yih +oWW +jyj +jyj +jyj +vJW +vJW +jyj +jyj cFi cGj -bSQ -bLW -bVb +kQM +tQy +eBv bLU dTs arF -aRX -aXf -ylT -glz -iCw +mue +eqI +hyZ +sMU +gFV uez aPY aQC @@ -57479,74 +57485,74 @@ aSX aSu aSu aPR -aRy +tZM aQt aSK -aSL -cdL +lXh +wZg ceA act -ayw -aXz -aZs -aXz -aXz -bla +saF +mhD +xCF +mhD +mhD +qcu bnG -boW -bqn -bom -bsb +wJB +hYZ +gBA +rNx aUS -bml -bml -ifB -bml +kTL +kTL +yaX +kTL aUS -bDL +ema bGB -bIX +las bNE bNF -bPD +xsO bNF bNE -bSa -bTn -bSz -bYS -bYS -bSz -bTo +mNI +jOR +eNk +hKI +hKI +eNk +mxJ cdt -cdN -cdN -cdN +wuG +wuG +wuG bNE dTs -cjO +paA kzQ -aSI -chG +prC +eVc cfC -cjO -tAs -ckr -cmj -cmj -cmj -csj -aTH -cFd -cgb -bqd +paA +cCB +dKr +gdU +gdU +gdU +qkk +rrJ +eHM +tYB +rOv aSK aSK aSK -aKn +vGb cZb cZb -cYZ +mOE cIi cRM cRM @@ -57558,8 +57564,8 @@ crx dFo doE doE -cDb -cDM +hHK +hhl cDY cDY cDY @@ -57581,17 +57587,17 @@ cDY cDY cDY cDY -cML -cBS -kPo +gcg +kQq +lgJ dws dws -tlh -hCY -uME -lIt -lIt -sAm +wYK +sKg +pCX +eqY +eqY +wtY dTs dTs acu @@ -57600,9 +57606,9 @@ acu acu dTs dTs -wEy -moq -aPB +jBa +poB +lXk aQh aQW aQW @@ -57646,10 +57652,10 @@ aQV aQV aQV aQV -bdD -bhR -mKW -biG +xYG +swZ +vMT +sSh sGP jdT bjB @@ -57661,49 +57667,49 @@ sjN jIQ wLq swK -bnf +lpG bjz -bhP -bhP -brD -bst -bhT -buC -bhz -bhz -cwr -bSg -bSg -bSg -bVQ -bVQ -bSg -bSg -ccB -bSg -bzm -bzm -bzm -bLY -bLY -bLY -bLY -bLY -bLY -bLY +uQp +uQp +xCW +wWB +jBd +kjC +vcQ +vcQ +vGN +sLg +sLg +sLg +nar +nar +sLg +sLg +pFB +sLg +rdK +rdK +rdK +lsk +lsk +lsk +lsk +lsk +lsk +lsk cEt cGk -bTM -bUk -bVc +jUX +vrt +kfI bLU dTs arF arF uez uez -aSt -gLb +jui +oWD uez lop fgU @@ -57713,74 +57719,74 @@ aUw aUM aWf aXd -aRy +tZM aQt aQt -aSL -beN -aUm +lXh +xMY +jsu aoj -aND -aVp -aVp -aSU -aSU -art -boh -bpg -bqt -bom -bsb +pzG +igl +igl +soX +soX +rRC +myF +xmx +tjO +gBA +rNx aVw bmx bmx bmx bmx aVw -bFi +kay bGB -bIX +las bNF bOD bPG bQu bNE -bSb -bTn -bSz -bYT -bYT -bSz -bTn +viN +jOR +eNk +eKQ +eKQ +eNk +jOR cdt -cdN -cdN +wuG +wuG bcM bNE dTs -cjO -cgk -cew -cfo -chC -cjO -tAs -ckr -cmj -cmj -crg -csj -cjO -cjO -ctz -ctE -aTH -bqd -bqd -cFd -cHv +paA +qsV +psp +mMv +osx +paA +cCB +dKr +gdU +gdU +oOu +qkk +paA +paA +lFn +vXU +rrJ +rOv +rOv +eHM +gFx cIv -cYZ +mOE cUl crx crx @@ -57792,8 +57798,8 @@ crx dFo doE cDc -cDb -cDV +hHK +iKm cDY tcB cDY @@ -57815,17 +57821,17 @@ cDY cDY tcB cDY -cNb -cBS -kPo +luF +kQq +lgJ dws dws -tlh -hTf -xOm -lIt -lIt -sAm +wYK +gcW +fgl +eqY +eqY +wtY dTs dTs acu @@ -57834,44 +57840,44 @@ acu acu dTs dTs -dDB -mZb -aPC -aQi -aQX -aQX -aRZ +vIR +tMm +ret +fsk +dPv +dPv +tYz aSx aSY aQg aUi -aUC -aVg -aQX -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aQX -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aQX -aVg -aRZ +gjl +hSz +dPv +hSz +hSz +hSz +hSz +hSz +hSz +hSz +hSz +hSz +hSz +hSz +dPv +hSz +hSz +hSz +hSz +hSz +hSz +hSz +hSz +hSz +dPv +hSz +tYz aQg aQV aQV @@ -57880,11 +57886,11 @@ aQV aQV aQV aQV -bdD -bhP -bhP -bhP -biG +xYG +uQp +uQp +uQp +sSh bjk bjC bjy @@ -57894,50 +57900,50 @@ bjk blx ozQ bmD -bnf -bhP -biG -bnc -bhP -bhA -bst -btl -buC -bhz -bwX -cQh -bzn -bzn -bzn -bzn -bWS -bzn -bFJ -ccB -bSg -bJe -bzn +lpG +uQp +sSh +ijD +uQp +mXe +wWB +ntd +kjC +vcQ +qWL +jgn +oOQ +oOQ +oOQ +oOQ +tDS +oOQ +lWa +pFB +sLg +ubu +oOQ bMw -bLW -bLW -bLW -bLW -bLW -bLW -bLW -bKt +tQy +tQy +tQy +tQy +tQy +tQy +tQy +pgj cGl -bUo -bUl -bVd +mul +dqZ +oZu bLU dTs dTs arF -ser -ixe -scv -scv +lpT +eIk +iSJ +iSJ uez wAP aQJ @@ -57947,74 +57953,74 @@ aTl aQC aSu aPR -aRy +tZM aSK aQQ aSK -beO -aUu -aqA -aSU -aSU -art -aSU -art -art -bom -bou -bqu -bom -bsb +xGR +fVC +vgF +soX +soX +rRC +soX +rRC +rRC +gBA +iod +elE +gBA +rNx aVw -bmV -bwK -bzX -bCM +fzm +jeZ +ebX +ueR aVw -bDL +ema bGB -bIW +lNW bNF bOD bOD bOD bNE -bSn -bTo -bSz -bYT -bYT -bTn -bYl +naP +mxJ +eNk +eKQ +eKQ +jOR +jEl bNE -chd -cdN +fjN +wuG bcM bNE dTs -cjO -cjO -cex -cfp -cjO -cjO -tAs -ckr -cmj -cmj -crh -csj -bvJ -bRw -bSV -cgj -bRw -bRw -bRw -bSV +paA +paA +uoK +rOo +paA +paA +cCB +dKr +gdU +gdU +pYD +qkk +piK +pwd +mKk +mTU +pwd +pwd +pwd +mKk cxt -cJx -cYZ +oHc +mOE cUl crx crx @@ -58026,40 +58032,40 @@ crx dFo doE doE -alh -cMC -wRg -cGQ -cFe -cFP -cGa -cGQ -cFe -cFP -cGa -cGQ -cFe -cHn -vpn -cFb -cFe -cFP -cGa -cGQ -cFe -cFP -cLL -cMC -cgh -kPo -qkz -hjz -tlh -fYz -niN -hCY -lIt -sAm +hID +eWr +sRZ +gih +sqc +uJc +eAy +gih +sqc +uJc +eAy +gih +sqc +cdW +qrz +kOx +sqc +uJc +eAy +gih +sqc +uJc +ezR +eWr +hFR +lgJ +mEo +hfH +wYK +hTY +jie +sKg +eqY +wtY dTs dTs acu @@ -58068,44 +58074,44 @@ acu acu dTs dTs -pRD -mZb -mZb -aQj -aQY -aQZ -aSa +vMh +tMm +tMm +rOp +iXE +mrI +cZr aSx aQV aQV aUi -aUD -aVh -aQY -brW -bhv -boV -bpQ -aNv -bhv -boV -bpQ -aNv -bhv -bqk -xNB -brW -bhv -boV -bpQ -aNv -bhv -boV -bpQ -vRc -aQY -aUD -aVh +rZw +fMh +iXE +hfA +eeJ +lZG +qeh +mxV +eeJ +lZG +qeh +mxV +eeJ +gYR +fze +hfA +eeJ +lZG +qeh +mxV +eeJ +lZG +qeh +pvx +iXE +rZw +fMh aQg aQV aSY @@ -58114,64 +58120,64 @@ aQg aQV aQV aQV -bdD -bhP -bhP -mKW -bhP -bhP -bhP -biG +xYG +uQp +uQp +vMT +uQp +uQp +uQp +sSh bkn bkS bly -bhP -bhP -mKW -bhP -bhP -bhP -biG -bhP -bhA -bst -bhT -buC -bhz -bhT +uQp +uQp +vMT +uQp +uQp +uQp +sSh +uQp +mXe +wWB +jBd +kjC +vcQ +jBd bhu -bzo -bzo -bBj -jre -bBj -bBj -bFK -ccB -bSg -bJf -bKo +mYi +mYi +nDb +jOz +nDb +nDb +qFw +pFB +sLg +fJu +gdk bMw -bLZ -bLW -bLW -bOa -bLW -bPQ -bLW -bKt +nOO +tQy +tQy +itD +tQy +xIT +tQy +pgj cGm cEs -bSQ -bVe -bTC +kQM +vXw +ibt aLX dTs arF -gxo -rdX -pzd -sfK +qRJ +vrn +ueT +fbY ebZ aPY aQC @@ -58181,74 +58187,74 @@ aSV aSu ylk xcG -aZN +oYz aQt aQt aQt aQQ -aTK -art -art -art -art -bcA -biA -blW +nis +rRC +rRC +rRC +rRC +pnk +lWL +wfN bnF -bph -bqn -bom -bsn +neG +hYZ +gBA +fXF aVw -box -bwL -bwL -bwL -bIY -bDL +pzn +piw +piw +piw +mKe +ema bGB -bIW +lNW bNE bNF bPH bNF bNE -bSo -bTn -bWN -bYW -bYW -cal -cbI +wdX +jOR +hiS +vzf +vzf +lMr +nRL bNE -ciK -ciK -cdN +hTs +hTs +wuG bNE dTs dTs -bRw -cey +pwd +tkI aSK -beO -beO -aSL -ckr -cmj -cmj -cri -csj -cdL +xGR +xGR +lXh +dKr +gdU +gdU +jcW +qkk +wZg ceA -bPA +fZh kzQ aUh ceA ceA -bPA +fZh cxt -cJx -cYZ +oHc +mOE dlb cMJ cMJ @@ -58260,39 +58266,39 @@ crx dFo doE doE -aLK -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cES -cRB -kPo +spK +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +iwX +eBg +lCc +lgJ dws dws -tlh -qHh -bFC -uME -hjW +wYK +oYD +god +pCX +qlb dTs dTs dTs @@ -58302,20 +58308,20 @@ acu acu tZQ aad -moq -mZb -mZb -aQj -aQZ -aQZ -aSb +poB +tMm +tMm +rOp +mrI +mrI +ovd aSx aQV aQV aUi -aUD -aVj -acI +rZw +qkH +ejw aWh uHT aWh @@ -58337,9 +58343,9 @@ aWh aWh uHT aWh -bAF +fzH aVi -aVh +fMh aQg aQV aSY @@ -58348,64 +58354,64 @@ aQg aQV aQV aQV -bdD -bhP -bhP -bhP -bhP -bhP -bhP -bhP -biG +xYG +uQp +uQp +uQp +uQp +uQp +uQp +uQp +sSh bjk blx -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhA -bst -bhT -buC -bhz -bwY +uQp +uQp +uQp +uQp +uQp +uQp +uQp +uQp +mXe +wWB +jBd +kjC +vcQ +pZR bhu -bzp -bzo -bzo -bzo -bzo -bEf -bFK -bGR -bSg -bJf -bKp +thO +mYi +mYi +mYi +mYi +vVY +qFw +iRM +sLg +fJu +nsj byo -bMa -bLW -bLW -bLW -bOM -bLW -bLW -bKt +pJu +tQy +tQy +tQy +vJw +tQy +tQy +pgj cGn cEt -bTM -bVe -bTC +jUX +vXw +ibt aLX dTs arF -wrk -wsD -sfK -sfK +org +nFz +fbY +fbY pGF aPY cvr @@ -58415,45 +58421,45 @@ aTP aUM aWf aXd -aZN +oYz aSK aQQ aQt -aSL -cjO +lXh +paA aoj -aUf -aVp -aVp -bdd -biV -biV +hlv +igl +igl +emS +rem +rem bnG -boW -bqn -bom -bsb +wJB +hYZ +gBA +rNx aWK aWK aWK aWK aWK aWK -bDL +ema bGB -bIZ +wBn bNE -bOF +ruQ bOD -bQv +dxp bNE -bSs -bTn -bXD -bZG -eTi -bSz -ccs +qbI +jOR +thi +gIe +veQ +eNk +rsz bNE bNE bNE @@ -58461,32 +58467,32 @@ bNE bNE dTs dTs -cwl -aSI +cUr +prC cdk -bao -bnB -aTU -ckt -rTP -cmk -cmk -cso -cdL +nkD +mYV +gpX +tjb +vap +pob +pob +ppd +wZg ceA -bPA +fZh kzQ ceA ceA -bRZ -emt +dvv +vEZ cxt -cyG -cfq -cMM -czq -czW -czZ +hcd +xRj +sGZ +esh +scK +fMB cUo crx crx @@ -58494,7 +58500,7 @@ crx cEa crw crw -poM +iru djl djl djl @@ -58519,14 +58525,14 @@ djl djl djl djl -sAZ +hzw dws dws -tlh -uME -hVV -lIt -sAm +wYK +pCX +oME +eqY +wtY dTs dTs dTs @@ -58534,22 +58540,22 @@ acu "} (31,1,1) = {" acu -aqf -aEG -aqf -aqf -aqf -aqT -iKp -iKp -iKp -ekN +vFf +wqb +vFf +vFf +vFf +tTJ +nfV +nfV +nfV +dVg aSY aQg -mjR -iKp -xbA -aLa +tca +nfV +scY +nDe aWh aWh aWh @@ -58571,9 +58577,9 @@ aWh aWh aWh aWh -bDO +tEV aVi -aVh +fMh aQg aQV aQV @@ -58581,32 +58587,32 @@ aQV aQV aQV aSY -bhf +owr bhu -bhS -bim -bim -bim -bim -bim -bim -bim -bim -bhS -bim -bim -bim -bim -bim -bim -bim -bim -bhS -bsu -bhT -buC -bhz -bwZ +phK +vcg +vcg +vcg +vcg +vcg +vcg +vcg +vcg +phK +vcg +vcg +vcg +vcg +vcg +vcg +vcg +vcg +phK +jwG +jBd +kjC +vcQ +hKB bhu byo bMw @@ -58615,8 +58621,8 @@ bMw bMw byo bMw -ccB -bHQ +pFB +mxW bMw byo byo @@ -58625,22 +58631,22 @@ bRj bRj bMb bMb -bPR -bLW -bNc +vgU +tQy +lES cGn cEt -bVf -bVe -bTC +swu +vXw +ibt aLX dTs arF -ulm -ibg -wud -qyX -iNg +rru +qrS +eXm +hcH +nht aLY aOe aOe @@ -58649,31 +58655,31 @@ aPQ cvr cvr aXd -aRy +tZM aQQ aQQ aSK -aSL -cjO +lXh +paA act -aUv -aVp -aVp -bde -bji -biV -bos -bou -bqn -bou -bsb +mSp +igl +igl +oLa +wkj +rem +gQo +iod +hYZ +iod +rNx aWK -bpN -bwM -bzZ -bCN +vOE +oAz +gFf +dsZ aWK -bDL +ema bGD bsT bNG @@ -58681,45 +58687,45 @@ bOG bOG bOG bNG -bSw -bTp -bXO -bSz -bSz -bSz -cak -bTm -bTm -bTm -csh +wEu +wtA +rIj +eNk +eNk +eNk +mcz +szY +szY +szY +eEP bNE dTs -cff -cxk -aSI -chG +jKX +xrV +prC +eVc ceA -bPB -bRw +twg +pwd yeL yeL yeL dTs dTs mKs -cwl -bPA +cUr +fZh kzQ ceA -bRZ -emt +dvv +vEZ cxP cxQ doE doE doE -cJx -cfd +oHc +hIE cuO cuM crx @@ -58728,39 +58734,39 @@ crx crx crx crx -ylS +kgM dws dws -ylS +kgM dws dws -ylS -bhp -bhp -ylS +kgM +uWP +uWP +kgM dws dws -ylS -bhp -bhp -cXA +kgM +uWP +uWP +osy dws dws -ylS +kgM dws dws -ylS +kgM dws dws -ylS +kgM dws -qkz -hjz -tlh -lIt -uic -aPK -sAm +mEo +hfH +wYK +eqY +rNA +fiJ +wtY dTs dTs dTs @@ -58783,7 +58789,7 @@ aQV beT aQV aUi -qoJ +sqw aWh aWh aWh @@ -58805,9 +58811,9 @@ aWh aWh aWh aWh -bFg -aVj -aVG +ifT +qkH +sFF aQg aQV aQV @@ -58815,58 +58821,58 @@ aQV aQV aQV aSY -aSa +cZr bKM -bhT -bhT -biH -bhT -bjn +jBd +jBd +xrL +jBd +pEf bhu -bhT -bhT -biH -bhT -bhT -biH -bhT -bhT -biH -bhT -bjn +jBd +jBd +xrL +jBd +jBd +xrL +jBd +jBd +xrL +jBd +pEf bhu -bhT -bhT -btm -buC -bhz -bwW +jBd +jBd +lyg +kjC +vcQ +suf bKM -bzq -bzt -bzt -bzt -bzt -bzq -bzt -bBw -bwT -bzt -bzt -bzq -bzt -bzt -bzt -bzt +ldq +mUV +mUV +mUV +mUV +ldq +mUV +xWX +lgb +mUV +mUV +ldq +mUV +mUV +mUV +mUV bRj -bLW -bLW -bKt +tQy +tQy +pgj bSS cEt cEt -cse -bTC +woY +ibt aLX dTs arF @@ -58877,37 +58883,37 @@ arF arF dTs dTs -yaA -aSv +pun +wZa aUA aSu aSu aPR -aRy +tZM aSK aQt aQt -aSL -cjO +lXh +paA aoj -aND -aVp -aVp -bdw -biV -biV +pzG +igl +igl +gOc +rem +rem bnG -bpe -bqq -bou -bsb +rWb +fpH +iod +rNx aWK -bqh -bpN -bpN -bpN -bKe -bFk +wOE +vOE +vOE +vOE +vVZ +eTu bGE bJa bNH @@ -58915,26 +58921,26 @@ bOI bOD bOD bNH -bSz -bTn -bTo -bSz -bSz -bSz -bSz -bWM -bSz -bSz -csl +eNk +jOR +mxJ +eNk +eNk +eNk +eNk +nvd +eNk +eNk +lck bNE dTs -cff -cxk -aSI -chG +jKX +xrV +prC +eVc aUh -baz -ceD +fFH +vOZ dTs dTs dTs @@ -58943,17 +58949,17 @@ dTs dTs dTs dTs -cuy -cwl -bPA -cxq +dmt +cUr +fZh +plb cxQ doE drL drO crv -cJx -cfd +oHc +hIE doE cuM crx @@ -58962,39 +58968,39 @@ crx crx crx crx -vGu +mQp dws dws -vGu +mQp dws dws -vGu +mQp dws -bhp -mfH -bhp -bhp -mfH -bhp +uWP +imN +uWP +uWP +imN +uWP dws -vGu +mQp dws dws -vGu +mQp dws dws -vGu +mQp dws dws -vGu +mQp dws dws dws -tlh -uME -lIt -lIt -sAm +wYK +pCX +eqY +eqY +wtY dTs dTs dTs @@ -59017,7 +59023,7 @@ aQV beT aQV aUi -abQ +ihP aWh aWh aWh @@ -59049,58 +59055,58 @@ aQV aQV aQV aSY -aSa -bhy -bhz -bhz -biI -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -rUZ -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -buC -bhz -bhz -byq -bzr -bzr -bTE -bTE -bTE -bzr -bzr +cZr +xeT +vcQ +vcQ +wXS +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +uBF +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +kjC +vcQ +vcQ +rVh +efv +efv +miY +miY +miY +efv +efv ccG bBm -bzr -bzr -bTE -crS -bTE -bTE -bTE -cxC -cyU -cyU +efv +efv +miY +xWa +miY +miY +miY +owT +pSk +pSk cEt cGm cEt cEs -csX -bTC +gRt +ibt aLX dTs dTs @@ -59112,62 +59118,62 @@ dTs dTs dTs dTs -aSv +wZa aUA aUB aWC aXd -aRy +tZM aQt aSK aSK aSK -bfu -aru -aVp -aSU -aVp -bdz -bjj -blX +kQj +nWO +igl +soX +igl +nnI +muM +faf bnF -bpi -bqn -bom -bsb +yiB +hYZ +gBA +rNx aWK -qGb -bwO -bpN -bpN +nBL +rMw +vOE +vOE aWK -bFk +eTu bGE -bJH +tUZ bNF -bOJ -bOJ -bOJ +eZB +eZB +eZB bNF -bSX -bTn -bYl -bZH -cai -bSz -cct -cdu -bSX -bTn -ccs +tRn +jOR +jEl +rHd +nbM +eNk +kWM +fRe +tRn +jOR +rsz bNE dTs dTs -cxn -aSI -chG +loK +prC +eVc ceA -aKk +pan dTs dTs dTs @@ -59179,15 +59185,15 @@ dTs dTs dTs dTs -bPA -cxr -cwz +fZh +lBr +ukN doE dsE uTo drO -cJx -cfd +oHc +hIE doE cAV cuJ @@ -59196,18 +59202,18 @@ cuJ cuJ cuJ cuJ -jqU -cnA +xGD +ham djk djk djk djk djk djk -eRX +pEA dws -bhp -cQc +uWP +oob djk djk djk @@ -59218,16 +59224,16 @@ djk djk djk djk -eCk -jqU -jqU -jqU -jqU -jqU -sNX -lIt -lIt -lIt +oqa +xGD +xGD +xGD +xGD +xGD +jnV +eqY +eqY +eqY dTs dTs dTs @@ -59236,22 +59242,22 @@ acu "} (34,1,1) = {" acu -eZC -eZC -eZC -eZC -eZC -eZC -eZC -eZC -ucS -uHx +kSg +kSg +kSg +kSg +kSg +kSg +kSg +kSg +qBQ +hjD aSY aQg beT aQV aUi -cEc +vvZ aWh aWh aWh @@ -59283,59 +59289,59 @@ aQV aQg aQV aSY -aSa -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -buD -bvW -bvW -bvW -bCS -bWY +cZr +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +vcQ +rae +gxJ +gxJ +gxJ +rxQ +slO bTF bVZ -bWY -bWY -bWY -bGT +slO +slO +slO +gut bCg bVZ -bWY -bWY +slO +slO bMd bCg -bCS -bCS -bOO -bOO -bOO -bOO -bSU -cGy +rxQ +rxQ +ssx +ssx +ssx +ssx +kKQ +pts cHD -csX -bTC -aKs +gRt +ibt +msz bXQ bXQ bXQ @@ -59346,63 +59352,63 @@ bXQ bXQ dTs dTs -aSv +wZa aUx aWe aWD aYa -bae +tbU bah bah bbA bah -bfG -atg -atg -aXA -aXA -bdH -bjH -bjH -bot -bpj -bqw -bru -bsb +hvu +mQX +mQX +xKc +xKc +dXG +uWR +uWR +kvV +eZP +kYf +yhQ +rNx aWK -bqh -bpN -bpN -bDE +wOE +vOE +vOE +kkV aWK -bFi +kay bGE -bIW +lNW bNE bNF -bPI +fVS bNF bNE bNF -bTr +xGm bNF bNE bNF -cam +jzX bNF bNE bNF -ckw +tZh bNF bNE dTs dTs dTs -cJx -cfd +oHc +hIE doE -crr -crq +oVb +ekr dTs dTs dTs @@ -59415,20 +59421,20 @@ dTs dTs dTs dTs -csB +eDU czv dsE uTo drN -cJx -cfd +oHc +hIE doE doE doE doE doE doE -cxU +pxP dTs dTs bvA @@ -59443,24 +59449,24 @@ cIZ cNR cIZ cNo -cVH -cWn +dfZ +uDL cNo bvA -daw -deU -uSv -uSv -aMT -aNx -uWt -lIt -lIt -lIt -lIt -lIt -lIt -lIt +vQD +xjU +oTT +oTT +fny +xLG +eHY +eqY +eqY +eqY +eqY +eqY +eqY +eqY dTs dTs dTs @@ -59473,19 +59479,19 @@ acu tZQ tZQ dTs -cSn -ign -mZb -mZb -wDC -aSd +eov +jPK +tMm +tMm +mSt +mVZ aSx aQV aQV aQV aQV aUi -aLa +nDe aWh aWh aWh @@ -59517,59 +59523,59 @@ aQV aQg aQV aSY -aSa +cZr bKM -bhT -bhT -biD -bhT -bjn +jBd +jBd +jOd +jBd +pEf bhu -bhT -bhT -biD -bhT -bhT -biD -bhT -bng -bnI -bhT -bjn +jBd +jBd +jOd +jBd +jBd +jOd +jBd +vHg +lNE +jBd +pEf bhu -brE -bhT -btl -buC -bhz -bwX +cnh +jBd +ntd +kjC +vcQ +qWL bKM -bSh -bzt -bwb -bwT -bzt -bzt -bzt -bzt +hGT +mUV +hYl +lgb +mUV +mUV +mUV +mUV bHR bCh -bzt -bzt +mUV +mUV bHR bCh -bzt -bzt +mUV +mUV bRj -bLW -bQY -bRT -bRT -cGz -bVR -csY -bVO -bWP +tQy +ugU +hwz +hwz +gkQ +ppB +hqz +grC +lJO bXR bYx bYX @@ -59585,59 +59591,59 @@ aUA aSu cvr aPR -aFv +qMB bam -bao +nkD bbE -beP -bRw +oZK +pwd aoj -aUf -aVp -aVp -aSU -aSU -aVp -bou -bou -bqx -bom -bsm +hlv +igl +igl +soX +soX +igl +iod +iod +loB +gBA +hIU aWK -brm -bpN -bBb -bDE +xuT +vOE +hcF +kkV aWK -bDL +ema bGE -bIW +lNW bNF -bPz -bPK -bRx +vrO +gMM +nzq bNE -bTh -bUU -bYm +gMA +qrM +jhK bNE -bTh -bUU -bYm +gMA +qrM +jhK bNE -bTh -bUV -bYm +gMA +wKQ +jhK bNE dTs dTs -cQm -cGc -cfd +osL +wit +hIE doE doE -crr -crq +oVb +ekr dTs dTs dTs @@ -59649,52 +59655,52 @@ dTs dTs dTs dTs -rJA +cor cxT duc drN cDc -cJx -cfd +oHc +hIE doE cSR doE doE doE -cxU +pxP dTs dTs dTs bvA -cdf -cmO -cnS -coB +flI +pvQ +wjL +win cNo -cHo +sIV cLQ cLG cLI cLH -cUY -cVH -cVH -cXD +uCq +dfZ +dfZ +iXH bvA cDY -deV -uSv -uSv -aMU -aNz -saQ -lIt -lIt -lIt -lIt -lIt +grI +oTT +oTT +ofj +ivU +uzq +eqY +eqY +eqY +eqY +eqY dTs -lIt +eqY dTs dTs dTs @@ -59708,18 +59714,18 @@ dTs dTs dTs dTs -txr -ign -mZb -mZb -aPB +xXK +jPK +tMm +tMm +lXk aSx aQV aQV beT aQV aUi -qoJ +sqw aWh aWh aWh @@ -59751,59 +59757,59 @@ aQV aQV aQV aSY -bhg +jMz bhu -bhO -bil -bil -bil -bil -bil -bil -bil -bil -bhO -bil -bil -bil -bnh -bnJ -bil -bil -bil -bhO -bsw -bhT -buC -bhz -bxa +toT +hXw +hXw +hXw +hXw +hXw +hXw +hXw +hXw +toT +hXw +hXw +hXw +ylg +sZr +hXw +hXw +hXw +toT +eyX +jBd +kjC +vcQ +rBZ bhu bzu -bAp -bwc -bwT -bCT +mXS +pfa +lgb +kTW bzu bFL -bsi -bBo -bCi -bsi -bsi -bBo -bCi -bsi -bOb +vVQ +uUC +ghm +vVQ +vVQ +uUC +ghm +vVQ +bTy bOP dTs dTs -aig -awl -bQU -cah -bTM -cvf -bLW +tVA +krP +nXf +sbQ +jUX +huo +tQy bXS bYy bYY @@ -59819,59 +59825,59 @@ aUA aUM aWE aPR -aFw +diY ceA ceA -aSI -chG +prC +eVc ceA act -mKZ -aXD -aXD -aXD -aXD -blY +uZr +gny +gny +gny +gny +tvr bnG -bpe -bqx -bom -bsm +rWb +loB +gBA +hIU aWK aWK bwQ aWK aWK aWK -bDL +ema bGE -bIX +las bNF -bPC -bPL -bPL +vpH +tzF +tzF bNE -bTj -bUV -bTj +uUv +wKQ +uUv bNE -bTj -bUV -bTj +uUv +wKQ +uUv bNE -bTj -bUV -bTj +uUv +wKQ +uUv bNE dTs dTs -cWA -cTD -cfd +lBx +wDU +hIE doE cNQ doE -cxV +tGN dTs dTs dTs @@ -59883,49 +59889,49 @@ dTs dTs dTs dTs -csB +eDU doE doE cyQ doE -cJx -cfd +oHc +hIE doE doE doE doE doE -cxV +tGN dTs dTs dTs bvA -cks +rSO cmP cmS cmS cqH -cHo +sIV cLQ cLI cLK cLO -cUY -cVH -cVH -cXN +uCq +dfZ +dfZ +fvc bvA cDY -aMJ -uSv -uSv -aNe -aNz -saQ -lIt -lIt -lIt -lIt +kLW +oTT +oTT +vQy +ivU +uzq +eqY +eqY +eqY +eqY dTs dTs dTs @@ -59943,17 +59949,17 @@ dTs dTs dTs dTs -pRD -mZb -mZb -aPB +vMh +tMm +tMm +lXk aSx aSY aQg beT aQV aUi -abQ +ihP aWh aWh aWh @@ -59986,39 +59992,39 @@ aQV aQV aQV aQV -alX -bhP -bhP -bhP -bhP -bhP -bhP -mKW -mKW -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhA -bst -bhT -buC -bhz -bin +bUK +uQp +uQp +uQp +uQp +uQp +uQp +vMT +vMT +uQp +uQp +uQp +uQp +uQp +uQp +uQp +uQp +uQp +uQp +mXe +wWB +jBd +kjC +vcQ +mHv bhu -bzv -bzt -bwc -bwT -bzt -bzt -bxY +bAW +mUV +pfa +lgb +mUV +mUV +eeI bGU bzA bzA @@ -60027,25 +60033,25 @@ bGU bzA bzA bKq -bEp +nTs bOP dTs dTs dTs -aBZ -bQU -cdQ -bVf -cvf -bLW +iFd +nXf +luY +swu +huo +tQy bXS -djY -duP -duP -duP -dKv -dLd -dNm +wCS +jjC +jjC +jjC +iUp +wKR +liW bXQ dTs dTs @@ -60053,11 +60059,11 @@ aUA aSu aSu aPR -aFw +diY aPu ceA -aSI -chG +prC +eVc ceA awM awM @@ -60067,22 +60073,22 @@ aVB aVB awM awM -bpb -bqy -bom -bso +qUn +lQJ +gBA +qKh aYd -brn +rgf brY -bBc -bFf +gug +vRs aYd -bFl +uVa bGH -bJJ +lGb bNE bNF -bPM +mCL bNF bNE bTl @@ -60099,14 +60105,14 @@ bTl bNE dTs cxt -cPG -cTD -cfd +vDa +wDU +hIE doE doE doE -crr -crq +oVb +ekr dTs dTs dTs @@ -60122,8 +60128,8 @@ aee aee aee doE -cJx -cfd +oHc +hIE doE aee aee @@ -60134,31 +60140,31 @@ dTs dTs dTs bvA -cky +xyL cmS cnV cmS cNo -cHo +sIV cLQ cLI cLI cLO -cUZ -cVH -cVH -aMw +mvt +dfZ +dfZ +gGs aMI -dbc -aMJ -uSv -uSv -aNm -aNA -saQ -lIt -lIt -lIt +sKq +kLW +oTT +oTT +hcc +hWN +uzq +eqY +eqY +eqY dTs dTs dTs @@ -60177,17 +60183,17 @@ dTs dTs dTs dTs -txr -ign -mZb -aPB +xXK +jPK +tMm +lXk aSx aQV aQV beT aQV aUi -cEc +vvZ aWh aWh aWh @@ -60209,9 +60215,9 @@ aWh aWh aWh aWh -bAF -aVg -aRZ +fzH +hSz +tYz aQg aQV aQV @@ -60220,39 +60226,39 @@ aQV aQV aQV aQV -ams -bhP -bhP -bhP -bhP -bhP -jTF -bhP -bhP -bhP -bhP -mKW -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhA -bst -bhT -buC -bhz -bxb +uvU +uQp +uQp +uQp +uQp +uQp +imJ +uQp +uQp +uQp +uQp +vMT +uQp +uQp +uQp +uQp +uQp +uQp +uQp +mXe +wWB +jBd +kjC +vcQ +wew bhu -bzw -bzt -bwc +yfs +mUV +pfa bBm -bzr -bEg -bya +efv +wBo +ojr bGV bzB bzB @@ -60261,25 +60267,25 @@ bGV bzB bzB bKr -bEp +nTs bOP dTs dTs dTs -aFh -bQU -cdQ -bVf -cvf -bOM +quJ +nXf +luY +swu +huo +vJw bXS -dld -dBR -dBR -dBY -dBY -dBY -dNB +sPU +qLz +qLz +fkQ +fkQ +fkQ +nrY bXQ dTs dTs @@ -60287,11 +60293,11 @@ aUA aSu aSu aPR -aFw +diY axk ceA -aSI -chG +prC +eVc ceA ceA aVB @@ -60301,53 +60307,53 @@ bWO bjI oJW aVB -boW -bqy -bom -bsm +wJB +lQJ +gBA +hIU bbo -brn +rgf bwR brY -bFm +uIi aYd -bDL +ema bGE -bJK -bLa -bLa -bLa -bsS +dhJ +isR +isR +isR +ykx bsp -bLO +pOi btX -bNf -bNL -bLO +tyl +jYh +pOi btX -bNf -bNL -bLO +tyl +jYh +pOi btX -bIW +lNW bsp -cQm -cxu -cXm -cTD -cfd +osL +ydu +hOC +wDU +hIE doE doE doE doE -crr -cwB -cwB +oVb +wCB +wCB dTs dTs dTs dTs -cwB +wCB dTs dTs aee @@ -60356,8 +60362,8 @@ doE aee doE doE -cJx -cfd +oHc +hIE doE doE aee @@ -60373,15 +60379,15 @@ bvA bvA bvA bvA -cHp +eht cLQ cKM cLK cLO -cVa -cVH -cVH -aMF +gIl +dfZ +dfZ +gWC bvA bvA ddJ @@ -60390,8 +60396,8 @@ bvA ddJ bvA bvA -lIt -lIt +eqY +eqY dTs dTs dTs @@ -60412,16 +60418,16 @@ dTs dTs dTs dTs -pRD -abb -aPB +vMh +rfk +lXk aSx aQV aQV -wuV -eRL -aaA -aLa +pzK +dru +hkb +nDe aWh aWh aWh @@ -60443,9 +60449,9 @@ aWh aWh aWh aWh -bDO +tEV aVi -aVh +fMh aQg aQV aSY @@ -60454,39 +60460,39 @@ aQg aQV aQV aQV -cck -bhP -mKW -bhP -mKW -mKW -bhP -bhP -bhP -mKW -mKW -bhP -mKW -mKW -bhP -bhP -bhP -bhP -bhP -bhA -bst -btm -buC -bhz -bxc +phz +uQp +vMT +uQp +vMT +vMT +uQp +uQp +uQp +vMT +vMT +uQp +vMT +vMT +uQp +uQp +uQp +uQp +uQp +mXe +wWB +lyg +kjC +vcQ +mlT bhu -bzx -bzt -bwc +hfI +mUV +pfa bBm -bwU +gvi bEh -bzz +uHK bGV bzB bzB @@ -60495,37 +60501,37 @@ bGV bzB bzB bKr -bEp +nTs bOQ bOQ bOQ bOQ bOQ bRj -cdQ -csZ +luY +xBK bRj bMb bXS -bYB -dBR -dBY -dFD -iYy -dLe -dNF +wlC +qLz +fkQ +qsJ +rSB +hNt +pzr bXQ dTs -aSN +qzc aUA aUB aWf aPR -aFw +diY axk ceA -aSI -chG +prC +eVc ceA ceA aVB @@ -60534,67 +60540,67 @@ aZK bdM aZL aXM -bov -bou -bqx -bom -bsh +kDP +iod +loB +gBA +gYb bbo -brI +hvH bza brY -bFn +dNA aYd -bDL -bGI -bJL -bLa -bLa -bJL +ema +mGl +oGh +isR +isR +oGh bJa bLN btX -bMX -bLa -bJL -bLa -bOH -bsS -bQA -bLa -bJL -bIW +qSx +isR +oGh +isR +kYh +ykx +ooP +isR +oGh +lNW bLN -cQm -cKO -cUh +osL +ciY +dZx cZb cGH -cYk -cYk -cYk -cYk -cRL -cRL -cRL -dly +sOm +sOm +sOm +sOm +mmB +mmB +mmB +jdS cIi cRM cTu cuz -crr -cwB -csD +oVb +wCB +odG doE -cyB -cYk -cYk -cYk +tEg +sOm +sOm +sOm cBU cGH -cYk -cYk -cBV +sOm +sOm +hQI doE dTs dTs @@ -60604,25 +60610,25 @@ dTs dTs dTs bvA -cnZ +ieb coC coC -cHo +sIV cLQ cLI cLI cLO -cUZ -cVI -cVH -cXD -cYC -dbd +mvt +jAd +dfZ +iXH +wzv +iAl ddK -deW -aMN -aNo -aNJ +uTa +itF +hsP +pLx bvA dTs dTs @@ -60646,16 +60652,16 @@ dTs dTs dTs dTs -txr -ign -aPB +xXK +jPK +lXk aSx aSY aQg aUi -aUD -aVg -acJ +rZw +hSz +qsX aWh uHT aWh @@ -60677,9 +60683,9 @@ aWh aWh uHT aWh -bFg +ifT aVi -aVh +fMh aQg aQV aSY @@ -60688,39 +60694,39 @@ aQg aQV aQV aQV -cck -bhQ -bhP -mKW -bhQ -bhP -bhP -bhQ -bhP -bhP -bhQ -bhP -bhP -eKN -jTF -mKW -eKN -bhP -bhP -brC -bst -bhT -buC -bhz -bxd +phz +uIT +uQp +vMT +uIT +uQp +uQp +uIT +uQp +uQp +uIT +uQp +uQp +tOM +imJ +vMT +tOM +uQp +uQp +myg +wWB +jBd +kjC +vcQ +thA bhu -bzy -bzt -bwc -bwT -bzt -bzt -bxY +foc +mUV +pfa +lgb +mUV +mUV +eeI bGV bzB bzB @@ -60729,37 +60735,37 @@ bGV bzB bzB bKr -bEr +oQH bOR -bPT -bQZ -bRU +rdb +ePI +jVg bOR -bTG -ceI -ctb -bTG -bWR +dYj +tFe +vFs +dYj +wzw bXS bXS -bZb -dCy +fzc +kAo bXS bTu bTu bTu bXQ dTs -aSN +qzc aUA aSu aSu aPR -aFw +diY axk ceA -aSI -chG +prC +eVc ceA ceA aVB @@ -60769,45 +60775,45 @@ bdT bjR aXM aVB -bpe -bqx -bou -bou -bcJ +rWb +loB +iod +iod +wug brY bzb brY -bFo +sTc aYd -bDL -bGL -bJM -bLb -bLb -bJM +ema +oHZ +ish +hcq +hcq +ish bsT bsT bsT -bNd -bNh -bNM -bNh -bNh -bNh -bQE -bNh -bTq -bTv +egw +xDL +qOv +xDL +xDL +xDL +vQm +xDL +xXz +tEt btX -cQm -cKO -cGb -cfq -cfq -cfq -cfq -cfq -cGF +osL +ciY +xcN +xRj +xRj +xRj +xRj +xRj +uzE cIi cRM cRM @@ -60820,15 +60826,15 @@ doE doE doE doE -cJx +oHc cGx -cfq -cfq -cfq -cfq -cfq +xRj +xRj +xRj +xRj +xRj cIv -cfd +hIE doE dTs dTs @@ -60838,25 +60844,25 @@ dTs dTs dTs bvA -coa +ock coW coW -cHo +sIV cLQ cLI cLI cLO -cUY -cVI -cVH -cXD -cYG -dbe +uCq +jAd +dfZ +iXH +itO +nCw ddL -deW -aMQ -aNo -aNK +uTa +tCQ +hsP +sdk bvA dTs dTs @@ -60879,41 +60885,41 @@ dTs dTs dTs dTs -ogc -ogc -pRD -aPB +jMa +jMa +vMh +lXk aSx aQV aQV aUi -aUD -aVh -aQY -oCD -bpT -aWi -blD -bpu -bpT -aWi -blD -bpu -bpT -nJZ -adb -oCD -bpT -aWi -blD -bpu -bpT -aWi -blD -bxj -aQY -aUD -aVh +rZw +fMh +iXE +inv +kNh +yff +tLd +nEv +kNh +yff +tLd +nEv +kNh +stZ +sQR +inv +kNh +yff +tLd +nEv +kNh +yff +tLd +hBJ +iXE +rZw +fMh aQg aQV aQV @@ -60922,39 +60928,39 @@ aQV aQV aQV aQV -cck -bhT -bhP -mKW -bhP -bhP -bhP -arV -mKW -bhP -mKW -bhP -bhP -bhP -bhP -mKW -jTF -mKW -bhP -bhA -bEO -bHp -bJs -bhz -bwY +phz +jBd +uQp +vMT +uQp +uQp +uQp +ggC +vMT +uQp +vMT +uQp +uQp +uQp +uQp +vMT +imJ +vMT +uQp +mXe +lgd +fuU +wCX +vcQ +pZR bhu bzu -bzt +mUV bHR bCh -bCT +kTW bzu -bxY +eeI bGV bHS bHS @@ -60963,37 +60969,37 @@ bGW bHS bHS bKr -bEp +nTs bRk -bPU -bRX -bRV +hfX +mac +suC bRk -caB +gFI bUp cOp -ctc -ddP -bXT -bWR -ctg -cti -bTG -ddP -bTG -bTG -bWR -bTG -ahp +qNW +tDV +pYF +wzw +diQ +xYP +dYj +tDV +dYj +dYj +wzw +dYj +xJA cfl aSu cvr aPR -aFw +diY axk ceA -aSI -chG +prC +eVc ceA ceA aVB @@ -61003,45 +61009,45 @@ bdU aZL bmW awM -bpf -bqA -bom -bsl +fsO +gEO +gBA +uhp bbo -btW +psA brY brY -bFp +lWN aYd -bFi -aQm -bIX -bLc -bDI -btZ -btZ +kay +dFz +las +dav +eEQ +wmP +wmP bsp -bLP +dra bNe -bJH -btZ -btZ -bDI -btZ -bBe -bSm +tUZ +wmP +wmP +eEQ +wmP +nKD +woA bGz -bIW +lNW bsp -cQm -cGI -cGM -cxU -cwz +osL +dwq +oyj +pxP +ukN doE doE doE -cLP +tIU cUl crx crx @@ -61054,15 +61060,15 @@ doE doE doE doE -dHa -cPV +vke +kkC doE doE doE doE doE -cJx -cfd +oHc +hIE doE dTs dTs @@ -61072,25 +61078,25 @@ dTs dTs dTs bvA -cob +toW coY coY -cHo +sIV cLQ cLI cLG cLH -cUY -cVI -cVH -cXD -cYC -dbf +uCq +jAd +dfZ +iXH +wzv +tLO ddL -deW -aMR -aNo -aNK +uTa +knB +hsP +sdk bvA dTs dTs @@ -61112,42 +61118,42 @@ dTs dTs dTs dTs -ogc -ogc -wEy -moq -aPB +jMa +jMa +jBa +poB +lXk aSx aQV aQV aUi -aUE -aVj -aQX -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aQX -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aQX -aVj -aVG +jvl +qkH +dPv +qkH +qkH +qkH +qkH +qkH +qkH +qkH +qkH +qkH +qkH +qkH +dPv +qkH +qkH +qkH +qkH +qkH +qkH +qkH +qkH +qkH +dPv +qkH +sFF aQg aQV aQV @@ -61156,39 +61162,39 @@ aQV aQV aQV akU -cck -bhR -bhP -bhP -nji -bhP -bhP -bhR -bhP -jTF -nji -bhP -mKW -bhR -bhP -mKW -bhR -bhP -bhP -brD -bEO -bIh -bJt -bLx -bON +phz +swZ +uQp +uQp +jcM +uQp +uQp +swZ +uQp +imJ +jcM +uQp +vMT +swZ +uQp +vMT +swZ +uQp +uQp +xCW +lgd +gCb +ftH +ycJ +fZJ bhu -bsi -bsi +vVQ +vVQ bFN bJg -bsi -bsi -bzC +vVQ +vVQ +hvU bGV bzB bzB @@ -61197,37 +61203,37 @@ bzB bzB bzB bKr -bEp +nTs bRk -cdi -bRb -bRW -bSW +gKt +cKz +vvX +nUs bTH cHG cOq cUW -det -det -det +wwo +wwo +wwo cOq dCz -caB -dKx -dKx -dKx -caB -cdO -cim +gFI +wjv +wjv +wjv +gFI +rxm +rVc cfl bkk aWE aPR -aFw +diY axk ceA -aSI -chG +prC +eVc ceA awM awM @@ -61237,20 +61243,20 @@ awM awM awM awM -bpb -bqA -bom -bsb +qUn +gEO +gBA +rNx aYd -bue +sSz bzc -bBd -bFw +oVB +pUt aYd -bDL -aQH -bIX -bIX +ema +kyT +las +las bJU bJV bJV @@ -61270,12 +61276,12 @@ bBL bBL dTs cwG -cxV -csC -cwz +tGN +qpe +ukN doE doE -cLP +tIU cUl crx crx @@ -61288,15 +61294,15 @@ cMF doE cJd cJd -cJg -cOZ +fNG +oYE cJd cJd doE doE doE -cJx -cfd +oHc +hIE dTs dTs dTs @@ -61306,25 +61312,25 @@ dTs dTs dTs bvA -coe -cpc +rQV +haz cmS -cHo +sIV cMd cLc cOc cQk -cVh -cVI -cVH -cXD -cYH -dbh -dbh -deX -aMS -aMS -dbh +rbi +jAd +dfZ +iXH +fEo +kPY +kPY +wXA +gMw +gMw +kPY bvA dTs dTs @@ -61350,38 +61356,38 @@ aOc aOc aOc aOc -pzk +xIu aSx aSY aQg -mjR -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp -iKp +tca +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV +nfV aQg aQV aQV @@ -61390,36 +61396,36 @@ aQV aQV aQV aQV -cck -bhP -bhP -bhP -mKW -mKW -bhP -mKW -jTF -bhP -bhP -bhP -bhP -mKW -bhP -bhP -bhP -bhP -bhP -bhA -bst -bhT -bJt -bLx -bDo -cZq +phz +uQp +uQp +uQp +vMT +vMT +uQp +vMT +imJ +uQp +uQp +uQp +uQp +vMT +uQp +uQp +uQp +uQp +uQp +mXe +wWB +jBd +ftH +ycJ +kIG +qnP bzA bzA -bBp -bBp +uHb +uHb bzA bzA bzA @@ -61431,37 +61437,37 @@ bzB bzB bzB bKr -bEp +nTs bRk -cfm -bRc -bRX +qqr +jzm +mac bRk -bUr -cLX -cLX +llq +vgM +vgM cUX cOo -cLX -cLX -cLX -cLX -cLX -cLX -cLX -cLX -cLX -cdP -cin +vgM +vgM +vgM +vgM +vgM +vgM +vgM +vgM +vgM +pQG +rIr cfl bkj aSu aPR -aFw +diY axk ceA -aSI -chG +prC +eVc ceA bnv aVM @@ -61471,45 +61477,45 @@ beo bjS aYE axF -bpq -bqy -bom -bsn +sQS +lQJ +gBA +fXF aYd bbo bzd bbo bbo aYd -bDL -aQH -bIX -bIW +ema +kyT +las +lNW bJV -bMr -bNI -bQC -bSB +xqi +kXQ +pAw +ihg bWt -cdg +mnN bJU -bBO -bYs -caq +hcQ +hGp +eKk bBL -ccv +qKQ ciL -cKX -cPF +sJA +xVW bBL dTs dTs -crr +oVb dTs dTs -cwz +ukN doE -cLP +tIU dlb cMJ cMJ @@ -61521,16 +61527,16 @@ dFo cAd czv cJd -cOd -cJg -cNZ -cPi +jUU +fNG +oyu +fqE cJd doE cBW doE -cJx -cfd +oHc +hIE dTs dTs dTs @@ -61541,7 +61547,7 @@ boP boP boP bvA -cpf +lWM cqK bvA cMd @@ -61549,16 +61555,16 @@ cLd cOy cRX aMu -aMv -cVI -cXI -cYI -dbi -dbi -deY -dfA +oxX +jAd +mNc +rjg +qfX +qfX +eNr +fbG cXK -cXD +iXH bvA dTs dTs @@ -61584,7 +61590,7 @@ aPD byX iqK aOc -aSa +cZr aSx aQV aQV @@ -61624,36 +61630,36 @@ aQg aQV aQV aQV -cck -bhP -bhP -bhP -bhP -bhP -bhP -bhP -mKW -bhP -bhP -mKW -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhA -bst -bhT -bJt -bLx -bhz -cwr +phz +uQp +uQp +uQp +uQp +uQp +uQp +uQp +vMT +uQp +uQp +vMT +uQp +uQp +uQp +uQp +uQp +uQp +uQp +mXe +wWB +jBd +ftH +ycJ +vcQ +vGN bzB bAq -bBp -bBp +uHb +uHb bAq bzB bzB @@ -61665,37 +61671,37 @@ bzB bzB bzB bKr -bEp +nTs bRk -bPX -tdf -bRY +ndN +djE +kYM bOR -bTG -bTG -bTG -ctf -bZc -bTG -bYC -bTG -ddP -ddP -dKz -bTG -ddP -bTG -bYC -cio +dYj +dYj +dYj +qKR +fBj +dYj +lQA +dYj +tDV +tDV +oBa +dYj +tDV +dYj +lQA +iZd cfl bkj aSu aPR -aFw +diY aPu ceA -aSI -chG +prC +eVc ceA ceA aVM @@ -61705,36 +61711,36 @@ bes bkG bmX aVM -boW -bqy -bom -bsh +wJB +lQJ +gBA +gYb bsp -bsS -bvy -bsS -bsS -bsS -bFr -aQH -bIX -bIW +ykx +jzt +ykx +ykx +ykx +rBc +kyT +las +lNW bJV -bMs +kAU bNJ bNi bNi bWt -cfN +iGa bJU -eVo +xur bYt bYt caY bYt ciL -cKX -cQV +sJA +hIp bBL dTs dTs @@ -61743,7 +61749,7 @@ dTs dTs dTs doE -cLP +tIU cIi cRM cRM @@ -61755,16 +61761,16 @@ dFo cru doE cJd -cJg -cNZ -cJg -cJg +fNG +oyu +fNG +fNG cJd doE doE doE -cJx -cfd +oHc +hIE dTs dTs dTs @@ -61775,16 +61781,16 @@ boP ckY clj bvA -cpg +tEE cmS -cHo +sIV cMd cLd cLI cLO -cUY -cVH -cVI +uCq +dfZ +jAd cXK cYJ cYJ @@ -61792,7 +61798,7 @@ cXK deZ cXK cXK -cXN +fvc bvA dTs dTs @@ -61818,7 +61824,7 @@ aPD aPD iqK aau -aSa +cZr aSx aQV aQV @@ -61858,36 +61864,36 @@ aQg aQV aQV aQV -cck -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -mKW -mKW -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhA -bEO -bDo -bJt -bLx -bhz -cwr +phz +uQp +uQp +uQp +uQp +uQp +uQp +uQp +uQp +uQp +vMT +vMT +uQp +uQp +uQp +uQp +uQp +uQp +uQp +mXe +lgd +kIG +ftH +ycJ +vcQ +vGN bpJ bAr -bBq -bBq +byi +byi bAr bpJ bpJ @@ -61899,7 +61905,7 @@ bpJ bpJ bzB bKr -bEr +oQH bOR bRk bRk @@ -61907,29 +61913,29 @@ bRk bOR bTI bTI -bTG +dYj bVS bWT -bTG +dYj bTI -bTG -bTG -bTG +dYj +dYj +dYj bTI -bTG -bTG -bTG +dYj +dYj +dYj bTI -cio +iZd cfl bkk aWE aPR -aFw +diY axk ceA -aSI -chG +prC +eVc ceA ceA aVM @@ -61938,37 +61944,37 @@ aZM bfk bkH aYE -boN -bou -bro -brZ -brZ -bsq +sst +iod +gmV +vlf +vlf +jdR bsT -bvG -byb -byb -byb -byb -bGO -bJR -bIW +eCZ +euO +euO +euO +euO +rhA +tqR +lNW bJV -bMy +pdE bNP bNi bNi bWt -cqj +wBt bJU -bGx -bYv -car +loZ +hFx +dDE bBL -ccY +myX ciL -cKX -cPF +sJA +xVW bBL dTs dTs @@ -61976,8 +61982,8 @@ dTs dTs dTs dTs -cwz -cLP +ukN +tIU cUl crx crx @@ -61990,15 +61996,15 @@ doE cJd cJd cJd -cJg -cOZ +fNG +oYE cJd cJd cJd doE doE -cJx -cfd +oHc +hIE dTs dTs dTs @@ -62011,22 +62017,22 @@ clj cof cmS cmS -cHo +sIV cMd cLd cLI cLH -cUY -cVI -cVI -cXL -cYL -dbj -cYL -cYL -cph +uCq +jAd +jAd +mcm +cfI +mYI +cfI +cfI +ewR cXK -dgg +pbw bvA dTs dTs @@ -62047,43 +62053,43 @@ acu dTs dTs aOc -aPE -aPE -pDd -aPE +vzZ +vzZ +hND +vzZ aau -aSa -eZN -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -eRL -uHx +cZr +gDg +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +dru +hjD aQV aQV -wuV -eRL -eRL -eRL -eRL +pzK +dru +dru +dru +dru aQg aQV aQV @@ -62091,37 +62097,37 @@ aQV aQV aQV aSY -bhf +owr buI -bhS -bim -bim -bim -bim -bim -bim -bim -bim -bhS -bim -bim -bim -bim -bim -bim -bDk -bDk -bEB -bFI -iXt -bJt -bLx -bhT -cZq +phK +vcg +vcg +vcg +vcg +vcg +vcg +vcg +vcg +phK +vcg +vcg +vcg +vcg +vcg +vcg +gzm +gzm +gRZ +kUV +hui +ftH +ycJ +jBd +qnP bpK bpK -bBq -bBq +byi +byi bpK bpK bpK @@ -62133,37 +62139,37 @@ bLh bsC bMH bNj -bFM -bfV -bOT -bOT -bOT -bOT -bfV -bOT -bOT +dah +sNJ +fWS +fWS +fWS +fWS +sNJ +fWS +fWS bVT bWU -bOT -bfV -bOT -bOT -bOT -bfV -bOT -bOT -bOT -bfV -cip +fWS +sNJ +fWS +fWS +fWS +sNJ +fWS +fWS +fWS +sNJ +pDT cfl bkj aSu aPR -aFw +diY axk ceA -aSI -chG +prC +eVc aUh ceA aVM @@ -62173,36 +62179,36 @@ aZM aZM aYE aVM -bpe -brp -bou -bom -bsQ +rWb +tOB +iod +gBA +vpS btX -bvH -bBe -bBe -bBe -bBe -bHg -bKh -bIW +mLa +nKD +nKD +nKD +nKD +pRe +jup +lNW bJV bNi bNi bQG bNi bWA -cqk +eCv bJU bBL bBL bBL bBL -cdd +fji ciL -cKX -cQW +sJA +lJF bBL dTs dTs @@ -62211,7 +62217,7 @@ dTs dTs dTs dTs -cLP +tIU cUl crx crx @@ -62222,17 +62228,17 @@ crx dFo doE cJe -cJg -cOe -cNZ -cJg -cJg -cJg +fNG +enL +oyu +fNG +fNG +fNG cJe doE doE -cJx -cfd +oHc +hIE dTs dTs dTs @@ -62243,24 +62249,24 @@ boP clj clj bvA -cph +ewR cmS -cHo +sIV cMd cMe cOA cLO -cUY -cVI -cVI -cXM -cZl -dbk -dbk -dfa -dfz +uCq +jAd +jAd +uHo +pPL +ohb +ohb +xJR +wLY cXK -dgg +pbw bvA dTs dTs @@ -62281,43 +62287,43 @@ acu dTs dTs aOc -aOK -rFz -aPF -aRc +tWu +uYV +gyF +dsu aOc -aUE -aQX -aQX -aQX -aQX -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aQX -aQX -aVg -aVg -aQX -aQX -aQX -aQX -aQX -aRZ -gBQ -dez -pHs -baW -aUC -aQX -aQX -aRZ +jvl +dPv +dPv +dPv +dPv +hSz +hSz +hSz +hSz +hSz +hSz +hSz +hSz +hSz +dPv +dPv +hSz +hSz +dPv +dPv +dPv +dPv +dPv +tYz +dkr +cWT +hzf +uLj +gjl +dPv +dPv +tYz bfn aQW aQW @@ -62325,44 +62331,44 @@ aQW aQW aQW bgN -aSa +cZr bhu -bhN -bin -anf -bjd -bhT -biH -bhT -bhT -bkT -bhT -bhT -biH -bhT -bjd -biH -bhT -bDo -bEz -bjd -bhT -btm -bJt -bLx -bwX +wLt +mHv +oID +sYi +jBd +xrL +jBd +jBd +xiM +jBd +jBd +xrL +jBd +sYi +xrL +jBd +kIG +uzv +sYi +jBd +lyg +ftH +ycJ +qWL bhu -bsj -bsj +nXm +nXm bBr bCj -bsj -bsj -bsj -bsj -bsj -bsj -bCX +nXm +nXm +nXm +nXm +nXm +nXm +lac brQ bpJ bpJ @@ -62376,8 +62382,8 @@ bOU bOU bOU bOU -bVU -bWV +vee +eEs bOU bOU bOU @@ -62393,11 +62399,11 @@ cwq bkj aSu aPR -aFw +diY axk ceA -aSI -chG +prC +eVc ceA ceA axF @@ -62407,36 +62413,36 @@ aYE aYE bnb axF -bpf -bou -bou -bsl +fsO +iod +iod +uhp bsp -btZ -btZ -btZ -btZ -bDI -bFs -bIR -bKK -bIX -bKO +wmP +wmP +wmP +wmP +eEQ +ktt +ljg +wHS +las +wQH bNi bNi bQH bTw bWB -cqm +jnT bJU -bBO -bYs -caq +hcQ +hGp +eKk bBL -ccv +qKQ ciL -cKX -cQX +sJA +uTy bBL dTs dTs @@ -62445,7 +62451,7 @@ dTs dTs dTs dTs -cLP +tIU dlb cMJ cMJ @@ -62456,17 +62462,17 @@ crz dFo doE cJe -cNv -cOn -cOC -cPd -cNv -cOn +xEI +uuz +eRP +ndI +xEI +uuz cJe doE doE -cJx -cfd +oHc +hIE dTs dTs dTs @@ -62477,24 +62483,24 @@ bxF clj cmV bvA -cpf +lWM cqQ -cHo +sIV cLQ cMe cLI cLO -cUY -cVI -cWo -cXD -cYC -dbm +uCq +jAd +nss +iXH +wzv +iGV ddL -deW -dfz +uTa +wLY cXK -dgg +pbw bvA dTs dTs @@ -62515,60 +62521,60 @@ acu dTs dTs aOc -aQG -bhL -aPF -bzU +dmj +hhH +gyF +lwu aOc aau -aPF -aSC +gyF +rKX aau aOc -aUH -aVk -aVk -aVk -aVk -adq -aeg -aVk -bhh -sUF -afy -aUD -aVh -anh -sUF -sUF -sUF -sUF -sQE -bcC -pHs -pHs -baW -aSa -anh -sUF -aUH -bfo -bfo -bfo -bfo -bfo -bfo -bfo -bhh +tJw +bne +bne +bne +bne +wDe +vMj +bne +ioS +ksC +gbe +rZw +fMh +lLC +ksC +ksC +ksC +ksC +gvB +qEo +hzf +hzf +uLj +cZr +lLC +ksC +tJw +hda +hda +hda +hda +hda +hda +hda +ioS bht bht bht bht bht -aoY -bhT -bhT -asf +veB +jBd +jBd +idp bht bht bht @@ -62582,21 +62588,21 @@ bLz brF brF bLz -bJx -bLC +faj +nIX bLz brF brF -bAs +otw bBs bCk -bAt -bAt -bAt -bAt -bHT +fjq +fjq +fjq +fjq +ugq bJh -bDK +hQO brQ bpJ bpJ @@ -62610,8 +62616,8 @@ bkj bRe bkj bkj -bVU -bWV +vee +eEs bkj bRe bkj @@ -62627,11 +62633,11 @@ cws bkj aSu aPR -aFw +diY axk ceA -aSI -chG +prC +eVc ceA axF axF @@ -62642,8 +62648,8 @@ aVM axF axF bnG -bou -brs +iod +gDQ bnG aNH aNH @@ -62651,26 +62657,26 @@ aNH aNH aNH aNH -bDL +ema bNe btX -bIW +lNW bJV -bNv -bNv -bQI -bUM +hyd +hyd +pII +mhl bNi -cdg +mnN bJU -bFx +rxI bYt bYt caY bYt ciL -cKX -cQY +sJA +kAE bBL dTs dTs @@ -62679,28 +62685,28 @@ dTs dTs dTs dTs -cyG -cMM -cql -cql -czZ +hcd +sGZ +nQA +nQA +fMB cUo crx crx dFo doE cJd -cNS -cOt -cOD -cPe -cNU -cPk +phA +mqo +hAT +drn +nVL +buy cJd doE doE -cJx -cfd +oHc +hIE dTs dTs dTs @@ -62711,24 +62717,24 @@ bLR clj cmY bvA -cpf +lWM cvS -cHs +ePR cLQ cMe cLG cLO -cUY -cVJ -cVI -cXD -cYC -dbe +uCq +gPy +jAd +iXH +wzv +nCw ddL -deW -cpf +uTa +lWM cXK -cXD +iXH bvA dTs dTs @@ -62750,87 +62756,87 @@ dTs dTs aOc aUj -bri -aPF -aRd -aRC -aSe -rFz -rFz -bzU +sJu +gyF +inS +nxZ +kPc +uYV +uYV +lwu aOc -iZY -saS -iZY -mZb -sCW -mZb -mZb -mZb -aeY -mZb -aQj -qDl -aVG -wpr -qlr -mZb -mZb -mZb -aPB +sXF +hnh +sXF +tMm +lrV +tMm +tMm +tMm +eVV +tMm +rOp +eXl +sFF +vyu +hSb +tMm +tMm +tMm +lXk aSx aSY aQg aUi -aSa -wpr -mZb -nnv -ign -mZb -nnv -cSn -ign -mZb -mZb -nnv +cZr +vyu +tMm +nCP +jPK +tMm +nCP +eov +jPK +tMm +tMm +nCP dTs dTs dTs dTs lcj -apb -arp -arp -asg +dxo +mdL +mdL +taE bht dTs dTs dTs dTs bni -bnL -boz -bpv -bqH -brG -bsy -btp -bJx -bvY -bxf -bys +lBQ +vQA +oyq +jrx +sfR +syN +hpN +faj +vmH +pnU +dKy bLz -bAt -bwe -bmf -bAt -bAt -bAt -bAt -bAt -bAt -bDK +fjq +hVg +rfP +fjq +fjq +fjq +fjq +fjq +fjq +hQO brQ bpJ bpJ @@ -62844,8 +62850,8 @@ bMI bRf bMI bMI -bVV -bML +hyV +eKu bMI bRf bMI @@ -62861,28 +62867,28 @@ cfR bMI aSu aPR -aFw +diY axk ceA -aSI -chG +prC +eVc ceA ceA -bPA -bnC -bnC -bnC -bnC -cjO -cjO -cjO -ccm -aUu -cjO +fZh +wVT +wVT +wVT +wVT +paA +paA +paA +mPA +fVC +paA aNH -jci -boq -aOC +rIf +rPC +kVO aTR aNH byU @@ -62891,20 +62897,20 @@ bGJ byU aNH bJU -bNQ -bQM -bVI +kue +rKJ +byF bNi -cdg +mnN bJU -bGx -bZu -car +loZ +lGo +dDE bBL -ccY +myX ciL -cKX -cPF +sJA +xVW bBL dTs dTs @@ -62916,7 +62922,7 @@ dTs dTs dTs dTs -cwz +ukN doE cuM crx @@ -62924,17 +62930,17 @@ crx dFo doE cJe -cNv -cOn -cOE -cPe -cNv -cOn +xEI +uuz +sec +drn +xEI +uuz cJe doE doE -cJx -cfd +oHc +hIE doE dTs dTs @@ -62942,27 +62948,27 @@ boP boP boP boP -clq +ury boP bvA -cpf +lWM cwj -cHt +rqS cLQ cLd cLI cLH -cUY -cVK -cVH -cXD -cYC -dbC +uCq +hlg +dfZ +iXH +wzv +hPN ddL -deW -cpf +uTa +lWM cXK -aNN +sYY bvA dTs dTs @@ -62983,18 +62989,18 @@ acu dTs dTs aOc -aPE -bsa -aPF -rFz -aPF -aPF -rFz -rFz -aRc +vzZ +wZi +gyF +uYV +gyF +gyF +uYV +uYV +dsu aau -ign -iZY +jPK +sXF aVI aVI aVI @@ -63004,67 +63010,67 @@ aVI aVI aVI aWM -aWO -afW +qdW +rQS aWM aVI aVI aVI aiZ -agx +vxO apz aqg aqg asa -bdV -bep -nnv -fqj -txr -cSn +qPk +jvH +nCP +cAw +xXK +eov dTs dTs -txr -cSn -cSn +xXK +eov +eov dTs dTs dTs dTs lcj anJ -xss -xss -xss -xss +xcV +xcV +xcV +xcV anJ lcj dTs dTs dTs bni -bnM -boA -bDi -bDi -boA -boA -boA -bJx -bMc -bMc -bvY -bzD -btD +phk +eMa +rMI +rMI +eMa +eMa +eMa +faj +haM +haM +vmH +qoG +wGG bUm bpF -bWa -bWa -bWa -bBD -bAt -bAt -bDK +sSg +sSg +sSg +wLC +fjq +fjq +hQO brQ bpJ bpJ @@ -63078,8 +63084,8 @@ bOV bOV bOV bOV -bVV -bML +hyV +eKu bOV bOV bOV @@ -63095,35 +63101,35 @@ cwA bMI aSu aPR -aFw +diY axk ceA -aSI +prC bfs -ceB -ceB -bnz -beO -beO -beO -beO -beO -beO -beO +mPS +mPS +upn +xGR +xGR +xGR +xGR +xGR +xGR +xGR aSK -aSL -cjO +lXh +paA aNH -aTy -aOC -aOC +lQd +kVO +kVO aTR aNH -bvS +jKj bBV bvD -bHN -bKQ +sHc +ezT bNw bNw bNw @@ -63149,8 +63155,8 @@ dTs dTs dTs dTs -csA -csD +nyw +odG doE cuM cvJ @@ -63158,38 +63164,38 @@ crz dFo doE cJe -cNU -cOt -cOE -cPe -cNU -cPl +nVL +mqo +sec +drn +nVL +igG cJe doE doE -cJx -cfd +oHc +hIE doE dTs dTs boP -boQ -boR -bLS -bLS -cna +mBW +pqX +myz +myz +rMc bvA -cpf +lWM coC -cHT +ezB cLQ cLd cLI cLO -cUZ -cVI -cVH -cXN +mvt +jAd +dfZ +fvc bvA bvA ddM @@ -63217,49 +63223,49 @@ acu dTs dTs aOc -aOK -aPF -aPF -aPF -rFz -rFz -aPF -aPF -aRc +tWu +gyF +gyF +gyF +uYV +uYV +gyF +gyF +dsu aau -txr -ign +xXK +jPK aVI -azf -aYu -aYu -aYu -aYu -aZx -aYu -aWk -bdE -bdE -aXK -aYu -baQ +mAk +ttG +ttG +ttG +ttG +vAp +ttG +taK +hjF +hjF +fHv +ttG +sXC aVI aiZ -aIa +jhd apz aqg aqg asa -bdW +snX aiZ -ndF -ogc +mcn +jMa dTs dTs dTs dTs dTs -ogc +jMa dTs dTs dTs @@ -63277,66 +63283,66 @@ dTs dTs dTs bni -bnN -bDi -bEo -bDi -bDi -bDi -bDi -buK -bMc -bMc -bvY -bvY -bJj -cbT -bJj -cbT -bJj +hsO +rMI +kPX +rMI +rMI +rMI +rMI +cRU +haM +haM +vmH +vmH +poS +pkZ +poS +pkZ +poS bpF -bBP -bAt -bAt -bDK +iqA +fjq +fjq +hQO brQ bsC bMH bNj -bFO -bkc -bkc -bkc -bkc -bkc -cuu -bkc -bkc -bVW -bWW -bkc -bkc -bkc -bkc -bkc -cuu -bkc -bkc -bkc -cuv -ciM +iiZ +ncK +ncK +ncK +ncK +ncK +ryn +ncK +ncK +vMz +eRZ +ncK +ncK +ncK +ncK +ncK +ryn +ncK +ncK +ncK +mXz +lsc cxc bMI aSu aPR -aFw +diY aPu ceA -bbG -bao -bao -bao -bnB +geD +nkD +nkD +nkD +mYV aSK aSK aSK @@ -63344,27 +63350,27 @@ aSK aSK aSK aSK -bqd -aTU -cjO +rOv +gpX +paA aNH -aTy -aOC -aOC +lQd +kVO +kVO aTR aNH -bAa +kYl bBV bHu bvD -bKR +vCo bNw -bNS -bRE -bVJ +uYl +gXe +qMy bRF -cyH -cJr +oog +qfq bNw bZJ bZJ @@ -63383,7 +63389,7 @@ dTs dTs dTs dTs -cyL +xje doE cNQ cuM @@ -63392,45 +63398,45 @@ crx dFo doE cJd -cNY -cOn -cOD -cPf -cNv -cPm +oiN +uuz +hAT +hUD +xEI +wBH cJd doE doE -cJx -cfd +oHc +hIE doE dTs dTs boP boP boP -bLS -bLS -cna +myz +myz +rMc bvA -cpf +lWM coW -cHo +sIV cLQ cLd cOF cLO -cUY -cVI -cVH -cXD +uCq +jAd +dfZ +iXH bvA dbI deo dfb -dcc +xsv dfH -cVU +ekT cZB dTs dTs @@ -63451,40 +63457,40 @@ acu dTs dTs aOc -aOO -byP -aPI -aRf -gUz -aRD -aRD -aTg -aTh +dNM +jfW +jMj +mxy +haU +qCH +qCH +jyn +olp aOc -ogc -txr +jMa +xXK aVI -aNs -aWl -aWl -aWl -bdE -aeZ -afq -aWl -bkV -afq -aYK -aWl -baR +tQa +qTG +qTG +qTG +hjF +kNQ +nhh +qTG +jkb +nhh +uhT +qTG +kwN aWM aiZ -aIa +jhd apz aql ara ahx -ahk +jIF aim dTs dTs @@ -63511,33 +63517,33 @@ dTs dTs dTs bni -bnO -boB -bpx -bqI -brH -bsz -btq -bJx -mEC -bxg -boB +usT +jvt +juK +wzI +eJR +jKE +fQZ +faj +hUb +wCs +jvt bLz -bAv -bUq -bUq -bUq -bEj -bwe -bBP -bAt -bAt -bDK +mdi +lLF +lLF +lLF +qfl +hVg +iqA +fjq +fjq +hQO brQ bpJ bMI bNm -bGu +duL cjH cjH cjH @@ -63545,60 +63551,60 @@ cjH cjH cjH cjH -bOY +tIA bVX bWX -bXV -bYD -bYD -bVk +jFY +tuY +tuY +hOr bOX bOX bOX bOX bOX cdR -cuo +uNu cxc cfP aWE aPR -aFw +diY axk ceA ceA bft ceA ceA -bPA -aTH -bqd -bqd -bqd -bqd -bqd -aTU -bvJ -bRw +fZh +rrJ +rOv +rOv +rOv +rOv +rOv +gpX +piK +pwd aNH aNH aNH -bor +jqW aNH aNH aNH -bvS +jKj bDJ bHF bvD -bLQ +xoZ bNw -bNT +ice bRF bRF bRF -cyH -cJr +oog +qfq bNw bZL bZJ @@ -63616,8 +63622,8 @@ dTs dTs dTs dTs -csA -csD +nyw +odG doE doE cuM @@ -63626,45 +63632,45 @@ crx dFo doE cJe -cNU -cOt -cOD -cPe -cNU -cOt +nVL +mqo +hAT +drn +nVL +mqo cJe doE doE -cJx -cfd +oHc +hIE doE doE dTs boP -rOa -boR -bNb -bLS -cna +jnI +pqX +rDD +myz +rMc bvA -cpi -cFR -cIl +mNx +dTy +waD cLQ cLd cLI cLO -cUY -cVI -cVH -cXD +uCq +jAd +dfZ +iXH bvA dbT deo dfb -dcc +xsv dfH -cVU +ekT cZB cZB cZB @@ -63688,39 +63694,39 @@ aOc aOc aOc aOc -aRg -aRE -aSf -bFq -aTh +hWB +wcO +xBg +jVO +olp aOc aOc dTs dTs aVI -aNt -aWl -aWl -aWl -aex -aYL -afr -bdE -bdE -aYv -aYL -aYY -baR +uCf +qTG +qTG +qTG +lsT +ngC +hbe +hjF +hjF +oeF +ngC +rDZ +kwN aWM aiZ -aIa +jhd apz aqg aqg ahj -bdW +snX aiZ -aUL +iWU dTs dTs dTs @@ -63751,40 +63757,40 @@ blZ blZ blZ blZ -btr -bJx -bMc -bxh +rMl +faj +haM +gWh brF brF -aeL -aia -aia -aOL -bEk -bwe -bBP -bHT +sSQ +elh +elh +wxm +mkr +hVg +iqA +ugq bJh -bDK +hQO brQ bpJ bMI bNm -bGu +duL cjH cqa cqa mOS -jxq -ueS +wzB +guI cjH -bOY -bVp -cuo -bXW -afO -age +tIA +vPF +uNu +wlA +qIw +uSO dTs dTs dTs @@ -63792,36 +63798,36 @@ dTs dTs bOX cdS -cuo +uNu cxc bMI aSu aPR -aFw +diY axk ceA ceA ceA ceA ceA -bPB -bSV -cjO -bvJ -bRw -bSV -cjO -bvJ -ccu +twg +mKk +paA +piK +pwd +mKk +paA +piK +pxN ceA aNH -aOw -aUd -aOC +mOw +ycS +kVO aNH -buu -bwD -bAb +mtW +lAd +dSK bDM bvD bvD @@ -63831,8 +63837,8 @@ bRF bRF bRF bYo -cyH -cJs +oog +goO bNw bZw caX @@ -63850,8 +63856,8 @@ dTs dTs dTs dTs -csC -cwz +qpe +ukN doE doE cuM @@ -63860,17 +63866,17 @@ crz dFo doE cJe -cNv -cOn -cOD -cPf -cNv -cOn +xEI +uuz +hAT +hUD +xEI +uuz cJe doE doE -cJx -cfd +oHc +hIE doE doE dTs @@ -63878,7 +63884,7 @@ boP boP boP boP -clr +nMn boP bvA bvA @@ -63889,20 +63895,20 @@ cMf cOT cTa cNo -cVH -cWn +dfZ +uDL cNo bvA dbY dbY dfo -dcc +xsv dfH -cYy -cZv -dgu -dgu -dgz +rDQ +nxP +mZR +mZR +utx cZB dTs dTs @@ -63932,31 +63938,31 @@ dTs dTs dTs aVI -aNu -aWl -bdE -aWl -aYw -afa -afs -bdE -afq -aYw -aYM -aYZ -baR +gMS +qTG +hjF +qTG +uTH +nFr +uFD +hjF +nhh +uTH +eyf +lpm +kwN aVI aiZ -aIa +jhd apz aqg aqg asa -ahz +fmC acW aiZ -apu -apt +rTF +rOw dTs dTs dTs @@ -63978,45 +63984,45 @@ lcj dTs blZ blZ -bnj -bnP -boC -bpy -bqJ -dDv +qjq +byK +idj +jyI +wwO +qlM blZ -bts -buK -bMc -bxi +wfA +cRU +haM +owY brF dTs dTs dTs dTs -aOM -bEk -bzE -bBP -bAt -bAt -bDK +sYS +mkr +sgY +iqA +fjq +fjq +hQO brQ bsC bMJ bNm -bJk +uaJ cjH cqa cqa ibl sye -qkZ +oOT cjH -bVk -bVY -cuq -dhT +hOr +ngV +rRw +lkV afR agO dTs @@ -64026,12 +64032,12 @@ dTs dTs bOX cdR -cuo +uNu cxc bMI aSu aPR -aFw +diY axk ceA ceA @@ -64039,33 +64045,33 @@ ceA bfH ceA ceA -bpk -bqi -bxR +mMS +vPG +rUh ceA -bVK -bqi -caT +jiN +vPG +pLM ceA ceA aNH -aOC -aOC -aOC -bpt +kVO +kVO +kVO +xum bvD bvD bvD bDU bvD bvD -bJO +vcA bNw -bOK -bSu +fid +mTy bRF bYp -cGP +doq bNw bNw bZJ @@ -64085,8 +64091,8 @@ dTs dTs dTs dTs -csC -cwz +qpe +ukN doE cuM crx @@ -64094,49 +64100,49 @@ crx dFo cJd cJd -cNU -cOt -cOD -cPf -cNU -cOt +nVL +mqo +hAT +hUD +nVL +mqo cJd cJd doE -cJx -cfd +oHc +hIE cBW cuO doE doE doE boP -bPE -brL -cnb -coh -cpp +jHK +jle +qna +von +sGz boP -cIp +tuP cjf cMj cOi bdP -cVi -cIq -cIq -cYy -cZv -cZv -cZv -cZv -dfB +hDS +pLE +pLE +rDQ +nxP +nxP +nxP +nxP +wCE dfI dfI dfI dfI dfI -cVU +ekT cZB dTs dTs @@ -64166,31 +64172,31 @@ dTs dTs dTs aVI -aeW -aWm -adB -dJL -aeB -afe -bdE -bdE -bdE -ngk -aYS -aWl -baR +oSQ +lbk +nHs +fsT +vbZ +jCR +hjF +hjF +hjF +uPn +vZY +qTG +kwN aWM agq -aIa +jhd apz aql ara asa -bdW +snX aiZ aiZ amN -apu +rTF dTs dTs dTs @@ -64211,46 +64217,46 @@ fmP lcj blZ blZ -bmE -bmF -bCA -bmG -bmG -bmG -uRx +nIU +lwY +vlH +wkD +wkD +wkD +edz blZ -btt -buK -bMc -dDw +nZO +cRU +haM +wOx brF dTs dTs dTs dTs dTs -bEl -bzE -bmf -bAt -bAt -bDK +jRg +sgY +rfP +fjq +fjq +hQO brQ bpJ bMI bNm -bGu +duL cjH cqa cqa cqa cqa -ueS -fcG -bVl -bVp -cuo -dhT +guI +jZL +gNs +vPF +uNu +lkV afR agO dTs @@ -64260,12 +64266,12 @@ dTs dTs bOX cdR -cuo +uNu cxc cfP aWE aPR -aFw +diY axk ceA ceA @@ -64273,34 +64279,34 @@ ceA ceA bny ceA -bpl -brq -bBf +oBD +xCR +wFa ceA -bZv -brq -bBf +iro +xCR +wFa ceA ceA aNH -aOC -aOC -aOC +kVO +kVO +kVO aNH -bvE +rfC bvD bAc bDV bHI bJI -bJP +qcC bNw -bQw -bSx +pmN +mcd bRF bYq -cyH -cJt +oog +tQs bNw bZM bZM @@ -64320,57 +64326,57 @@ dTs dTs dTs dTs -csD +odG doE cuM crx crx dFo cJe -cJg -cNZ -cJg -cOS -cPg -cJg -cJg -cJg +fNG +oyu +fNG +ipp +olf +fNG +fNG +fNG cJe doE -cJx -cfd +oHc +hIE doE cOj doE doE doE bpY -ihT -brL -brL -pIg -cps +smH +jle +jle +hzL +jLi bpY -cIp +tuP cjf cMm cOV bdP -cVi -cIq -cIq -cVP -cZx -cZx -cZx -cXa -cXa -cXa -cXa -cZx -cZx -cZx -dgA +hDS +pLE +pLE +kcs +lnf +lnf +lnf +xvt +xvt +xvt +xvt +lnf +lnf +lnf +nFB cZB dTs dTs @@ -64400,32 +64406,32 @@ dTs dTs dTs aVI -aWj -aWl -aWl -bdE -aSn -aSq -afq -bdE -aZy -aWl -dJL -aWl -baR +mmW +qTG +qTG +hjF +ihX +mRj +nhh +hjF +xpA +qTG +fsT +qTG +kwN aWM aiZ -aIa +jhd apz aqg aqg asa -bdW +snX aiZ anF bej aiZ -axZ +vVR dTs dTs dTs @@ -64444,47 +64450,47 @@ fmP fmP lcj blZ -bmm -bmF -bCA +qvW +lwY +vlH bDe bDj bEy -bCA -oHw +vlH +wHa blZ -btt -bJx -bMc -bxk +nZO +faj +haM +tSd brF dTs dTs dTs dTs dTs -bZU -bzE -bmf -bAt -bAt -bDK +oIc +sgY +rfP +fjq +fjq +hQO brQ bpJ bMI bNm -bGu +duL cjH cqa cqa cqa gTD -ueS -sNn -bVl -bVp -cuq -dhU +guI +rIW +gNs +vPF +rRw +fZD bYE bZe bZe @@ -64494,12 +64500,12 @@ bZe bZe cdm cdR -cuo +uNu cxc bMI aSu aPR -aFw +diY axk ceA ceA @@ -64507,34 +64513,34 @@ ceA bmY ceA ceA -bps +oWQ brr -bFt +hxm ceA -bZK +ujE brr -bFt +hxm ceA ceA aNH -aOC -aOC -aOC +kVO +kVO +kVO aNH -bvF +hJz bxZ bBg bFv bHJ bJI -bJS +hHR bNw -bQx -bSx +pWJ +mcd bRF bRF -cyH -cJt +oog +tQs bNw cao bZM @@ -64553,7 +64559,7 @@ dTs dTs dTs dTs -csB +eDU doE doE cuM @@ -64561,46 +64567,46 @@ cvJ crz dFo cJe -cJk -cJg -cJg -cJg -hTg -cJg -cNZ -cJg +eZD +fNG +fNG +fNG +uBJ +fNG +oyu +fNG cJe doE -cJx -cfd +oHc +hIE doE doE doE doE doE bpY -bPF -brL -brL -pIg -cps +mWn +jle +jle +hzL +jLi bpY -cIp +tuP cjf cMm cOW cUz -cVo -cVN -cVN -cVU -cVN -cIp -dep -dep -dfC -cVi -cVN +gtB +iaX +iaX +ekT +iaX +tuP +ncl +ncl +qmK +hDS +iaX dgm dgv dgv @@ -64634,33 +64640,33 @@ dTs dTs dTs aVI -aWp -aWn -aWo -aei -bnQ -boD -aYT -aZa -aZz -aZO -baj -bal -bbb +std +wfj +pcz +gLZ +qgn +hRm +gpl +eOi +kUG +bAo +mZi +lsu +jFd aVI aiZ -aIa +jhd apz aqg aqg asa -bdW +snX aiZ beD beU bfp -apu -apt +rTF +rOw dTs dTs dTs @@ -64678,97 +64684,97 @@ fmP fmP lcj blZ -bmn -bmG -bCA +sQF +wkD +vlH bnU bnU bnU -bCA -bEC +vlH +bnd blZ -btp -bKx -bvY -bxl +hpN +sDi +vmH +vfn brF dTs dTs dTs -aib -aPS -bZY -bzE -bBP -bAt -bAt -bDK +xNG +qcA +oYS +sgY +iqA +fjq +fjq +hQO brQ bsC bMJ bNm -bGu +duL cjH -rAL -wLI -wLI -wLI -aWy -cMS -cOr -bVp -cuq -bOY +xox +vHt +vHt +vHt +ngh +kuo +jvs +vPF +rRw +tIA bYE -bZf -bZV -caC -cbi -oQK -caC +uVz +tXe +sAb +rxs +dpn +sAb bYE cdR -cuo +uNu cxc aEk cvr aPR -aFw +diY axk -baz -cwl +fFH +cUr ceA ceA ceA aUh -bps +oWQ brr -bFu +uYb ceA -can +oDr brr -bFt +hxm aUh ceA aNH -aRt +sxL aNH -aRt +sxL aNH -bvK +fWB bvD bAc bFy bHK bJI -bJS +hHR bNw -ntt -bSx +mAG +mcd bRF bYr -cyH -cJv +oog +nDJ bNw bZM bZM @@ -64787,7 +64793,7 @@ dTs dTs dTs dTs -csD +odG doE doE cuM @@ -64795,46 +64801,46 @@ dvo crx dFo cJe -cJg -cOa -cOu -cOU -cOU -cOU -cOa -cJg +fNG +uyh +eFE +fMk +fMk +fMk +uyh +fNG cJe doE -cJx -cfd +oHc +hIE doE doE doE doE doE bpY -bPJ -clt -clt -col -cqb +mYo +fVF +fVF +rOI +pwW bpY -cIp +tuP cjf cMm cOW bdP -cVi -cVN -cIq -cVU -cVN -cVN -cVN -cVN -cVN -cVN -cVN +hDS +iaX +pLE +ekT +iaX +iaX +iaX +iaX +iaX +iaX +iaX dgn cOi bQt @@ -64873,8 +64879,8 @@ aVI aVI aVI aWM -bpw -aYU +mhS +eXj aWM aVI aVI @@ -64883,20 +64889,20 @@ aVI aVI aVI dJR -aIa +jhd apz aql ara asa -bdW +snX aiZ apc beV beD apc -apu -amP -apt +rTF +qLb +rOw dTs dTs dTs @@ -64912,96 +64918,96 @@ lcj lcj lcj blZ -bmo -bmG -bCU +gSR +wkD +drS bnT bnT bpA -bqK -fZd -bsA -btu -bLg -bMk -bPe +yev +kGQ +fPf +qfy +lPG +hkm +fCF brF brF brF brF -bCm -bCV -bEl -bwe -bBP -ciw +bRu +pjj +jRg +hVg +iqA +mWy bJh -bDK +hQO brQ bpJ bMI bNm -bGu +duL cjH cjH -aRS -aUp -aUp -aUp -cNe -cOr -bVY -cuq -cOP +iWR +oMJ +oMJ +oMJ +nrR +jvs +ngV +rRw +nku bYE bYE bYE -caC -caC -cbR -caC +sAb +sAb +hko +sAb bYE cdR -cuo +uNu cxc cfP aEE aPR -aFx +iRk aPu -bbz -bck -cwl +jTA +lYu +cUr ceA ceA ceA -bps +oWQ brr -bFt +hxm ceA -can +oDr brr -bFt +hxm ceA -baz +fFH aNH -aRu +qmz aNH -txD +iQy aNH -bvL +viB bvD bAc bGv bHL bJI -bJS +hHR bNw bNw -bSy +cVR bRF bYQ -cGP +doq bNw bNw bZw @@ -65020,7 +65026,7 @@ dTs dTs dTs dTs -csB +eDU doE cSR doE @@ -65030,45 +65036,45 @@ dvo dFo cJd cJd -cOb -cOb -cOX -cOb -cOb -cOb +uwE +uwE +jfN +uwE +uwE +uwE cJd cJd doE -cJx -cYY -cuP -cuP -cuP -cuP -cuP +oHc +piP +xKK +xKK +xKK +xKK +xKK boP -bQy -brL -brL -cne -cqc +uzR +jle +jle +uHS +iqf boP -cIp +tuP cjf cMm cOW bdP -cVi -cVN -cVN -cWj -cVN -dca -deq -deq -dfp -cVi -cIq +hDS +iaX +iaX +iaw +iaX +ydk +geG +geG +jqQ +hDS +pLE cjf bQt cOi @@ -65106,33 +65112,33 @@ aWq aWq aWq aVm -aXR -bpz -aYk -aZb +ybq +vhI +hQA +wMr aWY -aZQ -bak -bak -bbc +ojo +fir +fir +dYU bbC aiZ -aIa +jhd apz aqg aqg asa -bdX -apd +qkl +rTU aiZ aiZ aFu aqz aiZ aiZ -apu -amP -amP +rTF +qLb +qLb dTs dTs dTs @@ -65146,97 +65152,97 @@ dTs dTs dTs blZ -bmp -bmG -bCA +lTp +wkD +vlH bnU bnU bnU -bmG -rqk +wkD +htS blZ -btq -bLk -bMc -bPf -byt -bys -byt +fQZ +wGI +haM +xzV +oxj +dKy +oxj bLz -bAt -bAt -bAt -bzE -bBP -cfr -bAt -bDK +fjq +fjq +fjq +sgY +iqA +kOf +fjq +hQO brQ bpJ bMI bNm -bGu -bOY -bPZ -bRh -bRh -bRh -bRh -cNg -cOK -cbh -cur -bXX +duL +tIA +mzK +xPh +xPh +xPh +xPh +jTG +nlu +nDK +gMh +hwQ bYE -gIA -bZV -caD -caC -dLn -caC +dDU +tXe +vWU +sAb +gIV +sAb bYE mAZ -bGn +sRC qqR bJE aEH che -cvv +pdX dTs dTs beC -bck -ceD -cwl +lYu +vOZ +cUr ceA -bps +oWQ bud -bFt +hxm ceA -bZK +ujE brr -bFu +uYb ceA -ceG +nFD aNH aNH aNH aNH aNH -bvM +fkd bvD bvD bvD bvD -bJO -bJT +vcA +iNf bNw -bQz -bSx +sOx +mcd bRF caO -cyH -cKj +oog +uex bNw dTs dTs @@ -65255,7 +65261,7 @@ dTs dTs dTs dTs -cwz +ukN doE doE cuM @@ -65264,45 +65270,45 @@ dVc dFo doE cJe -cOb -cOv -cOb -cOb -cOv -cOb +uwE +fUo +uwE +uwE +fUo +uwE cJe doE doE -cJx +oHc cZb -cUh -cUh -cUh -cUh -cUA -brd -brL -brL -brL -cne -brL -brd -cIq +dZx +dZx +dZx +dZx +eRr +sLq +jle +jle +jle +uHS +jle +sLq +pLE cJc cMn cPu cUD -cIq -cIq -cVN -cWj -cVN -cVN -cIq -cIq -cIq -cIq -cVN +pLE +pLE +iaX +iaw +iaX +iaX +pLE +pLE +pLE +pLE +iaX dgp cOi cOi @@ -65335,29 +65341,29 @@ dTs dTs dTs aVm -aVK -aWr -aWR +uvM +nJb +cty aWq aXL -aYj -brK -bsE -aZc +dXR +bsV +jTZ +wcu aZP -aZS -aZT -aZT -bbd +vHW +kgy +kgy +hfa ban -ajb -aoD +xKg +nSB apz aqg aqg asa -aoE -aDe +hcf +nri aiZ aiZ aiZ @@ -65367,7 +65373,7 @@ aiZ aiZ aiZ aiZ -apu +rTF dTs dTs dTs @@ -65380,97 +65386,97 @@ dTs dTs dTs blZ -bmq -bCf -bCA +usF +kcL +vlH bnV bnV bnV -sDf -brM +oCs +qtY blZ -btv -buP -bvY -bMc -bMc -bMc -bMc -bUs -bWa -bWa -bWa +emD +cmn +vmH +haM +haM +haM +haM +vSi +sSg +sSg +sSg bUm bpF -btD -bJi +wGG +phL bKv -bBq -bBq -bML -bML +byi +byi +eKu +eKu bOh -bPa -bWh -bWh -bWh -cGr -cGr -cGr -cGr +uRN +uMR +uMR +uMR +kWs +kWs +kWs +kWs dam -cur -bOY +gMh +tIA bYE bYE bYE bYE bYE -dLE +ldE bYE bYE mAZ -bGn +sRC qqR aEI aEI che -cvv +pdX dTs dTs dTs dTs beC dTs -cwl -bpX -buf -bIU +cUr +rlS +iCG +owb ceA -cap -buf -bIU -baz -bbz +kKm +iCG +owb +fFH +jTA dTs dTs dTs aNH -btf -bvS +cvX +jKj bvD bvD bvD bvD -bJP +qcC aNH bNw -bQz -bSx +sOx +mcd bRF bRF -cyH -cKj +oog +uex bNw dTs dTs @@ -65490,7 +65496,7 @@ dTs dTs dTs dTs -cwz +ukN doE cuM crx @@ -65501,42 +65507,42 @@ cJd cJd cJd cJd -cPh +uqV cJd cJd cJd doE doE -dHa -cTG -cTG -cTG -cTG -cTG -cUB -brL -brL -brL -cnc -con -cqf -cqf -cIr +vke +xlQ +xlQ +xlQ +xlQ +xlQ +wzr +jle +jle +jle +lmj +qrx +vfN +vfN +uOC cJn cMw cPy cUU -cVv -cIq -cVN -cVU -cIq -cIp -deP -deP -dfC -cVi -cVN +hzJ +pLE +iaX +ekT +pLE +tuP +kLe +kLe +qmK +hDS +iaX dgn cOi bQt @@ -65569,39 +65575,39 @@ dTs dTs dTs aVm -dun -lUl -aWS +kxh +noY +dYp aWq -aXt -aYk -brK -bsJ -bsE -btP -buJ -buJ -buJ -buJ -bbn -aky -aoG +qbG +hQA +bsV +sjX +jTZ +rXU +qKs +qKs +qKs +qKs +tBL +lZw +ixV apz aql ara asa -aoE -anj -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb +hcf +qmH +xKg +xKg +xKg +xKg +xKg +xKg +xKg +xKg +xKg +xKg dTs dTs dTs @@ -65615,61 +65621,61 @@ dTs dTs blZ blZ -bmI -bCf -bCA -bCA -bCA -ijc -brM +qWS +kcL +vlH +vlH +vlH +ruP +qtY blZ -btw -buQ -bvY -bvY -bMc -bMc -bvY -bMc -cbT +iPr +ygN +vmH +vmH +haM +haM +vmH +haM +pkZ bUm bUm -cbT -cbT -bJj -bOZ +pkZ +pkZ +poS +uhB bBr -bBq -bBq -bML -bML +byi +byi +eKu +eKu bOi -bQa -bXa -cCT -cCT -cCT -cCT -cCT -cCT +rwA +iAs +hjq +hjq +hjq +hjq +hjq +hjq dam -cuq -bOY +rRw +tIA bYE -bZg -bZW -dJJ -bZW -dMg -ccC +jzb +pbS +jPL +pbS +lvA +sod bYE yll -bGn +sRC qqR aEn cgz che -cvv +pdX dTs dTs dTs @@ -65677,34 +65683,34 @@ dTs dTs dTs dTs -ceD -cwl +vOZ +cUr ceA ceA ceA ceA -baz -bbz +fFH +jTA dTs dTs dTs dTs aNH -btf -bvS +cvX +jKj bvD bvD bvD bvD -bJS -bLT +hHR +vyv bNw -bQz -bSA -bVN -bVN -cHr -cKj +sOx +iGc +xsN +xsN +uGz +uex bNw dTs dTs @@ -65714,8 +65720,8 @@ dTs dTs dTs dTs -cGO -ibU +xVb +nou dNS dTs dTs @@ -65724,7 +65730,7 @@ dTs dTs dTs dTs -csD +odG doE cuM dvo @@ -65733,44 +65739,44 @@ dFo doE doE cJd -cOw -cOb -cOb -cOb +sEK +uwE +uwE +uwE cJd doE doE doE -cXk -cTJ -cTJ -cTJ -cTJ -aKt -cTJ +hjM +mHk +mHk +mHk +mHk +tMe +mHk boP -bQB -brL -cne -brL -cqg +pKu +jle +uHS +jle +pRj boP -cIp +tuP cjf cME cOi bdP -cVi -cVN -cWW -cYz -cIq -cIq -cIq -cIq -cIq -cIq -cIq +hDS +iaX +lon +tJT +pLE +pLE +pLE +pLE +pLE +pLE +pLE dgq dgw dgy @@ -65803,40 +65809,40 @@ dTs dTs dTs aVm -duo -aWt -aWT +rDY +lQz +xRi dba aXL -aYl -brK -bsE -aYk -aYk -buJ -buN -buN -buJ -buJ -bvh -aoG +uoF +bsV +jTZ +hQA +hQA +qKs +nGg +nGg +qKs +qKs +tiG +ixV apz aqg aqg asa -akz -aNp -aNp -beW -beW -beW -beW -beW -beW -beW -beW -beW -bhC +oRv +tMx +tMx +nai +nai +nai +nai +nai +nai +nai +nai +nai +onj dTs dTs dTs @@ -65850,62 +65856,62 @@ dTs dTs blZ blZ -bnl -bnW -boF -bpB -bqL -brN +mBu +hJu +oTF +oDR +fdJ +iGg blZ -btx -boB -boB -bxn -byu -byu -boB +mqZ +jvt +jvt +liC +gjY +gjY +jvt bLz -bAt -bwe -bmf -bAt -cfr -cfr -bAt -bDK +fjq +hVg +rfP +fjq +kOf +kOf +fjq +hQO brQ bpJ bMI bNm -bGu -bOY -bQc -bOY -bOY -bOY -bQc -bOY -cOL -cdn -cuq -bOY +duL +tIA +peH +tIA +tIA +tIA +peH +tIA +ePt +jIZ +rRw +tIA bTt -bZh -bZX -dKk -dKI -dMo -ccD +oVK +xef +gCr +uWs +qIA +wXL bTt mAZ -bGn +sRC qqR bJE bJE che -cEQ -cFj -cFj +iaV +uga +uga chJ dTs dTs @@ -65913,42 +65919,42 @@ dTs dTs dTs dTs -ceD -ceD +vOZ +vOZ dTs dTs -bbz +jTA beC dTs dTs dTs dTs aNH -bug -bvS +jGg +jKj bvD bBy bGw bBy -bJS -bLT +hHR +vyv bNw bNw bNw -bWe -bWe -bWe +vaE +vaE +vaE bNw bNw dTs dTs -ibU -dNo +nou +krH dTs dTs -cGO -ibU -cMo +xVb +nou +reP dNS dNS dNS @@ -65958,7 +65964,7 @@ dTs dTs dTs dTs -cwz +ukN doE cuM dVb @@ -65967,10 +65973,10 @@ dFo doE doE cJd -cOx -cOb -cOb -cPj +hMi +uwE +uwE +rgB cJd doE doE @@ -65980,35 +65986,35 @@ doE doE doE doE -aKT +rfi doE bpY -bRA -cms -cne -brL -cps +tlc +esI +uHS +jle +jLi bpY -cIp +tuP cjf cME cOi bdP cZB -cIq -cWX -cYz -cZy -cVN -deQ -deP -dfD -cVN -cVN -dgr -dfp -deP -dgC +pLE +xCN +tJT +gCD +iaX +wzQ +kLe +kXB +iaX +iaX +poa +jqQ +kLe +veg cZB dTs dTs @@ -66042,18 +66048,18 @@ aWq aWq aWq aXL -aYm -brK -bsE -aYX +jSp +bsV +jTZ +ixv aZR -aZU -aZT -aZT -bbe +eiR +kgy +kgy +scR ban -aoe -bco +oQg +nTW apz aqg aqg @@ -66099,19 +66105,19 @@ bLz brF brF brF -bAs +otw bCW bEq -bAt -bAt -bHT +fjq +fjq +ugq bJh -bDK +hQO brQ bsC bMJ bNm -bJk +uaJ bPb bPb bRy @@ -66119,20 +66125,20 @@ bRy bRy bPb bPb -bVn -cuj +ojp +ptq dgM -cus -dny -dBF -dCD -dKl -cbk -cbW -ccE +uQx +puS +wgD +jfb +gxZ +nzX +bqS +lWI bTt mAZ -bGn +sRC qqR bJE aEH @@ -66140,7 +66146,7 @@ aEK bJD bJD cfg -cvA +sOf dTs dTs dTs @@ -66158,14 +66164,14 @@ dTs dTs dTs aNH -bui -bvT -byQ -byQ -byQ -bHM -bJT -bLT +gIP +sSE +vfD +vfD +vfD +wrM +iNf +vyv aNH dTs bNw @@ -66177,10 +66183,10 @@ dTs dTs dTs dNS -kkm -dNo -cGO -cMo +fxP +krH +xVb +reP dNS cNs dNS @@ -66191,8 +66197,8 @@ dNS dTs dTs dTs -cuH -csB +nrN +eDU doE cuM crx @@ -66201,10 +66207,10 @@ dFo cNQ doE cJd -cOw -cOY -cOb -cOb +sEK +voF +uwE +uwE cJd doE doE @@ -66214,35 +66220,35 @@ doE doE doE doE -aKT +rfi doE bpY -cat -brL -cne -brL -cps +gti +jle +uHS +jle +jLi bpY -cIt +jfM cjf cME cOi bdP cZB -cVO -cIq -cWj -cWW -cVN -deQ -dfp -dfp -cVN -cIq -dgs -dgs -deP -cIq +eem +pLE +iaw +lon +iaX +wzQ +jqQ +jqQ +iaX +pLE +hZl +hZl +kLe +pLE cZB dTs dTs @@ -66276,18 +66282,18 @@ aWq aWU aXo aVm -aXR -brK -bsE -aZb +ybq +bsV +jTZ +wMr aWY ban -baC +wbl ban ban bbC aiZ -aIa +jhd apz aql ara @@ -66305,7 +66311,7 @@ aDb aqg aqg asa -bhV +qmR dTs dTs dTs @@ -66323,50 +66329,50 @@ dTs dTs dTs bqM -bqe -bqf -bqe -bqe -bqe -bqe -bqe -bqf -bqe -bqe -bqe +iJH +msO +iJH +iJH +iJH +iJH +iJH +msO +iJH +iJH +iJH bKv bxX -bqe -bqe -bqe -bqe -bEi +iJH +iJH +iJH +iJH +nDZ brQ bpJ bMI bNm -bGu +duL bPb -bQd -bRi -cFk -cFk -bTL +oeP +nxA +qRV +qRV +txO bPb -cOP -cuk +nku +gmB dgU -cut -bYH -bZj -bZX -dKk -dKT -dMx -ccF +fNd +pTj +rUJ +xef +gCr +rgL +vdM +nHx bTt mAZ -bGn +sRC qqR edo aEJ @@ -66374,7 +66380,7 @@ aEO aEH aEI che -cvA +sOf dTs dTs dTs @@ -66394,10 +66400,10 @@ dTs aNH aNH aNH -byR -byR -byR -byR +myR +myR +myR +myR aNH aNH aNH @@ -66412,8 +66418,8 @@ dTs dTs dTs cNs -kkm -cMo +fxP +reP dNS dNS dNS @@ -66425,8 +66431,8 @@ dNS dTs dTs dTs -csA -csD +nyw +odG doE cuM crx @@ -66448,35 +66454,35 @@ doE doE doE doE -aKT +rfi doE boP -caw -brL -cne -cou -cqh +hsY +jle +uHS +rsx +esC boP -cIu +uSu cjf cME cOi bdP cZB -cIq -cIq -cWj -cVN -cVN -cIq -cVN -cVN -cVN -cIq -cVN -cIq -cIq -cIq +pLE +pLE +iaw +iaX +iaX +pLE +iaX +iaX +iaX +pLE +iaX +pLE +pLE +pLE cZB cZB cZB @@ -66510,18 +66516,18 @@ aWq aWV djg aXL -aYm -brK -bsE -aZb +jSp +bsV +jTZ +wMr aWY -bff -baD -dJQ -bbh +olk +sNm +oIf +sHb bbC aiZ -aIa +jhd apz aqg aqg @@ -66539,8 +66545,8 @@ aDc aqg aqg asa -bdW -apu +snX +rTF dTs dTs dTs @@ -66555,8 +66561,8 @@ dTs dTs dTs dTs -aOM -bcz +sYS +sWu brP bpI bpI @@ -66568,8 +66574,8 @@ bpI bpI bpI bpI -bBq -bBq +byi +byi bpI bpI bpI @@ -66579,28 +66585,28 @@ brR bpJ bMI bNm -bGu +duL bRy -czD -cDk -cFr -cDk -cGA +qUj +pQW +nCm +pQW +fPd bRy -cOP -cul +nku +aVx bQb -bOY +tIA bTt -bZk -dEb -dKk -dKU -dMC -dNG +qFd +vQB +gCr +pvD +uby +eJt bYE mAZ -bGn +sRC qqR bJE aEI @@ -66608,7 +66614,7 @@ aEQ aFy bJE che -cvA +sOf dTs dTs dTs @@ -66658,8 +66664,8 @@ dNS dNS dTs dTs -cuH -csB +nrN +eDU cMF doE cuM @@ -66682,43 +66688,43 @@ doE doE doE doE -aKU +uaI boP boP boP -brL -cnf +jle +fPn boP boP boP -cIt +jfM cjf cNj bQt bdP -cVi -cIq -cVN -cYA -cZz -cZz -deR -cZz -cZz -cZz -cZz -cZz -cZz -cZv -cZv -cZv -cZv -aNX -cZv -aQk -cZv -aNX -dgE +hDS +pLE +iaX +mxq +ifp +ifp +eyI +ifp +ifp +ifp +ifp +ifp +ifp +nxP +nxP +nxP +nxP +wle +nxP +ouH +nxP +wle +lxa cZB acu "} @@ -66744,18 +66750,18 @@ dba aWV djh aXL -aYj -brK -bsE -aZb +dXR +bsV +jTZ +wMr aZP -bap -dJN -aZT -bbi +que +hea +kgy +uaw bbC aiZ -aIa +jhd aIK auz auz @@ -66773,7 +66779,7 @@ aIJ aqg aqg asa -bdW +snX aiZ dTs dTs @@ -66789,8 +66795,8 @@ dTs dTs dTs dTs -aOM -bcz +sYS +sWu brQ bpJ bpJ @@ -66802,8 +66808,8 @@ bpJ brS bpJ bpJ -bBq -bBq +byi +byi bpJ brS bpJ @@ -66813,28 +66819,28 @@ bpJ bsC bMJ bNm -bGu +duL bRy -bQe -cCQ -hmA -cDT -cGA +fnh +vcD +cXE +dDV +fPd bRy -bOY -cul +tIA +aVx deJ -bOY +tIA bYE -bZl -dEb -dKk -dKV -cbZ -ccH +wdT +vQB +gCr +goi +jXS +kFf bTt mAZ -bGn +sRC qqR bJE aEH @@ -66842,7 +66848,7 @@ chh aFy aFE che -cvA +sOf agd dTs dTs @@ -66893,7 +66899,7 @@ dTs dTs dTs dTs -cGh +oxB czv cuO cuM @@ -66912,11 +66918,11 @@ crw crw crw cKq -cKV +apQ doE cDc doE -cPG +vDa boP bsg buc @@ -66925,34 +66931,34 @@ cnp coz cqv boP -cIt +jfM cjf cNj bQt bdP -cVi -cIq -cVN -cVN -cIq -cIq -deS -cVN -cWW -cVN -cIq -cVN -cVN -fHX -cVN -cIq -cIq -cIq -cIq -cVN -cIq -cIq -cVU +hDS +pLE +iaX +iaX +pLE +pLE +tHs +iaX +lon +iaX +pLE +iaX +iaX +iCm +iaX +pLE +pLE +pLE +pLE +iaX +pLE +pLE +ekT cZB acu "} @@ -66977,39 +66983,39 @@ duU aWv aWX aXr -aXI -aYn -aYG -bsL -btJ +mEs +gPK +twy +sID +thr aZP -baq -dJP -dJY -bbj +xaz +hMY +dja +rum bbC aiZ -bcp -bcD -bcD -bcD -bdA -aNp -aNp -aNp -beX -beX -beX -beX -bgf -apO +ksp +trp +trp +trp +fgH +tMx +tMx +tMx +bSr +bSr +bSr +bSr +rHf +pRl apz aql ara asa -bdW -aqy -axY +snX +gBz +elW dTs dTs dTs @@ -67022,9 +67028,9 @@ dTs dTs dTs dTs -adF -aPS -bcz +xSw +qcA +sWu brQ bpJ btz @@ -67036,8 +67042,8 @@ btz bxo btz btz -bCY -bCY +spz +spz btz bxo btz @@ -67047,28 +67053,28 @@ btz btz btz buS -bqP +kNa bRy -bQe -cCP -cFu -cDU -cGA +fnh +iys +hwp +njE +fPd bRy -cOP -cum +nku +vpl deJ -bOY +tIA bYE -bZm -dEb -dKs -dKW -bZX -lkZ +iBJ +vQB +nHM +jsB +xef +qFP bTt mAZ -bGn +sRC qqR edo aEJ @@ -67076,7 +67082,7 @@ aER aEI bJE che -cvA +sOf agd dTs dTs @@ -67090,9 +67096,9 @@ dTs dTs dTs cQx -cQI +fok cQx -cQI +fok cQx dTs dTs @@ -67126,8 +67132,8 @@ dNS dNS dNS dTs -cwB -csD +wCB +odG doE doE cuM @@ -67150,7 +67156,7 @@ cBY drL drO czv -cPG +vDa boP bsR buc @@ -67159,34 +67165,34 @@ cnq cmG buc boP -cIp +tuP cjf cNj cOi cUz -cVi -cIq -cVN -cIq -cIq -cVN -cVN -cVN -cIq -dfJ -cVN -cVN -cIq -cIq -cIq -cIq -cVN -cVN -cIq -cVN -cIq -cIq -cVU +hDS +pLE +iaX +pLE +pLE +iaX +iaX +iaX +pLE +mdg +iaX +iaX +pLE +pLE +pLE +pLE +iaX +iaX +pLE +iaX +pLE +pLE +ekT cZB acu "} @@ -67212,39 +67218,39 @@ aWw aWq aWq aXL -aYl -aYH -btH -btJ +uoF +lIv +kLE +thr aWY -bar -baE -bas -bbk +kgT +iLA +lSl +fUu bbC aiZ aiZ aiZ aiZ aiZ -ajS -ame -ame -ame -ame -ame -ame -ame -bgg -aoG +iGd +iOi +iOi +iOi +iOi +iOi +iOi +iOi +uhS +ixV apz aqg aqg asa -bdW -apu -amP -apt +snX +rTF +qLb +rOw dTs dTs dTs @@ -67258,7 +67264,7 @@ dTs dTs bkU bpC -blH +vYl brQ bpJ btz @@ -67270,8 +67276,8 @@ btC btC btC btC -bCY -bCY +spz +spz btC btC btC @@ -67281,28 +67287,28 @@ btC btC btC buU -bqP +kNa bPb -bQf -bRl -cFv -bSZ -bTN +qLi +pZi +vHG +bUn +koN bPb -bOY -cum +tIA +vpl deJ -bOY +tIA bYE -bZn -bZX -dEb -dKW -dEb -lkZ +qmY +xef +vQB +jsB +vQB +qFP bTt mAZ -bGn +sRC qqR bJE aEI @@ -67310,7 +67316,7 @@ chh bJE aEI che -cvA +sOf dTs dTs dTs @@ -67324,9 +67330,9 @@ dTs dTs dTs cQx -cQJ +iQk cQx -cQJ +iQk cQx dTs dTs @@ -67347,7 +67353,7 @@ dTs dTs dTs dTs -cMo +reP dNS dNS dNS @@ -67384,7 +67390,7 @@ drL uTo drT cDc -cPG +vDa boP bua buc @@ -67393,34 +67399,34 @@ cnu coA buc bpY -cIp +tuP cjf cME cOi cUz -cVi -cVP -cXa -cXa -cZx -dcb -cVN -cIq -dfE -cXa -cXa -cZx -cZx -cZx -cZx -cZx -mej -cZx -cXa -cXa -cXa -cZx -dgA +hDS +kcs +xvt +xvt +lnf +fhE +iaX +pLE +rch +xvt +xvt +lnf +lnf +lnf +lnf +lnf +ttF +lnf +xvt +xvt +xvt +lnf +nFB cZB acu "} @@ -67446,14 +67452,14 @@ aWq aWq aXs aVm -aYm -brK -bsJ -btK +jSp +bsV +sjX +mlW aWY aWY aZP -baA +xJn aZP aWY aWY @@ -67469,15 +67475,15 @@ bdg bdg bdg bdf -bgg -aoG +uhS +ixV apz aqg aqg asa -bdW +snX aiZ -aqy +gBz dTs dTs dTs @@ -67492,51 +67498,51 @@ dTs dTs bkU bpF -bmf +rfP brQ bsC btA buS -bqN -brO -brO -bBQ -brO -brO -brO +nqe +jRc +jRc +lyI +jRc +jRc +jRc bCZ bEu -brO -brO -brO -bBQ -brO -brO -brO -brO -bBQ +jRc +jRc +jRc +lyI +jRc +jRc +jRc +jRc +lyI bOj bPb bPb cbg -cFw +gJm cbg bPb bPb -bOY -cum +tIA +vpl deJ -bOY +tIA bYE -bZo -bZX -dKt -dKY -dNk -kUz +tZd +xef +qZN +xco +eZp +hVe bYE yll -bGn +sRC qqR bJE aEI @@ -67544,8 +67550,8 @@ chg bIH bIH cfh -cvA -ads +sOf +fVZ dTs dTs dTs @@ -67558,9 +67564,9 @@ dTs dTs cQx cQx -cQN -cQQ -cQQ +gTc +bWr +bWr cQx dTs dTs @@ -67591,10 +67597,10 @@ dNS dNS dNS dNS -taH -oJw -oJw -cwz +qkI +gXM +gXM +ukN doE doE doE @@ -67618,7 +67624,7 @@ dsE uTo drT doE -cPG +vDa boP buc buc @@ -67627,33 +67633,33 @@ cnz cmG buc bpY -cIp +tuP cjf cME cOi cUz -cVo -cVU -cVN -cIq -cIq -dcc -cIq -cIq -cVU -dfK -cIq -dgt -cIq -dfK +gtB +ekT +iaX +pLE +pLE +xsv +pLE +pLE +ekT +tPT +pLE +uwm +pLE +tPT cZB cZB nEM aNY -aOW -aOW -aOW -aOW +kXc +kXc +kXc +kXc aNY nEM acu @@ -67680,20 +67686,20 @@ aVm aVm aVm aVm -aXR -brK -bsE -btL -aZB -buM -buO -aYF -aZc -bai -bai -buM -buM -bcq +ybq +bsV +jTZ +rkP +mSD +dsD +xbI +vqn +wcu +qxC +qxC +dsD +dsD +pPm bdf bdB bdC @@ -67703,15 +67709,15 @@ bdC dKe bfw bdf -bgg -aoG +uhS +ixV apz aql ara asa -bdW +snX aiZ -axZ +vVR dTs dTs dTs @@ -67726,21 +67732,21 @@ bkU bkU bkU avw -bmf +rfP brQ bpJ btz buS -bqO +pKm bxq bxq bxq bxq bxq -bxr +ykX bDa bEv -bxr +ykX bGX bGX bGX @@ -67751,33 +67757,33 @@ bPx bHc bHc bHc -bQg -bHa -cFx -bHa -bOq +ubr +xTq +kac +xTq +vus bPx -bOY -cum +tIA +vpl deJ -bOY +tIA bYE bYE bTt -dKt -dKZ +qZN +xAV bTt bYE bYE mAZ -bGn +sRC qqR edo aEJ aFs -cEX -bJF -bJF +wtl +vRp +vRp chJ adt adt @@ -67791,10 +67797,10 @@ dTs dTs dTs cQx -tVX -cQQ -cQQ -cRG +pqk +bWr +bWr +kKr cQx dTs dTs @@ -67814,7 +67820,7 @@ dTs dTs dTs dTs -sRl +fsX dNS cZw xgA @@ -67822,13 +67828,13 @@ lrY dNS dNS dNS -taH -oJw -oJw -xFk +qkI +gXM +gXM +xKU dTs dTs -cHl +puv doE doE doE @@ -67852,7 +67858,7 @@ duc ebN drN doE -cPG +vDa boP boP buc @@ -67861,25 +67867,25 @@ buc buc buc bpY -cIx +srS cjf cNj cOi cUz -cVo -cWj -cIq -cIq -cIq -dcc -cIq -cIq -cVU -dfL -cIq -dfL -cIq -dfL +gtB +iaw +pLE +pLE +pLE +xsv +pLE +pLE +ekT +vrw +pLE +vrw +pLE +vrw cZB dTs nEM @@ -67913,103 +67919,103 @@ dTs dTs dTs aWY -aXO -aYm -aYF -bsE -aZu -bsJ -bsJ -bsE -aYF -aYk -buY -bvX -bsE -bsE -aZc +pXn +jSp +vqn +jTZ +nFq +sjX +sjX +jTZ +vqn +hQA +cgF +sWN +jTZ +jTZ +wcu bdg bdC -bdY -duY -beF -beY +eRR +doK +eHr +edA bdC bfx bdg -bgg -aoG +uhS +ixV apz aqg aqg asa -bdW +snX aiZ -aUL -xxQ +iWU +wFb rTV rTV rTV dTs bkU bkU -bma -tLQ -bmr -bnm -bnX +fXO +msy +rWO +ggM +kTF bkU avt -bmf +rfP brQ bpJ btz buS -bqP +kNa bxq dTs dTs dTs bxq -bxr -bDb -cbl -bFP +ykX +vOW +bXL +mJs bGX -bHV -bJl -bKw -bLj -bMe -bMM -bNn -bOk -bPd -bQh -bTO -cFy -bTa -bTO -cNN -bPY +ezV +rYz +qdH +vBm +fnG +pub +lmS +jkY +oqc +iZb +hoQ +ezk +vyk +hoQ +eMj +fJe dcS deJ -cOP -cOP -bZp -cOP +nku +nku +lBw +nku dfS dLa -bOY -bOY -bOY +tIA +tIA +tIA mAZ -bGn +sRC qqR aEI aEI che -cvv +pdX lOM ciN cir @@ -68025,10 +68031,10 @@ dTs dTs dTs cQx -cQG -cQQ -cRp -cQQ +fXa +bWr +ohI +bWr cQx dTs dTs @@ -68055,14 +68061,14 @@ uaK xgA dNS cNP -taH -cNX -dNp -dNp -dNp -dTs -cuH -cKK +qkI +kSy +ggt +ggt +ggt +dTs +nrN +rAw drO cyQ cBY @@ -68086,8 +68092,8 @@ csE cDc doE doE -cPG -cQm +vDa +osL boP bpY bpY @@ -68095,25 +68101,25 @@ bpY bpY boP boP -cIy +igm cjf cNj bQt cUz -cVE -cVU -cXd -cYB -cYB -dcc -cIq -cIq -cVU -dfN -cIq -dfK -cIq -dfL +wxn +ekT +xgz +ijX +ijX +xsv +pLE +pLE +ekT +hsW +pLE +tPT +pLE +vrw cZB dTs nEM @@ -68132,9 +68138,9 @@ dTs dTs dTs dTs -abB -abP -acX +mPX +qOG +kPl asl aGA aGA @@ -68147,106 +68153,106 @@ aGA aGA aGA aWY -aXP -aYp -aYI -btI -btM -btI -btI -btI -buW -buX -bbD -bwa -btI -btI -btI -bzJ +qbx +kOD +rTt +pFq +smf +pFq +pFq +pFq +qbR +kSs +uzh +tdw +pFq +pFq +pFq +pIn bAE -bdZ -duZ -byp -bPW +uWt +lxQ +pUz +hwE bdC bfy bdg -bgg -aoG +uhS +ixV apz aqg aqg amt -bdW +snX aiZ aiZ tPP -gYT -oYp +lyv +vlo rTV dTs bkU -bBx -bmb -bms -bms -bms -bms -boH +rJg +rsC +xAT +xAT +xAT +xAT +xse avt -bmf +rfP brQ bsC btA buS -bqP +kNa bxq dTs dTs dTs dTs -bxr -bDb -cbl -bxr +ykX +vOW +bXL +ykX bPx -bHW -bJm -bHa -bHa -bHa -bMN -bHa -bHa -csL -ciT -ciT -cFA -cGs -cAq -cAq -bTJ +dla +iZE +xTq +xTq +xTq +qhU +xTq +xTq +qyZ +iRu +iRu +xzK +fsr +eUM +eUM +xlu bWg deJ -bWh -cGr -cGr -cGr +uMR +kWs +kWs +kWs bQb dLb -cGr -bWh -clV +kWs +uMR +vKS cdT bJC -uLr -cgB -cgB -cgB +qTw +eEV +eEV +eEV bJC chJ -bcH -bgx +uKq +vXx adt adx ama @@ -68259,10 +68265,10 @@ adw adw adw cQx -cQG -cQQ -cRq -cQQ +fXa +bWr +frY +bWr cQx dTs dTs @@ -68289,14 +68295,14 @@ uaK iTX dNS dNS -uAo -dNp -dNp -dNp -dNp +tvs +ggt +ggt +ggt +ggt dTs dTs -cKQ +dHq uTo drO doE @@ -68304,8 +68310,8 @@ cuM crx crx csG -cIh -cJo +sDR +gkR rHw cJQ cJQ @@ -68314,20 +68320,20 @@ cJQ rHw rHw rHw -cKi -cKS +trs +kmc doE cuO doE dkZ -cKJ -cQm -cQm -cQm -cQm -cQm -cQm -cQm +mgD +osL +osL +osL +osL +osL +osL +osL cZB cIY cKg @@ -68340,8 +68346,8 @@ cWk cWk cZB cWk -cIq -dfy +pLE +tah cWk cZB cWk @@ -68365,118 +68371,118 @@ acu dTs dTs dTs -abM -acb +iym +fDa ach ahD agE aGA -aHk -aIe -acf -vhA -kRX -vhA -aIe -aLL +hfl +dce +wRe +nDg +fkw +nDg +dce +gTM aGA aWY -aXQ -aYq -aYo -aYX -aZw -aZw -aZw -aZw -aZw -bbg -aYl -brK -bsE -bsE -aYX +tHm +sai +rLt +ixv +riT +riT +riT +riT +riT +lLr +uoF +bsV +jTZ +jTZ +ixv bdg bAI -bBi -dKc -beH -bfa +hoJ +gVW +tnt +tve bdC hWz bdg -bgg -aoG +uhS +ixV apz aql ara asa -bdW +snX aiZ bcy amQ ett -sdq -fZj +uJC +hut dTs bkU -blB -bmc -bms -bms -bms -bms +mKz +byJ +xAT +xAT +xAT +xAT bkU avt -bmf +rfP brQ bpJ btz buS -bqP +kNa bxq dTs dTs dTs dTs -bCn -bDf +hus +peb bEx -cbY -bGZ -bHX -bHX -cAq -cqE -bMf -bMO -cvV -cwb -cxG -cAq -cAq -cFY -bHa -bOl +lSm +pIz +uDF +uDF +eUM +fru +wMh +wBY +whm +jAx +tCe +eUM +eUM +eXW +xTq +hGD bPx -bOY -cun -cdo -cdo -dtT -dtT -dtT -cdo -cla -dNl -clU -dlP +tIA +tMM +wCm +wCm +wFT +wFT +wFT +wCm +hFq +jbQ +viv +oVf cdU ceK -cxe -cfQ -cgB -cgB +nQD +gzo +eEV +eEV bJC chJ dTs @@ -68489,18 +68495,18 @@ adt cec cgy cij -cpj -cAU -cPB +ssg +rSx +ikS cQx cQx cQx -cRr +mET cQx cQx lNu lNu -cvo +thl dTs dTs dTs @@ -68515,22 +68521,22 @@ dTs dTs dTs dTs -cMl +ylp xdj dAl gVm iTX uRz dNS -taH -xFk -cGw -dNp -dNp -dNp +qkI +xKU +mJw +ggt +ggt +ggt dTs dTs -cKQ +dHq uTo drT doE @@ -68538,8 +68544,8 @@ cuM crx crx csG -cTC -cJo +rPR +gkR rHw rHw rHw @@ -68548,13 +68554,13 @@ rHw gRC rHw rHw -cKi -doj +trs +evg doE cKp doE doE -cLP +tIU cIi cRM cRM @@ -68568,15 +68574,15 @@ dbZ cPn cKL cPo -cQm -gYU -vEW -vEW -vEW -vEW -vEW -idG -tsL +osL +erk +wnr +wnr +wnr +wnr +wnr +pyT +iYg dTs dTs dTs @@ -68598,26 +68604,26 @@ acu acu dTs dTs -abl -aca +iye +vFC ach ach ahD awK aGA -aHl -aIf -aIf -aIf -aIf -aIf -aIf -aLM +wTK +iit +iit +iit +iit +iit +iit +wlL aWY aWY aWY aWY -aYJ +lEZ aWY aZC aZC @@ -68625,11 +68631,11 @@ aZC aZC aZC aZC -aYm -aYF -bsE -bsE -bbX +jSp +vqn +jTZ +jTZ +jya bdf bdF bBk @@ -68639,79 +68645,79 @@ bdC bdC bfA bdf -bgg -aoG +uhS +ixV apz aqg aqg asa -bhW -aED +sTk +ncN aiZ ruS ruS -uzL -lfZ -asq +hnE +wpb +iLW bkU blC -bmd -aSz +mmF +rqR bkU -bUQ +sWA bkU bkU avw -bmf +rfP brQ bpJ btz buS -bqP +kNa bxq dTs dTs dTs -aRR -bCo -bDg +uuo +lyW +dZe bEw -cts -bHa -bHa -bHa -cqu -ciT -csL -ckT -uMZ -cwc -bPg -bQj -bHa -ciT -bTc -bTP +uWD +xTq +xTq +xTq +hmm +iRu +qyZ +yhe +gVF +gLg +sPB +wMz +xTq +iRu +jbM +bwJ bHc -bOY -bOY -bQc -bXV -bYD -bYD -bYD -bYD -bYD -bYD -bYD -bVk +tIA +tIA +peH +jFY +tuY +tuY +tuY +tuY +tuY +tuY +tuY +hOr cdV -cuI +jMO cfj wzl bJE che -cvz +cZG cir atr dTs @@ -68723,9 +68729,9 @@ adt ced cgy cik -cpq -cBX -cPX +oBC +fco +iUN cij cgy cgy @@ -68752,19 +68758,19 @@ dTs dTs dNS wpW -taH -cNV -oJw -oJw -xFk -dNp -dNp -dNp -dNp +qkI +rRK +gXM +gXM +xKU +ggt +ggt +ggt +ggt dTs dTs dTs -cKR +ggq uTo drT doE @@ -68772,8 +68778,8 @@ cuM cvJ crz csG -cTC -cJo +rPR +gkR rHw cJS rHw @@ -68782,13 +68788,13 @@ xCM kcH rHw rHw -cKi -doj +trs +evg doE cKr doE doE -cLP +tIU cUl crx aDI @@ -68802,14 +68808,14 @@ dcM cwF dvo csG -cQm -rbM +osL +hrh jcK -pFY -pFY -pFY -pFY -dag +hmk +hmk +hmk +hmk +xXm dTs dTs dTs @@ -68832,38 +68838,38 @@ acu acu dTs dTs -abl -aca +iye +vFC ach ach ahD adV aGz -aHm -aIf -aIf -aJr -aJr -aIf -aIf -aLN +tBM +iit +iit +mvS +mvS +iit +iit +oTU aWY -aWN -aXJ -aYr -aYr -aYr +qAU +wOu +hyG +hyG +hyG aZC -aZV -bat -baF -baS +jQq +qny +riE +jkw aZC -aYm -aYF -bsE -bsE -aZb +jSp +vqn +jTZ +jTZ +wMr bdf bdf bdf @@ -68873,57 +68879,57 @@ bdg dKi bdg bdf -bgg -aoG +uhS +ixV akp aqg aqg asa -akz -aEF -aFt -mlK -mlK -mlK -mlK -asr +oRv +wSv +hLs +uYB +uYB +uYB +uYB +eXo bkU -bnp -bnZ -bnZ -bzK -bnZ -bMG +tia +hVi +hVi +tnF +hVi +fBc bkU -avE -bpL +qNU +xok brQ bsC btA buS -bqO +pKm bxq dTs dTs -agB -aRR -bCo -bDg -cbl -bxr +eqp +uuo +lyW +dZe +bXL +ykX bPx -bHY -bJm -bHa -ciT -csL -ciT -bJm -bOm +wpM +iZE +xTq +iRu +qyZ +iRu +iZE +xSE bHc bHc -bHa -cFZ +xTq +oub bHc bLq bLq @@ -68931,21 +68937,21 @@ bVq bVq bVq bVq -age -age -age -age -bbx +uSO +uSO +uSO +uSO +rDX afu afd -bVl +gNs afC -cuK +rrj cfj cfS cgz che -cvA +sOf agd atr atl @@ -68957,19 +68963,19 @@ adt ceF cgA cik -csy -cEb -cPY +xlq +vwC +ivP cij cgA cQR cRt cRH cRY -cfJ -oua -oua -tLo +lIw +xhq +xhq +iVb dTs dTs dTs @@ -68985,20 +68991,20 @@ dTs dTs dTs dNS -taH -xFk -dNp -dNp -dNp -dNp -dNp -dNp -dNp -dNp +qkI +xKU +ggt +ggt +ggt +ggt +ggt +ggt +ggt +ggt dTs dTs dTs -cLa +koZ duc drN doE @@ -69006,8 +69012,8 @@ cuM crx crx csG -cTC -cJo +rPR +gkR rHw cJU rHw @@ -69016,13 +69022,13 @@ rHw rHw cJS rHw -cKi -doj +trs +evg doE cKr doE doE -cLP +tIU cUl crx cwD @@ -69036,13 +69042,13 @@ dcP dvo dvo csG -cQm -rbM -mHV +osL +hrh +peN xIC xIC xHa -fqt +vrl dTs dTs dTs @@ -69066,49 +69072,49 @@ acu acu dTs dTs -abl -aca +iye +vFC ach ach ahD adV aGz -aHm -aIf -aIf -aJr -aJr -aIf -aIf -aLN +tBM +iit +iit +mvS +mvS +iit +iit +oTU aWY aWY aWY -aYs -aYr -aYr +ijW +hyG +hyG aZC -aZW -aZY -aZY -aZY +wFi +ilx +ilx +ilx aZC -aYj -bxe -bvX -bsE -btL -bai -bai -bcV -bai +dXR +mDy +sWN +jTZ +rkP +qxC +qxC +xfT +qxC aZP -ame -ame -ame -ame -bgg -aoG +iOi +iOi +iOi +iOi +uhS +ixV apz akN ara @@ -69135,30 +69141,30 @@ brR bpJ btz buS -bqP +kNa bxq bxq -afB -afB -aTw -bCo -bDg -cbm -bxr +ovx +ovx +pCj +lyW +dZe +nbb +ykX bGX -bHZ -bJm -osV -cqF -csM -ciT -bJm -bOn +miW +iZE +wZQ +kjz +kgU +iRu +iZE +xbn bHc -bQg -ciT -ciT -bTd +ubr +iRu +iRu +mZA bLq dTs dTs @@ -69169,17 +69175,17 @@ dTs agO agO agO -baZ +hwK afd afd -bVl +gNs afC -cuK +rrj cfj wzl bJE che -cvA +sOf agm atr atl @@ -69191,19 +69197,19 @@ adt ceH cgy cil -cvq -cFt -cPZ +kYs +gpO +oxt cil cgA cQS cRs cQR cgy -cjh -cpn +rMq +lta cvp -opZ +qlk dTs dTs dTs @@ -69220,28 +69226,28 @@ dTs dTs dTs dTs -dNp -dNp -dNp -dNp -dNp -dNp +ggt +ggt +ggt +ggt +ggt +ggt dTs dTs dTs dTs dTs dTs -cLv -cGi +gFe +hzp doE doE cuM crx crx csG -cTC -cJo +rPR +gkR rHw cJV rHw @@ -69250,13 +69256,13 @@ rHw rHw cJU rHw -cKi -doj +trs +evg doE cKr doE doE -cLP +tIU cUl crx cwD @@ -69270,13 +69276,13 @@ cMJ cMJ cMJ cTc -cQm -rbM -mHV +osL +hrh +peN xIC xIC -fqt -vSF +vrl +mhW dTs dTs dTs @@ -69300,49 +69306,49 @@ acu acu dTs dTs -abl -aca +iye +vFC ach ach -agt -axm +ivu +lGa aGz -aHm -aIf -aIf -aIf -aIf -aIf -aIf -aLN +tBM +iit +iit +iit +iit +iit +iit +oTU aWY -aWN -aXJ -aYt -dJK -aYt +qAU +wOu +tHM +icy +tHM aZC -aZX -bau -baG -baT -bbl -bbf -bxm -byB -bsJ -bsE -bsE -bsE -bsE -aYk -aZA -aky -alo -bfB -bfJ +txc +hUq +ufy +uDN +xnm +gzZ +sXU +eVj +sjX +jTZ +jTZ +jTZ +jTZ +hQA +hmX +lZw +opo +hZU +tbK bgh -aoG +ixV apz aki aqg @@ -69369,30 +69375,30 @@ brS bpJ btz buS -bqP -bxr -byv -bzF -bzF -bzF -bCp -bDg -cbm -cbU +kNa +ykX +jds +mYv +mYv +mYv +mbm +dZe +nbb +uYS bPx -fPp -bJm -ciT -bLm -bMi -ciT -ckL -bOo +tQx +iZE +iRu +fTT +nzv +iRu +pMN +gOl bHc -bQg -bHa -ciT -mar +ubr +xTq +iRu +lFs bLq dTs dTs @@ -69404,16 +69410,16 @@ dTs dTs dTs dTs -bRh -bRh -bVm +xPh +xPh +sVW afC -cuK +rrj cfj wzl bJE che -cvA +sOf dTs dTs dTs @@ -69436,9 +69442,9 @@ cRI adw lNu lNu -cTr -opZ -qKA +joU +qlk +kzP dTs dTs dTs @@ -69455,10 +69461,10 @@ dTs dTs dTs dTs -dNp -dNp -dNp -dNp +ggt +ggt +ggt +ggt dTs dTs dTs @@ -69467,15 +69473,15 @@ dTs dTs dTs dTs -csB +eDU doE doE cuM cvJ crz csG -cTC -cJo +rPR +gkR rHw rHw cJW @@ -69484,32 +69490,32 @@ rHw rHw cJV rHw -cKi -doj +trs +evg doE cKr doE doE -cLP +tIU cUl cvJ dmJ csG -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -rbM -mHV +osL +osL +osL +osL +osL +osL +osL +osL +osL +osL +hrh +peN tii xIC -ulg +mfs dTs dTs dTs @@ -69534,21 +69540,21 @@ acu acu dTs dTs -abK -aca +ens +vFC ach ach ach -axn +nVO aGA -aHn -aIf -aIM -aJs -aJs -aKZ -aIf -aLM +mGe +iit +rYk +jYY +jYY +lgS +iit +wlL aWY aWY aWY @@ -69556,27 +69562,27 @@ aWY aWY aWY aZC -aZY -bav -aZY -aZY +ilx +iYj +ilx +ilx aZC -aYl -bxy -btH -bsJ -bsE -bAn -dJZ -dKb -bsE -aYk -akz -alp -bfC +uoF +wFx +kLE +sjX +jTZ +iSr +tcs +fnN +jTZ +hQA +oRv +jXp +eiE bfK -alp -avC +jXp +gdb apz aki aqg @@ -69603,30 +69609,30 @@ bAr bpJ btz buS -bqQ -bxs -byw -byw -bSO -bSO -bSO +oTI +jfe +tHj +tHj +fdy +fdy +fdy bXU -cbm -cbU +nbb +uYS bPx -fPp -bJm -ciT -dDD -bMj -ciT -ckL -bOp +tQx +iZE +iRu +mRD +pna +iRu +pMN +dkz bHc -cBo -ciT -ciT -bTf +ncx +iRu +iRu +jLG bLq dTs dTs @@ -69640,14 +69646,14 @@ dTs dTs dTs aWd -bhM +gwf afE -cuK +rrj cfj cfS cgz che -cvA +sOf dTs dTs dTs @@ -69668,11 +69674,11 @@ cQT cRA cij cRZ -tUF +mmS lNu -eHi -opZ -qKA +jEA +qlk +kzP dTs dTs dTs @@ -69689,9 +69695,9 @@ dTs dTs dTs dTs -dNp -dNp -dNp +ggt +ggt +ggt dTs dTs dTs @@ -69701,15 +69707,15 @@ dTs dTs dTs dTs -csB +eDU doE doE cuM crx crx csG -cTC -cJo +rPR +gkR rHw rHw rHw @@ -69718,31 +69724,31 @@ rHw rHw naF rHw -cKi -doj +trs +evg doE cKr doE doE -cLP +tIU cUl crx cwD csG -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -rbM -mHV +osL +osL +osL +osL +osL +osL +osL +osL +osL +osL +hrh +peN xIC -fqt +vrl xkK yii dTs @@ -69767,48 +69773,48 @@ acu (79,1,1) = {" acu dTs -abl -abM -acb +iye +iym +fDa ach ach ach axJ aGz -aHo -aIf -aKV -vpR -aJt -aLc -aIf -aIO +pZL +iit +qdq +fcC +xSs +hdi +iit +jam aGz -akv -aeA -aev +xAR +eBE +xFe dTs dTs aZC -aZZ -bav -aZY -qHt +tXE +iYj +ilx +xLF aZC -aYm -bpz -bsJ -aYX -aZw -aZw -aZw -aZw -aZw +jSp +vhI +sjX +ixv +riT +riT +riT +riT +riT aZR -ame -ame -ame -bfL +iOi +iOi +iOi +lVb aNn auy aks @@ -69837,30 +69843,30 @@ bpK bpK btC buU -bqU -bvr -bxt -bxt -bSP -bSP -bSP +qdz +yfv +rCj +rCj +mNv +mNv +mNv bDc -cbl -cbU +bXL +uYS bPx -nTn -ckL -ciT -cqI -csN -ciT -ckL -cwT +etG +pMN +iRu +fYs +nTU +iRu +pMN +hkc bHc -bHW -ciT -ciT -bTe +dla +iRu +iRu +qoQ bLq dTs dTs @@ -69874,9 +69880,9 @@ dTs dTs dTs dTs -qKe +rqO agd -cuK +rrj cfj wzl bJE @@ -69886,11 +69892,11 @@ dTs dTs dTs adw -ahW -bkL -ccc -cdr -ceL +wJA +vXp +erS +qsu +qrV cgy ckq cvu @@ -69902,11 +69908,11 @@ cQU cRx cij cRZ -pij +wxJ lNu -eHi -opZ -mMm +jEA +qlk +ayR dTs dTs dTs @@ -69923,9 +69929,9 @@ dTs dTs dTs ebs -rUA -rUA -rUA +rqZ +rqZ +rqZ ebs dTs dTs @@ -69934,16 +69940,16 @@ dTs dTs dTs dTs -csA -cGv +nyw +rzr doE doE cuM crx crx csG -cTC -cJo +rPR +gkR cJq rHw rHw @@ -69952,31 +69958,31 @@ rHw rHw rHw rHw -cKi -doj +trs +evg doE cKp doE doE -cLP +tIU dUO dvo cwD csG -cWx -cUh -cUh -cUh -cUh -cUh -cUh -cUh -cUh -cUh -cPr -mHV -fqt -vSF +fvn +dZx +dZx +dZx +dZx +dZx +dZx +dZx +dZx +dZx +kqm +peN +vrl +mhW yii yii dTs @@ -70001,38 +70007,38 @@ acu (80,1,1) = {" acu dTs -abl -aca +iye +vFC ach ach ach ach axJ aGz -aHp -aIf -aIN +pXM +iit +pAh aJu aJu -aLc -aIf -aIf -aMa -aaS +hdi +iit +iit +eqg +xNE aej aeC dTs dTs aZC -baa -baw -aZY -qHt +rZt +uXJ +ilx +xLF aZC -buZ -brK -bsE -bbX +vUF +bsV +jTZ +jya bcT bcT bcT @@ -70042,59 +70048,59 @@ bcT bcU bcU bcT -bfL +lVb apz aqg aki aki aki asa -aky -bip -bcD -bcD -bcD -bcD -bdA -asN +lZw +raH +trp +trp +trp +trp +fgH +ejI bkU -aiT -aiU -aiU -aiU -aiU -bbQ +hmb +qbw +qbw +qbw +qbw +nqf bkU -avR -bfj -bfj -bfj -bfT -bfU +wIJ +hWQ +hWQ +hWQ +ikx +hzI bwd -bxu -byy -byy -byy -byy -bWb -bFQ -cbl -cbU +gKY +tbc +tbc +tbc +tbc +wjV +oFR +bXL +uYS bPx -bIb -bJm -ciT -ciT -bMg -ciT -bHa -ciT -bPh -bHa -ciT -ciT -bOm +tdj +iZE +iRu +iRu +xEb +iRu +xTq +iRu +lYG +xTq +iRu +iRu +xSE bLq dTs dTs @@ -70108,9 +70114,9 @@ dTs dTs dTs dTs -bba +pYz agd -cuK +rrj cfj wzl bJE @@ -70120,11 +70126,11 @@ dTs dTs dTs adw -sOu -aYh -ccI -cdY -ceM +iLg +xjl +tmm +mvz +xbU chK cmp cxf @@ -70138,8 +70144,8 @@ cij adw lyw lNu -eHi -cTs +jEA +hEb lNu dTs dTs @@ -70157,9 +70163,9 @@ dTs dTs dTs dTs -dNp -dNp -dNp +ggt +ggt +ggt dTs dTs dTs @@ -70168,7 +70174,7 @@ dTs dTs dTs dTs -csB +eDU doE doE doE @@ -70176,8 +70182,8 @@ cuM cvJ crz csG -cTC -cJo +rPR +gkR cJw rHw rHw @@ -70186,30 +70192,30 @@ rHw rHw rHw cKe -cKi -doj +trs +evg doE cKr doE doE -cLP +tIU dUO dVb cwE csG -cTD -cTG -cTG -cTG -cTG -cTG -cTG -cTG -cTG -cTG -sNQ -yfp -ulg +wDU +xlQ +xlQ +xlQ +xlQ +xlQ +xlQ +xlQ +xlQ +xlQ +ivm +hDY +mfs yii yii yii @@ -70235,100 +70241,100 @@ acu (81,1,1) = {" acu dTs -abK -aca +ens +vFC ach ach ach ach -axO +kMy aGz -aHq -aIf -aIN +kkc +iit +pAh aJu aJu -aLb -aIf -aIf -aMb -adO +iQT +iit +iit +nYN +lqU aek aeM -akt +ttL dTs aZC -aZW -aZY -aZY -aZY +wFi +ilx +ilx +ilx aZC -buO -byz -byE -aZc +xbI +cqD +eQd +wcu bcU -bdi -bdG -bed -bet -beJ -bfb -nFW +sfO +osT +ohf +pZs +kVn +wcg +rbN bcU -bfL +lVb apz dKg aki aqg aki asa -bhX -biq +uGq +llQ aiZ aiZ -aqy -ars +gBz +swD dTs dTs bkU -adu -adu -adu -adu -adu -adu +xjJ +xjJ +xjJ +xjJ +xjJ +xjJ bkU -avS -aia -aia -aia -afA -dTs -dTs -dTs -afA -afA -afA -aTF -bCo -bWc -cbm -cbU +jPG +elh +elh +elh +rsm +dTs +dTs +dTs +rsm +rsm +rsm +fdM +lyW +xxj +nbb +uYS bGX -bIc -ckL -bHa -ciT -bMg -ciT -ciT -ciT -ciT -ciT -ciT -ciT -bOm +tEB +pMN +xTq +iRu +xEb +iRu +iRu +iRu +iRu +iRu +iRu +iRu +xSE bLq dTs dTs @@ -70341,10 +70347,10 @@ dTs dTs dTs dTs -qKe +rqO agd agd -cuK +rrj cfj cfS cgz @@ -70355,10 +70361,10 @@ dTs dTs adw adw -aYW -cdq -cdZ -ceN +pYo +pev +oxe +vdW cgy cij cil @@ -70372,12 +70378,12 @@ cil but lNu lNu -eHi -opZ +jEA +qlk lNu kbo lNu -mMm +ayR dTs dTs dTs @@ -70391,18 +70397,18 @@ dTs dTs dTs dTs -dNp -dNp -dNp -cGO -ibU +ggt +ggt +ggt +xVb +nou dTs dTs dTs dTs dTs dTs -csB +eDU doE doE doE @@ -70410,8 +70416,8 @@ cuM crx crx csG -cTC -cJo +rPR +gkR cJO rHw rHw @@ -70420,18 +70426,18 @@ rHw rHw rHw cKf -cKi -doj +trs +evg doE cKr dNS dNS -iri +idX bYV rdW bCO fdk -hOK +suT dsJ dsJ dil @@ -70469,22 +70475,22 @@ acu (82,1,1) = {" acu dTs -abM -acb +iym +fDa ach ach ach -acH -adE +mfg +sEp aGz -aHr -aIf -aIN -fqI -abI -aLc -aIf -aIM +wut +iit +pAh +hrj +fCh +hdi +iit +rYk aGz aez aem @@ -70492,16 +70498,16 @@ aeM dTs dTs aZC -aZW -aZY -aZY -aZY -bbm -bsE -brK -aYk -aYk -bcr +wFi +ilx +ilx +ilx +xJJ +jTZ +bsV +hQA +hQA +pKK bdj bdj bdj @@ -70510,18 +70516,18 @@ beK bdj dKf bcU -bfL +lVb apz aqg aki akN ara asa -bdW +snX aiZ -aqy -ars -axY +gBz +swD +elW dTs dTs dTs @@ -70530,7 +70536,7 @@ dTs dTs dTs adI -aer +izI bkU bkU bkU @@ -70542,26 +70548,26 @@ dTs dTs dTs dTs -agB +eqp aGP -aRR -bCo -bWc -cbm -cbV +uuo +lyW +xxj +nbb +ntl bPx -bHW -ckQ -ciT -ciT -bMg -ciT -sdu -cwc +dla +waO +iRu +iRu +xEb +iRu +tYW +gLg bHc -bQk -bQk -bSi +fDi +fDi +gXq bLq bLq dTs @@ -70575,10 +70581,10 @@ dTs dTs dTs dTs -qKe +rqO agd agd -cuK +rrj cfj wzl bJE @@ -70588,11 +70594,11 @@ dTs dTs dTs adw -aku -bcn -ccc -cdZ -ceN +xHL +dCu +erS +oxe +vdW cgy cij cxg @@ -70606,8 +70612,8 @@ cij but lNu lNu -eHi -opZ +jEA +qlk lNu xLS cAc @@ -70615,7 +70621,7 @@ mAr rUK lNu aFQ -aHh +oFB dTs dTs dTs @@ -70624,19 +70630,19 @@ dTs dTs dTs dTs -cGO -dNo -cGO -ibU -cMo +xVb +krH +xVb +nou +reP dNS -kkm -dNo +fxP +krH dTs dTs dTs -cGO -cMo +xVb +reP dNS dNS dNS @@ -70644,35 +70650,35 @@ pva rdW rdW fdk -hOK -cJp -cJP -cJP -cJP -cJP -cJP -cJP -cJP -cKh -cKn -doj +suT +gke +dwK +dwK +dwK +dwK +dwK +dwK +dwK +nLw +nUa +evg doE cKr dNS dNS -iri +idX bYV hzC bCO fdk -eaX +vct dsJ mbl dto dto dtp dtp -dxW +vtP dsJ dTs dTs @@ -70703,57 +70709,57 @@ acu (83,1,1) = {" acu dTs -aca +vFC ach ach ach ach ahD -adW +liZ aGA -aHs -aIf -aIO -aJw -aJw -aIL -aIf -aLM +sxX +iit +jam +oLA +oLA +wUc +iit +wlL aGA aez aem aeM aez -akv +xAR aZC -qYC -aZY -aZY -aZY +pgD +ilx +ilx +ilx aZC -bva -byA -btI -btI -bcE +eIN +nex +pFq +pFq +xTx bdk dKa -bee -beu -beL -bfc +kHx +vUe +jWV +dub bdj bcU -bfL +lVb apz aki aki aki aqg asa -bdW +snX aiZ -axZ +vVR dTs dTs dTs @@ -70777,21 +70783,21 @@ dTs dTs dTs aGP -agB -aRR -bCo -bWc +eqp +uuo +lyW +xxj bEw -ctt -bHb -bHa -ckT -ciT -cqJ -ctP -ciT -ckL -cwU +qAa +hxZ +xTq +yhe +iRu +fEn +xnq +iRu +pMN +kbT bHc bQl bRo @@ -70809,24 +70815,24 @@ aEa dTs acw atl -qKe +rqO agd cdp -cvm +pQN cfj wzl bJE chj -arS +uYC dTs dTs dTs adw -aku -bkL -cdq -cea -ceO +xHL +vXp +pev +iXW +rei cgA cij cxh @@ -70840,8 +70846,8 @@ cRI adw lNu lNu -eHi -opZ +jEA +qlk xLS cAc eJh @@ -70857,19 +70863,19 @@ dTs dTs dTs dTs -aHw -cMo -kkm -cMo +tOE +reP +fxP +reP dNS dNS jfA dNS -kkm -dNo -dNp +fxP +krH +ggt dTs -cMl +ylp dNS dNS dNS @@ -70878,23 +70884,23 @@ pva sLx wya fdk -cIk -cMM -cMM -cMM -cMM -cMM -cMM -cMM -cMM -cMM -cMM -cKT +mBB +sGZ +sGZ +sGZ +sGZ +sGZ +sGZ +sGZ +sGZ +sGZ +sGZ +wBG doE cKr dNS dNS -iri +idX bYV sLx bED @@ -70906,7 +70912,7 @@ dtp dtp dtp dtp -dxW +vtP dsJ dTs dTs @@ -70937,22 +70943,22 @@ acu (84,1,1) = {" acu dTs -aca +vFC ach ach ach -acH -acP +mfg +iMZ agE aGz -aHm -aIf -aIf -aIf -aIf -aIf -aIf -aLN +tBM +iit +iit +iit +iit +iit +iit +oTU aGz adZ aem @@ -70960,33 +70966,33 @@ aeM anE aez aZC -flj -bax -baH -baV +uAV +siY +oRw +wrz aZC -aYm -byB -bsE -aYX +jSp +eVj +jTZ +ixv bcU dXL bdI -bef +ujg bev bev bfd bdj bcU -bfL +lVb apz aki aqg aki aki asa -bdW -aqy +snX +gBz dTs dTs dTs @@ -71012,20 +71018,20 @@ dTs dTs dTs aIq -aRR -bCo -bWc +uuo +lyW +xxj bEw -ctu -bHa -ciT -ciT -ciT -ciT -bHa -bHa -bNp -bOs +oNH +xTq +iRu +iRu +iRu +iRu +xTq +xTq +oGZ +nSW bLq bLq bLq @@ -71035,32 +71041,32 @@ dTs dTs dTs aEa -aCD -aCF -aDg -aDn +rdy +lIS +pYj +guJ aEa -aDt +piO acw atl -acx +iQA cdp cyv -bGn +sRC cfj cfS cgz cAT -cBI +sJM atr dTs dTs adw adw -buk -bum -ceb -ceP +uvs +wsy +icX +tbR cgA cij cxi @@ -71074,8 +71080,8 @@ cij but sHk lNu -cTr -opZ +joU +qlk cTh tAy eJh @@ -71100,10 +71106,10 @@ dNS dNS dNS dNS -kkm -ibU -ibU -cMo +fxP +nou +nou +reP dNS dNS dNS @@ -71112,7 +71118,7 @@ pva rdW rdW fdk -cJm +ktB doE doE cuO @@ -71128,7 +71134,7 @@ doE cKr dNS dNS -iri +idX bYV rdW bCO @@ -71171,22 +71177,22 @@ acu (85,1,1) = {" acu dTs -abr +qDF acz ach ach ahD -ahY -adY +wWI +kts aGz -aHm -aIf -aIf -aJr -aJr -aIf -aIf -aLN +tBM +iit +iit +mvS +mvS +iit +iit +oTU aGz aez aem @@ -71200,26 +71206,26 @@ aZC aZC aZC aZP -bbU -bbW +eYO +rwg aZP bcT bdm bdj -beg +qvi bew bew bfe bdj bcT -bfL +lVb apz dKh aki aql ali asa -bdX +qkl dTs dTs dTs @@ -71247,19 +71253,19 @@ bpM bpM bzH bzH -bCq -bWc -ctj -cbU +gWR +xxj +jyA +uYS bPx -bId -ckV -cqy -bKy -bId -bMP -bMP -bOt +iAx +oHz +gxh +xNu +iAx +jux +jux +mRB bLq dTs dTs @@ -71269,32 +71275,32 @@ dTs dTs dTs aEa -aCE -aCU -aDg -aDo +bsU +pcJ +pYj +hKA aEb -aDu +vCk acw acw -aDJ -aDK +ptW +mua cyD -aDQ +bBu bgn cAM bgm bha -aFB +fwa acw dTs dTs adw -ahW -bum -bum -ceb -ceN +wJA +wsy +wsy +icX +vdW cgy cng cij @@ -71308,8 +71314,8 @@ cij but lNu lNu -eHi -opZ +jEA +qlk jlP drh dud @@ -71346,7 +71352,7 @@ pva rdW rdW fdk -cJT +slE cKp cKr cKr @@ -71362,7 +71368,7 @@ cKr cKp dNS dNS -iri +idX bYV rdW lyB @@ -71377,8 +71383,8 @@ dtp dto dyb bgd -ebJ -dWM +nIg +jSq dyb dTs dTs @@ -71405,22 +71411,22 @@ acu (86,1,1) = {" acu dTs -abs -aca +pJi +vFC ach ach ahD ahZ -aza +uxH aGz -aHm -aIf -aIf -aJr -aJr -aIf -aIf -aLN +tBM +iit +iit +mvS +mvS +iit +iit +oTU aGz qxv aem @@ -71429,31 +71435,31 @@ dTs dTs dTs dTs -ahu -ait -aja +nbV +uwJ +oPu aJm -ajS -bbY -apO -ame +iGd +vLO +pRl +iOi bcT bdn bdj -beg +qvi bew bew bfe bfq bcT -bfL +lVb apz aqg akA aki aki asa -bdV +qPk dTs dTs dTs @@ -71477,14 +71483,14 @@ dTs dTs bpM bpM -btF -brU -bAy +kPb +qxD +jso bzH -bxr -bWc -ctj -cbU +ykX +xxj +jyA +uYS bHc bHc bHc @@ -71503,17 +71509,17 @@ dTs dTs dTs aEa -aCF -aCU -aCU -aCU +lIS +pcJ +pcJ +pcJ aEb -aDu -aSW +vCk +nwU acw acw acw -czk +gLK acw czR cAb @@ -71524,11 +71530,11 @@ acw dTs dTs adw -ifh -bum -bum -bum -bum +wTo +wsy +wsy +wsy +wsy cgy coy cgy @@ -71542,8 +71548,8 @@ adw adw mkJ xLS -eHi -opZ +jEA +qlk lDT iOa kWh @@ -71551,52 +71557,52 @@ lNu lNu lNu aFQ -aHj +dmy cqn -cQE -cRW -cSh -cQE -cQE +mdX +kpY +iIK +mdX +mdX cqn -aHY -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -cMi +mqu +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uWJ aRQ sLx wya fdk -cWy -cJR -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -iPJ +tSo +gDA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +uKA +iIv bYV sLx glx @@ -71611,8 +71617,8 @@ dtp dto dyb bgk -dAn -dAn +xfM +xfM dyb dTs dTs @@ -71639,22 +71645,22 @@ acu (87,1,1) = {" acu dTs -abl -aca +iye +vFC ach ach ahD ahC azQ aGA -aHl -aIf -aIf -aIf -aIf -aIf -aIf -aLM +wTK +iit +iit +iit +iit +iit +iit +wlL aGA dTs aem @@ -71664,31 +71670,31 @@ dTs dTs dTs dTs -air -aiY +uXE +fhD aiZ -ajS -aMO -aoG -ame +iGd +hRd +ixV +iOi bcU dzY bdj -beg +qvi bew bew bfe bdj bcU -bfL +lVb apz aqg akA aki aki asa -bdW -axZ +snX +vVR dTs dTs dTs @@ -71710,15 +71716,15 @@ dTs dTs bpM bpM -bxv -bRQ -bRR -bAz +gVQ +tzx +stn +bCb byC -bxr -bWc -cbm -cbU +ykX +xxj +nbb +uYS bHd bIe cnv @@ -71742,18 +71748,18 @@ aCI aDh aCJ aEb -aDu -aSW -aSW +vCk +nwU +nwU acw -aDM +pPU cyD -cEn +gUl bgn cAM bgm bha -cBT +ogA acw wrl dTs @@ -71776,11 +71782,11 @@ adw lNu cAc mAr -eHi -opZ +jEA +qlk lNu -cEd -tUF +whK +mmS sYp qbW qbW @@ -71845,7 +71851,7 @@ dtp dxX dyb dyb -dBi +uVO dyb dyb dTs @@ -71873,22 +71879,22 @@ acu (88,1,1) = {" acu dTs -abl -abr +iye +qDF acz ach -agt -afx +ivu +kJn agE aGz -aHt -aIg -aKZ -aIf -aIf -aIM -aIg -aLO +mgf +wGN +lgS +iit +iit +rYk +wGN +kNR aGA dTs aem @@ -71898,32 +71904,32 @@ dTs dTs dTs dTs -ais +eLr aiZ aiZ -ajS -aMO -aoG -ame +iGd +hRd +ixV +iOi bcU bdp bdj -beh +izY bex bex bfd bdj bcU -bfL +lVb aIK auz aIJ aql ali asa -bdW -apu -amP +snX +rTF +qLb dTs dTs dTs @@ -71943,16 +71949,16 @@ dTs dTs dTs bpM -bwf -btG -bRR -bRR -bAz +jUP +iMb +stn +stn +bCb byC -bxr -bWc -cbm -bxr +ykX +xxj +nbb +ykX bHd bIf bIf @@ -71982,12 +71988,12 @@ aDG cyD cyD cyD -cEv +vCV bgn cAN cAP bha -cCG +xmR cDN dTs dTs @@ -71999,9 +72005,9 @@ aoz aoz aoz aoz -qlU -cTr -cTs +wLD +joU +hEb sHk lNu lNu @@ -72010,11 +72016,11 @@ mkJ cAc eJh faE -eHi -opZ -bqc -kTX -qlU +jEA +qlk +htA +fAq +wLD igf vqt eft @@ -72078,9 +72084,9 @@ dWi dtp dxY dyb -ebJ -dAn -dWH +nIg +xfM +jVP dyb dyb dTs @@ -72107,57 +72113,57 @@ acu (89,1,1) = {" acu dTs -aaU -abs -abr +ijC +pJi +qDF acz -acH -acP +mfg +iMZ agE aGz aGz aGA aGz -aIf -aKp +iit +tyi aGz aGA aGA aGA -aev +xFe aem aeM -akv +xAR dTs dTs dTs -amP -aiY -ajR -ajb -afZ -bbZ -bcs -ame +qLb +fhD +fMH +xKg +qui +nhB +ygM +iOi bcU qbC bdj -bei -bey -bey -dKd +tkF +lrW +lrW +sOi bdj bcU -bfM -aNp -apO +tEH +tMx +pRl apz aqg aqg asa -bdW +snX aiZ -aqy +gBz dTs dTs dTs @@ -72177,16 +72183,16 @@ dTs dTs dTs bpM -bwg -bpP -bEG -bEG -bAz +dIB +xVB +pVF +pVF +bCb byC -bxr -bWc -cbm -bxr +ykX +xxj +nbb +ykX bHe bIf bIf @@ -72216,12 +72222,12 @@ aDx bNg cyD cyD -cEv +vCV bgn cAM bgm bha -cCG +xmR cDN ncm dTs @@ -72233,9 +72239,9 @@ aoz aoz aoz aoz -qlU -cTr -opZ +wLD +joU +qlk lNu lNu lNu @@ -72244,11 +72250,11 @@ iOa tAy eJh lKW -eHi -opZ -qKA +jEA +qlk +kzP awk -qlU +wLD igf eft foq @@ -72303,19 +72309,19 @@ vIx rdW rdW fdk -eba +poT dsJ ebx -eau -eaT -ece -ecw +oji +hHQ +tBi +nUu ecA -eed -ecH -ecH -ecM -dCF +kqF +vit +vit +kBm +pTt dyb dTs dTs @@ -72342,20 +72348,20 @@ acu acu dTs dTs -aaU -abs -abr -acP -ahY -aAB -axi -aCd -aev -hTr -ahF -ajK -ahh -ahh +ijC +pJi +qDF +iMZ +wWI +vxQ +tge +lDg +xFe +gvJ +tRu +gKj +vRv +vRv dTs dTs aez @@ -72365,13 +72371,13 @@ aez dTs dTs dTs -ajb -ajb -afZ +xKg +xKg +qui aAE aiu -bca -bct +oVh +hPq amf bcU qbC @@ -72382,16 +72388,16 @@ bdj bdj bdj bcU -bfN -ame -aoE +vNy +iOi +hcf apz aki aqg asa -bdW +snX aiZ -apu +rTF dTs dTs dTs @@ -72411,16 +72417,16 @@ dTs dTs dTs bpM -bwh -bqW -bRS -bpP -bAA +nuI +fON +lSv +xVB +jHk bzH -bxr -bWc -cbm -bxr +ykX +xxj +nbb +ykX bHd bIf bIf @@ -72450,12 +72456,12 @@ aDx aDx cyD cyD -cEv +vCV bgn cAM bgm bha -cCG +xmR cDN dTs dTs @@ -72467,9 +72473,9 @@ aoz aoz aoz aoz -qlU -eHi -opZ +wLD +jEA +qlk lNu pal lNu @@ -72478,11 +72484,11 @@ cqq drh lKW wav -eHi -opZ -qKA -wgv -pij +jEA +qlk +kzP +lHE +wxJ igf eft jmd @@ -72537,19 +72543,19 @@ kJP kJP kJP fCB -hOK -eeD -dtu -dVL -dVS -ecf -dtu +suT +pmx +eol +qPE +sNT +jTX +eol dtp dyb -dAn -vxt -ecN -dwl +xfM +qaq +qUH +cxM dyb dTs dTs @@ -72577,18 +72583,18 @@ acu dTs dTs dTs -aaU -acD -acD -ahH -aep -aeA -aev -abR -ajT -vCE -ajL -ahh +ijC +qht +qht +sqX +gZL +eBE +xFe +tdb +hTH +vby +mGJ +vRv dTs dTs dTs @@ -72596,16 +72602,16 @@ uvf aem aeM aYx -akv +xAR dTs dTs dTs -baI +emv aiu akB aiZ -bcb -bcu +wjA +pjl amg bcT bcU @@ -72616,18 +72622,18 @@ bcU bcU bcU bcT -bfN -ame -aoE +vNy +iOi +hcf apz aql ara asa -bdW +snX aId aiZ -apu -apt +rTF +rOw dTs dTs dTs @@ -72645,16 +72651,16 @@ dTs dTs dTs bpM -bwi -bpP -bSc -bSK -bzG -bBt -byx +ivi +xVB +efE +xKJ +eRk +tWX +sIn bYG -ctl -bFP +lSk +mJs bHd bIf bIf @@ -72679,17 +72685,17 @@ aCw aCI aEa aDA -aDF -aDH +iWF +bYu acw -aDN +sHm cyD -aDR +xGO bgn cAN cAP bha -cEP +lQD dTs dTs dTs @@ -72697,93 +72703,93 @@ dTs dTs aoz aoz -wgv -sia +lHE +mQI aoz -wgv -pij -ekH -cFs -cRC -kLf -cSH -kLf -kLf -kLf -kLf -kLf -cTH -gea -mMm -pij +lHE +wxJ +rRo +kjw +gUR +slW +hcs +slW +slW +slW +slW +slW +puY +szK +ayR +wxJ lNu igf rFU jMT aGx -aHv +uYf cqn -cRK -cSd -cSE -cSE -cSG +jCd +uKC +ofN +ofN +osW cqn -aIc -gdW -gdW -gdW -gdW -gdW -gdW +xwB +hna +hna +hna +hna +hna +hna bYV sLx wya fdk -dKS -hBr -hBr -cYP -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -cYP -hBr -cUj -cUj -cUj -cUj -cUj -jpa +mcI +uLR +uLR +tEy +uLR +uLR +uLR +uLR +uLR +uLR +uLR +uLR +uLR +uLR +tEy +uLR +tQL +tQL +tQL +tQL +tQL +kHY bYV rdW lyB fdk uFX -cUj -cUj -cUj -cUj -oQx +tQL +tQL +tQL +tQL +eFd dsJ dtp -dVL -dVS -ecf -dtu +qPE +sNT +jTX +eol ebD dyb -dty -dWH -ecO -dwl +fPy +jVP +pJb +cxM dyb dTs dTs @@ -72814,54 +72820,54 @@ dTs dTs dTs dTs -aaS -abc -abp -abp -abV -ajg +xNE +gFa +qwV +qwV +tmr +oTz aih -ajL +mGJ dTs dTs dTs -cPt +pnv bRn aem aeM aez aez -akv +xAR dTs dTs -aiY +fhD aiZ aiZ -ajR -bcc -bcv -bcF -bcX -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bfO -ame -aoE +fMH +vpF +eOc +gJE +hjt +pwy +pwy +pwy +pwy +pwy +pwy +pwy +pwy +rfd +iOi +hcf apz aki aki asa -bdW +snX bcy aiZ aiZ -apu +rTF dTs dTs dTs @@ -72879,16 +72885,16 @@ dTs dTs dTs bpM -bwj -bEG -bvb -bEG -bEG -bEG -bCr +mbH +pVF +kFX +pVF +pVF +pVF +rHa bYZ -cbm -bxr +nbb +ykX bHd bIg bJp @@ -72912,12 +72918,12 @@ aCw aCw aCJ aEb -aDu -aSW -aSW +vCk +nwU +nwU acw acw -czk +gLK acw czR cAb @@ -72930,11 +72936,11 @@ dTs dTs dTs dTs -wgv -pij -mMm -sia -qlU +lHE +wxJ +ayR +mQI +wLD lNu lNu lNu @@ -72963,44 +72969,44 @@ cSo cSF cqn cqn -aDv -gdW -gdW -gdW -gdW -dIw -gdW +vjW +hna +hna +hna +hna +ePU +hna bYV rdW rdW fdk -cWy -qKE +tSo +htd uFX -cYQ -qKE -qKE -qKE -qKE -qKE +pet +htd +htd +htd +htd +htd uFX uFX -qKE -qKE -qKE +htd +htd +htd cYV -jOe -cUi -mGo -mGo -mGo -mGo -dlx +vtB +qIX +snv +snv +snv +snv +tSB bYV rdW lyB fdk -hOK +suT doH doH edO @@ -73009,15 +73015,15 @@ doH doH dsM dtp -dVS -ecf +sNT +jTX dtp -dya +kir dyb -dty -ebL -dAn -dAn +fPy +iOY +xfM +xfM dyb dTs dTs @@ -73047,19 +73053,19 @@ dTs dTs dTs dTs -ahh -aLv -aii -aii -aby -aii -aii -aii -aii -ajK +vRv +nLQ +nxn +nxn +aWP +nxn +nxn +nxn +nxn +gKj dTs dTs -tOj +qOu plo aem aeR @@ -73074,30 +73080,30 @@ aga aIb aMP agy -alo -aNp -aNp -aNp -aNp -aNp -aNp -aNp -aNp -aNp -aNp -aNp -avC +opo +tMx +tMx +tMx +tMx +tMx +tMx +tMx +tMx +tMx +tMx +tMx +gdb apz aqg aqg asa -bhY -aFt -aFt -aFt -aFt -aTn -bkf +eZa +hLs +hLs +hLs +hLs +yhy +evH dTs dTs dTs @@ -73113,16 +73119,16 @@ dTs dTs dTs bpM -bwk -bEG -bLo -bpP -bSR +ntu +pVF +mqU +xVB +ods bzH -bxr -bYA -cbm -bxr +ykX +xFc +nbb +ykX bHf bHf bHf @@ -73146,29 +73152,29 @@ aCY aCw aCJ aEb -aDu +vCk dTs dTs acw -aDO +hRh aDP -aDS +gVq bgn cAM bgm bha -aFC +miR acw dTs dTs dTs dTs dTs -qlU +wLD lNu lNu -mMm -pij +ayR +wxJ lNu lNu lNu @@ -73190,67 +73196,67 @@ ctF jmd aGC cqn -cQi +ugN cSr -cSe -cSq -afg +sKh +rVJ +rBz cSr cro -aIi -cUj -cUj -cUj -cUj -cUj -jpa +kRw +tQL +tQL +tQL +tQL +tQL +kHY bYV rdW rdW cUy wgi cXh -hOK -cYR -mGo -mGo -mGo -mGo -kMT -hqp -jOe -gdW -gdW -gdW -dgJ -jOe -vud +suT +jlY +snv +snv +snv +snv +qxh +fRK +vtB +hna +hna +hna +jRZ +vtB +sqe dNS vuu dNS gpi -iri +idX bYV sLx sms fdk -hOK +suT doH -dpu -pSV -dBJ -ebf +qOc +sFO +wZz +gIW doH doH edO -dVT -ecg +hfS +lwj edO dyb dyb dyb dyb -eez +sDb dyb dyb dyb @@ -73281,7 +73287,7 @@ dTs dTs dTs aez -ahh +vRv iVN tbb tbb @@ -73290,11 +73296,11 @@ iVN tbb tbb ybA -vzj -afF +fLs +mJa rTV qJI -tOj +qOu aen aeS aeS @@ -73308,7 +73314,7 @@ agj agj agr agj -agA +rTk aNn auy auy @@ -73330,9 +73336,9 @@ auy auy auy arZ -bjE -cMI -bkt +lST +eAs +eWP dTs dTs dTs @@ -73347,21 +73353,21 @@ dTs dTs dTs bpM -bwk -bpP -bLo -bEG -bAB +ntu +xVB +mqU +pVF +vlW byC -bxr -bYA +ykX +xFc caF -ctv +iBV bPv -cju -ckW -bJq -vhs +pAS +fpw +tvW +wnc bLr dTs dTs @@ -73380,26 +73386,26 @@ aCZ aCw aDp aEb -aDB +haK dTs dTs -qlU -ekH +wLD +rRo cee -dod +seE tyc wyR kry xpj -dKE -mMm +mJS +ayR dTs dTs dTs dTs dTs -duJ -tUF +fSk +mmS lNu lNu lNu @@ -73429,7 +73435,7 @@ cSr cSg cSr cSr -aCq +lnY cqn cOH cOH @@ -73437,59 +73443,59 @@ cTi cTi cOH cOH -hOK +suT bYV sLx wya oKG rdW fdk -hOK -cYS +suT +ibZ dNS dNS dNS dNS -sUe -cWy -oQx -gdW -gdW -gdW -dgK -oQx -vud +sJe +tSo +eFd +hna +hna +hna +src +eFd +sqe dNS dNS dNS dNS -iri +idX bYV rdW lyB fdk -hOK +suT dhs dpw dqf -dqO +lxP dqf dqf edO dus -dVT -ech +hfS +hYu dus dyb -dyX -ebK -dBj -dAq -dCG +lQj +etY +vpa +sja +mNg dyb -dAn -dAn -lAb +xfM +xfM +xJt dyb dTs dTs @@ -73515,7 +73521,7 @@ dTs dTs dTs aez -ahh +vRv pUO jNB sUr @@ -73524,14 +73530,14 @@ pUO jNB sUr dzU -vzj -xof +fLs +nkU rTV rTV dTs -aew +iiR aez -aiQ +qJG dTs aez aez @@ -73542,7 +73548,7 @@ cQf ago agu aqz -agF +rhr apz aqg aDb @@ -73564,9 +73570,9 @@ aqg aqg aqg asa -bjE -bkf -bku +lST +evH +gQi dTs dTs dTs @@ -73581,21 +73587,21 @@ dTs dTs bpM bpM -bwl -bpP -bvb -bEG -bAC +tMK +xVB +kFX +pVF +dvY byC -bxr -cbf +ykX +wYe cbn -ctD -bHh -cjY -cjY -cjY -bLt +pgf +rAG +wgu +wgu +wgu +vhH bLr dTs dTs @@ -73617,23 +73623,23 @@ aEa dTs dTs dTs -duJ -tUF -ekH -mRU +fSk +mmS +rRo +ord tyc jmd eft xpj -dKE -bqc +mJS +htA dTs dTs dTs dTs -wgv -sia -cnx +lHE +mQI +nZg lNu lDT qHF @@ -73658,51 +73664,51 @@ vzw vzw aHf cqn -cQl -cRV -cRV -cSs -afY -cSK +hkC +bAk +bAk +xpN +xdm +hlR dMV cOH -dkJ -cRg -cRg -cRg +lAX +rfn +rfn +rfn cOH -aRO +fix bYV hzC hzC oKG rdW fdk -hOK -cYS +suT +ibZ trP dNS dNS daF dbu -daK -ddO +tUD +rKx dbu daF dbu -dgL -ddO +dqb +rKx dbu daF dNS dNS dNS -iri +idX bYV rdW lyB fdk -hOK +suT dhs dpw dqf @@ -73711,19 +73717,19 @@ ead ead eee eav -ebz -eci +orw +iWK dus eeq -dyY -dAq -dAq -dWC -dAq -eeC -dAn -dAn -dFL +upQ +sja +sja +cwe +sja +tfI +xfM +xfM +isJ dyb dTs dTs @@ -73749,7 +73755,7 @@ dTs dTs dTs aez -aaF +lGd pUO sUr jNB @@ -73758,8 +73764,8 @@ pUO sUr jNB dzU -vzj -xof +fLs +nkU dTs dTs dTs @@ -73768,15 +73774,15 @@ dTs dTs dTs dTs -adj -aew +nuV +iiR afX agc agk nzB agv agz -agR +ilM agZ aNM ahB @@ -73798,10 +73804,10 @@ aNM biJ aqg asa -bjE +lST bhi -bkv -bkY +heX +xJX dTs dTs dTs @@ -73814,22 +73820,22 @@ dTs dTs dTs bpM -bRd -daB -bpP -bLo -bEG -bAD +rwJ +pCn +xVB +mqU +pVF +wil byC -bxr -bYA +ykX +xFc caF -cts +uWD bPv -ckd -ckX -bJr -cnw +bcx +oUG +pni +qjh bLr dTs dTs @@ -73852,22 +73858,22 @@ dTs dTs dTs dTs -duJ -tUF -iYI +fSk +mmS +wgT tyc jmd eft xpj -dKE -mMm -sia +mJS +ayR +mQI dTs dTs dTs -pij -mMm -pij +wxJ +ayR +wxJ lNu kWh cAc @@ -73878,19 +73884,19 @@ igf rFU jMT cxx -bqc -cvH -czy -tUF +htA +swo +kPm +mmS lNu lNu lNu lNu -bqc -tUF +htA +mmS pal lNu -aHg +lcK cqn cqn cqn @@ -73899,65 +73905,65 @@ cqn cqn cqn dMV -cPH -cQo -cRi -cRi -cRi -ebU -hOK +sfl +naX +tZC +tZC +tZC +oMm +suT bYV hzC rdW oKG rdW fdk -hOK -cYS +suT +ibZ dNS dNS daF daF -dcf -daK -daK -des -daI -dbr -dgL -daK -diG +xfg +tUD +tUD +pME +fCl +iae +dqb +tUD +wuY daF daF dNS dNS -iri +idX bYV sLx sms fdk -hOK +suT dhs dpx dqg dBK dqg dqg -edK -dut -dVU -ecj -dVH -edT -dWw -dWC -dWE -dWE -ebO +gnN +xcl +jvM +vlr +qGL +eII +eVH +cwe +khK +khK +sNu dyb -dAn -ebL -dAn +xfM +iOY +xfM dyb dTs dTs @@ -73983,7 +73989,7 @@ dTs dTs aez aez -aaH +qpC pUO sUr sUr @@ -73992,25 +73998,25 @@ pUO sUr sUr dzU -vzj -xof -wZM +fLs +nkU +ijw dTs dTs dTs dTs dTs dTs -aeA -aeA -aev +eBE +eBE +xFe aez qxv poH cRc dvZ cSp -agF +rhr apz aqg aqg @@ -74032,10 +74038,10 @@ aIJ biK ara bjo -bjE +lST bhi -bkf -bkZ +evH +pOS dTs dTs dTs @@ -74048,32 +74054,32 @@ dTs dTs dTs bpM -bVa -daB -bEG -bLo -bpP -bAD +ijd +pCn +pVF +mqU +xVB +wil bzH -bxr -cbj -ctu -bxr +ykX +gRw +oNH +ykX bHf -cQO -clS -bJr -bLv +bgv +pTQ +pni +upr bLr dTs dTs -nmr -vph -pvs +jMg +vem +kqB dTs dTs -nmr -nue +jMg +jOv cNW cNW aEa @@ -74087,19 +74093,19 @@ dTs dTs dTs dTs -qlU -iYI +wLD +wgT tyc wyR kry xpj -dKE +mJS lNu -qKA +kzP dTs dTs dTs -tUF +mmS lNu lNu lNu @@ -74112,18 +74118,18 @@ igf eft jmd cxx -qKA +kzP arR -czz -pij +mEb +wxJ lNu lNu lNu lNu -qKA -qyu +kzP +tTk lNu -bqc +htA dTs dTs dTs @@ -74133,44 +74139,44 @@ dTs dTs dTs dMV -xRf -cRi -cRi -cRi -cRi -cRi -cTI +eLe +tZC +tZC +tZC +tZC +tZC +pit bYV sLx wya oKG rdW fdk -hOK -cYS +suT +ibZ dNS dNS dbu -dbn -dbq -daK -daK -dTP -dTP -dTP -dgL -daK -deu -dbn +pao +sUc +tUD +tUD +tJq +tJq +tJq +dqb +tUD +xYL +pao dbu dNS dNS -iri +idX bYV rdW lyB fdk -hOK +suT doH dpy dqh @@ -74179,19 +74185,19 @@ drU dqf edO dus -dVH -eck -ecx -ecB -ecD -ecI -ecK -dBT -dCH +qGL +nOP +vHY +iYB +oLg +lgB +fEY +hxO +fiP dyb -efl +vhp dyb -efl +vhp dyb dTs dTs @@ -74217,7 +74223,7 @@ aez aez aez aez -ahh +vRv pUO vqR vqR @@ -74226,25 +74232,25 @@ rob vqR vqR dzU -acL -xof +qzW +nkU aez -akv -aeA -aeA -dTs -dTs -aev -aqS -qtb -qtb -qtb -qtb -qtb -agp -agp -agp -agS +xAR +eBE +eBE +dTs +dTs +xFe +idP +vhP +vhP +vhP +vhP +vhP +wkT +wkT +wkT +tVG aha ahl ahE @@ -74260,20 +74266,20 @@ aId aiZ aiZ aiZ -bbH -apO +fCk +pRl apz biL biP bjo -bjE +lST bhi bhi -bkv +heX dTs dTs dTs -bkZ +pOS dTs dTs dTs @@ -74282,58 +74288,58 @@ dTs dTs bpM bpM -cZf -bMl -bEG -bvb -bwn -daY +qIt +sNN +pVF +kFX +pqU +mXZ bzH bHn -bDh -cbo +lUK +gjZ bHn bHf bPv -clT +rBV bPv bHf bLr -iwh -iwh -nue +acm +acm +jOv cNW -pLm -iwh -iwh -nue +hPE +acm +acm +jOv wIi wRR bVr bWi cNW -tXS -nmr -iwh +tmo +jMg +acm dTs dTs dTs dTs dTs dTs -pij -iYI +wxJ +wgT tyc jmd eft xpj -dKE +mJS lNu -mMm +ayR dTs dTs -wgv -clC +lHE +yhW lNu lNu aFK @@ -74346,17 +74352,17 @@ igf eft jmd cxx -mMm -fNw -pij +ayR +pJm +wxJ lNu lNu lyw lNu -bqc -kTX -duJ -cvH +htA +fAq +fSk +swo dTs dTs dTs @@ -74367,44 +74373,44 @@ dTs dTs dTs dMV -cPJ -cRi -cRi -cRi -cSu +ixk +tZC +tZC +tZC +wrH cOH -mGo +snv vDJ hzC rdW oKG rdW fdk -hOK -cYS +suT +ibZ dNS dNS dbu -dbn -dbq -daK -dTP -dTP -dBM -daK -dUA -dTP -deu -dbn +pao +sUc +tUD +tJq +tJq +qfV +tUD +kkr +tJq +xYL +pao dbu dNS dNS -iri +idX bYV rdW lyB fdk -hOK +suT doH doH doH @@ -74413,19 +74419,19 @@ doH doH doH eby -dVH -ecl +qGL +lrK dus eeq -dzb -dWE -dWE -dWN -rEH +eLo +khK +khK +qtp +lzp dyb -dDZ +vPN dyb -dDZ +vPN dyb dTs dTs @@ -74451,7 +74457,7 @@ dTs aez aez aai -ahh +vRv aaT jNB sUr @@ -74486,29 +74492,29 @@ ahN cSp aiZ bfg -xrx -ars -ars -aja -aqy -aja +mPj +swD +swD +oPu +gBz +oPu aiZ beV -bbI -aoG +tdz +ixV akp biM aox bjo -bjE +lST bhi bkw -bkf -bkZ +evH +pOS dTs -bhj -bkf -bgR +rke +evH +gAZ dTs dTs bpM @@ -74518,27 +74524,27 @@ bpM bzH bzH byC -bEG -bSd +pVF +nix byC bzH bzH -bCt -bZa -cca -bFS -bHi -bCu -cmD -cqC -bLw +tPK +rpS +nQw +yiA +uzA +qLm +pcO +eot +pHW bPv -cTU -cTU -cTU -cTU -cTU -bRp +nZM +nZM +nZM +nZM +nZM +qfk cNW cNW cNW @@ -74546,27 +74552,27 @@ bUt bVs bWj bXc -pLm -nue +hPE +jOv cNW -pLm +hPE dTs dTs -sia +mQI aoz -qlU +wLD lNu -iYI +wgT tyc jmd eft xpj -dKE +mJS lNu lNu -mMm -sia -qlU +ayR +mQI +wLD lNu lNu lNu @@ -74585,9 +74591,9 @@ lNu lNu lNu cAW -bqc -cvH -kTX +htA +swo +fAq aoz dTs aoz @@ -74601,11 +74607,11 @@ dTs dTs dTs cOH -cPK -cQq -cRi -cRi -cSv +pAv +uLF +tZC +tZC +dtA cTi dNS pva @@ -74614,48 +74620,48 @@ rdW oKG rdW fdk -hOK -cYS +suT +ibZ dNS dNS dbu -dbn -dbq -dTP -dTP -dUg -dDQ -dbs -dUA -dUF -deu -dbn +pao +sUc +tJq +tJq +oEh +irk +slC +kkr +xvj +xYL +pao dbu dNS dNS -iri +idX bYV sLx sms fdk -cWy -cUj -jpa +tSo +tQL +kHY dqi dqR ebt drV doH duu -dVH -ecm +qGL +sBn dus dyb -dzc -dAq -dWC -dBU -dWP +lji +sja +cwe +qUM +uWo dyb dyb dyb @@ -74685,7 +74691,7 @@ aez aez aez aaj -aaJ +tJb aaV sUr abq @@ -74720,59 +74726,59 @@ ahN aId aiZ aiZ -axZ -ahu +vVR +nbV dTs dTs dTs -bgA -bgO +mxL +dlL bhi -bhD -bhZ +klM +moO bir ang bje bjo -bjE +lST bhi bkx bhi -bkv -bgQ +heX +nop bhi -bmu -bgp -bmK -bhk +xHs +qph +oYv +jMH byC -bqV -brU -bqV -bqV -bqV -btG -bEG -bLo -bSL -bqV +tUa +qxD +tUa +tUa +tUa +iMb +pVF +mqU +fkz +tUa byC -bCu -bZd -bEE -bCw -bCw -cca -cca -cca -cca -bMm -euG -hpw -hpw -hpw -pTU -tni +qLm +kny +kxg +rgH +rgH +nQw +nQw +nQw +nQw +sjq +cJa +pgI +pgI +pgI +eoi +ofa uiH cNW wRR @@ -74784,23 +74790,23 @@ cNW cNW cNW cNW -pLm -nue -mMm -fNw -pij +hPE +jOv +ayR +pJm +wxJ pal -ceR +omt tyc wyR kry xpj -dol +qAH pal lNu lNu -mMm -pij +ayR +wxJ lNu lNu pal @@ -74818,8 +74824,8 @@ lNu lNu lNu lNu -bqc -cCa +htA +mTr aoz dTs dTs @@ -74836,10 +74842,10 @@ dTs dTs cOH cOH -cQr -cRi -cRi -cSv +qrN +tZC +tZC +dtA cTi dNS pva @@ -74848,48 +74854,48 @@ wya oKG rdW fdk -hOK -cYS +suT +ibZ dNS dNS dbu -dbn -dbq -daK -dTP -deu -dFr -dbq -dUB -dTP -deu -dbn +pao +sUc +tUD +tJq +xYL +iTb +sUc +hoi +tJq +xYL +pao dbu dNS dNS -iri +idX bYV rdW lyB cUy wgi cXh -eaU +eGy dqi dqS dqV dqV edO dus -dVH -ecm +qGL +sBn dus dyb -ebE -dAq -dAq -dBV -dCJ +dtf +sja +sja +rNy +dNj dyb dTs dTs @@ -74919,7 +74925,7 @@ dTs aez aez aaj -aaL +pjV vTR abd uty @@ -74953,59 +74959,59 @@ aqg ahN aiZ aiZ -aqy -axY +gBz +elW dTs dTs dTs dTs -bhH -bhj +qYu +rke bhi -bhD -bhZ +klM +moO bir biM biP bjo -bjE +lST bkg bhi bhi -bkf -bhj -bmu -bmK -bmL -bob -boI -bpO -bqW -bEF -bFR -bSK -bLl -bSK -bSK -bSe -bSK -bzG -bBt -bCv -bZi -cbq -bFT -bFT -ckh -ckh -ckh -ckh -bFT -bMQ -bNq -bNq -bNq -bQm +evH +rke +xHs +oYv +kSt +eta +nqT +kmG +fON +tnw +qLA +xKJ +mbU +xKJ +xKJ +njJ +xKJ +eRk +tWX +wWM +fgk +jYL +iap +iap +lKe +lKe +lKe +lKe +iap +kah +sMb +sMb +sMb +vJr bRq bSk bSk @@ -75050,9 +75056,9 @@ jmd cxx lNu jlP -bqc -cvH -kTX +htA +swo +fAq dTs dTs dTs @@ -75070,10 +75076,10 @@ dTs dTs dTs cOH -cQs -cRj -cRi -cSv +lUZ +qAu +tZC +dtA cTi dNS pva @@ -75082,48 +75088,48 @@ rdW dVj rdW fdk -hOK -cYS +suT +ibZ dNS dNS daF -dbn -dcg -dTP -dTZ -deu -dFr -dbq -dUC -dTP -diH -dbn +pao +dTt +tJq +bLH +xYL +iTb +sUc +qLc +tJq +fJP +pao daF dNS dNS -iri +idX bYV rdW lyB oKG hzC dPf -hOK +suT die dqT dqV dqV edO dus -dVY -ecn +obx +uNR ecy dyb -dze -dzb -dAq -dBW -dCK +pws +eLo +sja +evG +qkm dyb dTs dTs @@ -75153,7 +75159,7 @@ dTs dTs aez aak -ahh +vRv lcy abf abv @@ -75187,56 +75193,56 @@ aqg ahN aiZ aiZ -axZ +vVR dTs dTs dTs dTs dTs -bgA -bgP +mxL +une bhi -bhD -bhZ +klM +moO bir biM biP bjo -bjE +lST bhi bhi bhi bhi bhi -bmv -bmL +gaE +kSt bia boc -bju -bpP -bpP -bEG -bEG -bEG -bLo -bEG -bEG -bpP -bEG -bEG -bpP -bCw -bDl -cbr -cca -cca -bCw -bCw -cca -crI +nTq +xVB +xVB +pVF +pVF +pVF +mqU +pVF +pVF +xVB +pVF +pVF +xVB +rgH +pTq +tpD +nQw +nQw +rgH +rgH +nQw +rCH bPv -dCt -dCt +tXI +tXI mdP nAm nAm @@ -75282,9 +75288,9 @@ eft eft jmd cxx -bqc -cvH -kTX +htA +swo +fAq dTs dTs dTs @@ -75304,10 +75310,10 @@ dTs dTs dTs cOH -cPK -cRk -cRk -cSw +pAv +tCi +tCi +pas cOH dNS pva @@ -75316,46 +75322,46 @@ rdW ivr kJP fCB -hOK -cYS +suT +ibZ dNS daF daF dbo daF -dTP -daK -deu -dFr -dUv -dUA -daK +tJq +tUD +xYL +iTb +oDD +kkr +tUD daF dbo daF daF dNS -iri +idX bYV sLx dmK dnB oBR dVn -dVp -edJ -dVu -eae -eag -edL -eaw -ebW -eco +mvg +qMV +hHE +lWc +eDN +rop +gEU +eCa +uSs dus dyb dyb eeq -eet +npS eeq dyb dyb @@ -75387,7 +75393,7 @@ dTs dTs aez aez -ahh +vRv ncd iqs abw @@ -75396,81 +75402,81 @@ abX sUr acn dzU -aSg -xof -aiQ -ade -aew +qLs +nkU +qJG +xdS +iiR aez aYx aez aez -afU -afV -afV -afV -afV -afV -afV -afV -afV -agX +kjM +gWZ +gWZ +gWZ +gWZ +gWZ +gWZ +gWZ +gWZ +bqT apA ahq aNL ahO amN -aqy -axY +gBz +elW dTs dTs dTs dTs dTs dTs -bgQ +nop bhi -bhD -bhZ +klM +moO bir biN bje bjo -bjE +lST biw bhi bhi -blJ -bkh -bmw +wwv +iQE +pNE bia bia -bod -bhk +hbL +jMH byC -bqX -brV -bsF -bEG -bvb -bwn -bqX -bqX -bqX -bqX +rOY +tBl +nLh +pVF +kFX +pqU +rOY +rOY +rOY +rOY byC -bCx -bDm -bEH -bFU -bHl -bIl -bIl -bKB -bLy +ouW +oQE +hqc +lnZ +vEP +wWC +wWC +qHe +sBV bPv -dCt -dCt +tXI +tXI naH ozu ozu @@ -75516,7 +75522,7 @@ dGI dGI oIE cxx -qKA +kzP dTs dTs dTs @@ -75538,59 +75544,59 @@ dTs dTs dTs cOH -cRl -cRl -cRl -cSx +hnq +hnq +hnq +icV cOH dNS pva sLx wya dPf -gdW -dUL -jOe -cYS +hna +nMW +vtB +ibZ dNS dbu -daG -dbp -dch -dTP -dTP -dUh -dUm -dUw -dUA -daK -diI -djr -dbn +qJj +pwI +rnc +tJq +tJq +nZn +sFU +uCG +kkr +tUD +sIR +kpm +pao dbu dNS -iri +idX bYV rdW rdW dVj hzC dPf -dVm -dVr -dVr -dVr -dVr -dVH -dVH -dWa -ecl +tQn +rkb +rkb +rkb +rkb +qGL +qGL +fwg +lrK dus edO -dzf -dzf -dzg -dzf +lHl +lHl +mhr +lHl dCL dTs dTs @@ -75621,7 +75627,7 @@ dTs dTs aez aez -aaN +wOn eRn mhR mhR @@ -75630,13 +75636,13 @@ mhR mhR mhR aRF -vzj -xof -akv -aeA +fLs +nkU +xAR +eBE dTs -adj -aew +nuV +iiR pba aez aez @@ -75648,13 +75654,13 @@ aez aez agw hDT -med +whP pUO aqg aqg ahN aiZ -axY +elW dTs dTs dTs @@ -75662,31 +75668,31 @@ dTs dTs dTs dTs -bgA -bgP -bhD -bhZ +mxL +une +klM +moO bir biM biP bjo -bjF -bkh -bkh -bkh +uPB +iQE +iQE +iQE blK bia bia bia bia -bod +hbL boJ boJ boJ boJ btc -bEA -bvc +kDh +pCa btc boJ boJ @@ -75694,8 +75700,8 @@ bzH bzH bzH bKL -bDn -bEI +jpZ +jeV bKL bHm bHm @@ -75704,7 +75710,7 @@ bHm bHm bHm bHm -dCt +tXI naH ozu ozu @@ -75782,49 +75788,49 @@ tnu eZE eZE waC -kMT -mDz -jOe -cYS +qxh +nLT +vtB +ibZ dNS dbu -daG -dbq -daK -dTP -dTP -dTP -dUn -dUb -dUD -dUG -daK -deu -dbn +qJj +sUc +tUD +tJq +tJq +tJq +nei +pse +oCK +sdI +tUD +xYL +pao dbu dNS -iri +idX bYV rdW rdW dVk hzC fdk -hOK +suT die dqV dqV dqV edO dus -dVH -ecm -dtx -edU -dzg -dzg -dzg -ebM +qGL +sBn +kBG +oUs +mhr +mhr +mhr +nHQ dCL dTs dTs @@ -75855,23 +75861,23 @@ dTs dTs dTs aez -ahh -aaX -abh -ooW -ooW -ooW -acg -acg -ooW -ajM +vRv +kpj +fmx +mUI +mUI +mUI +wKq +wKq +mUI +hEP dTs dTs dTs dTs dTs -aeq -aew +pPq +iiR aez dTs dTs @@ -75882,12 +75888,12 @@ aYx aez aez bOE -med +whP pUO aqg aqg ahN -aqy +gBz dTs dTs dTs @@ -75897,14 +75903,14 @@ dTs dTs dTs dTs -bgQ -bhD -bhZ +nop +klM +moO bir biM aox bjo -bhF +mDb bia bia bia @@ -75913,32 +75919,32 @@ bia bia bia bia -bod +hbL boJ -dwd -bqY -bqY -bsG -bEA -bvd -bwo -bxz +mMs +evS +evS +hUI +kDh +jMt +iNd +qVQ ebQ -bzI -dwh -bBv -bCz -bDn -bEJ -bFV +qJh +gnr +lBa +uWU +jpZ +hHD +hQi bHm -bIm -bJv -dwW -dwX -bMn +rTa +tlw +kYp +jfH +lmm bHm -dCt +tXI naH ozu ozu @@ -75946,45 +75952,45 @@ bRr uml vgm xsS -bUz -nil -nil -nil -nil -nil -nil -nil -nil -nil -kIl -kIl -kIl -kIl -kIl -kIl -kIl -kIl -kIl -kIl -kIl -ciO -cjj -cjj -cjj -cjj -cjj -cny -oaz +rws +pPg +pPg +pPg +pPg +pPg +pPg +pPg +pPg +pPg +miV +miV +miV +miV +miV +miV +miV +miV +miV +miV +miV +uta +rjR +rjR +rjR +rjR +rjR +lby +iBB tyc rFU kry xpj -vSV +pec lNu lNu lNu lNu -qKA +kzP dTs dTs dTs @@ -76016,49 +76022,49 @@ dNS dNS mAm dNS -sUe -mDz -jOe -cYS +sJe +nLT +vtB +ibZ dNS daF -daH -dbq -dTP -dTP -dUa -dev -dUx -dVx -dVM -dVZ -dUK -deu -djt +pNT +sUc +tJq +tJq +oJV +mbZ +fDf +fVr +ngI +fas +wda +xYL +xnQ daF dNS -iri +idX bYV vnf hjm dVj rdW fdk -eaU +eGy dqm dqW -drZ +txH dqW dqm eby -dtx -ecp -eaO -eaO -ecE -ecE -ecL -dzf +kBG +lVD +dFK +dFK +ffi +ffi +eVK +lHl dCL dTs dTs @@ -76089,15 +76095,15 @@ dTs dTs dTs dTs -ahh -ahh -ahh -ahh -ahh -ahh -soS -lQM -ahh +vRv +vRv +vRv +vRv +vRv +vRv +gkC +uBD +vRv dTs dTs dTs @@ -76116,7 +76122,7 @@ dTs aez pba anE -med +whP ahc aql ara @@ -76131,48 +76137,48 @@ dTs dTs dTs dTs -bhj -bhD -bhZ +rke +klM +moO bir biN bje bjo -bhG -bib -bib -bib -bib -bib -bib -bib -bib -bod +pBc +viW +viW +viW +viW +viW +viW +viW +viW +hbL btc -bpR -bqZ -bqZ -bsH -bIn -bve -bwp -bwp -byD -bSM -bSM -bVg -bSM -bZS -bEK -bFW +wiD +cqW +cqW +kbh +jKL +wCe +kiZ +kiZ +jXC +qiQ +qiQ +kjF +qiQ +ozK +qyT +mCr bRO -ckm -cnr -bKD -bJz -bMo +bvt +rdu +ptx +qIR +xqv bRO -dCt +tXI naH ozu ozu @@ -76180,27 +76186,27 @@ bRr ozu ozu xsS -mfK -dCt -lnG -ejR -ejR -ejR -ejR -ejR -goq -dCt -bic -biu -jbx -jbx -jbx -jbx -jbx -jbx -jbx -jbx -jbx +iEd +tXI +ubK +gBr +gBr +gBr +gBr +gBr +hCo +tXI +tTK +tMg +nLP +nLP +nLP +nLP +nLP +nLP +nLP +nLP +nLP mNk gca gca @@ -76208,18 +76214,18 @@ gca gca gca mNk -coE +wcx qkJ eft eft xpj -dol +qAH pal lNu kbo lNu -mMm -fNw +ayR +pJm dTs dTs dTs @@ -76250,49 +76256,49 @@ cVV cVV cPL dNS -sUe -mDz -jOe -cYT -wPb +sJe +nLT +vtB +bnn +mIR dbu -daI -dbr -dTP -daK +fCl +iae +tJq +tUD ddQ eDQ -dHQ +slw dfT eDQ -dWj -dTP -dUh -daI +qye +tJq +nZn +fCl dbu -wPb -cTF +mIR +gSM bYV hzC hzC dVj rdW fdk -hOK +suT dqm -dNi -dsb -dsA +mQt +iRs +uBs dqm dus -dtx -ecq +kBG +lVi dus dOg -dzf -dzg -dzg -dzf +lHl +mhr +mhr +lHl dCL dTs dTs @@ -76324,15 +76330,15 @@ dTs dTs dTs dTs -bMt +sub bab -axi -axi +tge +tge abY aci aco acv -aQn +ehs dTs dTs dTs @@ -76350,12 +76356,12 @@ dTs dTs aez aez -med +whP pUO ahs ahG dzU -xof +nkU dTs dTs dTs @@ -76365,9 +76371,9 @@ dTs dTs dTs dTs -bgP -bhD -bhZ +une +klM +moO bir biM biP @@ -76381,32 +76387,32 @@ bjG bjG auN bnr -boe +eHu btc -dwe -bEA +ukr +kDh brX brX bEL brX bEL -bEA -bSf -bSf -bSf -bVh -bSf -bSf -cbs -bFX -bHo -ckF -cnF -bKE -bLB -bMo +kDh +eiK +eiK +eiK +tGm +eiK +eiK +qBU +tuc +rgN +oKs +rMD +fVk +rsf +xqv bRO -dCt +tXI naH ozu ozu @@ -76414,8 +76420,8 @@ bRr ozu ozu xsS -mfK -lnG +iEd +ubK bVD bVE bVE @@ -76423,38 +76429,38 @@ bVE bVE bVE bVD -dCt -ccd -ccL -bZr -cfZ +tXI +kwe +pbN +dMu +mFV cgG cgI cgI chV chm cjl -jbx -mXN -rmo -rmo -rmo -rmo -rmo -qXM -jbx +nLP +nLc +djX +djX +djX +djX +djX +gix +nLP tyc eft olL xpj -mXN -rmo -rmo -rmo -rmo -rmo -rmo -rmo +nLc +djX +djX +djX +djX +djX +djX +djX dTs dTs dTs @@ -76476,57 +76482,57 @@ dTs cPL cPL cPL -cQw -cSz +hch +yeY cPL -dHr -hOA -cUE +qtk +iEZ +ilX cPL cPL -gdW -hqp +hna +fRK uFX -cYP -dTK -eeP -daK -daK -dTP -daK +tEy +iEy +cIm +tUD +tUD +tJq +tUD ddR daF daF daF dgO -dWj -dTP -dTP -daK -dkG -wRX -jOe +qye +tJq +tJq +tUD +kUU +nAL +vtB bYV rdW hzC oKG rdW fdk -hOK +suT die -drQ +tgx dsc eak -edP -eaO -eaO -ecr +wtI +dFK +dFK +gTp dus doH -dzi -dzg -dzg -dzf +kmt +mhr +mhr +lHl dCL dTs dTs @@ -76558,16 +76564,16 @@ dTs dTs dTs ebs -aZg +mve bac -bbK +pCk abF -acc -acj +tsA +hvF acp acy aez -akv +xAR dTs dTs dTs @@ -76581,15 +76587,15 @@ dTs dTs dTs dTs -aev +xFe aez aez -aZH +fRk pUO sUr ahs dzU -xof +nkU dTs dTs dTs @@ -76598,10 +76604,10 @@ dTs dTs dTs dTs -bgR -bhj -bhD -bhZ +gAZ +rke +klM +moO bir biO bjf @@ -76615,32 +76621,32 @@ bjq bjf bjf bns -bof +fdf btc -dwf -bEA +bwq +kDh bEL bFY bFY bFY bEL -bEA +kDh btc -nTa -bAG -bST -bST -bDp -cbE -ccz -cfs -cfs -cnI -bKF -crN -cuW +fgW +jfE +ndy +ndy +vbw +qyF +iRe +mex +mex +xFz +xWZ +nPN +sxW bRO -dCt +tXI naH ozu ozu @@ -76648,46 +76654,46 @@ bRr uml vgm xsS -mfK -tni +iEd +ofa bVE -dvA -cTU -cTU -cTU -cTU -hcP -dCt -bXf -bYa -bZZ +vsS +nZM +nZM +nZM +nZM +xjh +tXI +isY +qja +ucT cga cfX chm -chT -chW -chn -cjm +nRl +usM +mPG +mMc chm clD -cmr +uKe cnB -ckx -cuS -cmr -cxW -coF +jDn +xZT +uKe +kXI +oKj dfc ees dNR dTH -coF +oKj mBd chm chm clD -cmr -cmr +uKe +uKe dTs dTs dTs @@ -76708,58 +76714,58 @@ dTs dTs dTs cPL -dTA -dTA -ylo -cSA +ttr +ttr +hdO +kfD cPL -cTM -cTO -cUF -cTO +tgu +jeR +bBA +jeR cVV -gdW -hqp +hna +fRK uFX cYV -dTL -dTP -dTP -dTP -dTP -daK +moc +tJq +tJq +tJq +tJq +tUD ddS daF daF daF dgP -dWj -dTP -dTP -daK -daK -cWy -jOe +qye +tJq +tJq +tUD +tUD +tSo +vtB bYV sLx wya pzv kJP fCB -hOK +suT die -het +vvh dqV dqV dqm dus -dWa -ecm +fwg +sBn dus doH -dzj -dzg -dzg +emE +mhr +mhr bgq dCL dTs @@ -76791,18 +76797,18 @@ aab aab aab aab -aaP -aWZ -aZg +umg +wHV +mve aKw bac -bbK +pCk bbM -aOR -acB -acM -aOR -aOR +svn +rSt +irn +svn +svn dTs dTs dTs @@ -76813,29 +76819,29 @@ dTs dTs dTs dTs -ahh -xls -xTH -xTH -xTH -ajT +vRv +nec +pzc +pzc +pzc +hTH pUO aht uWT dzU -xls +nec dTs dTs dTs dTs dTs dTs -bgp -bgp -bgp -bgp -bhE -bhZ +qph +qph +qph +qph +taJ +moO bir biP biP @@ -76849,32 +76855,32 @@ atM aox aox bjo -blM +waJ btc -bpU -bEA +jrJ +kDh bEL bGQ bsK bGQ bEM -bRN +pRX btc -bzL -bAH -bST -bST -bDp -cbP -bFZ +xNd +dwo +ndy +ndy +vbw +tPk +fZk bRO -bIq -coV -bJz -coV -cuW +urk +hzi +qIR +hzi +sxW bRO -dCt +tXI naH ozu ozu @@ -76882,46 +76888,46 @@ bRr ozu ozu xsS -mfK -tni +iEd +ofa bVE -gQE -bVw -bZr -ceh -ceh -bVx +uWK +kyb +dMu +rpk +rpk +uoi cfX cfY -bYb -bVy -bVy -bVy -chn -chU +wRm +wNT +wNT +wNT +mPG +eLI cho cho -cjQ -chn -clE +wuy +mPG +wak ciQ cnC -cuQ -cvK -cvL -cyR -cAf +iQs +fJL +gQj +pIk +lnI hEU hEU czV czV -cAf -cAi -chn -chn -chn -chn -clE +lnI +xfs +mPG +mPG +mPG +mPG +wak ciQ dTs dTs @@ -76942,58 +76948,58 @@ dTs dTs dTs cPL -dTB -cQw -cQw -cSB -cTj -cTN -cTN -cUG -cTN -dxL -cWB +mcv +hch +hch +hGq +ffa +vWO +vWO +pHS +vWO +rVD +lPN cXj cXj -cYW -mGo +qxA +snv dbu -dTQ -dbs -dTP -daK +eYa +slC +tJq +tUD ddT dex dex dfU grQ -dWj -daK -dUg -daL +qye +tUD +oEh +fpi dbu -mGo -dlx +snv +tSB bYV rdW rdW fdk -doi -hxj -dpA +pEi +mwN +kbJ dqm -dsa -ebu -dsO +vjU +sbd +lPs dqm eeo -dVI -edR +kHU +cLB dOf dpB -ebF -dzg -dzg +rio +mhr +mhr bgq dCL dTs @@ -77027,18 +77033,18 @@ aab aab aaQ aJy -aWZ -aIS -aIS -aZg +wHV +oOZ +oOZ +mve bac -bbK -bbK -bbK -bbK -bbK -bbK -bbK +pCk +pCk +pCk +pCk +pCk +pCk +pCk dTs dTs dTs @@ -77046,30 +77052,30 @@ dTs dTs dTs dTs -bMt -bMt -bMt +sub +sub +sub bab -axi -aZd -ahh +tge +pXP +vRv pUO sUr ahs ahR -ahh +vRv dTs dTs dTs dTs dTs -bgi -bgi -bgi -akR -bhk -bhF -bhZ +vKV +vKV +vKV +kkR +jMH +mDb +moO bis biQ biQ @@ -77083,32 +77089,32 @@ bmg aox biP bjo -blM +waJ btc -bpV -bEA +eDH +kDh bEM bEM brX brX bEM -dDx +raa btc -bzM -bST -bST -bST -bDp -cbs -bGa +nAq +ndy +ndy +ndy +vbw +qBU +kQv bRO -bIr -coV -coV -bJz -bMp +mdz +hzi +hzi +qIR +axd bRO -dCt +tXI naH ozu ozu @@ -77116,18 +77122,18 @@ bRr ozu ozu xsS -mfK -wMw +iEd +mSY bVD -hcP -cbt -bZZ +xjh +gdj +ucT ceg ceg ceg -bYb -bVy -bZq +wRm +wNT +wyS bOu bOu bOu @@ -77137,12 +77143,12 @@ cho cho cho cho -cjQ -chn -chn -chn -chn -chU +wuy +mPG +mPG +mPG +mPG +eLI cho cho czV @@ -77155,9 +77161,9 @@ cho cho cho cho -cjQ -chn -clE +wuy +mPG +wak cnC dTs dTs @@ -77176,43 +77182,43 @@ dTs dTs dTs cPL -cQz +dbS cPL -cQz +dbS cPL cPL -cTO -cTO -cTO -cTO -cTO -cWy -qKE +jeR +jeR +jeR +jeR +jeR +tSo +htd xqQ -rGu +baJ dNS daF -daH -dbq -dTP -dTP -daK -daK -daK -daK -daK -dWj -daK -deu -djt +pNT +sUc +tJq +tJq +tUD +tUD +tUD +tUD +tUD +qye +tUD +xYL +xnQ daF dNS -iri +idX bYV rdW rdW fdk -uis +uzd vuu dpB dqm @@ -77221,13 +77227,13 @@ dqm dqm dqm dVN -dVI -ect +kHU +urN dqo dpB -dzj -dzg -dzg +emE +mhr +mhr bgq dCL dTs @@ -77264,13 +77270,13 @@ aJy aJy aJy aJy -aWZ -aIS -aIS -aIS -aIS -aIS -aZg +wHV +oOZ +oOZ +oOZ +oOZ +oOZ +mve aKw aKw aKw @@ -77284,65 +77290,65 @@ aKw aKw aKw bac -bbK -bFA -axM +pCk +nHL +rmO ahf ahw cEe ahS -agY +npo dTs dTs dTs bbL -bcY -bgj -bgj -akJ -akS -alr -bhF +szb +xnV +xnV +hde +iJa +hgq +mDb bia -bit -bit -bit -bit -bit -bit -bit -bit -blL +vGk +vGk +vGk +vGk +vGk +vGk +vGk +vGk +mjA aui bki bje bjo -blM +waJ btc -bpW -bra -bra -lmq -bra -bEA -bOr -bra +rTT +oAl +oAl +cjb +oAl +kDh +kOJ +oAl btc -bzN -bTb -bST -bST -bSf -cbP -bGb +hjX +eCU +ndy +ndy +eiK +tPk +tzj bRO -bIs -cpE -bKG -bLD -bMq +lCX +qfo +oGf +vqv +eyv bRO -dCt +tXI naH ozu ozu @@ -77350,16 +77356,16 @@ bRr uml vgm xsS -mfK -dCt -dCt -dCt -cbu +iEd +tXI +tXI +tXI +pHo ceg -bYb -bVy -bVy -bZq +wRm +wNT +wNT +wyS bOu bOu bOu @@ -77391,8 +77397,8 @@ cho cho cho cho -cjQ -clE +wuy +wak ciQ cYh dTs @@ -77410,43 +77416,43 @@ dTs dTs dTs cPL -cQA +nTL cPL -cQA +nTL cPL cPL -cTO -cUs -cTO -cTO +jeR +arM +jeR +jeR cVV -mGo -kMT -hqp -rGu +snv +qxh +fRK +baJ dNS dbu -daG -dbq -daK -dTP -dTP -daK -daK -dUb -dUb -dWk -daK -deu -dbn +qJj +sUc +tUD +tJq +tJq +tUD +tUD +pse +pse +fxp +tUD +xYL +pao dbu dNS -iri +idX bYV sLx wya fdk -uis +uzd dNS dpB dVs @@ -77455,16 +77461,16 @@ dqn dsR dOc dtz -dWd -ecu +qWD +pvP dWr dpB diq -dzg -eev +mhr +qoE dOk dCL -dNo +krH skB dTs dTs @@ -77504,10 +77510,10 @@ aJy aJy aJy aJy -aWZ -aIS -aIS -aZg +wHV +oOZ +oOZ +mve aKw aKw dTs @@ -77516,67 +77522,67 @@ aKw aKw aKw aKw -aKx -aIS -aIS -bJN -agY -ahg -ahg -ahI +xND +oOZ +oOZ +yjf +npo +mWQ +mWQ +pWe cyP -agY -aix -aZg +npo +rId +mve aKw bac -bbK -bbK +pCk +pCk bbL -bgj -akT -alQ -bhG -bib -bib -ani -bib -bib -bib -bib -bib -bib -bhZ +xnV +ybC +tYD +pBc +viW +viW +srd +viW +viW +viW +viW +viW +viW +moO bir aox biP bjo -blM +waJ boJ -dwg -brb -brb -brb -bJn -bLp -bra -bxB +hvg +kYD +kYD +kYD +rvG +mPV +oAl +gtZ boJ -bzO -bAJ -bAJ -bCB -bDp -bEN -bGb +gKN +gQA +gQA +fpQ +vbw +tZq +tzj bHm bIt bJB -bKH -bLE +kYH +gfm bHm bHm -dCt +tXI ngo oAM oAM @@ -77584,13 +77590,13 @@ ueZ ozu ozu xsS -mfK -bVw -bWm -bZr -cce -bYb -bZq +iEd +kyb +rLx +dMu +pwE +wRm +wyS bOu bOu bOu @@ -77626,8 +77632,8 @@ cho cho cho cho -cjQ -clE +wuy +wak cnC dTs dTs @@ -77649,59 +77655,59 @@ cPL cPL cPL cPL -cTP -cTO -cTO -cVq +xtr +jeR +jeR +ftj cPL vuu -sUe -hqp -rGu +sJe +fRK +baJ dNS dbu -daG -dbt -dci -dNh -dTP -dUg -dUo -dUy -dTP -efT -diJ -djs -dbn +qJj +tgb +sDS +fQc +tJq +oEh +glU +nkY +tJq +qLJ +lng +mjz +pao dbu dNS -iri +idX bYV rdW rdW fdk -uis +uzd dNS dpB dNX -dVw -dNY -dOa -dVI -dVO -dWe -ecv +xhd +eKx +ucb +kHU +uMs +naR +qFv lxq dpB -gdW -wRX -jpa -vud +hna +nAL +kHY +sqe ebP -kkm -ibU -ibU -ibU +fxP +nou +nou +nou dTs dTs dTs @@ -77741,16 +77747,16 @@ aJy aJy aJy aJy -aWZ -aZg +wHV +mve aKw aKw aKw -aKx -aIS -aIS -aIS -aLd +xND +oOZ +oOZ +oOZ +lCS aJy aJy aJy @@ -77761,31 +77767,31 @@ bTi bTi bTi aJy -aWZ -aIS -aZg +wHV +oOZ +mve aKw aKw bWw -bcY -bgU -bhl -bhk -bhk -bhk -bhk -aoy -bhk -bhk -bhk -bhk -bhk -blM +szb +ktD +eLR +jMH +jMH +jMH +jMH +fUf +jMH +jMH +jMH +jMH +jMH +waJ bir biP biP bjo -blM +waJ boJ boJ btc @@ -77793,15 +77799,15 @@ btc boJ boJ btc -bwr +vTH btc btQ bDR bDR bDR bDR -bvk -bEP +peF +fjc bGc bHm bHm @@ -77809,21 +77815,21 @@ bHm bRO bRO bHm -goq -dCt -blO -nil -pTU +hCo +tXI +urZ +pPg +eoi naH ozu ozu xsS -mfK -bXf -bYa -bZZ -bYb -bZq +iEd +isY +qja +ucT +wRm +wyS bOu bOu bOu @@ -77835,8 +77841,8 @@ bOu bOu cho cho -chX -chp +bBn +hCk cjR cho cho @@ -77861,8 +77867,8 @@ cho cho cho cho -cjQ -clE +wuy +wak ciQ dTs dTs @@ -77882,62 +77888,62 @@ dTs dTs dTs cPL -cTk -cTO -cTO -cTO -cVr +lYD +jeR +jeR +jeR +gWK cVV dNS -sUe -hqp -rGu +sJe +fRK +baJ dNS daF daF dbu daF -daK -dTP -dUi -dUp -dUv -dTP -dWj +tUD +tJq +jbS +ltA +oDD +tJq +qye daF dbo daF daF dNS -iri +idX bYV rdW rdW fdk -uis +uzd dNS dpB dqo -drc -dVy -dVD -dVJ -dVI -dVI -dWq +vFh +vOX +ggS +bgY +kHU +kHU +ylP qXZ dpB -gdW -hqp -jOe -xxv -wPb -wPb -wPb -wPb -wPb -rBP -uAo +hna +fRK +vtB +rYv +mIR +mIR +mIR +mIR +mIR +qFE +tvs dTs dTs dTs @@ -77976,11 +77982,11 @@ aJy aJy aJy aJy -aWZ -aIS -aIS -aIS -aLd +wHV +oOZ +oOZ +oOZ +lCS aJy aJy aJy @@ -77997,66 +78003,66 @@ bTi aJy aJy aJy -aWZ -aIS -aZg +wHV +oOZ +mve bac -bbK -bWx -bMt +pCk +eRy +sub bab -amu +mdu amw amw amw -aqm -bXg -bXk -bXk -bXr -blM +pgV +elf +wMp +wMp +geM +waJ bir bki bje bjo -blM -boL +waJ +tIh bhi bTR bhi bhi btQ -bvi -bvi -bvi -bHq -bvi -bvi -bvi -bvi -bwu -bEQ -bvi -bHq -bvi +jcI +jcI +jcI +wxS +jcI +jcI +jcI +jcI +fWY +uBr +jcI +wxS +jcI btQ cNW cNW cNW -gQE -dCt -dCt -oXx -qDb +uWK +tXI +tXI +tVv +vjt naH uml vgm xsS -mfK +iEd bXY -bYb -bVy -bZq +wRm +wNT +wyS bOu bOu bOu @@ -78064,17 +78070,17 @@ bOu bOu bOu bOu -caG -ceU -ceU -chp -chp -ciP +jri +rFZ +rFZ +hCk +hCk +quq ciQ -cjS -chp -chp -chp +qXE +hCk +hCk +hCk cjR cho cho @@ -78085,19 +78091,19 @@ czV czV cho cho -cAf -cAj -chp -chp -chp +lnI +qQX +hCk +hCk +hCk cjR cho cho cho cho cho -cjQ -clE +wuy +wak ciQ dTs dTs @@ -78116,39 +78122,39 @@ dTs dTs dTs cPL -cTl -cTO -cTO -cUH -hOA +keP +jeR +jeR +eZT +iEZ cVV dNS -sUe -hqp -sbP +sJe +fRK +mwz dNS dNS daF -daG -dcj -dTP -dUb -dUj -daG -dUv -dTZ -dWl -diK -dbn +qJj +sLj +tJq +pse +fYk +qJj +oDD +bLH +uOX +pMb +pao daF dNS dNS -iri +idX bYV sLx wya fdk -uis +uzd dNS dpB dqo @@ -78161,18 +78167,18 @@ dvt dwy ebA dpB -gdW -hqp +hna +fRK uFX -hBr -hBr -hBr -hBr -hBr -jpa -vud -kkm -ibU +uLR +uLR +uLR +uLR +uLR +kHY +sqe +fxP +nou dTs dTs dTs @@ -78196,13 +78202,13 @@ dTs dTs dTs ebs -aTk -aUl -aUl -aUl -aUl -aUl -aUl +iii +ofW +ofW +ofW +ofW +ofW +ofW aXS aJy aJy @@ -78233,62 +78239,62 @@ aJy aJy aJy aJy -aWZ -aIS -aIS -aIS -aZg +wHV +oOZ +oOZ +oOZ +mve bac -amv -amS -amS -amS -aqE -bXh +fZK +nCC +nCC +nCC +iOs +jCc bXd bXd bXs -blM +waJ bir biP biP bjo -blM -boM -bgp -bgp -bgp -bgp +waJ +oky +qph +qph +qph +qph btQ -bvi -bwt -bxD -bxD -bxD -bxD -bxD -bxD -bwv -bER -bxD -bHr -bvi +jcI +fIF +oNl +oNl +oNl +oNl +oNl +oNl +prA +mBR +oNl +eRE +jcI btQ -cTU -cTU -cTU -hcP -bPi -bVx +nZM +nZM +nZM +xjh +gET +uoi bVz -qQz +nNv clB clB clB clB -bXe -bXZ -bZq +fnp +lPc +wyS bOu bOu bOu @@ -78297,42 +78303,42 @@ bOu bOu bOu bOu -caG -cef +jri +dos ceg ceg ciQ ciQ ciQ -dvz -djw -djw -djw -cAl -cjS -chp -chp -chp -czB -cAf -czX -czX -czX +puz +uYJ +uYJ +uYJ +fcS +qXE +hCk +hCk +hCk +jxp +lnI +xVs +xVs +xVs cho -cAf -cAk -cAl +lnI +tBs +fcS ciQ ciQ -cjS +qXE cjR cho cho cho cho cho -cjQ -clE +wuy +wak dTs dTs dTs @@ -78350,39 +78356,39 @@ dTs dTs dTs cPL -cTm -cTO -cTO -cUH -hOA +jxw +jeR +jeR +eZT +iEZ cVV dNS -vEb -wQS -rGu +ern +sFq +baJ dNS dNS dbu -daG -dbq -dTP -daK -deu -dUp -dUv -dTP -dWj -deu -dbn +qJj +sUc +tJq +tUD +xYL +ltA +oDD +tJq +qye +xYL +pao dbu dNS dNS -iri +idX bYV rdW rdW fdk -cTB +iQm doL doL edY @@ -78395,19 +78401,19 @@ edY edY doL doL -gdW -hqp +hna +fRK uFX -qKE -qKE -qKE -qKE -qKE -oQx -vud +htd +htd +htd +htd +htd +eFd +sqe dNS dNS -uAo +tvs dTs dTs dTs @@ -78437,9 +78443,9 @@ dTs aKw aKw aKw -aZe -aUl -aUl +pdA +ofW +ofW aXS aJy aJy @@ -78471,56 +78477,56 @@ aJy aJy aJy aJy -aWZ -aIS -aZg +wHV +oOZ +mve aKw aKw aKw bXd bXd -bXl -bXi -bXt -bWo -bQF -bQF -bQF -bQF -bWo -bYf -caM -caM -cbz -bQF +wDI +mql +fFV +jGH +rzX +rzX +rzX +rzX +jGH +kBQ +iWm +iWm +xJC +rzX bCs bSY -bwu +fWY kOC iiY kOC bAK -bwv +prA bZQ -aCf -aEM +wKA +siD aEN aKu bZQ bCs -cev -bNr -bNs -bNs -bPj -bVy -bWn -qQz -cev -cev -cev -cev -bXe +dYH +vMm +xYH +xYH +oIO +wNT +kti +nNv +dYH +dYH +dYH +dYH +fnp aIh bOu bOu @@ -78529,11 +78535,11 @@ bOu bOu bOu bOu -caG -ceU -cef -cei -cfn +jri +rFZ +dos +phx +hnX dTs dTs dTs @@ -78542,24 +78548,24 @@ dTs dTs dTs dTs -cAX -cpv +hVU +fae chS chS -cjk -cAe -coF +kXa +lhx +oKj dfc dgF jrV dTH -coF -cuT -cAX -ckn -ckn -cpv -cAY +oKj +xQU +hVU +hQE +hQE +fae +hsf cCb cDd cho @@ -78584,39 +78590,39 @@ dTs dTs dTs cPL -cTn -cTO -cTO -cTO -cVs +fpl +jeR +jeR +jeR +opq cPL dNS dNS -wLV -rGu +vKF +baJ dNS dNS dbu -daG -dbq -dTP -daK -dUh -dUH -dVG -dVR -dWm -deu -dbn +qJj +sUc +tJq +tUD +nZn +uEG +rKG +ybn +mNM +xYL +pao dbu dNS dNS -iri +idX bYV rdW rdW fdk -hOK +suT doL dpC dpC @@ -78629,20 +78635,20 @@ dpC dpC ebB doL -ebG -hqp -jOe -gdW -gdW -gdW -gdW -gdW -gdW -vud +sob +fRK +vtB +hna +hna +hna +hna +hna +hna +sqe vuu dNS -kkm -dNo +fxP +krH dTs dTs dTs @@ -78670,12 +78676,12 @@ dTs dTs dTs aKw -aUn -aUk -bdt +oaY +vXQ +dGJ aKw -aZe -aUl +pdA +ofW aXS aJy aJy @@ -78686,13 +78692,13 @@ aJy aJy aJy aJy -aTk -aUl -aUl -bOw -bPl -cCR -cCS +iii +ofW +ofW +xLY +vMS +prn +kIa bTi bcQ bTi @@ -78707,21 +78713,21 @@ aJy aJy aJy aJy -aWZ -aIS -aIS -aIS -aIS -bXi -bXm +wHV +oOZ +oOZ +oOZ +oOZ +mql +cGE bXn bXu -bWo +jGH bSY bSY bSY bSY -bWo +jGH bYj bXn bXn @@ -78729,15 +78735,15 @@ bXu bSY bCs bSY -ccl +svB ccp ccp ccp ccp -aCf +wKA bZQ -aCf -aEM +wKA +siD aIh bhc bZQ @@ -78749,21 +78755,21 @@ bOu bOu bOu bhc -qQz +nNv bZQ bZQ bZQ bZQ -bXe +fnp aIh bOu bOu bOu bOu bOu -caG -ceU -cef +jri +rFZ +dos ceg ceg dTs @@ -78778,30 +78784,30 @@ dTs dTs dTs dTs -ceZ -ceZ -ceZ -cnD -caH +xXn +xXn +xXn +nfJ +wTW cfw dPY dPY chr -caH -ccM -ceZ -ceZ -ceZ -ceZ -cnD -caH +wTW +nNV +xXn +xXn +xXn +xXn +nfJ +wTW cFf cho cho cho cho -cjQ -clE +wuy +wak dTs dTs dTs @@ -78818,65 +78824,65 @@ dTs dTs dTs cPL -cTo -cTO -cTO -cTO -cTO +pNu +jeR +jeR +jeR +jeR cVV dNS dNS -wLV -rGu +vKF +baJ dNS dNS dbu -daG -dbq -dTP -dTP -dTP -dUI -daK -dTP -dWl -deu -dbn +qJj +sUc +tJq +tJq +tJq +uRb +tUD +tJq +uOX +xYL +pao dbu dNS vuu -iri +idX bYV sLx wya fdk -hOK +suT dhA dpC -dqp -dqp -dqp -ehF -dqp -dqp -dqp -dqp +gun +gun +gun +uZn +gun +gun +gun +gun dpC dhA -gdW -hqp -jOe -gdW -dCM -dDs -dDs -dDs -dFM -dGr -dGV -dGV -dHT -uAo +hna +fRK +vtB +hna +gyA +kvx +kvx +kvx +lOI +mhm +sea +sea +vkf +tvs skB dTs dTs @@ -78903,14 +78909,14 @@ dTs dTs dTs dTs -aUk -aVT -acC -bdK -bdt +vXQ +kYO +ygO +tJz +dGJ aKw aKw -aZe +pdA aXS aJy aJy @@ -78918,19 +78924,19 @@ aJy aJy aJy aJy -aTk -aUl -aTm +iii +ofW +mwl aKw aKw bOx -bPl +vMS bRs cEe xMr djZ -bPl -aiA +vMS +hdM aXS aJy aJy @@ -78950,12 +78956,12 @@ aJy bXn bXn bXu -bWo +jGH bSY bSY bSY bSY -bWo +jGH bYI cbv cbv @@ -78963,15 +78969,15 @@ ccg bSY bCs bSY -bwu +fWY kOC iiY kOC bAK -bwv +prA bZQ -aCf -aEM +wKA +siD aJz bLF bZQ @@ -78983,22 +78989,22 @@ bOv bOv bOv bLF -qQz +nNv bZQ bZQ bZQ bZQ -bXe +fnp aIh bOu bOu bOu bOu -caG -cef +jri +dos ceg -cei -cfn +phx +hnX dTs dTs dTs @@ -79012,31 +79018,31 @@ dTs dTs dTs dTs -ehx +ezL ceo ceo cen -coG +qHU cfw iAf cgL pUR -ctL +xRL cen ceo ceo ceo ceo cen -cnD +nfJ cGT cho cho cho cho cho -cjQ -clE +wuy +wak dTs dTs dTs @@ -79053,65 +79059,65 @@ dTs dTs cPL cPL -cTL -dHs -hOA +qHy +wWh +iEZ cPL cPL dNS dNS -syi -rGu +eGj +baJ dNS dNS dbu -daG -dbq -daK -daK -dTP -dTP -dTP -dTP -dWj -deu -dbn +qJj +sUc +tUD +tUD +tJq +tJq +tJq +tJq +qye +xYL +pao dbu dNS dNS -iri +idX bYV rdW rdW fdk -hOK +suT dhA dpC -dqp -dqp -dqp -ehB -ehR -ehR -ehU -dqp +gun +gun +gun +nOR +uTU +uTU +sQb +gun dpC dhA -gdW -hqp -jOe -gdW -dCN -dDt -bgu -blQ -aZv -aZv -bmi -dHt -dId -kkm -dNo +hna +fRK +vtB +hna +qsR +lXp +rPB +djT +ngW +ngW +tkO +udI +dxJ +fxP +krH dTs dTs dTs @@ -79138,36 +79144,36 @@ dTs dTs dTs dTs -bcY -bcY -bcY -bdK -aUk -bdt +szb +szb +szb +tJz +vXQ +dGJ aKw -aZe -aUl +pdA +ofW aXS aJy -aTk -aUl -aUl -aTm +iii +ofW +ofW +mwl aKw -aUn -aUk -aUk -bPk -aPP +oaY +vXQ +vXQ +isw +tZI aXW aWa aWB aZk -aPP +tZI aiC -aZe -aUl -aUl +pdA +ofW +ofW aXS aJy aJy @@ -79184,53 +79190,53 @@ aJy aJy bXn bXu -blM +waJ bir biP biP bjo -blM -bhk -bhk -bhk -bhk -bhk +waJ +jMH +jMH +jMH +jMH +jMH btQ -bvj -bwu -bwv -bwv -bwv -bwv -bwv -bwv -bwv -bER -bwv -bHv -bIu +rBQ +fWY +prA +prA +prA +prA +prA +prA +prA +mBR +prA +faZ +iNT btQ -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +tXI +tXI +tXI +tXI +tXI +tXI +tXI +vjt naH ozu ozu xsS -mfK +iEd aIh bOu bOu bOu -caG -cef -cei -cfn +jri +dos +phx +hnX dTs dTs dTs @@ -79246,24 +79252,24 @@ aDT aDT dTs dTs -cdF +hDc cdw cdw cdw -coH +pRc cfw dPY idg chr -ctM +vsI cdw cdw cnE cdw cdw ceo -chx -cLh +rZo +bWl cjR cho cho @@ -79294,58 +79300,58 @@ cVV cPL dNS dNS -syi -rGu +eGj +baJ cZF dNS daF -daG -dbt -daL -daL -daL -daL -dbs -daK -dWj -deu -djt +qJj +tgb +fpi +fpi +fpi +fpi +slC +tUD +qye +xYL +xnQ daF dNS dNS -iri +idX bYV rdW rdW fdk -hOK +suT doL eaV -ehG -ehI -ehJ -ehC +xKG +iSo +vgW +pol ehP ehP -ehV -dqp -dqp -eeE -wRX +veP +gun +gun +rjE +nAL uFX -jOe -gdW -dCN -bgu -blQ -aZv -aZv -aZv -aZv -bmS -dId +vtB +hna +qsR +rPB +djT +ngW +ngW +ngW +ngW +oDq +dxJ dNS -uAo +tvs dTs dTs dTs @@ -79373,36 +79379,36 @@ dTs dTs dTs dTs -and -and -ard -asy -bek -bfP +xfK +xfK +mhX +ngG +veH +uJw bWq bWq -abC -cby -abG +tUn +mDj +kjG bWq bWq -bMu -bMv -bNt -asy -and -aaZ -aPP +kva +hnM +dpi +ngG +xfK +pOx +tZI aXW aVZ ahK aZk -aPP -aiD +tZI +mxc aKw aKw aKw -aZe +pdA aXS aJy aJy @@ -79418,52 +79424,52 @@ aJy aJy aJy bXv -blM +waJ bir bki bje bjo -blM -bhk -bhk -bhk -bhk -bhk -btS -bvk -bwv -bwv -bwv -bzP -bwv -bwv +waJ +jMH +jMH +jMH +jMH +jMH +kuH +peF +prA +prA +prA +dvS +prA +prA btQ -bDu -bES -bGg -bHv -bvk -btS -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +hcl +jJV +pKb +faZ +peF +kuH +tXI +tXI +tXI +tXI +tXI +tXI +tXI +vjt naH uml vgm xsS -mfK +iEd aIh bOu bOu -caG -cef -cei -ceT +jri +dos +phx +xjf dTs dTs dTs @@ -79479,33 +79485,33 @@ vHQ ipQ aDT dTs -cft -cer +vSs +usC ehz coJ coI -coH +pRc cfw dPY idg chr -ctM +vsI cdw cdw cdw cdw cdw ceo -chx +rZo cLi -cjS +qXE cjR cho cho cho cho -cjQ -clE +wuy +wak cnC dTs dTs @@ -79522,14 +79528,14 @@ dTs dTs dTs dTs -rIY -cMl +eUB +ylp dNS dNS dNS dNS -wLV -rGu +vKF +baJ dNS dNS daF @@ -79540,46 +79546,46 @@ dck dck dck dcl -dTX -dWn +toz +jEd dcl dck dck dck dNS -iri +idX bYV sLx wya fdk -hOK +suT dhA dpC -dqp -dqp -ehL -ehC +gun +gun +vRo +pol ehP ehX -ehV -dqp -dqp -dqp -cWy +veP +gun +gun +gun +tSo uFX -jOe -gdW -dCN -bgy -aZv -aZv -aZv -bpS -aZv -aZv -dId +vtB +hna +qsR +guf +ngW +ngW +ngW +eKZ +ngW +ngW +dxJ dNS -uAo +tvs dTs dTs dTs @@ -79607,39 +79613,39 @@ dTs dTs dTs dTs -aSi -aQq -aRi -aRH -aPP -aPP -aPP -aPP -aPP -aPP -aPP -aPP -aPP -aPP -aPP -aXT -aYy -aPP -aPP -aPP +gFT +pjR +xQh +fsZ +tZI +tZI +tZI +tZI +tZI +tZI +tZI +tZI +tZI +tZI +tZI +rdY +ila +tZI +tZI +tZI aXW aVZ aVZ ahU -aio -aiF -bMv -bfP +oYQ +ujr +hnM +uJw bWq bWu -aZe -aUl -aUl +pdA +ofW +ofW aXS aJy aJy @@ -79652,49 +79658,49 @@ aJy aJy aJy bXv -blM +waJ bir biP biP bjo -blM -bhk -bhk -bhk -bhk -bhk +waJ +jMH +jMH +jMH +jMH +jMH btQ -bvj -bwu -bwv -bwv -bwv -bwv -bwv -bwv -bwv -bER -bwv -bHv -bIu +rBQ +fWY +prA +prA +prA +prA +prA +prA +prA +mBR +prA +faZ +iNT btQ -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +tXI +tXI +tXI +tXI +tXI +tXI +tXI +vjt naH ozu ozu xsS -mfK +iEd chA clc -dsf -cef +hYh +dos ceg dTs dTs @@ -79713,34 +79719,34 @@ vHQ vHQ aDT dTs -cdF +hDc cdw dBQ boG dxO -coH +pRc cfw iAf wcc chr -ctN -cuU -cuU -cuU -cxz +cXq +klZ +klZ +klZ +cBR cdw ceo -chx -cUJ +rZo +xAX ciQ -cYg +qjT cho cho cho cho cho -cjQ -clE +wuy +wak dTs dTs dTs @@ -79756,63 +79762,63 @@ dTs dTs dTs dTs -cGO -cMo +xVb +reP dNS dNS dNS -lJM -fUO -eVR -rBP +ybU +kOi +srM +qFE dNS dNS dNS dck -dcV -dcW -jAr +wcH +fmi +oGT dfe dcY -dTX -dWo +toz +smg dIs dIs djV dck dNS -iri +idX bYV rdW rdW fdk -hOK +suT dhA dpC -dqp -dqp -dqp -ehC +gun +gun +gun +pol ehP ehP -ehV -dqp +veP +gun dpC dhA -gdW -hqp -jOe -gdW -dCO -bgy -aZv -aZv -aZv -aZv -aZv -aZv -dHX -taH +hna +fRK +vtB +hna +eQD +guf +ngW +ngW +ngW +ngW +ngW +ngW +ouU +qkI dTs dTs dTs @@ -79841,40 +79847,40 @@ dTs dTs dTs dTs -aPg -aPO -aOk +mFb +dmn +vzk aOY -adg -aea -aea -aeU -aXU -aXU -aXU -aXU -adg -aea -agg -aXU -aXU -aXU -aXU -aif +lRQ +wkf +wkf +mSI +pJD +pJD +pJD +pJD +lRQ +wkf +mft +pJD +pJD +pJD +pJD +xKo aXW aWa aWB aZk -bbv -aSi -aSi -aSi -aQq +mWW +gFT +gFT +gFT +pjR bWv aKw aKw aKw -aZe +pdA aXS aJy aJy @@ -79886,12 +79892,12 @@ aJy aJy aJy bXv -bYc +pSB bTi bTi bTi bTi -bYc +pSB bYJ cbw cbw @@ -79899,15 +79905,15 @@ cch bTi bCy bTi -bwu +fWY oWx gVo oWx bAK -bwv +prA caI -cgi -cgU +jEQ +iMH chz cie caI @@ -79919,12 +79925,12 @@ ciE ciE ciE cie -rtW +qFx caI caI caI caI -cpw +noI chA clc dsg @@ -79948,11 +79954,11 @@ vHQ aDT dTs dTs -cdE +rtc boG mVy dBh -coH +pRc cfw cdC ibE @@ -79961,21 +79967,21 @@ ccZ ccZ ccZ cix -ctM +vsI cdw ceo -chx -cVX +rZo +fQG ciQ -cjS +qXE cjR cho cho cho cho cho -cjQ -clE +wuy +wak ciQ dTs dTs @@ -79991,62 +79997,62 @@ dTs dTs dTs dTs -wPb -wPb -wPb -wPb -jVa -hqp -jOe -xxv -wPb -wPb -wPb +mIR +mIR +mIR +mIR +mMY +fRK +vtB +rYv +mIR +mIR +mIR cXz -cNr -dcW -dey +xOD +fmi +kWj dcY dTY -dTX -dWp +toz +sjY dTY dTY dcY cXz -wPb -cTF +mIR +gSM bYV rdW rdW fdk -hOK +suT doL dpC -ehH -ehI -ehK -ehC +tRI +iSo +gRS +pol ehS ehP -ehV -dqp +veP +gun ebB doL -gdW -hqp -jOe -gdW -dCN -bgy -aZv -aZv -aZv -aZv -aZv -aZv -dId -uAo +hna +fRK +vtB +hna +qsR +guf +ngW +ngW +ngW +ngW +ngW +ngW +dxJ +tvs dTs dTs dTs @@ -80074,14 +80080,14 @@ dTs dTs dTs dTs -acq -acE -acN -acS -acV -adh +fAb +wbI +hrb +fOw +ubV +gWM aed -aes +xaC dTs dTs dTs @@ -80089,8 +80095,8 @@ dTs dTs dTs aOh -agh -aPP +wmA +tZI aaB abZ abZ @@ -80099,19 +80105,19 @@ amM aVZ aVZ aZk -aYf +dxx aOh aXc aOh -aPO +dmn bWv aKw aKw aKw aKw -aZe -aUl -aUl +pdA +ofW +ofW aXS aJy aJy @@ -80120,12 +80126,12 @@ aJy aJy aJy bXv -bYc +pSB bTi bTi bTi bTi -bYc +pSB bZs aJy aJy @@ -80133,15 +80139,15 @@ bXv bTi bCy bTi -ccn +gno ccq ccq ccq ccq -cgi +jEQ caI -cgi -cgU +jEQ +iMH chA cif caI @@ -80153,16 +80159,16 @@ clc clc clc cif -rtW +qFx caI caI caI caI -cpw +noI chA clc -dsh -dIh +rnr +quH dHb dLq dTs @@ -80182,11 +80188,11 @@ vHQ aDT dTs dTs -bmC +erK btY mVy clF -coH +pRc cfw idg cdC @@ -80195,23 +80201,23 @@ idg oyf idg pUR -ctM +vsI cdw ceo -chx -cWC -cAl +rZo +jLg +fcS ciQ -cjS +qXE cjR cho cho cho cho cho -cjQ -chn -clE +wuy +mPG +wak ciQ dTs dTs @@ -80225,61 +80231,61 @@ dTs dTs dTs dTs -ckx -ckx -ckx -cYe -gdW -hqp +jDn +jDn +jDn +rww +hna +fRK uFX -hBr -hBr -hBr -jpa -dkH -dTX -dTX -dcn -dcn -dTX -dcn -dWp -dTX -dTX -dTX -dkH -dUL -dUN +uLR +uLR +uLR +kHY +reC +toz +toz +xJE +xJE +toz +xJE +sjY +toz +toz +toz +reC +nMW +cYU bYV sLx wya fdk -hOK +suT dhA dpC -dqp -dqp -ehM -eia -ehT -ehQ -ehW -dqp +gun +gun +gnn +uBw +qkz +wkA +rqa +gun dpC dhA -gdW -hqp -jOe -gdW -dCP -blp -blR -aZv -aZv -aZv -aZv -bmT -dHY +hna +fRK +vtB +hna +rNh +mes +xxJ +ngW +ngW +ngW +ngW +eXN +ttC dTs dTs dTs @@ -80310,10 +80316,10 @@ dTs dTs dTs tQR -xlE -ykJ -ykJ -rNg +vCg +vkV +vkV +mDQ tQR sLS tQR @@ -80323,8 +80329,8 @@ dTs dTs dTs aOh -agh -aPP +wmA +tZI aXW aVZ aVZ @@ -80333,11 +80339,11 @@ aCp aVZ aVZ aZk -aYf +dxx bdc -aRM -aPg -aPO +nda +mFb +dmn bWv aKw aKw @@ -80346,20 +80352,20 @@ aKw aKw aKw aKw -aZe -aUl +pdA +ofW aXS aJy aJy aJy aJy bXv -bYc +pSB bTi bTi bTi bTi -bYc +pSB bZt cbx cbx @@ -80367,15 +80373,15 @@ cci bTi bCy bTi -bwu +fWY oWx gVo oWx bAK -bwv +prA caI -cgi -cgU +jEQ +iMH chB cig caI @@ -80387,17 +80393,17 @@ cld cld cld cig -rtW +qFx caI caI caI caI -cpw +noI chA clc clc -dsh -dIh +rnr +quH dLr dTs dTs @@ -80416,11 +80422,11 @@ vHQ aDT dTs dTs -cdF +hDc btY dBh coI -coH +pRc cfw iAf uYD @@ -80429,15 +80435,15 @@ idg idg dPY pUR -ctM +vsI cdw ceo -chx -cAm -cXp +rZo +bHO +pYt ciQ ciQ -cYg +qjT cho cho cho @@ -80445,9 +80451,9 @@ cho cho cho cho -cjQ -chn -clE +wuy +mPG +wak ciQ dTs dTs @@ -80460,60 +80466,60 @@ dTs dTs dTs dTs -cAZ -cAZ -dsU -cXn -hqp +uig +uig +wSd +xnR +fRK uFX rpQ uFX uFX -oQx -dcn -dTX -dcn -dTX -dcn -dcn -dTX -dWs -dTX -dTX -dTX -dTX -dUM -dUN +eFd +xJE +toz +xJE +toz +xJE +xJE +toz +vEy +toz +toz +toz +toz +hsL +cYU iVZ rdW rdW fdk -hOK +suT dhA dpC -dqp -dqp -dqp -eib -dqp -dqp -ehD -dqp +gun +gun +gun +uBi +gun +gun +eNT +gun dpC dhA -gdW -hqp -jOe -gdW -dCQ -dDz -blS -blR -aZv -aZv -bmj -dHw -dId +hna +fRK +vtB +hna +nZx +tvY +ttc +xxJ +ngW +ngW +kSG +vFL +dxJ dTs dTs dTs @@ -80544,21 +80550,21 @@ dTs dTs dTs aow -aqK -asx -asx -asA +grq +tTR +tTR +lLK asB -aet -aeX -avn +bRa +eWM +ikK aow dTs dTs dTs dTs -agi -aPP +vAk +tZI aXW aVZ aVZ @@ -80567,72 +80573,72 @@ aCp aWa aWB xZE -aYf +dxx aOh -aWz -aPi +xAO +qyU dTs dTs dTs -aUk -aUk -aUk -aUk -aUk -bdt +vXQ +vXQ +vXQ +vXQ +vXQ +dGJ aKw aKw -aZe +pdA aXS aJy aJy aJy bXv -blM +waJ bir biP biP bjo -blM -bhk -bhk -bhk -bhk -bhk +waJ +jMH +jMH +jMH +jMH +jMH btQ -bvj -bwu -bwv -bwv -bwv -bwv -bwv -bwv -bwv -bER -bwv -bHv -bIu +rBQ +fWY +prA +prA +prA +prA +prA +prA +prA +mBR +prA +faZ +iNT btQ -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +tXI +tXI +tXI +tXI +tXI +tXI +tXI +vjt naH ozu ozu xsS -mfK +iEd chA clc clc clc -dsh -dIh +rnr +quH dHb dTs dTs @@ -80650,11 +80656,11 @@ vHQ aDT dTs dTs -cdF +hDc bPN clF coJ -coH +pRc cfw cdC idg @@ -80663,15 +80669,15 @@ icM dPZ dPZ gsr -nYZ +lbB cdw cen -czC -cAm -cYf -cAl +jWu +bHO +eMR +fcS ciQ -cjS +qXE cjR cho cho @@ -80681,10 +80687,10 @@ cho cho cho cho -cjQ -chn +wuy +mPG dTs -chn +mPG dTs dTs dTs @@ -80692,62 +80698,62 @@ dTs dTs dTs dTs -cAZ -cAZ -cAZ -cAZ -dtX -cXo -hqp +uig +uig +uig +uig +lnH +rWv +fRK rpQ rpQ uFX -jOe -gdW +vtB +hna cXz dTY dTY dTY -dUq -dUq -dTX -dTX -dUq -dUq +lAD +lAD +toz +toz +lAD +lAD dcY cXz -mGo -dlx +snv +tSB bYV rdW rdW fdk -hOK +suT doL dpC -ehB -ehR -ehR -ehO -ehU -dqp -dqp -dqp +nOR +uTU +uTU +emJ +sQb +gun +gun +gun dpC doL -gdW -hqp -jOe -gdW -dCR -dDA -dEe -dEe -dFN -dEe -dGY -dHx -dIa +hna +fRK +vtB +hna +fgh +vzB +mqA +mqA +hmB +mqA +mIN +cWz +qJE dTs dTs dTs @@ -80778,21 +80784,21 @@ dTs dTs dTs aow -aqK -asx -asx -asA -asC -atp -aud -avq +grq +tTR +tTR +lLK +rBS +rIC +exV +lxB aow dTs dTs dTs dTs -aXv -aPP +jHp +tZI aaC aXC aXC @@ -80801,66 +80807,66 @@ aCQ aVZ aVZ aZk -aYf -aRM -aRN -aOT +dxx +nda +svd +joQ dTs dTs dTs dTs -bcY -bcY -bcY -bcY -bdK -aUk -bdt +szb +szb +szb +szb +tJz +vXQ +dGJ aKw -aZe +pdA aXS aJy aJy bXv -blM +waJ bir bki bje bjo -blM -bhk -bhk -bhk -bhk -bhk -btS -bvk -bwv -bwv -bwv -bwv -bwv -bwv +waJ +jMH +jMH +jMH +jMH +jMH +kuH +peF +prA +prA +prA +prA +prA +prA btQ -bwv -bER -bwv -bHv -bvk -btS -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +prA +mBR +prA +faZ +peF +kuH +tXI +tXI +tXI +tXI +tXI +tXI +tXI +vjt naH uml vgm xsS -mfK +iEd chA clc clc @@ -80884,11 +80890,11 @@ vHQ aDT dTs dTs -aAy -bQQ +mBl +ltK coI cdw -coH +pRc cfw dPY dPY @@ -80897,16 +80903,16 @@ poi qEJ poi cix -nYZ +lbB cdw ceo -chx -cAm -cAZ -cYf -cAl +rZo +bHO +uig +eMR +fcS ciQ -cjS +qXE cjR cho cho @@ -80925,64 +80931,64 @@ dTs dTs dTs dTs -cuQ -cuQ +iQs +iQs djx -cAZ -cAZ -dtY -gdW -cWy -qKE -qKE +uig +uig +fYB +hna +tSo +htd +htd uFX -jOe -gdW +vtB +hna dck dcY ddU dTY -dUr -dUr -dTX -dUJ -dUq -dUr +lBt +lBt +toz +xww +lAD +lBt dcY dck dNS -iri +idX bYV sLx wya fdk -hOK +suT doL eaV -ehC +pol ehP ehP ehP -ehV -dqp -eid -dqp +veP +gun +vID +gun dxd doL -ebG -hqp -jOe -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -vud +sob +fRK +vtB +hna +hna +hna +hna +hna +hna +hna +hna +sqe dNS -uAo +tvs dTs dTs dTs @@ -81012,21 +81018,21 @@ dTs dTs dTs aow -aqM -asx -asx -asA +kER +tTR +tTR +lLK asB -atT -aud -avr +rQk +exV +esd aow dTs dTs dTs dTs -aXv -aPP +jHp +tZI aaB abZ abZ @@ -81035,8 +81041,8 @@ amM aVZ aVZ aZl -bbw -aWz +xeO +xAO dTs dTs dTs @@ -81045,56 +81051,56 @@ dTs dTs dTs dTs -alU -bcY -bcY -bcY -bdK -bdt +tiu +szb +szb +szb +tJz +dGJ aKw -aZe +pdA aXS aJy bXv -blM +waJ bir biP biP bjo -blM -bhk -bhk -bhk -bhk -bhk +waJ +jMH +jMH +jMH +jMH +jMH btQ -bvj -bwu -bwv -bwv -bwv -bwv -bwv -bwv -bwv -bER -bwv -bHv -bIu +rBQ +fWY +prA +prA +prA +prA +prA +prA +prA +mBR +prA +faZ +iNT btQ -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +tXI +tXI +tXI +tXI +tXI +tXI +tXI +vjt naH ozu ozu xsS -mfK +iEd chA clc clc @@ -81110,19 +81116,19 @@ dTs dTs aDT aEc -aEs -aEs -aEs -aEs +nKu +nKu +nKu +nKu aEc aDT dTs dTs dTs -cdF +hDc cdw cdw -coH +pRc cfw cge cgL @@ -81131,17 +81137,17 @@ dPY idg dPY chr -nYZ +lbB cdw ceo -chx -cAm -cAZ -cAZ -cYf -cAl +rZo +bHO +uig +uig +eMR +fcS ciQ -cjS +qXE cjR cho cho @@ -81157,67 +81163,67 @@ cho cho dTs dTs -clE +wak ciQ ciQ ciQ cnC -cuQ +iQs djx -dtY -gdW -gdW -gdW -dIw -hqp -jOe -gdW +fYB +hna +hna +hna +ePU +fRK +vtB +hna dck dcZ ddU dcY -dfi -dfh -dcn -dcn -dfi -dfi +ggh +sHP +xJE +xJE +ggh +ggh djW dck dNS -iri +idX bYV rdW rdW fdk -hOK +suT doL dpC -ehC +pol ehP ehP ehP -ehV -dqp -dqp -dqp +veP +gun +gun +gun dpC doL -gdW -hqp -jOe -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -vud +hna +fRK +vtB +hna +hna +hna +hna +hna +hna +hna +hna +sqe dNS -kkm -dNo +fxP +krH dTs dTs dTs @@ -81246,21 +81252,21 @@ dTs dTs dTs aow -aqK -asx -asx -asA -asG -aud -aud -avq +grq +tTR +tTR +lLK +vUL +exV +exV +lxB aow dTs dTs dTs dTs -aXv -aPP +jHp +tZI aXW aVZ aVZ @@ -81270,7 +81276,7 @@ aWa aWB aGK aOh -aWA +kqV dTs dTs dTs @@ -81280,22 +81286,22 @@ dTs dTs dTs dTs -bcY -bcY -anb -bcY -bdK -bdt +szb +szb +spD +szb +tJz +dGJ aKw -aZe +pdA aXS bXv -bYc +pSB bTi bTi bTi bTi -bYc +pSB bYJ cbw cbw @@ -81303,15 +81309,15 @@ cch bTi bCy bTi -bwu +fWY oWx gVo oWx bAK -bwv +prA caI -cgi -cgU +jEQ +iMH chz cie caI @@ -81323,40 +81329,40 @@ ciE ciE ciE cie -rtW +qFx caI caI caI caI -cpw +noI chA clc clc clc clc -dsh -dIh +rnr +quH dLr dLC -ccf +vCe dTs dTs dTs dTs aDT -aEu -chY -ceX -caH +pLt +oxd +wfc +wTW dTs dTs dTs dTs dTs -aAy -cdE +mBl +rtc cdw -coH +pRc cfw dPY dPY @@ -81365,20 +81371,20 @@ idg idg dPY chr -nYZ +lbB cdw ceo -chx -cAm -cAZ -cAZ -cAZ -cXp +rZo +bHO +uig +uig +uig +pYt ciQ ciQ -cjS -chp -chp +qXE +hCk +hCk cjR cho cho @@ -81391,67 +81397,67 @@ cho cho cho cho -cjQ -clE +wuy +wak ciQ ciQ ciQ ciQ cYh -dtY -gdW -gdW -gdW -gdW -hqp -jOe -gdW +fYB +hna +hna +hna +hna +fRK +vtB +hna dck dck ddV dck dck jIH -dcn -dhX +xJE +kgq dcl dck dck dck dNS -iri +idX bYV rdW vpz dPf -hOK +suT dhA dpC -ehC +pol ehP ehP ehS -ehV -dqp -ehE -dqp +veP +gun +qFF +gun dpC dhA -gdW -hqp -jOe -gdW -dCM -dDs -dDs -dDs -dFM -dDs -dDs -dGr -dHT +hna +fRK +vtB +hna +gyA +kvx +kvx +kvx +lOI +kvx +kvx +mhm +vkf dNS -uAo +tvs dTs dTs dTs @@ -81480,21 +81486,21 @@ dTs dTs dTs aow -aqK -asx -asx -asA +grq +tTR +tTR +lLK aow -aue -aud -avq +xEA +exV +lxB aow dTs dTs dTs dTs -aXv -aPP +jHp +tZI aXW aVZ aVZ @@ -81505,7 +81511,7 @@ aVZ aGK aip aOh -aWz +xAO dTs dTs dTs @@ -81515,21 +81521,21 @@ dTs dTs dTs dTs -and -and -and -and -bek -bXj -bdt -aZe +xfK +xfK +xfK +xfK +veH +wbn +dGJ +pdA bXy -bYc +pSB bTi bTi bTi bTi -bYc +pSB bZs aJy aJy @@ -81537,15 +81543,15 @@ bXv bTi bCy bTi -ccn +gno ccq ccq ccq ccq -cgi +jEQ caI -cgi -cgU +jEQ +iMH chA cif caI @@ -81557,12 +81563,12 @@ clc clc clc cif -rtW +qFx caI caI caI caI -cpw +noI chA clc clc @@ -81572,25 +81578,25 @@ clc dsg dHb dLq -ccf -cdA +vCe +wUK dTs dTs dTs dTs -aEC -chZ -civ -caH +wAG +whA +qQV +wTW dTs dTs dTs dTs dTs -cgc -aAy -cdE -coH +qXp +mBl +rtc +pRc cfw dPY dPY @@ -81599,23 +81605,23 @@ icM cdc cdc ciy -ctM +vsI cdw ceo -chx -cAm -cAZ -cAZ -cAZ -cYf -cAl +rZo +bHO +uig +uig +uig +eMR +fcS ciQ ciQ ciQ ciQ -cjS -chp -chp +qXE +hCk +hCk cjR cho cho @@ -81626,66 +81632,66 @@ cho cho cho cho -cjQ -clE +wuy +wak ciQ ciQ ciQ cnC -djy +eDB djz -aTj -gdW -gdW -hqp -jOe -gdW -gdW +jgu +hna +hna +fRK +vtB +hna +hna dda ddW dea -dfj -thd -dfj -dfj -dfj +jLY +qCs +jLY +jLY +jLY dea dda -dkI -dpc -dIz +dFA +uKA +qtc bYV nRV vHj fdk -hOK +suT dhA dpC -ehN -ehQ -ehZ -ehT -ehW -dqp -dqp -dqp +pgZ +wkA +eNh +qkz +rqa +gun +gun +gun dpC dhA -gdW -hqp -jOe -gdW -dCN -dDt -blq -blU -ber -ber -bmN -dHt -dId +hna +fRK +vtB +hna +qsR +lXp +cXG +qDC +kOh +kOh +eFw +udI +dxJ dNS -uAo +tvs dTs dTs dTs @@ -81714,21 +81720,21 @@ dTs dTs dTs aow -apx -arf -arf -asz +eiX +vLb +vLb +rIo aow aow -auI +lGO aow aow -awC -awC +kfj +kfj dTs dTs -aXv -aPP +jHp +tZI aaC aXC aXC @@ -81739,7 +81745,7 @@ aVZ aGK aOh aOh -aWz +xAO dTs dTs dTs @@ -81749,73 +81755,73 @@ dTs dTs dTs dTs -bif -bif -biS -bhk -bhk -bfQ -bdK -bdt -bXz -bYc -bYF -bYF -bYF -bYF -bYc -caL -cby -cby -ccj -bYF +lju +lju +wtc +jMH +jMH +mIe +tJz +dGJ +uFr +pSB +mJR +mJR +mJR +mJR +pSB +toE +mDj +mDj +fQt +mJR bCy bTi -bwu +fWY oWx gVo oWx bAK -bwv +prA caI -cgi -cgU +jEQ +iMH chB cig caI bCy -cgC -ciD -cle -cle -clf -clh -clk -rtW -cgC -cgC -cgC -cgC -cpw -cpU +sru +kYm +oXs +oXs +pbq +gYA +sIm +qFx +sru +sru +sru +sru +noI +tFL czj clc clc clc clc -dsh -dIh +rnr +quH dLr dLI -cdA -cdv +wUK +eBj dTs dTs -cdE -chx -chZ -civ -caH +rtc +rZo +whA +qQV +wTW dTs dTs dTs @@ -81823,8 +81829,8 @@ dTs dTs dTs dTs -cdF -coH +hDc +pRc dPR iAf eVk @@ -81833,25 +81839,25 @@ poi poi ccZ cix -ctM +vsI cdw ceo -chx -cAm -cAZ -cAZ -cAZ -cAZ -cYf -cAl +rZo +bHO +uig +uig +uig +uig +eMR +fcS ciQ ciQ ciQ ciQ ciQ ciQ -cjS -chp +qXE +hCk cjR cho cho @@ -81861,22 +81867,22 @@ cho cho cho cho -cjQ -chn -clE +wuy +mPG +wak ciQ ciQ ciQ dkK -drg -cZc -gdW -hqp -jOe -gdW -cZc +eUY +aPa +hna +fRK +vtB +hna +aPa dda -ddX +ooh dea dea rAP @@ -81892,34 +81898,34 @@ snD eXM rdW fdk -hOK +suT doL dpC -dqp -dqp -dqp -eib -dqp -dqp -dqp -dqp +gun +gun +gun +uBi +gun +gun +gun +gun ebB doL -gdW -hqp -jOe -gdW -dCN -blq -blU -ber -ber -ber -ber -bnx -dId -taH -xFk +hna +fRK +vtB +hna +qsR +cXG +qDC +kOh +kOh +kOh +kOh +rSf +dxJ +qkI +xKU dTs dTs dTs @@ -81947,22 +81953,22 @@ dTs dTs dTs dTs -acF -acO -acT -asx -adn -aef -aeu -ayM -avX -awd -awd -awd +haD +kLw +wKo +tTR +pcr +fEL +nDW +gcY +hAH +pFm +pFm +pFm axl dTs dTs -aPP +tZI aaB abZ abZ @@ -81973,7 +81979,7 @@ aVZ aHd dTs aOh -aWz +xAO dTs dTs dTs @@ -81983,73 +81989,73 @@ dTs dTs dTs dTs -bgP +une biw -biT -bit -bjs -bjJ -bgj -bdK -bXA -blM +rDx +vGk +iJv +yiI +xnV +tJz +kmS +waJ bir biP biP bjo -blM -boS -bif -bif -bif -bif +waJ +qHE +lju +lju +lju +lju btQ -bvi -bww -bxJ -bxJ -bxJ -bxJ -bxJ -bxJ -bwv -bER -bxJ -bHw -bvi +jcI +mQD +gnP +gnP +gnP +gnP +gnP +gnP +prA +mBR +gnP +mFp +jcI btQ -ejR -goq -dCt -dCt -clg -cli +gBr +hCo +tXI +tXI +ptN +cKW cll -rtW +qFx cog cog cog cog -cpw -cpV -czS +noI +uhj +tqI czj clc clc clc clc -dsh -dIh +rnr +quH dLJ -cdA +wUK cdw -cdv -aDU -cer -chx -chZ -civ -caH +eBj +lRS +usC +rZo +whA +qQV +wTW dTs dTs dTs @@ -82057,8 +82063,8 @@ dTs dTs dTs dTs -cdF -coH +hDc +pRc dPR dPY idg @@ -82067,27 +82073,27 @@ idg ibE cdC chr -ctM +vsI cdw ceo -chx -cuT -cBa -cBa -cBa -cBa -cBa -cAX -ckn -cpv +rZo +xQU +wGS +wGS +wGS +wGS +wGS +hVU +hQE +fae chS chS chS cZd ciQ ciQ -cjS -chp +qXE +hCk cjR cho cho @@ -82097,22 +82103,22 @@ cho cho cho cho -cjQ -clE +wuy +wak ciQ ciQ dnC -cYe -gdW -gdW -hqp -jOe -gdW -cZc +rww +hna +hna +fRK +vtB +hna +aPa dde -ddY +fna dea -ddY +fna dea pbC dcR @@ -82126,33 +82132,33 @@ taG hzC rdW fdk -hOK +suT dhA dpC -dqp -dqp -dqp -eic -dqp -dqp -dqp -dqp +gun +gun +gun +ifL +gun +gun +gun +gun dpC dhA -gdW -hqp -jOe -gdW -dCN -blr -ber -ber -ber -ber -ber -ber -dId -xFk +hna +fRK +vtB +hna +qsR +qoe +kOh +kOh +kOh +kOh +kOh +kOh +dxJ +xKU dTs dTs dTs @@ -82181,22 +82187,22 @@ dTs dTs dTs ahT -apm -arb -ayZ -ayZ -ayZ -ayZ -ayZ -ayZ -avY -awf -awf -awD +otJ +xCT +qKz +qKz +qKz +qKz +qKz +qKz +pFz +oFg +oFg +yda axl ahT dTs -aPP +tZI aXW aVZ aVZ @@ -82207,7 +82213,7 @@ aVZ aZk dTs aOh -aWA +kqV dTs dTs dTs @@ -82217,57 +82223,57 @@ dTs dTs dTs dTs -bgQ +nop bhi -bhD +klM bia -bjt -bjK -bgj -asP -bgT -blM +dYQ +syW +xnV +hRE +rvM +waJ bir bki bje bjo -blM -boL +waJ +tIh bhi bhi bhi bhi btQ -bvi -bvi -bvi -byL -bvi -bvi -bvi -bvi -bwu -bEQ -bvi -byL -bvi +jcI +jcI +jcI +nEh +jcI +jcI +jcI +jcI +fWY +uBr +jcI +nEh +jcI btQ cNW -gQE -dCt -dCt -dCt -dCt -oXx -qDb +uWK +tXI +tXI +tXI +tXI +tVv +vjt naH ozu ozu xsS -mfK -cuR -cli -dsi +iEd +uoc +cKW +mkR clc clc clc @@ -82275,24 +82281,24 @@ clc clc dsg dLK -cdA +wUK cdw cej cdw cdw -chx -chZ -civ -ccM -dTs -cft -cgK -dTs -ceW -ceW -ceW -cer -coH +rZo +whA +qQV +nNV +dTs +vSs +njd +dTs +ulJ +ulJ +ulJ +usC +pRc cfw idg idg @@ -82301,12 +82307,12 @@ dPY dPY idg pUR -aaY +oTQ cdw cen -chy -caH -caH +lcx +wTW +wTW cCc cCc cEf @@ -82316,13 +82322,13 @@ cEf cEf cCc cCc -caH +wTW dgW chS chS cZd ciQ -cjS +qXE cjR cho cho @@ -82332,21 +82338,21 @@ cho cho cho cho -cjQ -clE +wuy +wak ciQ cnC dnD -pSM -gdW -hqp -jOe -gdW -cZc +rLE +hna +fRK +vtB +hna +aPa dde -ddY +fna dea -wnE +qDw dea dcN wRi @@ -82360,32 +82366,32 @@ scm vnf wya fdk -hOK +suT dhA dpC -dqp -ehB -ehR -ehO -ehR -ehU -dqp -dqp -dqp -eeE -wRX +gun +nOR +uTU +emJ +uTU +sQb +gun +gun +gun +rjE +nAL uFX -jOe -gdW -dCO -blr -ber -ber -boK -ber -ber -ber -dId +vtB +hna +eQD +qoe +kOh +kOh +tgf +kOh +kOh +kOh +dxJ dTs dTs dTs @@ -82415,22 +82421,22 @@ dTs dTs dTs ahT -apm -arb -ayZ -ayZ -ayZ -ayZ -ebT -ayZ -ayZ -awz -azk -avX +otJ +xCT +qKz +qKz +qKz +qKz +oVv +qKz +qKz +nqG +fNN +hAH axl dTs dTs -aPP +tZI aXW aVZ aVZ @@ -82440,9 +82446,9 @@ aVZ aVZ aZk dTs -aPg -aRM -aRN +mFb +nda +svd dTs dTs dTs @@ -82450,23 +82456,23 @@ dTs dTs dTs dTs -bhH -bhj +qYu +rke bhi -bhD -bhZ -bhk -bjL -bie -bie -blg -blM +klM +moO +jMH +lAt +sqL +sqL +qyP +waJ bir biP biP bjo -blM -boL +waJ +tIh cpu brc brc @@ -82480,53 +82486,53 @@ bDR bDR btQ bDR -bvk -bET +peF +sus bDR btQ btQ btQ cNW -gQE -euG -hpw -hpw -hpw -hpw -kVU +uWK +cJa +pgI +pgI +pgI +pgI +fjQ naH ozu ozu xsS -mfK -dCt -dCt -dsk +iEd +tXI +tXI +sLv clc clc clc clc clc dsg -dLL -cdA +jBM +wUK cdw cdw -aDV -aEe -chy -cib -ceY -cdA -cdv -aFG -cdv -cer +iPB +bke +lcx +ikf +sjW +wUK +eBj +xwS +eBj +usC cdw cdw cdw cdw -coK +lfR cfw iAf uYD @@ -82535,30 +82541,30 @@ cdc cdc cdc ciy -ctN -cuU -cyS -cjT -cjT -cBb +cXq +klZ +eHv +fkX +fkX +kuS cCc -cDe -cEg -cEg -cEg -cEg +fGB +wSk +wSk +wSk +wSk cDf cIz cCc -ceZ -cnD -caH -caH -cUJ +xXn +nfJ +wTW +wTW +xAX ciQ ciQ -cjS -chp +qXE +hCk cjR cho cho @@ -82571,16 +82577,16 @@ cYi ciQ ciQ dkK -gdW -gdW -hqp -jOe -gdW -gdW +hna +hna +fRK +vtB +hna +hna dda ddZ dea -ddY +fna dea hAB dhZ @@ -82594,32 +82600,32 @@ scm rdW hzC fdk -hOK +suT doL eaV -dqp -ehC +gun +pol ehP ehP ehP -ehV -dqp -dqp -dqp -dqp -cWy +veP +gun +gun +gun +gun +tSo uFX -jOe -gdW -dCN -blr -ber -ber -ber -ber -ber -ber -dId +vtB +hna +qsR +qoe +kOh +kOh +kOh +kOh +kOh +kOh +dxJ dTs dTs dTs @@ -82649,18 +82655,18 @@ dTs dTs dTs dTs -apm -arb -ayZ -ayZ -ayZ -ayZ -ayZ -ayZ -ayZ -ayX -ayZ -avX +otJ +xCT +qKz +qKz +qKz +qKz +qKz +qKz +qKz +xfn +qKz +hAH axl dTs dTs @@ -82674,8 +82680,8 @@ amK aWb axo dTs -aPi -aRN +qyU +svd aeE dTs dTs @@ -82684,58 +82690,58 @@ dTs dTs dTs dTs -bgA -bgP +mxL +une bix -bhD +klM bia -bit -bjM -bjM -bjM -bjM -bju +vGk +gKZ +gKZ +gKZ +gKZ +nTq bir biP biP bjo -blM -boL +waJ +tIh bhi brc -bsc -bsM -btT -bvl -bwx -bxK -awA -bzQ -bAM -bAM -bsd -brf -bEU -bGh -bHx -bIv +rRB +lDf +tny +tHZ +kWz +xqa +mpm +jkE +vMt +vMt +vQr +gye +mHb +fSU +qZB +gqp brc cNW -gQE -hwc +uWK +eiQ hCf -hqT -hqT -hqT -shm +pkp +pkp +pkp +pDk naH uml vgm xsS -bUB +hGm bVD -goq -dsW +hCo +nUP czj clc clc @@ -82743,10 +82749,10 @@ clc clc dsg dLM -ccN -cdx +qin +xbl cdw -chx +rZo aEi ccZ ccZ @@ -82781,20 +82787,20 @@ cDf cDf cDf cDf -cHx +sNM cIA cEf cdw -cpP -ceX -caH -cWC -djw -cAl +npQ +wfc +wTW +jLg +uYJ +fcS ciQ ciQ -cjS -chp +qXE +hCk cjR cho cho @@ -82805,12 +82811,12 @@ cYi ciQ ciQ doN -gdW -gdW -hqp -jOe -gdW -gdW +hna +hna +fRK +vtB +hna +hna dde dea dea @@ -82828,34 +82834,34 @@ scm rdW hzC fdk -hOK +suT dhA dpC -dqp -ehC +gun +pol ehP ehP ehP -ehV -dqp -dqp +veP +gun +gun dpC dhA -gdW -hqp -jOe -gdW -dCS -blv -blV -ber -ber -ber -ber -bnK -dId -kkm -ibU +hna +fRK +vtB +hna +ukX +eyu +kaW +kOh +kOh +kOh +kOh +oNX +dxJ +fxP +nou dTs dTs dTs @@ -82883,18 +82889,18 @@ dTs dTs dTs dTs -apm -arc -ayO -ayZ -ayZ -axQ -azc -azc -ayO -ayX -ayZ -awE +otJ +gpr +ucF +qKz +qKz +paB +osP +osP +ucF +xfn +qKz +uOr dTs dTs dTs @@ -82919,11 +82925,11 @@ dTs dTs dTs dTs -bgA -bgP -bhD +mxL +une +klM bia -bhZ +moO bjN bjG bjG @@ -82933,31 +82939,31 @@ bmh bki bje bjo -blM -boT -bgp +waJ +oCt +qph bAm -bsd -bsN -bsN -bsN -bsN -bsN -bsN -bsN -bsN -bsN -bsN -brf -bEU -bsN -bsN -bsN +vQr +aEo +aEo +aEo +aEo +aEo +aEo +aEo +aEo +aEo +aEo +gye +mHb +aEo +aEo +aEo bAm -cTU -hcP -hwc -kVU +nZM +xjh +eiQ +fjQ mdP nAm nAm @@ -82966,21 +82972,21 @@ tSK ozu ozu xsS -bUC +bOA bVE -gQE +uWK duy -dEY +cSS dib dib dib dib dLu dLN -ccO -ccN -cek -chy +jqj +qin +epP +lcx cfw cdC cdC @@ -83015,40 +83021,40 @@ cDf cDf cDf cDf -cHx +sNM cIB cEf cdw cLj -civ -cMN -cid -cOk -cYf -djw +qQV +gxX +hgZ +wQK +eMR +uYJ dTs ciQ ciQ -cjS +qXE cjR cho cho cho cho -cjQ -clE +wuy +wak ciQ doO -gdW -gdW -hqp +hna +hna +fRK uFX -hBr -jpa -ddc +uLR +kHY +pPE dea dea -ddY +fna dea dcN dhZ @@ -83062,35 +83068,35 @@ scm sLx hjm fdk -hOK +suT dhA dpC -dqp -ehN -ehT -ehT -ehT -ehW -dqp -dqp +gun +pgZ +qkz +qkz +qkz +rqa +gun +gun dpC dhA -gdW -hqp -jOe -gdW -dCT -dDG -bme -blV -ber -ber -bmR -dHw -dId +hna +fRK +vtB +hna +uGV +dMr +glW +kaW +kOh +kOh +phb +vFL +dxJ dNS dNS -kkm +fxP dTs dTs dTs @@ -83120,15 +83126,15 @@ ajz ajz arJ arJ -atk -auf +lNG +taT arJ ajz ajz -ayK -ayX -ayZ -axg +oxq +xfn +qKz +fxw dTs dTs dTs @@ -83143,7 +83149,7 @@ dTs dTs dTs dTs -ady +gfj aeE aeE ayD @@ -83153,11 +83159,11 @@ dTs dTs dTs dTs -bhH -bhj -bhD +qYu +rke +klM bia -bhZ +moO bir biP biP @@ -83167,31 +83173,31 @@ biP biP biP bjo -bhF -bit -blL -bre -brf -brf -brf -brf -brf -brf -brf -brf -brf -brf -brf -brf -bEU -brf -brf -brf -bre -euG -hpw +mDb +vGk +mjA +xSm +gye +gye +gye +gye +gye +gye +gye +gye +gye +gye +gye +gye +mHb +gye +gye +gye +xSm +cJa +pgI hCf -kVU +fjQ naH ozu ozu @@ -83200,21 +83206,21 @@ bRr ozu ozu xsS -bUC +bOA bVE -gQE +uWK duy -dEY +cSS dib dib dib dib dLu dLO -ccP -cdy -cel -ceX +wPn +waw +djJ +wfc cfw cdC cdC @@ -83249,22 +83255,22 @@ cDf cDf cDf cDf -cHx +sNM cDf cCc cdw cLj -civ -cMO -cNC -cOk -cOk +qQV +daf +dsH +wQK +wQK dTs dTs dTs ciQ ciQ -cjS +qXE cjR cho cho @@ -83273,16 +83279,16 @@ cho cYi ciQ doO -cZe -gdW -cWy -qKE -qKE -oQx -ddd +mnG +hna +tSo +htd +htd +eFd +saP dea dea -deA +sSo dea dcN dhZ @@ -83296,35 +83302,35 @@ scm rdW hzC fdk -hOK +suT doL dpC -dqp -dqp -eic -dqp -dqp -dqp -dqp -dqp +gun +gun +ifL +gun +gun +gun +gun +gun ebB doL -ebG -hqp -jOe -gdW -dCR -dDH -dEe -dEe -dFN -dEe -dGY -dEe -dIe +sob +fRK +vtB +hna +fgh +iWZ +mqA +mqA +hmB +mqA +mIN +mqA +vQH vuu dNS -taH +qkI dTs dTs dTs @@ -83351,19 +83357,19 @@ dTs dTs dTs ajz -anN -arK -asE -atk -atQ -auK -avx +hDZ +pze +hMs +lNG +kYo +hmy +mrU ajz -ayK -ayX -ayZ -avX -awd +oxq +xfn +qKz +hAH +pFm dTs dTs dTs @@ -83377,21 +83383,21 @@ dTs dTs dTs dTs -ayp +rnt aeE aeE ayD -azz +ifq dTs dTs dTs dTs dTs dTs -bgP -bhD +une +klM bia -bhZ +moO bir biP biP @@ -83401,31 +83407,31 @@ biP biP biP bjo -bhF -bib -bju -brf -brf -brf -btU -bvm -bwy -bwy -bwy -cvj -bvm -bwy -bwy -bwy -bEV -bGi -brf -brf -brf -fpu -hqT +mDb +viW +nTq +gye +gye +gye +lFP +qME +wdy +wdy +wdy +jDh +qME +wdy +wdy +wdy +tGQ +egs +gye +gye +gye +lZr +pkp hCf -kVU +fjQ naH ozu ozu @@ -83434,21 +83440,21 @@ bRr uml vgm xsS -bUC +bOA bVE -gQE +uWK duy -dJB +dKq dLk dib dib dib dLu dLO -ccQ -cdz -dnP -ceY +tim +bko +ijG +sjW cfw cdC cdC @@ -83483,40 +83489,40 @@ cDf cDf cDf cDf -cHx +sNM cDf cJz cfa cpQ -civ -caH -cND -cOl -cOl +qQV +wTW +nxm +jhc +jhc dTs dTs dTs dTs -cAl +fcS ciQ -cjS +qXE cjR cho cho cho -cjQ -clE +wuy +wak doO -drg -cZc -gdW -dIw -gdW -gdW +eUY +aPa +hna +ePU +hna +hna dde dea dea -dfk +nZu dea vMp xjY @@ -83530,34 +83536,34 @@ taG hzC hzC fdk -hOK +suT doL dpC dpC dpC dNr -dqp -dqp +gun +gun dpC dpC dpC dpC doL -gdW -hqp -jOe -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -xxv -wPb -wPb +hna +fRK +vtB +hna +hna +hna +hna +hna +hna +hna +hna +hna +rYv +mIR +mIR dTs dTs dTs @@ -83585,18 +83591,18 @@ dTs dTs dTs ajz -apD +dyw arL arL -swg -atk +seh +lNG arL -avy +kvK arJ -ayK -ayX -ebT -axh +oxq +xfn +oVv +gxO avG avG avG @@ -83611,8 +83617,8 @@ dTs dTs dTs dTs -aam -ady +imR +gfj aeE ayD dTs @@ -83622,10 +83628,10 @@ dTs dTs dTs dTs -bgQ -bhD +nop +klM bia -bhZ +moO bir biP biP @@ -83635,31 +83641,31 @@ biQ biQ biQ bnt -blM -bnu -bif +waJ +tQf +lju bAm -bse -bsN -bsN -bvn -bwz -bsN -bsN -cYp -cZs -bBF -bCD -bDw -brf -brf -bHy -bIw +ekY +aEo +aEo +hUc +tIt +aEo +aEo +xHx +gEd +hCV +pMs +uyY +gye +gye +quG +ubB bAm -ejR -goq -hwc -kVU +gBr +hCo +eiQ +fjQ ngo oAM oAM @@ -83668,38 +83674,38 @@ ueZ ozu ozu xsS -bUC +bOA bVE -gQE -dAB +uWK +iyQ dJT -dEY +cSS dib dib dib dLu dLO -ccR -caH -caH -ceZ +sWC +wTW +wTW +xXn cfx cdC cdC chr -chY -cel -cel -cel -cjT -cjT -cjT -cjT -cjT -cjT -cjT -cjT -ceX +oxd +djJ +djJ +djJ +fkX +fkX +fkX +fkX +fkX +fkX +fkX +fkX +wfc dPR cdC dPY @@ -83710,43 +83716,43 @@ cdC idg idg pUR -bec +vzg cCc -cDg -cEh -cEh -cEh -cEh +woM +tHG +tHG +tHG +tHG cDf cDf cDf cKs cLk -dGy -ceZ -ceZ -ceZ +qTy +xXn +xXn +xXn dTs dTs dTs dTs dTs -cXp +pYt ciQ ciQ -cYg +qjT cho cho cho cho cYi doO -cZe -cZc -gdW -cUi -mGo -mGo +mnG +aPa +hna +qIX +snv +snv dda deb dea @@ -83764,34 +83770,34 @@ taG sLx wya fdk -dok +evz doL doL dhA dhA dNs -dqp -edQ +gun +jwq doL dhA dhA doL doL -kMT -hqp +qxh +fRK uFX -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -jpa +uLR +uLR +uLR +uLR +uLR +uLR +uLR +uLR +uLR +uLR +uLR +kHY dTs dTs dTs @@ -83819,18 +83825,18 @@ dTs dTs dTs ajz -apZ +vTc arL arL -atQ -atQ +kYo +kYo arL -avy +kvK arJ -ayK -ayX -ayZ -azp +oxq +xfn +qKz +rkR avG axK ltH @@ -83845,10 +83851,10 @@ dTs dTs dTs dTs -aam -ayp +imR +rnt aeE -bgH +xir dTs dTs dTs @@ -83856,44 +83862,44 @@ dTs dTs dTs dTs -anc -anp +igb +uIc aoB -aqR +vmI bjO bkk bky blj -ati -auo -bjM -bjM -bjM -bju -boL +rEE +mEO +gKZ +gKZ +gKZ +nTq +tIh bhi brg -bsf -bsO -btV -bvo -bse -bsN -bsN -brf -bxQ -bBG +mpN +pIl +gmO +rjb +ekY +aEo +aEo +gye +odU +hFM brh bDx -bGj -bGj +xTY +xTY bDx bDx bDx cNW -gQE -hwc -kVU +uWK +eiQ +fjQ mdP nAm nAm @@ -83902,29 +83908,29 @@ tSK ozu ozu xsS -bUB +hGm bVD -bWs -cAg +pzW +xoU dJT -dEY +cSS dib dib dib dLu dLO -ccR -ccM +sWC +nNV cen cdw cfy cge cgL chr -chZ +whA dBP ciu -civ +qQV ciR ciR ciR @@ -83933,7 +83939,7 @@ ciR ciR ciR ciR -ciU +eWu dPR dPY cdC @@ -83944,17 +83950,17 @@ cdC dPY dPY chr -ciU +eWu cCe -cDh -cDh -cFg -cFT -cGU -cHy -cFg +wPA +wPA +aNW +klF +xXa +mOg +aNW cCc -cdD +ymj cdw cdw cdw @@ -83966,9 +83972,9 @@ dTs dTs dTs dTs -cAl +fcS ciQ -cYg +qjT cho cho cho @@ -83976,57 +83982,57 @@ cho cYi dpD dpE -ckx -cYe -vud +jDn +rww +sqe dNS dNS dde dea -ddY -deA -deA -ddY -deA -ddY +fna +sSo +sSo +fna +sSo +fna dea eeX -gdW +hna xbj kJP lYm eXM rdW fdk -uis +uzd viV vuu dNS dNS -dNt -wRX -jpa -vud +rDS +nAL +kHY +sqe dNS dNS dNS vuu -sUe -hqp +sJe +fRK uFX -qKE -qKE -qKE -qKE -qKE -qKE -qKE -qKE -qKE -qKE +htd +htd +htd +htd +htd +htd +htd +htd +htd +htd uFX -jOe -vud +vtB +sqe dTs dTs dTs @@ -84053,18 +84059,18 @@ dTs dTs dTs ajz -arh +sRk arL arL -atQ -auj +kYo +vBb arL -avA +nZq arJ -ayK -ayX -ayZ -azp +oxq +xfn +qKz +rkR avG axL axL @@ -84092,7 +84098,7 @@ dTs dTs biy biy -aoH +tZP biy dzk dAr @@ -84111,23 +84117,23 @@ brh brh brh brh -bwA -bxL -bsN -brf -bxQ -bBH +uUa +pbo +aEo +gye +odU +fMZ brh -aff -bFa -bFa -bHz -bIx +qfA +dNy +dNy +txq +tTt bDx cNW -gQE -hwc -kVU +uWK +eiQ +fjQ naH ozu ozu @@ -84136,38 +84142,38 @@ bRr uml vgm xsS -bUC +bOA bVE -gQE -cAg +uWK +xoU dJT -dEY +cSS dib dib dib dLu dLO -ccR -cdA +sWC +wUK ceo cdw cfy cdC cdC chr -chZ +whA ciu ciu -civ +qQV ciR -bdh -ceu -ckC -clH -cmt -dPj +njM +nwB +svq +gdm +wrE +ljq ciR -ciU +eWu csH dPZ cdc @@ -84178,15 +84184,15 @@ cdc dPZ cdc ciy -ciU +eWu cCc -cDh -cEi -cFh -cGV -cGV -cGV -cIC +wPA +sUD +xtl +iSz +iSz +iSz +isX cCc cdw cdw @@ -84202,65 +84208,65 @@ dTs dTs dTs ciQ -cjS +qXE cjR cho cho cho -cjQ -clE +wuy +wak cnC djx -dtY -vud +fYB +sqe dNS dNS dde dea -deA -deA -ddY -ddY -deA -deA +sSo +sSo +fna +fna +sSo +sSo dea -dka -gdW -wRX -dIA +fqa +hna +nAL +jcU bYV hzC rdW fdk -uis +uzd viV -lJM -wPb -wPb -dNu -hqp -jOe -xxv -wPb -wPb -wPb -wPb -jVa -hqp -jOe -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -hqp -jOe -vud +ybU +mIR +mIR +hxH +fRK +vtB +rYv +mIR +mIR +mIR +mIR +mMY +fRK +vtB +hna +hna +hna +hna +hna +hna +hna +hna +hna +hna +fRK +vtB +sqe dTs dTs dTs @@ -84287,18 +84293,18 @@ dTs dTs dTs ajz -arB +jLD arL atj -atk -atQ +lNG +kYo arL -avy +kvK arJ -ayK -ayX -ayZ -ayM +oxq +xfn +qKz +gcY axI axL axL @@ -84314,25 +84320,25 @@ dTs dTs dTs dTs -ayp +rnt aeE aeE ayD -aam +imR dTs dTs dTs dTs dTs -bmJ -bmJ -aCP -ari +dnW +dnW +wAf +mLr bjO bkj bkj blj -ato +sgq biy bfm bfm @@ -84345,23 +84351,23 @@ bfm dTs dTs brh -bwB -bxM -bsN -brf -bxQ -bBH +qgp +kcP +aEo +gye +odU +fMZ brh -bDz -bFa -bFa -bFa -bIy +lAA +dNy +dNy +dNy +jzz bDx cNW -gQE -hwc -kVU +uWK +eiQ +fjQ naH ozu ozu @@ -84370,55 +84376,55 @@ bRr ozu ozu xsS -bUC +bOA bVE -gQE -dCU -dKA -dEY +uWK +tow +voS +cSS dib dib dib dLu dLP dLU -cdA +wUK ceo cdw cfy cdC cdC chr -chZ +whA ciu ciu -civ +qQV ciR -bGP -ckA -dOS -ckB -cmu -coM +kLr +vRB +rzi +puX +sqS +fPR ciR -cib -dPS -dPS -cjT -cjT -cjT -cjT -cjT -dPS -dPS -dPS -ceY +ikf +sZg +sZg +fkX +fkX +fkX +fkX +fkX +sZg +sZg +sZg +sjW cCf cCg cCg cCg -cFV -cGW +nxw +wOK cCg cCg cCf @@ -84437,7 +84443,7 @@ dTs dTs ciQ ciQ -cYg +qjT cho cho cho @@ -84445,8 +84451,8 @@ cho cYi ciQ cYh -dtY -vud +fYB +sqe dNS dNS dda @@ -84459,43 +84465,43 @@ dea dea dea dda -gdW -hqp -jOe +hna +fRK +vtB bYV sLx wya fdk -cTB +iQm xoO -jVa -wRX -hBr -dNv +mMY +nAL +uLR +eQf uFX uFX -hBr -hBr -hBr -hBr -hBr -hBr +uLR +uLR +uLR +uLR +uLR +uLR uFX -jOe -gdW -gdW -dsS -dtE -dEV -dtE -dGt -dtE -dwC -gdW -hqp -jOe -vud -uAo +vtB +hna +hna +hTk +qNB +lFF +qNB +gZf +qNB +xwi +hna +fRK +vtB +sqe +tvs dTs dTs dTs @@ -84521,52 +84527,52 @@ dTs dTs dTs ajz -arC +hPc arL atj -atk -auj +lNG +vBb arL -avB +jlU ajz -ayK -ayX -ayZ -azp +oxq +xfn +qKz +rkR avG axL axL axL ayx aCr -ayB -ayT -azd -azm +bdr +hrx +aQR +nTX aCr dTs dTs dTs dTs -ayp +rnt aeE aeE ayD -aam +imR dTs dTs dTs dTs dTs bRB -bmJ -aCP -bZc +dnW +wAf +fBj bjO bkk bky blj -bmJ +dnW biy bfm eyL @@ -84580,22 +84586,22 @@ dTs dTs brh brh -bxN -bsN -brf -bxQ -bBI +jNQ +aEo +gye +odU +qLW brh -bDA -bFa -bFa -bFa -bIy +naU +dNy +dNy +dNy +jzz bDx cNW -gQE -hwc -kVU +uWK +eiQ +fjQ ngo oAM oAM @@ -84604,57 +84610,57 @@ ueZ ozu ozu xsS -bUC +bOA bVE -gQE -bXo -dLf -dEY +uWK +reE +evF +cSS dib dib dib -dLv -dLA +rph +eJG dLV -cdA +wUK ceo cdw cfy cge cgL chr -chZ +whA ciu -dnP -ceY +ijG +sjW ciR -bLu -ckB -ckB -ckB -ckB -coN +dnR +puX +puX +puX +puX +tFt ciR crA -dPT -dQa +urt +sEn crA cvM crA crA cvM crA -crD -dQa +eFW +sEn crA cCf -cDi -cEj -gak -cCi -cCi -cHz -cID +lCF +vkU +sFS +gDf +gDf +pDD +usc cCf dTs dTs @@ -84671,7 +84677,7 @@ dTs dTs dTs ciQ -cYg +qjT cho cho cho @@ -84680,7 +84686,7 @@ cYi ciQ cnC dnD -vud +sqe jfA dNS dda @@ -84693,43 +84699,43 @@ dde dda dda dda -gdW -hqp -jOe +hna +fRK +vtB bYV rdW rdW dPf -hOK -gdW -gdW -hqp +suT +hna +hna +fRK uFX -dNw -qKE -qKE -qKE -qKE -qKE -qKE -qKE +qjc +htd +htd +htd +htd +htd +htd +htd uFX uFX -oQx -gdW -gdW -dsT +eFd +hna +hna +nCL dzd clo cra dFP dzd dwD -gdW -hqp -jOe -vud -kkm +hna +fRK +vtB +sqe +fxP dTs dTs dTs @@ -84755,52 +84761,52 @@ afG afG afG afG -arD +uWN arL arL -atk -auk +lNG +vgr aHD -avD +iKf arJ -ayL -aHL -ayZ -azp +qiD +gwo +qKz +rkR avG axN ayh axL ayx aCr -ayE -auq -auq -azo +ojX +lgv +lgv +nYw aCr dTs dTs dTs dTs -ayp +rnt aeE aeE ayD -aam +imR dTs dTs dTs dTs dTs dTs -bmJ -aCP -bZc +dnW +wAf +fBj bjO bkj bkj blj -bmJ +dnW biy bfm eyL @@ -84814,81 +84820,81 @@ dTs dTs dTs brh -bcW -bse -awB -bxQ -bBI +wBu +ekY +gCF +odU +qLW brh -bDB -bFa -bFa -bFa -bIz +kNb +dNy +dNy +dNy +ndT bDx -fyq -gQE -fpu -hqT -nil -nil -nil -pTU +gJj +uWK +lZr +pkp +pPg +pPg +pPg +eoi naH uml vgm xsS -bUC +bOA bVE -gQE -bXo -dLf -dEY +uWK +reE +evF +cSS dib dib dib dib dLu dLV -cdA +wUK ceo cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciR ciR ciR ckD cjV -clG +nBO cjV cjV ckD ckD -crB -crD -dPT -cuV -cvN -cwH -cwH -cvN -crC -dPT -dPT -cBd +kHR +eFW +urt +isD +xaF +mpG +mpG +xaF +mwm +urt +urt +qIf cCg -cDj -cEk -cEr -cGX -cGX -cHA -cIE +wZb +kXd +yht +jyM +jyM +ojW +oPp cCf dTs dTs @@ -84905,16 +84911,16 @@ dTs dTs dTs ciQ -cYg +qjT cho cho cho cho -cjQ -clE +wuy +wak ciQ doN -vud +sqe dNS dNS dNS @@ -84926,44 +84932,44 @@ dNS dNS dNS dNS -sUe -gdW -hqp -jOe +sJe +hna +fRK +vtB bYV rdW rdW fdk -hqp -hBr -hBr +fRK +uLR +uLR uFX -jOe -dNx -gdW -gdW -gdW -gdW -gdW -gdW -gdW -cWy -oQx -gdW -gdW -gdW -dsT +vtB +ucA +hna +hna +hna +hna +hna +hna +hna +tSo +eFd +hna +hna +hna +nCL dzd clp crb dFQ dzd dwD -gdW -hqp -jOe -vud -taH +hna +fRK +vtB +sqe +qkI dTs dTs dTs @@ -84977,46 +84983,46 @@ acu (144,1,1) = {" acu afG -afH -afK -alc -afK -agI +nyT +xpS +ubG +xpS +hzl afG -afH -afK -alc -afK -agI +nyT +xpS +ubG +xpS +hzl afG -arE +kWS arL -acU -atk -atQ -atk -atQ -awF -ayM -ayX -ayZ -azp +pAo +lNG +kYo +lNG +kYo +gMt +gcY +xfn +qKz +rkR avG avG avG avG avG aCr -ayF -ayU -aLH -azo +xey +ejG +iOM +nYw aCr dTs dTs dTs -aam -ayp +imR +rnt aeE aeE ayD @@ -85027,14 +85033,14 @@ dTs dTs dTs dTs -bmJ -aCP -bZc +dnW +wAf +fBj bjO bkj bkj blj -bmJ +dnW biy bfm eyL @@ -85054,75 +85060,75 @@ brh byS brh brh -bDC -bFa -bGk -bGk -bIA +qrP +dNy +wcn +wcn +hWv bDx -fHg -gQE -dCt -lnG -ejR -ejR -bPm -qDb +wPD +uWK +tXI +ubK +gBr +gBr +nip +vjt naH ozu ozu xsS -bUD +uZo bVD -hcP -bXo -dLf -dEY +xjh +reE +evF +cSS dib dib dib dib dLu dLW -cdB +gpx cen cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciR -cjn -cjU -ckE -clI -clI -cnG -coO -cpA +pFK +sQZ +hoR +fhQ +fhQ +pOy +mBH +svt cjV -crC -csI -dQb -dPT -dPT -dQp -crD -crD -crD -dQC -ctQ -cBe -dQR -dQX -dRc -dRl -dRE -dSe -dSs -cGY +mwm +fUM +qvg +urt +urt +hDU +eFW +eFW +eFW +rpo +xwI +vrx +tgj +sAD +lWJ +tOi +lTd +jhk +nWf +uEi cCf dTs dTs @@ -85139,7 +85145,7 @@ dTs dTs dTs ciQ -cjS +qXE cjR cho cho @@ -85148,55 +85154,55 @@ cho cYi ciQ doO -xxv -wPb -wPb -wPb -wPb -wPb -wPb -wPb -wPb -wPb -wPb -wPb -jVa -gdW -hqp -jOe +rYv +mIR +mIR +mIR +mIR +mIR +mIR +mIR +mIR +mIR +mIR +mIR +mMY +hna +fRK +vtB bYV sLx wya fdk -hqp -qKE -qKE -qKE -oQx -dNx -dsS -dtE -dtE -dtE -dwC +fRK +htd +htd +htd +eFd +ucA +hTk +qNB +qNB +qNB +xwi dxe dxe -dzm -eer +tYa +snU dxe dxe -gdW -dsT +hna +nCL dzd cmg crb dGv dzd dwD -gdW -hqp -jOe -xxv +hna +fRK +vtB +rYv dTs dTs dTs @@ -85211,49 +85217,49 @@ acu (145,1,1) = {" acu afG -afI -aag -ald -alv -agL -amq -afI -amZ -alv -amZ -agL +nuj +qKo +cJy +mpp +wPY +tZy +nuj +tTL +mpp +tTL +wPY afG -arG +wkG arL -atk -atk -atk -atk -atQ -awG -ayM -ayX -ayZ -azp +lNG +lNG +lNG +lNG +kYo +lkE +gcY +xfn +qKz +rkR avG dTs dTs dTs dTs aCr -ayG -ayV -azg -azo +ucz +pHK +ilr +nYw aCr dTs dTs dTs -aam -ayp +imR +rnt dTs aeE -bgH +xir dTs dTs dTs @@ -85261,14 +85267,14 @@ dTs dTs dTs dTs -bmJ -aCP -bZc +dnW +wAf +fBj bjO bkk bky blj -bmJ +dnW biy bfm eyL @@ -85288,75 +85294,75 @@ dTs fpJ dTs brh -mnA -bFa -jBh -wTP -bIB +uJm +dNy +kHd +eMA +nWX bDx dTs dTs dTs dTs -bog -fyq -bPn -bQn +rcM +gJj +gdB +kkn naH ozu ozu xsS -mfK -dCt -dCt -bXo -dLf -dEY +iEd +tXI +tXI +reE +evF +cSS dib dib dib dib dLu dLX -cdA +wUK ceo cdw cfy cge cgL chr -chZ -civ +whA +qQV ciS -cjn -cjq -dOt -clI -clI -cnG -dPd -cpB -cqr -dPG -csJ -ctR -dPT -dPT -dQp -dQs -dQs -dQy -dQD -dQJ -cBe -cCi -cCi -dRd -dRm -dRE -dSf -dSt -cGY +pFK +fzz +vuU +fhQ +fhQ +pOy +nrf +urO +wtK +tIT +pON +hNS +urt +urt +hDU +lJY +lJY +tSt +mEv +gQs +vrx +gDf +gDf +jLd +gVV +lTd +mWt +mja +uEi cCf dTs dTs @@ -85371,66 +85377,66 @@ dTs dTs dTs dTs -cYf -cAl +eMR +fcS ciQ -cYg +qjT cho cho cho cho -cjQ -clE +wuy +wak dpD chm clD -cmr +uKe cnB -cUI -cUI -cUI -cUI -cUI -cUI -cUI -cUI -dkb -hBr +wlG +wlG +wlG +wlG +wlG +wlG +wlG +wlG +vtE +uLR uFX -jOe +vtB bYV rdW rdW fdk -hOK -cUi -mGo -kMT -gdW -dNx -dsT +suT +qIX +snv +qxh +hna +ucA +nCL dEo -dFS -dGB +mUE +sAI dwD dxe dyi -dzm -dzm +tYa +tYa dWK dxe -gdW -dsT +hna +nCL dzd cmQ csg dGw dzd dwD -gdW -dIC -dJd -gdW +hna +cjM +sla +hna dTs dTs dTs @@ -85445,46 +85451,46 @@ acu (146,1,1) = {" acu afG -afI -akh -alk -alk -agL -amq -afI -ana -amZ -goY -agL +nuj +hhm +veu +veu +wPY +tZy +nuj +pqa +tTL +fIi +wPY afG -arH +lNC arL -swg -atQ +seh +kYo arL -aul -avF +mAM +lcw arJ -ayO -ayX -ayZ -azp +ucF +xfn +qKz +rkR avG dTs dTs dTs dTs aCr -ayI -auq -azh -azo +mEU +lgv +miU +nYw aCr dTs dTs -aam -axP -azA +imR +wcK +jVA aeE aeE aeE @@ -85495,14 +85501,14 @@ dTs dTs dTs biy -anr -aCP -arj +uPy +wAf +vIG bjO bkj bkj blj -att +fCJ biy bfm eyL @@ -85522,11 +85528,11 @@ dTs fpJ dTs brh -bDD -bFb -azJ -bHB -bIC +lEY +eiT +faV +vet +gtd bDx dTs dTs @@ -85534,63 +85540,63 @@ dTs dTs dTs dTs -fyq -bQo +gJj +xoi naH uml vgm xsS -bUE -hpw -hhj -bXp -dLf -dJB +tIy +pgI +uQt +eXb +evF +dKq dLk dib dib dib dLu dLX -cdA +wUK ceo cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciS -cjo -cjq -ckG -clJ -cmv -cnH -coQ -cpC +xvG +fzz +oTg +jLC +pSU +uPu +lNi +ryc cjV -crD -crD -dPT -dQh -crE -crE -crE -dQc -dQz -dQE -dPT -cBe +eFW +eFW +urt +lRf +pKk +pKk +pKk +gPi +qIy +yeU +urt +vrx cCg -dQY -dRe -dRm -dRE -dSg -dSu -dia +oGr +tjC +gVV +lTd +jjA +mvK +nst cCf dTs dTs @@ -85606,66 +85612,66 @@ dTs dTs dTs dTs -cXp +pYt ciQ -cjS +qXE cjR cho cho cho cho -cjQ -clE +wuy +wak ciQ ciQ ciQ cnC -cuQ +iQs djx -cOG -cOG -cOG -cOG -cOG -cWE -dkc -qKE -qKE -oQx +jlW +jlW +jlW +jlW +jlW +jTB +xud +htd +htd +eFd bYV rdW rdW fdk -dok +evz xoO dNS -sUe -gdW -dNx -eiq +sJe +hna +ucA +mvi dFc cho -dHf +lNk dwD din dWu -dWy -dzm +kRB +tYa dWu din -gdW -dsT +hna +nCL dzd dzh dzd dAA dzd dwD -gdW -dID -cWD -cUI -cUI +hna +iYm +mem +wlG +wlG dTs dTs dTs @@ -85679,44 +85685,44 @@ acu (147,1,1) = {" acu afG -afJ -afQ -afQ -afQ -agM +pKH +mGD +mGD +mGD +rKB afG -afJ -afQ -afQ -afQ -agM +pKH +mGD +mGD +mGD +rKB afG -arI -asD -atN -atk -aul -auL +ybO +lgu +eOM +lNG +mAM +sdg avG avG -awb -ayX -ayZ -azq +nhG +xfn +qKz +nKf avG avG dTs dTs dTs aCr -ayJ -ayW -azi -azo +lqK +kEi +xRm +nYw aCr dTs dTs -azA +jVA aeE aeE aeE @@ -85730,7 +85736,7 @@ dTs dTs biy biy -aoH +tZP biy dzk dAr @@ -85769,61 +85775,61 @@ dTs dTs dTs dTs -bQp +kDy naH ozu ozu xsS -bUE -hqT -oNS -bXq -dLf +tIy +pkp +mJP +gZC +evF dJT -dEY +cSS dib dib dib dLu dLX -cdA +wUK ceo cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciS -cjp -cjq -ckH -clK -cmw -cnG -coP -cpB -cqr -crE -crE -dQc -csI -cvO -cwI -cxA -lib -ctQ -crE -dQK -cBf +sDg +fzz +uqu +qQi +uGB +pOy +xLf +urO +wtK +pKk +pKk +gPi +fUM +eIR +htL +nOq +xGp +xwI +pKk +tOD +pkt cCg -cDl -cEo -dRn -dRF -cGZ -iiQ +wsx +vSn +don +kJe +rED +wbV cCf cCf dTs @@ -85841,65 +85847,65 @@ dTs dTs dTs dTs -djw -cAl -cjS +uYJ +fcS +qXE cjR cho cho cho cho -cjQ -chn -chn -clE +wuy +mPG +mPG +wak ciQ ciQ cnC -cuQ +iQs djx -cOG -cOG -cOG -cWF -cUi -mGo -mGo -kMT +jlW +jlW +jlW +osZ +qIX +snv +snv +qxh bYV sLx wya fdk -uis +uzd viV dNS -sUe -gdW -gdW -dNx -cYg +sJe +hna +hna +ucA +qjT cho dHg dwD din dyj -dzm -dzm +tYa +tYa dWK din -gdW -dsT +hna +nCL dzd clo cra dFP dzd dwD -gdW -dID -cOG -cOG -cOG +hna +iYm +jlW +jlW +jlW dTs dTs dTs @@ -85914,30 +85920,30 @@ acu acu afG afG -akw -akw -akw +mUS +mUS +mUS afG afG afG -akw -akw -akw +mUS +mUS +mUS afG afG ajz arJ -atO -auf +lvw +taT arJ ajz avG -acK -aHF -ayX -ayZ -axr -axt +rTN +wGq +xfn +qKz +tdk +uGb avG avG avG @@ -85945,7 +85951,7 @@ avG aCr aug aug -azj +rlL aug aCr dTs @@ -85962,15 +85968,15 @@ ayD dTs dTs dTs -ane -ans +dHL +nGu aoV -aro +dxa bjO bkk bky blj -atD +rxo dTs bfm eyL @@ -85985,8 +85991,8 @@ dTs dTs dTs dTs -aam -aam +imR +imR fpJ dTs dTs @@ -86003,61 +86009,61 @@ dTs dTs dTs dTs -bQn +kkn naH ozu ozu xsS -mfK -dCt -dCt -dEj -dLg +iEd +tXI +tXI +gqJ +iKr dJT -dEY +cSS dib dib dib dLu dLX -cdA +wUK ceo cdw cfy cge cgL chr -chZ -civ +whA +qQV ciS -cjq -cjq -ckI -clI -clI -cnG -coO -cpA +fzz +fzz +bxP +fhQ +fhQ +pOy +mBH +svt cjV -crF -csK -dQd -ctS -cvP -cwJ -cwK -cxY -crF -crF -dQe -ctS +tCw +sbC +eFZ +ioW +anw +jpb +eLK +msa +tCw +tCw +vlj +ioW cCg -cDm -cEp -aFM -dRG -cGY -dSw +kyo +fjG +uYh +sDK +uEi +esM cCf dTs dTs @@ -86076,9 +86082,9 @@ dTs dTs dTs dTs -cYf -cAl -cjS +eMR +fcS +qXE cjR cho cho @@ -86086,54 +86092,54 @@ cho cho cho cho -cjQ -chn -clE +wuy +mPG +wak ciQ ciQ cnC djx -cAZ -dtH -duA -vud +uig +oKy +imp +sqe dNS dlc -sUe +sJe bYV rdW rdW fdk -xuS +owJ viV dNS -sUe -gdW -gdW -gdW -dFd +sJe +hna +hna +hna +rXj dGA dHA dwD din dyj -dzm -dWF +tYa +nJs dyj din -gdW -dsT +hna +nCL dzd cmQ csg dHc dzd dwD -gdW -dID -dJe -dJe -dJe +hna +iYm +tiB +tiB +tiB dTs dTs dTs @@ -86148,81 +86154,81 @@ acu acu afG ajt -ahr -aju -aju +ptE +jio +jio agQ amD agQ -aiK -aju -ahr +fOh +jio +ptE agH -ajO -ajO -alD -aoP -akO -apf -ajO +nAI +nAI +qEI +sKk +xAS +iTr +nAI avH -ayL -ayZ -ayX -ayZ -ayZ -axr -axS -axS -axS -axS -axS -axS -ayL -azw -azq +qiD +qKz +xfn +qKz +qKz +tdk +vGQ +vGQ +vGQ +vGQ +vGQ +vGQ +qiD +qGq +nKf hVs dTs aeE aeE aeE azD -bRg -ady +hSy +gfj aeE aeE aeE ayD dTs dTs -ayp +rnt aeE aAt buj -bgr +iUk aXW aVZ aVZ aZk -atH -mEV +wll +vLy bfm auW -avj -avj -avj -avj +tzH +tzH +tzH +tzH auW bfm -aam -dTs -aam -aam -axP -axP -axP -aBI -axP +imR +dTs +imR +imR +wcK +wcK +wcK +uzB +wcK ayD dTs dTs @@ -86236,62 +86242,62 @@ dTs dTs dTs dTs -fHg -bQo +wPD +xoi naH uml vgm xsS -bUB +hGm bVD -goq -cAg +hCo +xoU dJT dJT -dEY +cSS dib dib dib dLu dLX -cdB +gpx cen cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciR -cjr -cjq -ckJ -clI -clI -dPa -coR -cpD +qhY +fzz +jfJ +fhQ +fhQ +uod +xRw +qca ckD -crG -dPU -dQe -ctS -cvQ -cwK -cwK -cxZ -crF -crF -dQe -cBg +edp +ufk +vlj +ioW +uBu +eLK +eLK +lfk +tCw +tCw +vlj +vBH cCg -cDn -cEq -dRo -dRH -dSh -dSx +iFk +eYm +rrQ +uSL +dJx +uUg cCf dTs dTs @@ -86313,7 +86319,7 @@ dTs dTs dTs ciQ -cYg +qjT cho cho cho @@ -86322,52 +86328,52 @@ cho cho cho cho -cjQ -chn -clE +wuy +mPG +wak ciQ cnC -cuQ -cvK +iQs +fJL doO -vud +sqe dNS dNS -sUe +sJe bYV rdW rdW fdk -vud +sqe viV dNS -sUe -gdW -gdW -dsV -dFe -dFe -dFe -dwE +sJe +hna +hna +iLL +ftY +ftY +ftY +jJO dxe xJG dWz dWG dWL dxe -gdW -dsV -dtI -com -com -com -dtI -dwE -gdW -dJS -dKL -dKL -dKL +hna +iLL +gDK +hyP +hyP +hyP +gDK +jJO +hna +ujv +jcC +jcC +jcC dKQ dTs dTs @@ -86381,85 +86387,85 @@ acu (150,1,1) = {" acu afG -aae -aju -aju -ahr -ahr -ahr -ahr -aju -aju -ahr -anO -akO -aiq -akO -aoP -akO -akO -akO -avI -ayZ -ayZ -ayX -ayZ -ayZ -ayZ -ayZ -ayZ -ayZ -ayZ -ebT -ayZ -ayZ -azx -axr +ugc +jio +jio +ptE +ptE +ptE +ptE +jio +jio +ptE +xXD +xAS +oyM +xAS +sKk +xAS +xAS +xAS +mas +qKz +qKz +xfn +qKz +qKz +qKz +qKz +qKz +qKz +qKz +oVv +qKz +qKz +kKG +tdk eVJ aeE aeE aeE -bRg +hSy dTs dTs -aam -ady +imR +gfj aeE aeE ayD -aam -aam -ayp +imR +imR +rnt aeE aAu aAi -azH +eEF aXW aVZ aVZ aZk -atH +wll auu -lwh -avb -avk -ctg -aCR -avZ -avb -awp -aam -aam -axP -azA +kMo +jdX +mUT +diQ +eGJ +qWc +jdX +hOI +imR +imR +wcK +jVA aeE aeE aeE xhv aeE ayD -aam -aam +imR +imR dTs dTs dTs @@ -86469,63 +86475,63 @@ dTs dTs dTs dTs -nmr -nue -bQo +jMg +jOv +xoi naH ozu ozu xsS -bUC +bOA bVE -gQE -cAg +uWK +xoU dJT dJT -dEY +cSS dib dib dib dLu dLX -cdA +wUK ceo cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciR ciR cjV -ckJ -clL +jfJ +vGz cjV cnJ -coS +wVF ciS ckD crH -dPU -ctT +ufk +vjL crH cvM -cwL +qgl crH cvM crH -dQF -dQL +qfM +lpW crH cCg -cDo -dRf -dRm -dRI -dSi -dSy +koi +mvo +gVV +sAX +oIr +mgM cCf dTs dTs @@ -86547,8 +86553,8 @@ dTs dTs dTs ciQ -cjS -chp +qXE +hCk cjR cho cho @@ -86558,47 +86564,47 @@ cho cho cho cho -cjQ -chn -chn -chn -chn -dvx -xxv -wPb -wPb -jVa +wuy +mPG +mPG +mPG +mPG +lYX +rYv +mIR +mIR +mMY bYV sLx wya fdk -xxv +rYv xoO -wPb -jVa -gdW -gdW -gdW +mIR +mMY +hna +hna +hna czV czV czV -gdW +hna dxe din dxe din dxe dxe -gdW -gdW -gdW +hna +hna +hna dAo dAo dAo -gdW -gdW -gdW -dKB +hna +hna +hna +qqj cgq cgq cgq @@ -86615,75 +86621,75 @@ acu (151,1,1) = {" acu afG -ajv -ahr -aju -aiz -ahr -ahr -aju -ahr -ahr -anK -ahr -akO -aok -aoJ -aoW -aoJ -aoJ -aoJ -avJ -avJ -avJ -atP -avJ -avJ -avJ -avJ -avJ -avJ -avJ -avJ -avJ -ayr -azy -ayZ -ste -ajI -ayN -bRg -dTs -dTs -dTs -dTs -ayp +gyn +ptE +jio +xYB +ptE +ptE +jio +ptE +ptE +mbJ +ptE +xAS +nvn +jzU +sMg +jzU +jzU +jzU +jcA +jcA +jcA +oWb +jcA +jcA +jcA +jcA +jcA +jcA +jcA +jcA +jcA +hay +xZA +qKz +nLV +xzN +kbB +hSy +dTs +dTs +dTs +dTs +rnt aeE aeE -bgH -axP -aam -aam -ady +xir +wcK +imR +imR +gfj aeE azD -azI +dha aXW aWa aWB aZk -atH +wll auG -aut -avc -avk -aCP -bZc -avZ -avc -awq -axP -azA +jzF +eCf +mUT +wAf +fBj +qWc +eCf +nmn +wcK +jVA aeE aeE aeE @@ -86692,9 +86698,9 @@ aeE xhv aeE aeE -bgH -axP -aBD +xir +wcK +jut dTs bID bID @@ -86705,61 +86711,61 @@ bID bID bID aBX -bQo +xoi naH ozu ozu xsS -bUC +bOA bVE -gQE -cDQ +uWK +txE dJT -dLj -cEW +rCU +rwN dib dib dib dLu dLX -cdA +wUK ceo cdw cfy cge cgL chr -dNI +jez ciu -ceX +wfc cjs -dOj -dOu -dOl -cmx -cnK -cjX -cmx -cqt -dOj -dPW -dQf -dQg -cnK -cjX -cmx -cqt -dOj -dQG -dQf -cBh +mFG +eXy +isy +iPu +sZn +hGU +iPu +tPG +mFG +iky +wBK +fYF +sZn +hGU +iPu +tPG +mFG +xvw +wBK +tXm cCj -cDp -dRg -dRm -dRI -dSj -dSv +fvZ +vth +gVV +sAX +uqe +qNs cCf dTs dTs @@ -86768,6 +86774,7 @@ dTs dTs dTs dTs +gce dTs dTs dTs @@ -86780,11 +86787,10 @@ dTs dTs dTs dTs -dTs -cAl +fcS ciQ -cjS -chp +qXE +hCk cjR cho cho @@ -86799,45 +86805,45 @@ cho cho dvy clD -cmr -cxW -coF +uKe +kXI +oKj dfc dgD dNR dTH -coF +oKj jsN -chT -dvB -dvB -dDI +nRl +mDO +mDO +hao dEn dEn dEn dEn dEn -dFS -dvB +mUE +mDO dzr -cfD -cfD -cfD -cgr +xKl +xKl +xKl +tDR cgs cgs cgs cgs -dHd -dIG +tGw +kgX dII -dJA -dHy +gnx +uQh cgq -dKN -dJf -dJf -aOP +lNr +hSu +hSu +evt cfH cfH cfH @@ -86856,144 +86862,144 @@ agQ agQ agQ agQ -ahr -ahr +ptE +ptE agQ agH -alE -aoP -akO -aph -apv -ajP -ajP +laF +sKk +xAS +puO +wQR +gij +gij avH -ayO -ayZ -ayZ -ayZ -ebT -axQ -azc -azc -azc -azc -azc -ayO -ayX -ayZ -ayZ -bbs -bij -azu -dTs -dTs -dTs -dTs -dTs -aam -ady +ucF +qKz +qKz +qKz +oVv +paB +osP +osP +osP +osP +osP +ucF +xfn +qKz +qKz +eBM +rGo +pwz +dTs +dTs +dTs +dTs +dTs +imR +gfj aeE aeE aeE ayD -aam -aam -ady +imR +imR +gfj aeE -azI +dha aXW aVZ aVZ aZk -atI -auH -auH -auH -avm -bUr -bUr -awa -auH -auH -azR -azR -azR -azR -azR -azR -azR -aBJ -azR -azR -azR -azR -azR -aAQ +vBd +mAg +mAg +mAg +gKO +llq +llq +sfc +mAg +mAg +nWC +nWC +nWC +nWC +nWC +nWC +nWC +gzn +nWC +nWC +nWC +nWC +nWC +vFM bID -aVY -aBG -aVY -aVY -aBG -aVY +lqH +fdh +lqH +lqH +fdh +lqH bID -aBY -bQq +plw +lva naH uml vgm xsS -bUC +bOA bVE -gQE +uWK duy dJT -dEY +cSS dib dib dib dib dLu -dLY -cdA +liB +wUK ceo cdw cfy cdC cdC chr -chZ +whA dNT -civ -cjt -dOl -dOv -dOG -dOG -dOG -dOG -dPk -dPr -dPH -csO -dQg -dOG -dQk -dOG -clM -dOG -dOG -cjW -dQg -cBi -cCk -cDq -dRh -dRp -dRI -dSk -dSw +qQV +hpy +isy +ygt +ofM +ofM +ofM +ofM +iVT +rDu +msp +lVr +fYF +ofM +keT +ofM +kjs +ofM +ofM +uxv +fYF +hfc +kXs +hLl +lwf +hUQ +sAX +mym +esM cCf dTs dTs @@ -87016,11 +87022,11 @@ dTs dTs dTs dTs -djw -djw -cAl -cjS -chp +uYJ +uYJ +fcS +qXE +hCk cjR cho cho @@ -87031,18 +87037,18 @@ cho cho cho cho -cjQ -chn -chn -cyR -cAf +wuy +mPG +mPG +pIk +lnI czV czV czV czV -cAf -cAi -chU +lnI +xfs +eLI cho cho cho @@ -87063,12 +87069,12 @@ cfH cfH cfH cfH -dIH -dJf -dJf -dJf -dJf -dKO +pnB +hSu +hSu +hSu +hSu +iEI cfH cfH aOQ @@ -87090,52 +87096,52 @@ agH afG afG agQ -ahr -aiz +ptE +xYB aiB afG -amr -aoP -ain -api +qLh +sKk +ftZ +bXE akL akL akL avG -ayS -aqO -azc -azc -azc -axR +thj +xua +osP +osP +osP +wcy avG avG avG avG avG -ayP -ayX -ayZ -axQ +rrv +xfn +qKz +paB eVJ -bij -azu +rGo +pwz dTs dTs dTs dTs dTs dTs -aam -ady +imR +gfj aeE aeE ayD -aam -gKo -ayp +imR +nsV +rnt aeE -azI +dha aXW aVZ aVZ @@ -87178,56 +87184,56 @@ tSK ozu ozu xsS -bUC +bOA bVE -gQE +uWK duy dJT -dEY +cSS dib dib dib dib dLu dLV -cdA +wUK ceo cdw cfy cdC cgf chs -cia +pHE dNU -dNV -dNW -dOm -ckM -dOH -dOH -clN -clN -cpF -dPs -dCE -csP -clN -clN -dOH -clN -clN -cyb -dQA -dOH -dOH -cBj -cCl -cCl -cEu -cFl -aRL -cGZ -dSx +jGp +tpl +pTG +ulB +rlh +rlh +hOM +hOM +wPS +rqA +hMR +iDD +hOM +hOM +rlh +hOM +hOM +fHu +oax +rlh +rlh +ump +wMW +wMW +qgu +kwt +ldh +rED +uUg cCf dTs dTs @@ -87252,11 +87258,11 @@ dTs dTs dTs dTs -cYf -djw -cAl -cjS -chp +eMR +uYJ +fcS +qXE +hCk cjR cho cho @@ -87324,14 +87330,14 @@ akx aTI afG agQ -ahr -ahr +ptE +ptE agQ agH -amr -aor -akO -api +qLh +tqc +xAS +bXE akL dTs dTs @@ -87347,13 +87353,13 @@ dTs dTs dTs avG -ayK -ayX -ayZ -azp +oxq +xfn +qKz +rkR hVs -bij -azu +rGo +pwz dTs dTs dTs @@ -87361,15 +87367,15 @@ dTs dTs dTs dTs -ayp +rnt aeE aeE ayD -aam -aam -ayp +imR +imR +rnt aeE -azI +dha aXW aVZ aVZ @@ -87412,56 +87418,56 @@ ozu ozu ozu xsS -bUB +hGm bVD -bWs -dAB +pzW +iyQ dJT -dEY +cSS dib dib dib -dLt -dLz +wMm +feV dLV -cdB +gpx cen cdw cfy cge cgM chr -dBN -dnP -civ +iwl +ijG +qQV cjs -cjZ -ckN -ckN -ckN -ckN -cjZ -cpG -cqw -crK -csQ -ctV -cuX -odr -cwM -cpG -cyc -cyV -dQH -dQM -cBk +eVn +wDL +wDL +wDL +wDL +eVn +nXW +oUR +gso +hrU +tuJ +ndp +tZN +ckz +nXW +uLy +tGt +oRi +tKl +kgL cCj -cDr -cAH -cAK -cGe -cHa -cHH +xsM +fgN +feu +oKS +lmf +ndl cCf cJA cJA @@ -87487,13 +87493,13 @@ dTs dTs dTs dTs -cAZ -cYf -cAl +uig +eMR +fcS ciQ -cjS -chp -chp +qXE +hCk +hCk cjR cho cho @@ -87558,20 +87564,20 @@ afN amd agH agQ -ahr -ahr +ptE +ptE agQ agH -amr -aoP -akO -api +qLh +sKk +xAS +bXE akL dTs dTs dTs dTs -aqB +ryz atS aqC aqC @@ -87581,29 +87587,29 @@ dTs dTs dTs avG -ayK -ayX -ayZ -azp +oxq +xfn +qKz +rkR hVs -bij -azu +rGo +pwz ayD -aam +imR dTs dTs dTs dTs dTs -azA +jVA aeE aeE -bgH -axP -azA -azA +xir +wcK +jVA +jVA aeE -azI +dha aXW aVZ azN @@ -87646,19 +87652,19 @@ ozu ozu ozu xsS -bUC +bOA bVE -gQE -cAg +uWK +xoU dJT -dEY +cSS dib dib dib dLu dJT dLV -cdA +wUK ceo cdw cfy @@ -87667,7 +87673,7 @@ cgN cht ccZ cix -ciU +eWu cjv cka cka @@ -87676,16 +87682,16 @@ cka cka cka cpH -cqx -crL +fHp +sKv cpH ctW ctX ctX ctX ctX -cyd -cyW +bDH +tIV ctX ctX ctX @@ -87693,14 +87699,14 @@ cCg cCg cCg cFn -cGf -cHb +gAg +pUN cFn cCg -cJB -cKt -cLl -cLR +llY +szg +xvx +eBH cJA dTs dTs @@ -87725,13 +87731,13 @@ dTs dTs dTs dTs -djw -cAl +uYJ +fcS ciQ -cjS -chp -chp -chp +qXE +hCk +hCk +hCk cjR cho cho @@ -87769,10 +87775,10 @@ cfH cfH cfH cfH -dJC -cgo -cgo -cgo +hGd +rIJ +rIJ +rIJ aOV cfH cfH @@ -87790,22 +87796,22 @@ afN afN afN amj -amE -ahr -ahr -ahr +dsy +ptE +ptE +ptE agQ agH -amr -aoP -akO -api +qLh +sKk +xAS +bXE akL dTs dTs dTs dTs -aqB +ryz atS aqC aqC @@ -87815,29 +87821,29 @@ dTs dTs dTs avG -ayK -ayX -ayZ -azp +oxq +xfn +qKz +rkR hVs -bij -azu +rGo +pwz ayD -aam -aam +imR +imR dTs dTs dTs -azM -azR -azR -azR -azR -azR -azR -azR -azR -aAD +fGE +nWC +nWC +nWC +nWC +nWC +nWC +nWC +nWC +qGM aXW aWa aAT @@ -87880,19 +87886,19 @@ ueZ ozu ozu xsS -bUC +bOA bVE -gQE -dCU -dKA -dEY +uWK +tow +voS +cSS dib dib dib dLu -dLQ -dLZ -cdA +heZ +nkI +wUK ceo cdw cfy @@ -87901,40 +87907,40 @@ cgN chu cdC chr -ciU +eWu cjv -ckb -ckb -ckb -ckb -ckb +hPC +hPC +hPC +hPC +hPC cka -cpI -cqx -dPI -crM +rlc +fHp +twa +xlb ctX -cuY -cvT -cwN -cxB -cyd -cvU -czE -cAn -cBl -cCm +ubJ +iWd +kdk +sfj +bDH +wLO +gPq +mSW +dhQ +xIj ctW -cEy -cEB -cGg -cHc -cHc +qXi +rQA +vXo +lSY +lSY cEG -cJC -cKu -cKw -cLS +yjo +tkx +jyd +lgs cJA dTs dTs @@ -87961,12 +87967,12 @@ dTs dTs dTs dTs -djw -cAl +uYJ +fcS ciQ ciQ ciQ -cjS +qXE cjR cho cho @@ -87985,28 +87991,28 @@ cho cho cho cho -chX -chp -chp -chp +bBn +hCk +hCk +hCk dzr -cgo -cgo -cgo -cgo -cgo -cgo +rIJ +rIJ +rIJ +rIJ +rIJ +rIJ coo cfH cfH cfH cfH -dJC -cgo -dJD +hGd +rIJ +iLn cgq cgq -dKJ +sBh ebs dTs dTs @@ -88024,16 +88030,16 @@ jJE afN afN amk -ahr -ahr -ahr -ahr +ptE +ptE +ptE +ptE agQ agH -amr -aoP -akO -aoX +qLh +sKk +xAS +hZg aCr aCr aCr @@ -88049,18 +88055,18 @@ avG avG avG avG -ayK -ayX -azk -azp +oxq +xfn +fNN +rkR hVs -bij -azu +rGo +pwz ayD -axP -axP -axP -azF +wcK +wcK +wcK +kYG aaB abZ abZ @@ -88076,57 +88082,57 @@ amM aVZ blT aZk -aBj -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAs -byZ -aAR +ujJ +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +lER +iuh +wkc +xit bID -cEX -bJF -bJF -bJF -bJF -aZm +wtl +vRp +vRp +vRp +vRp +vFD bID -aCa -pTU +lsf +eoi naH uml vgm xsS -bUC +bOA bVE -gQE -uMG -dLf -dEY +uWK +ldM +evF +cSS dib dib dib dLu dLO -ccR -cdA +sWC +wUK ceo cdw cfy @@ -88135,40 +88141,40 @@ cgM chu cdC chr -ciU +eWu cjv -ckc -ckc -ckc -ckc -dPb +kWd +kWd +kWd +kWd +rQf cka -cpI -dPt -dPI -crM +rlc +oMd +twa +xlb ctX -cuZ -cvU -cwO -dQt -cye -cvU -cvU -cvU -cvU -cCn +tMR +wLO +pDJ +qnE +nCs +wLO +wLO +wLO +wLO +iVC ctW -uIC -cEB -cGg -cHc -cHI +sND +rQA +vXo +lSY +iZV cEG -dSD -cJD -cHd -cLT +rDr +dPc +jET +mpX cJA dTs dTs @@ -88196,12 +88202,12 @@ dTs dTs dTs dTs -cYf -djw -cAl +eMR +uYJ +fcS ciQ ciQ -cjS +qXE cjR cho cho @@ -88210,18 +88216,18 @@ czV czV czV czV -cAf -cAj -chp -chp -chp -chp -chp -chp -chp -ciP -dvz -djw +lnI +qQX +hCk +hCk +hCk +hCk +hCk +hCk +hCk +quq +puz +uYJ dTs dTs dTs @@ -88230,16 +88236,16 @@ cgq cgq cgq cgq -cop -cgo -cgo -cgo -cgo -dJD +fMo +rIJ +rIJ +rIJ +rIJ +iLn cgq cgq -dKJ -dKM +sBh +vic dTs dTs dTs @@ -88260,41 +88266,41 @@ afN amd agH agQ -aiz -ahr +xYB +ptE agQ agH -amr -aoP -akO -api +qLh +sKk +xAS +bXE aCr -aum -auM -avK -awH -awI +upB +xxd +fvP +xYw +fIr aCr aqC aqC avG -axW -gNq -aye -ayf +xHX +ohN +iGt +rSk avH -ayL -ayX -ayZ -azq +qiD +xfn +qKz +nKf hVs -bij -azv -axU -axU -axU -axU -azG +rGo +rjY +sGn +sGn +sGn +sGn +khY aXW aVZ aVZ @@ -88310,20 +88316,20 @@ azZ aVZ blT aZk -bAN +rhK azD aeE aeE aeE aeE -bRg -aan -aan +hSy +lWH +lWH dTs dTs -aan -aan -ady +lWH +lWH +gfj aeE azD aeE @@ -88334,33 +88340,33 @@ aeE aAu aCb bJC -aBp -cFj -cFj -cFj -cFj -cFj -cFj -aBp -aCc -kVU +oDi +uga +uga +uga +uga +uga +uga +oDi +fcj +fjQ naH ozu ozu xsS -bUC +bOA bVE -gQE -uMG -dLf -dEY +uWK +ldM +evF +cSS dib dib dib dLu dLO -ccR -cdA +sWC +wUK ceo cdw cfy @@ -88369,40 +88375,40 @@ cgN chu cdC chr -ciU +eWu cjv -dOn -dOx -ckO -dOT -cnL +mtQ +fme +muU +pRn +lur cka -cpJ -dPu -dPI -crM +iQN +sQW +twa +xlb ctX -cva -dQl -cwP -cxD -dcL -cyX -czF -sPL -cAo -cCo +mIc +eGT +qsI +xmW +hKq +tus +wsN +wUV +rWy +jEU ctW -cEz -cEB -dRJ -dSl -cHJ -cIF -cHJ -cHJ -cHc -cLT +tRi +rQA +ruX +hvN +xSq +oPJ +xSq +xSq +lSY +mpX cJA dTs dTs @@ -88431,30 +88437,30 @@ dTs dTs dTs dTs -cmR -dtF -cAl +pCH +qEM +fcS ciQ ciQ -cjS -chp -czB -cAf -czX -czX +qXE +hCk +jxp +lnI +xVs +xVs cho -czX -cAf -cAk -djw -cAl +xVs +lnI +tBs +uYJ +fcS ciQ ciQ ciQ ciQ ciQ -dvz -dzo +puz +tMS dTs dTs dTs @@ -88463,16 +88469,16 @@ dTs dTs dTs dTs -clm +jdV cgq cgq cgq cgq cgq cgq -dKJ -dKM -dKP +sBh +vic +nOn dTs dTs dTs @@ -88494,41 +88500,41 @@ akC aml afG amR -ahr -ahr +ptE +ptE agQ agH -amr -aoP -akO -eNU +qLh +sKk +xAS +jmf aug -aun -auq -auq -auq -awJ +kbg +lgv +lgv +lgv +jhz aCr aqC aqC avG -axX -ayj -ayu -ayj -ayA -ayM -ayX -ayZ -azp +ydM +pkw +syL +pkw +jYv +gcY +xfn +qKz +rkR hVs -ahV -axV -axV -axV -axV -axV -azH +kaM +kEY +kEY +kEY +kEY +kEY +eEF aXW azN azS @@ -88544,21 +88550,21 @@ aAa azS aAU aZk -bAN +rhK aeE aeE aeE aBB aeE ayD -aam -aam +imR +imR dTs dTs dTs -aam -aam -ady +imR +imR +gfj aeE aeE aeE @@ -88567,34 +88573,34 @@ aeE aeE aeE aAu -aAS +xQm bID -ceQ -aBH -cjP -ceQ -aBH -ceQ +sGv +jvg +nbs +sGv +jvg +sGv bID -aCe -bQr +tYN +iOT naH ozu ozu xsS -bUD +uZo bVD -hcP -jvZ -dLh -dLl +xjh +dST +joC +kYr dib dib dib beZ aac -bii -ccN +vFW +qin cen cdw cfy @@ -88603,18 +88609,18 @@ cgN chu cdC chr -ciU +eWu cjv -cke -ckP -clO -cZK -jVr -coT -lKY -liN -dPI -csR +ito +kcF +wIC +jfh +qtx +iwg +pUm +uMx +twa +tLm ctW ctW ctW @@ -88627,16 +88633,16 @@ ctW ctW ctW ctW -cEA -cEC -dRJ -dSl -cHg +eji +iWX +ruX +hvN +stO cEG -cJE -cKv -cHf -cLU +xkm +qKO +jjl +gAA cJA dTs dTs @@ -88666,28 +88672,28 @@ dTs dTs dTs dTs -dgX -dtG -duz -duz -duz -duz -cAe -coF +rLk +tpz +jMV +jMV +jMV +jMV +lhx +oKj dfc dgF jrV dTH -coF -cuT -dgX -cAX -ckn -cpv +oKj +xQU +rLk +hVU +hQE +fae chS chS -cjk -dHB +kXa +knQ dTs dTs dTs @@ -88697,16 +88703,16 @@ dTs dTs dTs dTs -cln -cpd -dEZ +iEW +sHv +pVD dHe dHe -dJg -dJE -dKK -dgX -dgX +pKx +wsw +kxs +rLk +rLk dTs dTs dTs @@ -88728,33 +88734,33 @@ agH afG afG agQ -ahr -ahr +ptE +ptE aiB afG -myx -aoP -akO -api +nkW +sKk +xAS +bXE aug -aun -auq -auq -auq -afo +kbg +lgv +lgv +lgv +vTU aCr aqC aqC avG -ayb -ayk -ayv -ayj +pMz +gEm +lvz +pkw avH -ayO -ayX -ayZ -azp +ucF +xfn +qKz +rkR hVs dTs aeE @@ -88762,7 +88768,7 @@ aeE aeE aeE aeE -azI +dha aXW blT aVZ @@ -88778,30 +88784,30 @@ aXC aXC aXC aBa -bAN +rhK aeE aeE aeE aeE aeE ayD -aam -aam +imR +imR dTs dTs dTs dTs -aam -ayp +imR +rnt aeE aeE aeE aeE -bRg -aan -aan -aan -bgx +hSy +lWH +lWH +lWH +vXx bID bID bID @@ -88810,25 +88816,25 @@ bID bID bID bID -aCg -bQo +xAg +xoi naH uml vgm xsS -bUF -bVF -dCt -dCt -aWH -dMw +twJ +vfY +tXI +tXI +byI +oyo dib dib dib -dMw -dMw -aWH -caH +oyo +oyo +byI +wTW cep cfa cfv @@ -88837,40 +88843,40 @@ cgM chu cdC chr -ciU +eWu cjv -cke -ckO -clP -ckO -ckc +ito +muU +iVq +muU +kWd cka -cpL -dPu -dPJ -csS +vLz +sQW +tgz +ddF ctY -cvb -cvb -cwQ +lcb +lcb +xmI cxE -cyg -cyY -czG -cAp -cBm -cCp +dYu +jAu +hAm +pZy +ncC +wsB cDs -cEB -cFp -dRL -dSm -cHc +rQA +lUf +dqL +nIT +lSY cEG -cJF -cKw -eBZ -cLV +eWs +jyd +hdD +kTI cJA dTs dTs @@ -88899,29 +88905,29 @@ dTs dTs dTs dTs -cpY -cpY -cpY -diO -cpY -cpY -cpY -czU -cko +koo +koo +koo +vwp +koo +koo +koo +tvP +jPo cCH clZ clZ crW -fcu -cmc -cpY -cpY -cpY -crc -cpY -cpY -cpY -czU +ljm +jpr +koo +koo +koo +iBi +koo +koo +koo +tvP dTs dTs dTs @@ -88933,15 +88939,15 @@ dTs dTs dTs dTs -dGs -dGQ -dGQ -dGQ -dHv -dGQ -dGQ -dGQ -dIj +tzg +mKj +mKj +mKj +nQE +mKj +mKj +mKj +ksu dTs dTs dTs @@ -88962,78 +88968,78 @@ agQ agQ agQ agQ -ahr -ahr +ptE +ptE agQ agH -alD -aoP -akO -api +qEI +sKk +xAS +bXE aug -aup -auq -avL -auq -axE +sil +lgv +sdS +lgv +iuB aCr aqC aqC avG -ayd -ayj -ayj -ayj +fdx +pkw +pkw +pkw avH -ayK -ayX -ebT -azp +oxq +xfn +oVv +rkR avG dTs dTs -aan -aan -ady +lWH +lWH +gfj aeE -azI +dha aXW bkE aWB aZk -aAb -byZ -byZ -byZ -byZ -aAx -aAq -aAq -aAq -aAq -aAs +uwc +wkc +wkc +wkc +wkc +qaH +lER +lER +lER +lER +iuh aBu aeE aeE aeE aeE -bRg -aam -aam -aam +hSy +imR +imR +imR dTs dTs dTs dTs -aam -ayp +imR +rnt aeE aeE aeE aeE ayD -aam -aam +imR +imR dTs dTs dTs @@ -89044,8 +89050,8 @@ dTs dTs dTs dTs -fHg -bQo +wPD +xoi naH ozu ozu @@ -89055,7 +89061,7 @@ nAm nAm nAm aXp -cIa +tMX aof aof aof @@ -89071,35 +89077,35 @@ cgN chu cdC chr -ciU +eWu cjv -ckf -dOy -dOI -ckO -ckc +qTD +jzx +xFJ +muU +kWd cka -cpI -dPt -dPJ -crR -ctZ -cvb -qwZ -cwQ +rlc +oMd +tgz +rOG +fCe +lcb +nmN +xmI cxE -cyh -cyZ -dQI -dQO -cyZ -cCq +gln +oDv +jqK +vje +oDv +pFW cDs -dRi -cEB -dRM -dSl -cHK +kVs +rQA +fdV +hvN +mkX cIG cJG cJG @@ -89141,12 +89147,12 @@ cmW cmW cmW cSC -dlz +jiH cCH cpR cET crW -dom +kSV cSC cmW cmW @@ -89154,7 +89160,7 @@ cmW cSC cmW cmW -duB +xxV cSC dTs dTs @@ -89189,27 +89195,27 @@ acu (162,1,1) = {" acu afG -ahr -ahr -ahr -ahr -ahr -aju -ahr -ahr -ahr -ahr -anO -akO -aoP -akO -api -auh -auq -auq -avM -auq -axE +ptE +ptE +ptE +ptE +ptE +jio +ptE +ptE +ptE +ptE +xXD +xAS +sKk +xAS +bXE +mQT +lgv +lgv +ylZ +lgv +iuB aCr aqC aqC @@ -89219,23 +89225,23 @@ avG avG avG avG -ayP -ayX -ayZ -azp +rrv +xfn +qKz +rkR avG dTs -aam -aam -aam -ayp +imR +imR +imR +rnt aeE -azI +dha aXW blT aVZ aZk -bij +rGo aAh buj aAn @@ -89245,28 +89251,28 @@ aeE aeE aeE aeE -aBb -aBv +sKA +ilC aeE aeE aeE aeE -aam -aam -aam +imR +imR +imR dTs dTs dTs dTs dTs dTs -ayp +rnt aeE aeE aeE aeE ayD -aam +imR dTs dTs dTs @@ -89278,8 +89284,8 @@ dTs dTs dTs afi -fHg -bQo +wPD +xoi naH ozu ozu @@ -89289,7 +89295,7 @@ ozu ozu ssy bbF -cIa +tMX dib aof dib @@ -89305,44 +89311,44 @@ cgN chq cdc ciy -ciU +eWu cjv -ckc -ckc -ckc -ckc -dPb +kWd +kWd +kWd +kWd +rQf cka -cpI -dPy -dPJ -dPO -cua -cvb -cvW -cwQ +rlc +kqo +tgz +jzy +xXE +lcb +nbD +xmI cxE -dDk -cyZ -cyZ -cyZ -dQQ -cCr -cDt -cED -cFq -dRN -cHc -cHc -cIH +xOu +oDv +oDv +oDv +fnK +sZz +pSG +sdj +rfj +vlA +lSY +lSY +txp cJG -cKx -cKy +uNL +nMG cJG -cMQ -cNE -ppS -cOI +irP +iQD +shr +gTK cMP dTs dTs @@ -89366,7 +89372,7 @@ dTs dTs dTs dTs -cxm +mZY cmH cmI czQ @@ -89375,12 +89381,12 @@ cmH cmH cmH cmH -cBJ +hTX cCH clZ clZ crW -cta +rPJ cmH cmH cmH @@ -89388,7 +89394,7 @@ cmH cqT cmH cmH -ctm +wAi dTs dTs dTs @@ -89401,14 +89407,14 @@ dTs dTs dTs dTs -cxm +mZY cmH cmH cmH cmK cmH cmH -cpZ +rML dTs dTs dTs @@ -89423,70 +89429,70 @@ acu (163,1,1) = {" acu afG -aaf -aju -aju -aju -aju -amF -aju -abx -ahr -ahr -ahr -akO -aos -akO -api -auq -auq -auq -avN -auq -axE +hPj +jio +jio +jio +jio +pmV +jio +nSb +ptE +ptE +ptE +xAS +tky +xAS +bXE +lgv +lgv +lgv +sIr +lgv +iuB aCr aqC aqC avG -axW -ayi -pFj -bvB +xHX +wkI +fba +dkv avH -ayL -ayX -ayZ -azp +qiD +xfn +qKz +rkR avG dTs -aam -aam -aam -ayp +imR +imR +imR +rnt aeE -azI +dha aXW blT aVZ aZk -bij +rGo buj aAn aAo aeE -bRg -aan -aan -aan +hSy +lWH +lWH +lWH aeE -aBc -aBv +gKz +ilC bHs aeT aeT aeT -cad -cco +fRP +vrp dTs dTs dTs @@ -89499,11 +89505,11 @@ dTs aeE aeE aeE -bgH -axP -cco -cco -cco +xir +wcK +vrp +vrp +vrp dTs dTs dTs @@ -89512,8 +89518,8 @@ dTs dTs dTs afi -fHg -bQo +wPD +xoi naH ozu ozu @@ -89537,46 +89543,46 @@ cdC cdC cgN chr -chY -cel -ceY +oxd +djJ +sjW cjv -ckg -ckg -ckg -ckg -ckg +ikz +ikz +ikz +ikz +ikz cka -cpI -cqx -dPI -csT +rlc +fHp +twa +wOj ctY -cvb -cvW -cwQ +lcb +nbD +xmI cxE -cyj -erB -czH -cAr -cBp -cCs +ucC +rIR +nQR +vWq +kSX +jxe cDs -cEE -cEB -dRM -cHe -cHc -cII +rXR +rQA +fdV +iFB +lSY +utr cJG -cKy -cKx +nMG +uNL cNa -cMR -cNF -cNF -cOm +qTC +hKC +hKC +xTt cMP dTs dTs @@ -89597,10 +89603,10 @@ dTs dTs dTs dTs -cuw -cwo -ctn -cux +kBM +uYz +iva +cZU cpa cEU cmH @@ -89609,20 +89615,20 @@ cmK cmH cmH cmH -cBJ +hTX cCH clZ clZ crW -cta +rPJ cmK cEV cmH cPz cJl cmH -cpZ -cwu +rML +mWi dTs dTs dTs @@ -89634,15 +89640,15 @@ dTs dTs dTs dTs -cwo -cux +uYz +cZU cmH cmH cmI czQ cmH cmH -ctm +wAi dTs dTs dTs @@ -89658,8 +89664,8 @@ acu acu afG agQ -aju -ahr +jio +ptE agQ amm agQ @@ -89668,53 +89674,53 @@ ajt agQ agQ agH -alE -aot -akO -api +laF +tyI +xAS +bXE aug -aur -auq -awe -auq -axE +nGU +lgv +pvd +lgv +iuB aCr aqC aqC avG -axX -ayj -ayj -ayj -ayA -ayM -ayY -azl -azp +ydM +pkw +pkw +pkw +jYv +gcY +ujf +nKH +rkR avG dTs dTs -aam +imR dTs -ayp +rnt aeE -azI +dha aXW bkE aWB aZk -aAc +tXA aAi aAo aeE -bRg -aam -aam +hSy +imR +imR dTs dTs aeT -bHD -bqa +nZW +eGi aeT aeT aeT @@ -89735,10 +89741,10 @@ aeE aeE aeE aeT -aGQ -aJU -aGX -aGX +oev +gsD +kwl +kwl dTs dTs dTs @@ -89746,8 +89752,8 @@ dTs dTs dTs afi -lUU -bQo +soZ +xoi naH bSl bSl @@ -89771,8 +89777,8 @@ cfA cdC cgN chr -chZ -civ +whA +qQV ciV ciV cjy @@ -89781,14 +89787,14 @@ cjy cjy cjy cjy -cpM -cqx -dPJ -dPX +jBQ +fHp +tgz +qWr ctY -cvc -cvb -cwR +fRq +lcb +oHf ctY cyk cyk @@ -89797,29 +89803,29 @@ cyk cyk cyk cyk -cEF -cEB -dRM -cHc -cHc -cIH +wRq +rQA +fdV +lSY +lSY +txp cJG -cKx -dSG -dSO -dSS -dSX -cNG -cOm +uNL +eaR +fus +owM +kEX +vac +xTt cMP cMP cMP cMP cMP -cmc +jpr dTs dTs -cuw +kBM dTs dTs dTs @@ -89830,9 +89836,9 @@ dTs dTs dTs dTs -cuw -cwo -cux +kBM +uYz +cZU cmH cpT cAL @@ -89841,21 +89847,21 @@ cUK cmH cmH cmH -cUL -cmX -dfx +jNf +ltY +qGn cCH cpR cET crW -cta +rPJ cmH cYj cmH dLS dTx cmH -cqU +qQE dTs dTs dTs @@ -89866,16 +89872,16 @@ dTs dTs dTs dTs -cuw -cwo -cux +kBM +uYz +cZU cmH cmH cmH cmH cEU cUK -cpZ +rML dTs dTs dTs @@ -89892,39 +89898,39 @@ acu acu afG afG -akD -akD +fhm +fhm afG afG afG -ahb -ahb +nYc +nYc afG afG afG -amr -aot -akO -api +qLh +tyI +xAS +bXE aug -aun -auq -auq -auq -axE +kbg +lgv +lgv +lgv +iuB aCr aqC aqC avG -aye -ayl -ayv -ayj +iGt +iMu +lvz +pkw avH -ayO -ayZ -ayZ -azp +ucF +qKz +qKz +rkR avG dTs dTs @@ -89932,23 +89938,23 @@ dTs dTs aeE aeE -azI +dha aXW blT aVZ aZk -bAN +rhK aeE aeE aeE -aam +imR dTs dTs dTs dTs aeT -bHD -bqa +nZW +eGi aeT aeT aeT @@ -89966,13 +89972,13 @@ dTs dTs dTs dTs -aYz -aGX -aGX -aGR -bfh -beB -beM +fnH +kwl +kwl +gGO +pZN +nKC +xoW dTs dTs dTs @@ -89980,110 +89986,110 @@ dTs dTs dTs dTs -nue -bQo +jOv +xoi naH ozu ozu ozu ehg -bVG -aVS -aVS -beq -beG +imj +bgF +bgF +wHt +xzS xOK xOK xOK -beG -beG -beq -uxs -ceq -cfb +xzS +xzS +wHt +mtD +pzl +jsv cfB aMt aMy chr -chZ -civ +whA +qQV ciV -cjw -cjw -ckR -cjx -cmB -ltq +oGm +oGm +rFe +rSW +igT +jiC cjy -cpI -cqA -dPK -dPI +rlc +iqn +iNK +twa ctY -cvb -cvW -cwQ +lcb +nbD +xmI cxE -cyl -czb -czI -cAs -cBq -cCt +lXI +fsc +lJL +uEx +whX +lxH cDu -cEB -dRq -dRM -cHc -cHc -cIJ +rQA +oOt +fdV +lSY +lSY +jwS cJG -cKy -cKx -cLY -cLY -cNG -dTb -cOm +nMG +uNL +fOK +fOK +vac +lBb +xTt cPM -cKx -cRn -cRQ +uNL +wLo +bBC cPM -clW -cqU -ctn -csf -cuw +iuN +qQE +iva +mDC +kBM dTs dTs -cuw +kBM dTs dTs dTs dTs dTs -cwo -ctn -cux +uYz +iva +cZU cmH dLS dTx csb cmH -cUL -cVu -cpX -cpX -cBL -cvn -cvx +jNf +lZe +nBc +nBc +vPB +wVq +oyY cCH clZ clZ crW -ctd -cpb +vJI +hrZ cmH cpa dMX @@ -90099,9 +90105,9 @@ dTs dTs dTs dTs -vHx -cwo -cux +hZb +uYz +cZU cmH cJl cPz @@ -90109,7 +90115,7 @@ cmH cmH cmH cmH -ctm +wAi dTs dTs dTs @@ -90125,53 +90131,53 @@ acu (166,1,1) = {" acu afG -afH -afK -afK -agI +nyT +xpS +xpS +hzl afG -afH -afK -afK -agI +nyT +xpS +xpS +hzl afG -aqF -anX -aou -aoK -api +ygc +oZW +iIo +rxP +bXE aug -aun -auq -auq -auq -axG +kbg +lgv +lgv +lgv +pLq aCr aqC aqC avG -rDa -aym -ayb -ayz +nKP +sBk +pMz +uQG avH -ayS -azc -azc -azt +thj +osP +osP +iHM avG dTs dTs dTs -ayp +rnt aeE aeE -azI +dha aXW blT aVZ aZk -bAN +rhK aeE aeE ayD @@ -90181,8 +90187,8 @@ dTs dTs dTs glO -pdi -tFi +gpH +jia glO glO glO @@ -90204,9 +90210,9 @@ kPs kPs kPs kPs -grk +nzm glO -vfr +jTp dTs dTs dTs @@ -90215,89 +90221,89 @@ dTs dTs dTs pke -bQo +xoi naH ozu ozu ozu xsS -gFr -dCt -aWs +uIf +tXI +nas dLi -dLp +nQc dib dib dib dLF dLT -ccO -ccM +jqj +nNV cen cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciV -cjx -dOo -dOo -cjx +rSW +iiG +iiG +rSW cjy cjy cjy -cpN -cqx -dPJ -dPI +jHE +fHp +tgz +twa ctY -cvb -cvW -cwQ +lcb +nbD +xmI cxE -cym -czc -czc -cAt -czc -cCu +vbx +uAy +uAy +hBa +uAy +qOx cDu -cEC -dRq -dRM -cHc -cHc -cIH +iWX +oOt +fdV +lSY +lSY +txp cJG -cKx -cKy +uNL +nMG cNa -cMT -cNH -dTc -cOm -cPN -cKx -cKx -cRR +iVt +jxz +vhe +xTt +szI +uNL +uNL +fZI cPM -clW +iuN cmH cmH -cqU -ctn -csf -cwo -csf +qQE +iva +mDC +uYz +mDC dTs dTs dTs dTs -cwo -cux +uYz +cZU cmH cmH cQK @@ -90305,8 +90311,8 @@ dMX dMN cqT cmH -cup -cUc +faq +sNz cWb clY clY @@ -90316,8 +90322,8 @@ coZ clZ clZ crW -cUc -clW +sNz +iuN cmH dLS wQZ @@ -90333,8 +90339,8 @@ dTs dTs dTs dTs -cwo -cux +uYz +cZU cQK cAL cqT @@ -90359,27 +90365,27 @@ acu (167,1,1) = {" acu afG -afI -akW -lNN -agL +nuj +wpX +lAB +wPY amn -afI -akW -lNN -agL +nuj +wpX +lAB +wPY afG -aqG -amr -aov -aoL -api +slL +qLh +joF +sQo +bXE aCr -auw -auP -awr -awr -axH +gQP +oKp +xSR +xSR +gHH aCr aqC aqC @@ -90397,15 +90403,15 @@ avG dTs dTs dTs -ayp +rnt aeE aeE -azI +dha aXW bkE aWB aZk -bAN +rhK aAj aeE ayD @@ -90414,9 +90420,9 @@ dTs dTs dTs dTs -ccJ -aFo -uXk +erc +eVL +dJM azT azT azT @@ -90433,104 +90439,104 @@ dTs dTs dTs dTs -agD +dph adA adA adA -aCG -aCM +eJX +mUK azT dTs dTs dTs -aJM +icE adA dTs dTs dTs cNW -bQo +xoi naH ozu ozu ozu xsS -hwc -hhj -cAh +eiQ +uQt +wGo dJT -dEY +cSS dib dib dib dLu dLO -ccR -cdA +sWC +wUK ceo cdw cfy dPY cdC chr -chZ -civ +whA +qQV ciV -cjx -dOo -cjx -cjx -cmB -cnN +rSW +iiG +rSW +rSW +igT +gRg cjy -cpI -dPt -dPI -dPI +rlc +oMd +twa +twa ctY -cvd -cvW -cwQ +wIV +nbD +xmI cxE -cyn -czc -czc -czc -cBs -cCv -cDv -cED -dRr -dRO -cHf -cHc +wVN +uAy +uAy +uAy +lsR +eQI +lzM +sdj +ujM +xWt +jjl +lSY cHL cHL cHL cHL cHL -cMU -cNH -dTc -cOm +wVW +jxz +vhe +xTt cJG cJG cJG cJG cMP -clW +iuN cmH cmH cmH cmH -cqU -cux -cqU -ctn -ctn +qQE +cZU +qQE +iva +iva dTs cSC -cxm +mZY cmH cmH cmH @@ -90539,8 +90545,8 @@ wQZ dOw cmH dIi -cup -cUc +faq +sNz cCH clZ clZ @@ -90550,24 +90556,24 @@ clZ cpR cET crW -cUc -clW +sNz +iuN cpa dMX wQZ dOw cmH cmH -ctm -cuw +wAi +kBM dTs dTs dTs dTs dTs dTs -cwo -cux +uYz +cZU csa dLS edC @@ -90576,7 +90582,7 @@ cmH cmH cmH cmH -edM +hNl dTs dTs dTs @@ -90593,21 +90599,21 @@ acu (168,1,1) = {" acu afG -afI -akW -akW -agL +nuj +wpX +wpX +wPY amn -afI -akW -akW -agL +nuj +wpX +wpX +wPY afG -aqH -amr -aot -akO -api +bFC +qLh +tyI +xAS +bXE aCr aCr aCr @@ -90631,15 +90637,15 @@ dTs dTs dTs dTs -ayp +rnt aeE aeE -ajX +gqt aXW blT aVZ aZk -bAN +rhK aeE aeE ayD @@ -90648,9 +90654,9 @@ dTs dTs dTs dTs -aFd -aFo -aFV +qXO +eVL +oND afb xEz azT @@ -90666,49 +90672,49 @@ dTs dTs dTs dTs -aEU -aEV +weP +sJp adA adA adA -aFr +nsL dTs dTs dTs dTs dTs aJx -aJM +icE adA dTs dTs -fyq -bQo +gJj +xoi ngo oAM oAM oAM vLd -hwc -oNS -cDP -dLj -cEW +eiQ +mJP +oHI +rCU +rwN dib dib dib dLu dLP dLU -cdA +wUK ceo cdw cfy cge cgL chr -dBO -civ +woz +qQV ciV cjy dOp @@ -90717,42 +90723,42 @@ cjy cjy cjy cjy -cpI -dPt -dPJ -crM +rlc +oMd +tgz +xlb ctY -cvb -cvb -cwQ +lcb +lcb +xmI cxE -cyo -czd -czJ -cAu -cBt -cCw +gop +oEX +dvd +tnY +nnx +tZk cDu -cEE -dRq -dRP -cHg -cHf +rXR +oOt +jxE +stO +jjl cHL cIK cIK cLm cHL -cMV -cNI -dTd -cOm +gtV +kaS +spN +xTt cPM -cKx -cRn -cRQ +uNL +wLo +bBC cPM -clW +iuN cmH cFK cmH @@ -90762,9 +90768,9 @@ cmH cmH cmH cmH -cqU -dco -cux +qQE +xSj +cZU cmH cmH cqT @@ -90772,9 +90778,9 @@ dMX dMN csb cmH -cUL -cwp -cUc +jNf +lzH +sNz cCH clZ clZ @@ -90784,23 +90790,23 @@ clZ clZ clZ crW -cUc -clW +sNz +iuN cpT dNa dOw csb cmH cmH -cqU -ctn -csf +qQE +iva +mDC dTs dTs dTs dTs dTs -cxm +mZY cmH csc dMX @@ -90810,7 +90816,7 @@ cmH cmH cmH cmH -ctm +wAi dTs dTs dTs @@ -90827,26 +90833,26 @@ acu (169,1,1) = {" acu afG -afJ -afQ -all -agM +pKH +mGD +waA +rKB afG -afJ -afQ -all -agM +pKH +mGD +waA +rKB afG -aqI -amr -aot -aiq -api +qZU +qLh +tyI +oyM +bXE akL dTs dTs dTs -aqB +ryz asb asb atS @@ -90873,7 +90879,7 @@ amM blT aVZ aZk -bAN +rhK aeE aeE ayD @@ -90882,51 +90888,51 @@ dTs dTs dTs dTs -aFd -aFo -aFV +qXO +eVL +oND azT azT aGt -aEU -aJV -aGi +weP +oUE +qRH dTs dTs -aJV -aJV +oUE +oUE dTs dTs dTs dTs dTs -aEV +sJp adA adA kmU adA -aCG +eJX dTs dTs dTs dTs aIv aJB -acZ +mKl adA dTs dTs -nue -sEL -hpw -hpw -hpw -hpw -hpw -kVU -dCt -cAg -dEY +jOv +eJP +pgI +pgI +pgI +pgI +pgI +fjQ +tXI +xoU +cSS dib dib dib @@ -90934,30 +90940,30 @@ dib dLu dJT dLV -cdA +wUK ceo cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciV -cjz +lnS dOq -ckS -clQ -cmC -cnO +kWT +whR +kvm +rvl cjy -dPl -dPu -dPL -csR +hvP +sQW +mOU +tLm ctY ctY -cvZ +pug ctY ctY cyp @@ -90968,8 +90974,8 @@ cyp cyp cyp cEG -dRq -dRQ +oOt +uIY cEG cHL cHL @@ -90977,16 +90983,16 @@ cJH cIK cLm cHL -cMW -cNH -dTd -cOm -cPN -cKx -cKx -cRR +pMB +jxz +spN +xTt +szI +uNL +uNL +fZI cPM -clW +iuN cmH cmH cmH @@ -91006,9 +91012,9 @@ dNa dOw cmH cmH -cup -cmM -coc +faq +vjp +yio cVC cmb cmb @@ -91018,8 +91024,8 @@ clZ clZ clZ crW -cmN -doQ +yfE +pnL cmH cqT cmH @@ -91028,13 +91034,13 @@ cmH cmH cmH cmH -cqU -csf +qQE +mDC dTs dTs dTs -ctn -cux +iva +cZU cmH cmH dNa @@ -91072,10 +91078,10 @@ afG afG afG akL -amr -aot -akO -api +qLh +tyI +xAS +bXE akL dTs dTs @@ -91107,7 +91113,7 @@ akc bkE aWB aZk -bAN +rhK aeE aAp ayD @@ -91116,42 +91122,42 @@ dTs dTs dTs dTs -aFd -qmU -hzg +qXO +nWe +oIl azT azT azT -agD +dph adA -aFr -aJV -aEV +nsL +oUE +sJp adA adA -aFr +nsL dTs dTs dTs -aEV +sJp adA adA adA adA -aCG -aCM +eJX +mUK dTs dTs dTs dTs aIv aJB -njF +gpz adA dTs dTs -fyq -bQs +gJj +rYb abk abo abU @@ -91159,8 +91165,8 @@ cBZ abo abk abk -cDQ -dEY +txE +cSS dib dib dib @@ -91168,59 +91174,59 @@ dib dLu dJT dLW -cdA +wUK ceo cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciW -cjA +gQV dOq cki clR cki -cnP +uxW coU -dPm -dPu -dPI -csS +rEC +sQW +twa +ddF cub -cve -cwS -cwS -cwS -cwS -cwS -cwS -cwS -cwS -cwS -cve -cEH -dRs -dRR -cHh +oBv +rzQ +rzQ +rzQ +rzQ +rzQ +rzQ +rzQ +rzQ +rzQ +oBv +lyq +oMp +eZh +qjA cHL cIK cIK cIK cIK cHL -cMX -cNH -dTc -cOJ +eoO +jxz +vhe +xRr cJG cJG cJG cJG cMP -clW +iuN cmH cmH cAL @@ -91240,9 +91246,9 @@ cqT cpa cmJ cmH -cup -cmN -coc +faq +yfE +yio cWb clY clY @@ -91252,8 +91258,8 @@ clZ cpR cET crW -cmN -cnW +yfE +rRR cmH cnR cmJ @@ -91263,9 +91269,9 @@ cmH cmH cmH cmH -cqU -ctn -cux +qQE +iva +cZU cmH cmH cmH @@ -91277,7 +91283,7 @@ cmH cmH cmH dIi -cpZ +rML dTs dTs dTs @@ -91306,10 +91312,10 @@ dTs dTs dTs akL -amr -aot -acQ -api +qLh +tyI +dre +bXE akL dTs dTs @@ -91341,7 +91347,7 @@ akc blT aVZ aZk -bAN +rhK aeE aeE ayD @@ -91350,13 +91356,13 @@ dTs dTs dTs dTs -aFe -qmU -hzg +qJR +nWe +oIl azT azT azT -agD +dph adA adA adA @@ -91365,14 +91371,14 @@ adA adA adA adA -aFr -aEV +nsL +sJp adA adA adA adA adA -aEX +mlN azT dTs dTs @@ -91380,12 +91386,12 @@ dTs dTs aIv aJB -uGU -aJM +kLD +icE dTs dTs dTs -fyq +gJj abk adi abU @@ -91394,67 +91400,67 @@ abO acA abk duy -dEY +cSS dib dib dib dib dLu dJT -dLY -cdB +liB +gpx cen cdw cfy iAf cgL chr -chZ -civ +whA +qQV ciW -cjB +qVE dOq dOq dOJ dOq dOq dPe -dPO -dPz -dPM -csU -cuc -dSo -dQm -dQq -dQu -dQw -dQB -dQw -dQP -dQw -dQw -dQw -dQw -dRt -cGp -cHi +jzy +dtB +xtn +oSL +tbs +tFO +uJQ +hJi +spI +tBw +eYy +tBw +nal +tBw +tBw +tBw +tBw +tCc +qrO +lHL cHM cIL cIL cIL cIL cHM -cMY -cNK -dTf -cOm +mpk +pGZ +gGU +xTt cPM -cKx -cRn -cRQ +uNL +wLo +bBC cPM -clW +iuN cmH cmH dLS @@ -91473,10 +91479,10 @@ cpa cmH cmH cmH -cUL -cwp -cmN -coc +jNf +lzH +yfE +yio cCH clZ clZ @@ -91486,8 +91492,8 @@ clZ clZ clZ crW -cmN -cnW +yfE +rRR cmH cmH cmH @@ -91511,8 +91517,8 @@ cmH cmH cmH cmH -cqU -csf +qQE +mDC dTs dTs dTs @@ -91540,10 +91546,10 @@ dTs dTs dTs akL -anY -aot -akO -aoX +eyD +tyI +xAS +hZg akL dTs dTs @@ -91565,7 +91571,7 @@ dTs dTs dTs dTs -ayp +rnt aeE aiV ajo @@ -91575,7 +91581,7 @@ aCQ blT aVZ aZk -bAN +rhK aeE aeE ayD @@ -91585,28 +91591,28 @@ dTs dTs dTs azT -aFo -aFV +eVL +oND aGk azT -aEU -aEV -agN -akr -akr -akr -akr -akr -akr -akr -akr -aEm +weP +sJp +thg +oJc +oJc +oJc +oJc +oJc +oJc +oJc +oJc +uOw adA adA adA adA adA -aEX +mlN dTs dTs dTs @@ -91614,8 +91620,8 @@ dTs dTs aIv aJB -aIy -adr +vVb +oGU adA dTs dTs @@ -91627,8 +91633,8 @@ abU abU abU abo -dEk -cEW +qrk +rwN dib dib dib @@ -91636,59 +91642,59 @@ dib dLu dJT dLV -cdA +wUK ceo cdw cfy cdC dPY chr -chZ -civ +whA +qQV ciW -cjC +nnD ckj ckU dOK dOV cmE cmE -dPo -cbB -crP -csV -cud -dQj -dQn -dQr -dQv -dQx -dQj -dQj -dQj -dQj -dQj -cud -cud -dRu -cGq -cxH +tFa +kzh +vFU +xaM +vEo +epm +opB +sMM +usZ +kxt +epm +epm +epm +epm +epm +vEo +vEo +mRr +vbS +xPd cHL cIK cIK cKC cIK cHL -cMZ -cNL -dTc -cOm -cPN -cKx -cKx -cRR +iqC +uuL +vhe +xTt +szI +uNL +uNL +fZI cPM -clW +iuN cmH csc dMX @@ -91707,10 +91713,10 @@ cmH cmH cmH cmH -cup -cmM +faq +vjp cto -coc +yio cCH clZ clZ @@ -91720,33 +91726,33 @@ clZ clZ clZ crW -cmN +yfE ddx -cWa -cWa -cWa -cWa -cWa -cWa -pOE -cWa -cWa -cWa -cWa -cWa -cWa -cWa -cWa -cWa -pOE -cWa -cWa -cWa -cWa -cWa -cGD +sBW +sBW +sBW +sBW +sBW +sBW +vLT +sBW +sBW +sBW +sBW +sBW +sBW +sBW +sBW +sBW +vLT +sBW +sBW +sBW +sBW +sBW +vQW cmJ -ctm +wAi dTs dTs dTs @@ -91774,10 +91780,10 @@ dTs dTs akL akL -amr -aot -akO -api +qLh +tyI +xAS +bXE akL akL dTs @@ -91809,46 +91815,46 @@ amM bkE aWB aZk -bAN +rhK mqM aeE -bgH +xir dTs dTs dTs dTs dTs azT -aFo -aFV +eVL +oND xEz azT -agD -agN -aGD -aGT -aGT -aGT -aGH -awv -aGT -fHJ -aGT -aEr -aEm +dph +thg +gwF +iga +iga +iga +vAC +pfm +iga +tlg +iga +koA +uOw adA eqo eqo -aCG -aCM +eJX +mUK dTs dTs dTs dTs aIv -aIF -aIG -acZ +cwv +gvy +mKl adA adA dTs @@ -91861,7 +91867,7 @@ abU acA abO abo -dEl +xEG dib dib dib @@ -91870,43 +91876,43 @@ dib dLu dJT dLV -cdA +wUK ceo cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciW -cjD -ckk -dOA -dOL -dOW -ckk +moe +gRu +mfM +iZL +tch +gRu coU -cpL -bZx -crM -csT +vLz +pPT +xlb +wOj cub -cvg -cwd -cwV -cxH -cvg -cze -cvg -cvg -cvg -cvg -cvg -cwd -dRv -dRS -cHj +uow +srT +oFh +xPd +uow +pBU +uow +uow +uow +uow +uow +srT +qen +vMX +rLu cHL cHL cHL @@ -91914,15 +91920,15 @@ cHL cHL cHL cNa -cNL -dTg +uuL +mez dTl cJG cJG cJG cMP cMP -clW +iuN cmH cmH dNa @@ -91934,17 +91940,17 @@ cmH cmH cmH cSC -csi -ctp +ocG +roJ cmH cmH dec cmH cGL -cup -cmN +faq +yfE cto -coc +yio cVC cmb cmb @@ -91954,33 +91960,33 @@ clZ cpR cET crW -cmU -cod -cod -dps -cod +jTU +iCc +iCc +kxb +iCc cto ddv -dbR -dbR -dbR -dbR -dbR +oNv +oNv +oNv +oNv +oNv dcD kIP ddv -dbR -dbR -dbR -dbR -dbR -dbR -dbR +oNv +oNv +oNv +oNv +oNv +oNv +oNv dcD kIP -cnW +rRR cmH -ctm +wAi dTs dTs dTs @@ -92007,12 +92013,12 @@ akL akL akL akL -anV -alD -aot -akO -aoZ -ajj +vGG +qEI +tyI +xAS +uGJ +bjA akL akL akL @@ -92033,7 +92039,7 @@ dTs dTs dTs dTs -ayp +rnt aeE aiX ajr @@ -92043,46 +92049,46 @@ akc blT aVZ aZk -bAN +rhK aeE aeE -bgH -axP +xir +wcK dTs dTs dTs dTs azT -aFo +eVL aFW -aEL -aEL -aGu -aGw -aGw -aGw -aGw -aGw -aGw -aGw -aGw -aGw -aHU -aGH -aEq +jsO +jsO +unn +rFS +rFS +rFS +rFS +rFS +rFS +rFS +rFS +rFS +lid +vAC +hXy adA eqo eqo -aEX +mlN azT dTs dTs dTs -aIx -aIx -aIG -aIy -adr +hEH +hEH +gvy +vVb +oGU adA adA dTs @@ -92095,24 +92101,24 @@ abU iJC aVE abo -dEm +wHn dib dib dib dib -dLt -dLz +wMm +feV dJT dLV -cdA +wUK ceo cdw cfy cge cgL chr -chZ -civ +whA +qQV ciV cjE cjG @@ -92121,14 +92127,14 @@ dOh dOX cjG cjy -cpI -bZx -crM -crM +rlc +pPT +xlb +xlb cue cue cuf -cwW +jcE cuf cue czf @@ -92137,26 +92143,26 @@ czf czf czf czf -cEI -dRy -dRT -cGB +rUH +hlz +tgA +uEk cHN -cIM -cIT -cIT -cLo +jNV +syF +syF +jCg cHN bbN -cNM -cLp -dTm +tyn +jMF +rso cHN cQB dlu cLu -cmc -cpW +jpr +mWm cmH cmH cqT @@ -92165,20 +92171,20 @@ cmH cmH cmH cmH -cpZ -ctp +rML +roJ dTs dTs dTs -csi -csi -ctp +ocG +ocG +roJ cmH -cUL -cwp -cmN +jNf +lzH +yfE cto -coc +yio cWb clY clY @@ -92193,16 +92199,16 @@ clY clY clY cFH -cmN -cnW +yfE +rRR cmH cmH cmH cmH cmH -dyl +qqO cto -ddw +nEY cmH cmH cmH @@ -92210,11 +92216,11 @@ cmH cmH cmH cmH -dyl +qqO cto -ddw +nEY cmH -cqU +qQE dTs dTs dTs @@ -92234,26 +92240,26 @@ dTs dTs dTs aah -anV -ajO -ajO -ajO -ajO -amG -ajO -alD -akO -aot -akO -akO -apf -ajO -ajO -ajO -ajO -alD -akO -api +vGG +nAI +nAI +nAI +nAI +xMh +nAI +qEI +xAS +tyI +xAS +xAS +iTr +nAI +nAI +nAI +nAI +qEI +xAS +bXE akL dTs dTs @@ -92267,7 +92273,7 @@ dTs dTs dTs dTs -ayp +rnt aeE aiX ajm @@ -92277,7 +92283,7 @@ akc blT aVZ aZk -bAN +rhK aeE aeE aeE @@ -92287,13 +92293,13 @@ dTs dTs dTs azT -aFp +thL aFX uNF -aEP -aEP -aGB -aGE +sZo +sZo +wOU +xyC aGc aGc aGc @@ -92302,23 +92308,23 @@ aGc aGc aGc aGc -aGw -aEz -aEW -aII +rFS +kwK +gcC +piz adA -aFr -aGi +nsL +qRH dTs dTs dTs -kiy -kiy -kiy -adr +jpe +jpe +jpe +oGU adA adA -aCG +eJX dTs dTs dTs @@ -92338,15 +92344,15 @@ dLu dJT dJT dLV -cdA +wUK ceo cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciV cjF dOh @@ -92355,10 +92361,10 @@ dOC dOh cnQ cjy -cpM -bZx -dPI -csR +jBQ +pPT +twa +tLm cue cvh cvi @@ -92366,53 +92372,53 @@ cwX cvi cyq czf -deI -cAv -cBu -cCx +sfB +byh +dli +wQe czf -dRj -dRy -dRT -cGB +vsv +hlz +tgA +uEk cHN -cIN -cJI -cKD -cLp +hur +pTf +hgl +jMF cHN bbN -dSY -cLp -dTn +lit +jMF +qLN cPO cQB cQB cLu -clW +iuN cmH cmH cmH cmH cmH -cpZ -csi -ctp -cpZ -cwu +rML +ocG +roJ +rML +mWi dTs dTs dTs dTs dTs dTs -ctq -ctp -cup -cmM +ipc +roJ +faq +vjp cto cto -coc +yio cCH clZ clZ @@ -92427,16 +92433,16 @@ clZ clZ clZ crW -cmN -cnW +yfE +rRR cmH duC duC duC duC -dXB -dXH -dXX +xYK +tzL +mYS dBr dBr dBr @@ -92444,9 +92450,9 @@ dBr dBr dBr dBr -dXB -dZk -dXX +xYK +htX +mYS dBr dBr dBr @@ -92468,26 +92474,26 @@ dTs dTs dTs akL -amr -aiq -akO -akO -akO -akO -akO -akO -akO -acG -aoJ -aoJ -aoJ -aoJ -aoJ -aoJ -aoJ -apT -apV -aoX +qLh +oyM +xAS +xAS +xAS +xAS +xAS +xAS +xAS +sSk +jzU +jzU +jzU +jzU +jzU +jzU +jzU +woU +fdj +hZg akL dTs dTs @@ -92511,48 +92517,48 @@ aCQ aaM aWB aZk -bAR -bAS -bAS -bAS -bAS -byY +jVn +sEM +sEM +sEM +sEM +oGn azT -aET -aET +vLi +vLi azT azT -qmU -srf +nWe +xsX adA adA -ajG -aGH -aGU -aGE +piL +vAC +huY +xyC aGc aGc -aGE -aGE -aGE -aGE -aGE -flu +xyC +xyC +xyC +xyC +xyC +wmk aGc -aFi +nLt adA adA -aFr -aJV -aJV -aJX +nsL +oUE +oUE +lPm adA adA adA kmU adA -aCG -aCM +eJX +mUK dTs dTs dTs @@ -92570,17 +92576,17 @@ dib dib dLu dJT -dLQ -dLZ -cdB +heZ +nkI +gpx cen cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciW cjG dOr @@ -92589,10 +92595,10 @@ dOM dOY cjG coU -cpI -bZx -crM -crM +rlc +pPT +xlb +xlb cuf cvi cwf @@ -92600,36 +92606,36 @@ cwY cxI cyr czf -czL +piX cBx cBx cBx -xYc -dRk -dRy -dRV -cGB +uKy +lTI +hlz +kBb +uEk cHO -cIO -cJJ -cJJ -cLp +nFm +kBj +kBj +jMF cHN -flq -cNM -cLp -dTo +eax +tyn +jMF +oAm cHN cQB cQB cPO -clW +iuN cmH cmH cmH cmH cmH -ctm +wAi dTs dTs dTs @@ -92641,12 +92647,12 @@ dTs dTs dTs dTs -cux -cup -cmN +cZU +faq +yfE dzt dzt -dHm +jpl cCH clZ clZ @@ -92661,29 +92667,29 @@ clZ clZ clZ crW -cmN -cnW +yfE +rRR cmH duC -oVs -dwF +ikt +ugj duC duC dzs duC dBr -dZR -eaA -dFf -tCn -eaG +rrh +mFv +mgp +rvN +seU dBr dBr dHh dBr dBr -dEr -dFf +lov +mgp dBr dTs dTs @@ -92702,26 +92708,26 @@ dTs dTs dTs akL -aaE -akO -akO -akO -akO -akO -akO -akO -aiq -akO -akO -akO -akO -akO -akO -akO -akO -aot -akO -apY +xQc +xAS +xAS +xAS +xAS +xAS +xAS +xAS +oyM +xAS +xAS +xAS +xAS +xAS +xAS +xAS +xAS +tyI +xAS +mzC akL dTs dTs @@ -92745,35 +92751,35 @@ amM blT aVZ aZk -bij -byZ -byZ -byZ -byZ -bAO -aEL -aEL -aEL -aEL -aEL +rGo +wkc +wkc +wkc +wkc +nLM +jsO +jsO +jsO +jsO +jsO aFY -aFi -adA -adA -ajJ -aGM -aGH -aGW -aHb -aHA -awv -aGT -aHJ -aHV -aEx -azO -aHe -aFi +nLt +adA +adA +tWZ +asV +vAC +eHU +vDN +ftz +pfm +iga +pVa +etS +uTI +idz +gPO +nLt adA aJi kmU @@ -92785,7 +92791,7 @@ adA adA adA adA -aEX +mlN dTs dTs dTs @@ -92801,20 +92807,20 @@ dEW dib dib dib -dLt -dLz +wMm +feV dJT dLO -ccR -cdA +sWC +wUK cdw cdw cfy cge cgL chr -chZ -civ +whA +qQV ciW cjG dOr @@ -92823,10 +92829,10 @@ aFJ cmF cjG coU -cpI -bZx -dPI -dPI +rlc +pPT +twa +twa cuf dCB dCB @@ -92834,35 +92840,35 @@ eYn cvi cvi czf -czM +oZs cAx cBx cBx -dyW -cIW -cEM -dRV -dSn +lIZ +gpG +egr +kBb +tFN cHO -cIP -cJK -cKD -cLp +xSy +wkk +hgl +jMF cHN -cNc -cNM -dTh -cOM +oHQ +tyn +lip +vDf cHN cQB cQB cLu -clW +iuN cmH cmH cmH sMi -cpZ +rML dTs dTs dTs @@ -92875,12 +92881,12 @@ dTs dTs dTs dTs -cmX -cwp -dvk +ltY +lzH +uFR dzt dzt -dHm +jpl cVC cmb cmb @@ -92895,29 +92901,29 @@ cVA sXR clZ crW -cmN -fsK +yfE +eoz cmH duC -dvD -dwF -dxf -jXy +rhO +ugj +gsc +kPA ltE -vAN +rFR dBo -dZR -eaA -dFf -eaA -eaH +rrh +mFv +mgp +mFv +tTV dBo -sYU +rHU gYP -hOv -dFU -dFf -dJh +dON +xJO +mgp +qHP dBr dTs dTs @@ -92936,26 +92942,26 @@ dTs dTs dTs akL -ahd -alE -akO -akO -aph -ajP -ajP -alE -akO -akO -akO -akO -aph -pvy -apv -ajP -alE -aot -aiq -aqa +iJG +laF +xAS +xAS +puO +gij +gij +laF +xAS +xAS +xAS +xAS +puO +qXx +wQR +gij +laF +tyI +oyM +jrm aqr dTs dTs @@ -92968,7 +92974,7 @@ dTs dTs dTs dTs -ayp +rnt aeE aeE aiX @@ -92979,35 +92985,35 @@ aCp blT aVZ aZk -bij -bzV -bzV -bzV -bzV -bAP -aEP -aEP -aEP -aEP -aEP +rGo +gXx +gXx +gXx +gXx +qbF +sZo +sZo +sZo +sZo +sZo aHx -aFi +nLt adA adA adA -ajJ -azO -azO -aHe -aHB -azO -azO -azO -azO -aEy +tWZ +idz +idz +gPO +vHo +idz +idz +idz +idz +qfd adA -aEZ -aFi +hql +nLt adA adA adA @@ -93019,7 +93025,7 @@ adA adA aKC adA -aEX +mlN azT dTs dTs @@ -93040,15 +93046,15 @@ dJT dJT dTs dTs -cdD +ymj cdw cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciW cjG dOr @@ -93057,10 +93063,10 @@ dOO cmF cjG coU -cpI -bZy -dPI -dPI +rlc +mWe +twa +twa cuf cvk cwg @@ -93068,35 +93074,35 @@ cvi cvi cys czf -czN +rLF cBx cBx cBx czf -cwd -cEM -dRT -dSn +srT +egr +tgA +tFN cHN -cIQ -cJL -cKE -cLp +dve +uyZ +cDS +jMF cHN cHO -cNM -dTi +tyn +pRQ cHO cHN cLu cLu cLu -clW +iuN cmH dIi cmH cmH -ctm +wAi dTs dTs dTs @@ -93108,50 +93114,50 @@ dTs dTs dTs dTs -cxm -cup -dvj +mZY +faq +vOQ dzt dzt dzt cto -cok -cok -cok -cok -cok -cok -cok -cok -cok -cvw +uzp +uzp +uzp +uzp +uzp +uzp +uzp +uzp +uzp +wRQ cCH cpR cET crW -cmN -cnW +yfE +rRR cmH duC -dvE -dwF +kuu +ugj duC -dXC +iAb dXy -dAD +cWL dBo -dZR -eaA -dFf -dZX -eaH +rrh +mFv +mgp +eUp +tTV dBo -dGC +fzk ebb -dZz +iAz dBr -xzc -dEt +tGj +pdV dBr dTs dTs @@ -93172,24 +93178,24 @@ dTs afP afP ajl -alI -amU +wpl +nJF ajl afP afP -ahd -ajP -ajP -ajP -ajP -ajk +iJG +gij +gij +gij +gij +ylR akL akL akL -amr -aot -akO -aqa +qLh +tyI +xAS +jrm aqr dqd dTs @@ -93202,7 +93208,7 @@ dTs dTs dTs dTs -ayp +rnt aeE aeE aiX @@ -93213,35 +93219,35 @@ akd aaM aWB aZk -bsP -aSi -aSi -aQq -aPP -byY +eac +gFT +gFT +pjR +tZI +oGn adA adA -aCG -oit +eJX +uxF adA -aEZ -aFi -aCG -agK +hql +nLt +eJX +oQF dTs dTs -agC +mob aKC -xsQ -aFi +eEb +nLt adA adA adA adA adA adA -aEZ -aFi +hql +nLt adA adA adA @@ -93253,10 +93259,10 @@ eqo eqo adA adA -aFr -aGi +nsL +qRH azT -aEU +weP adA dTs dTs @@ -93265,7 +93271,7 @@ dTs dTs dTs dTs -dEl +xEG dib dib dib @@ -93274,15 +93280,15 @@ dJT dTs dTs dTs -cdE +rtc cdw cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciW dOh dOh @@ -93291,10 +93297,10 @@ dOP cjG cjG coU -cpI -bZz -dPN -crM +rlc +wCD +epO +xlb cue cvl cvi @@ -93303,33 +93309,33 @@ cug cug czg czg -cBy -cBy -cCy +heo +heo +gOM czf -cEM -dRy -dRX -cHj +egr +hlz +xNX +rLu cHN cHO cHO -cKF +xCB cHO cHN -cIP -cNM -dTh -cLp -cPP +xSy +tyn +lip +jMF +vHE cLu -cmc -cpY -cpW +jpr +koo +mWm cmH cmH cmH -cpZ +rML dTs dTs dTs @@ -93342,47 +93348,47 @@ dTs dTs dTs dTs -cxm -cup -dvk +mZY +faq +uFR dzt -cod -cod -diP -dbR -dbR -dbR -dbR -dbR -dbR -dbR -dbR -dbR -cVz +iCc +iCc +fSd +oNv +oNv +oNv +oNv +oNv +oNv +oNv +oNv +oNv +gPt cCH clZ clZ crW -cmN -cnW +yfE +rRR cmH duC duC duC duC -dym +fZX dXy -eWn +kgh dBo -dZR -eaA -dFf -eaA -eaH +rrh +mFv +mgp +mFv +tTV dBo -dGC +fzk dYk -dHE +hHh dBr dBr dBr @@ -93404,12 +93410,12 @@ dTs dTs dTs afP -alK -akZ -alI -alI -akQ -anl +gpK +dmm +wpl +wpl +htE +xjW afP afP afP @@ -93420,10 +93426,10 @@ akL akL dTs akL -amr -aot -akO -aqa +qLh +tyI +xAS +jrm aqr dqd dTs @@ -93447,40 +93453,40 @@ aCQ blT aVZ aZk -byT +gbf bzS aOh -aPO +dmn dTs dTs adA adA -aEX -agD +mlN +dph adA -aEZ -aFi +hql +nLt dTs dTs dTs dTs -jxN +veN adA -aEZ -aFi +hql +nLt adA adA -agN -akr -akr -akr -aIA -aIQ -akr -akr -akr -akr -aJW +thg +oJc +oJc +oJc +cNq +eHJ +oJc +oJc +oJc +oJc +sTa adA adA eqo @@ -93488,18 +93494,18 @@ eqo aKD aIp adA -ufP -aJV -aEV +oNh +oUE +sJp adA adA -ajG -wbv -aHU +piL +qDs +lid dTs dTs -czT -dEX +eCW +qOh dib dib dib @@ -93508,15 +93514,15 @@ dJT dTs dTs dTs -cdF +hDc cdw dcO cfy cge cgL chr -chZ -civ +whA +qQV ciV dOi dOh @@ -93525,10 +93531,10 @@ dOh cjG cnQ cjy -cpM -bZA -dPO -csR +jBQ +jIt +jzy +tLm cug cug cug @@ -93541,29 +93547,29 @@ cAA cBz cCz czf -cEM -dRy -dRV -cHk +egr +hlz +kBb +wfM cHO -cIS -cIT -cKG -cIT -cMa -cNd -kEq -dTh -cLp -cPQ +iKw +syF +ntW +syF +dzp +gvv +iUt +lip +jMF +hTz cLu -clW +iuN cmH cmH cmH cmH -cpZ -cwu +rML +mWi dTs dTs dTs @@ -93576,13 +93582,13 @@ dTs dTs dTs dTs -cux -cup -dvm -dzy -cko -cko -clW +cZU +faq +upJ +gfv +jPo +jPo +iuN cmH cmH cmH @@ -93592,34 +93598,34 @@ cmH cmH cmH dIi -cBJ +hTX cCH clZ clZ crW -cmN -cnW +yfE +rRR cmH duC -iuY -dwF +oGF +ugj duC -dYI +eqq dwI -dZf +nkO dBr -dZS -dFf -dFf -eaz -eaz +wNF +mgp +mgp +xYD +xYD dBr -dGC +fzk dYk -dHD +rLH dBr -dEr -dFf +lov +mgp dBr dTs dTs @@ -93638,15 +93644,15 @@ dTs dTs dTs afP -xRP -aiI -alI -alI -ajY -ann -alt -alt -akZ +uNw +hbh +wpl +wpl +lNO +kFY +hSd +hSd +dmm afP dTs dTs @@ -93654,10 +93660,10 @@ dTs dTs dTs akL -amr -aot -akO -aqa +qLh +tyI +xAS +jrm aqr dTs dTs @@ -93681,41 +93687,41 @@ aaC abD aXC aBa -byT +gbf aOh -aRM +nda dTs dTs dTs dTs dTs -aEX +mlN dTs adA -aEZ -aFi +hql +nLt dTs dTs dTs dTs dTs adA -aEZ -aFi +hql +nLt adA -agN -aGD -aGH -aGH -aGH -aIB -aIR -aGH -aGH -aGH -aGH -aEr -aEm +thg +gwF +vAC +vAC +vAC +epn +qch +vAC +vAC +vAC +vAC +koA +uOw adA adA lYv @@ -93723,17 +93729,17 @@ aIu aFl aFP aHC -aLq -dif -dif -akr -aGD -aTr -aHA -aGH -ilq -cAg -dEY +mlk +rNZ +rNZ +oJc +gwF +hTu +ftz +vAC +dnY +xoU +cSS dib dib dib @@ -93743,14 +93749,14 @@ dTs dTs dTs dTs -cdE +rtc cdw cfy cdC cdC chr -chZ -civ +whA +qQV ciV ciV ciW @@ -93760,8 +93766,8 @@ ciW ciV ciV cpH -bZA -aRp +jIt +nXg cpH cuh dTs @@ -93775,28 +93781,28 @@ cAB cAB cAB cAB -cEM -dRz -dRY -dSo -cHP -dSB -dSB -dSF -dSB -cIT -dSU -dSZ -dTj -cLp -cPQ +egr +uug +mPC +tFO +rWl +fNr +fNr +lkN +fNr +syF +bCC +uYH +oGP +jMF +hTz cQC -clW +iuN cmH cmH cTp cmH -ctm +wAi dTs dTs dTs @@ -93812,8 +93818,8 @@ dTs dTs daO dbK -dfm -dzA +hal +emc dbK cZu cZu @@ -93826,34 +93832,34 @@ dbK dbK cmH cmH -cBJ +hTX hIO cpR cET crW -cmN -cnW +yfE +rRR cmH duC -dvD -dwF -dxf -dym +rhO +ugj +gsc +fZX dXy -dXZ -dFU -dFf -dFf -dFf -dFf -dFf -dFU -dGC +lYg +xJO +mgp +mgp +mgp +mgp +mgp +xJO +fzk jJa -dHD -dFU -dFf -dJh +rLH +xJO +mgp +qHP dBr dTs dTs @@ -93872,15 +93878,15 @@ dTs dTs dTs afP -alL -aiI -als -alI -ajY -anH -ahJ -anI -aiI +uJb +hbh +okZ +wpl +lNO +mJK +fCb +oOM +hbh afP dTs dTs @@ -93888,10 +93894,10 @@ dTs dTs dTs akL -amr -aot -akO -aqa +qLh +tyI +xAS +jrm aqr dqd dTs @@ -93907,16 +93913,16 @@ dTs dTs aiv aiG -ajd -bgC -bgC -bgC -bgC -bzR -byZ -byZ +tIx +jJs +jJs +jJs +jJs +hNU +wkc +wkc aYe -aRM +nda dTs dTs dTs @@ -93926,19 +93932,19 @@ dTs dTs dTs adA -aEZ -aFi -aEX +hql +nLt +mlN dTs dTs dTs dTs adA -aEZ -aFi +hql +nLt adA -ajG -aGH +piL +vAC akV azU azU @@ -93948,8 +93954,8 @@ azU azU azU aDZ -aGH -wQM +vAC +xXY eqo adA aJS @@ -93957,17 +93963,17 @@ aFl kiP aHI aKD -aLr -bmA -bmA -bmA -bmA -aHb +jOm +txm +txm +txm +txm +vDN aGc -aGw -pWn -cAh -dEY +rFS +waj +wGo +cSS dib dib dib @@ -93977,25 +93983,25 @@ dTs dTs dTs dTs -caH -aPy +wTW +jhn aPz cdC cdC chr -aOr -arv -auY -auY -auY -auY -auY -auY -auY -auY -aMV -cac -aRq +jxb +gpb +ums +ums +ums +ums +ums +ums +ums +ums +sxz +hTP +lrw cdw dTs dTs @@ -94005,32 +94011,32 @@ dTs dTs dTs czO -cpx -wFv -wFv +nkc +hCQ +hCQ cDy -cEM -dRA -dRZ -dQj -cHQ -cHQ -cHQ -cKH -dSH -dSH -dSV -dTa -dTk -cOO -cPR +egr +oYG +hiu +epm +smw +smw +smw +llW +teN +teN +gcS +xNV +tAB +xVc +ouL cQC -clW +iuN cmH cmJ cmH cmH -cqU +qQE dTs dTs dTs @@ -94045,49 +94051,49 @@ dTs dTs dTs daO -deB -iTi -iTi -tAG -tAG -tAG -tAG -deB -dSq -tAG -tAG -dlN +kEr +xVR +xVR +qdK +qdK +qdK +qdK +kEr +xew +qdK +qdK +hsA dbK cmH cmH -cBJ +hTX cCH clZ clZ crW -cmN -cnW +yfE +rRR cmH duC -dvE -aVL +kuu +iYt duC -dym +fZX dXI -dAD +cWL dBr -dZT -dFf -dFf -dFf -dFf +gNN +mgp +mgp +mgp +mgp dBr -eaP +gwA dZm -dHD +rLH dBr -xzc -dEt +tGj +pdV dBr dTs dTs @@ -94106,15 +94112,15 @@ afP afP afP afP -alM -aiI -alI -alI -ajY -anH -ahJ -anH -aiI +wUE +hbh +wpl +wpl +lNO +mJK +fCb +mJK +hbh afP dTs dTs @@ -94122,10 +94128,10 @@ dTs dTs dTs akL -amr -aot -akO -aqa +qLh +tyI +xAS +jrm aqr dTs dTs @@ -94144,12 +94150,12 @@ cYv cgR ajs cZt -cZE -cZE -cZE -cZE -cZE -alW +mwW +mwW +mwW +mwW +mwW +pkV dTs dTs dTs @@ -94158,32 +94164,32 @@ dTs dTs dTs dTs -akq -agC -aEZ -aFi -aEX +uPI +mob +hql +nLt +mlN dTs dTs dTs dTs adA -xsQ -aFi +eEb +nLt adA -ajG -aGH +piL +vAC alj aIl -aIr +pEr azT aIU -aIX +upe aJj azT aEf -aGH -wQM +vAC +xXY eqo adA aFl @@ -94191,33 +94197,33 @@ kiP kiP kiP aFP -adK +rUO aMf aMf bmB aMf -aHb +vDN aGc -aGE -fRy -cDP -dEY +xyC +sOr +oHI +cSS dib dib dib dLu dJT dLO -aOu +cXC dTs dTs -caH -ciU +wTW +eWu cfw cge cgL chr -ctM +vsI cdw cdw cdw @@ -94227,9 +94233,9 @@ cdw cdw cdw cdw -aFL -cau -aRs +iLC +kzN +tsk cdw dTs dTs @@ -94239,32 +94245,32 @@ dTs dTs dTs czO -cAD -cBB -cCA +emw +nyq +xNF cDy -cEJ -dRy -dRT -cxH +srI +hlz +tgA +xPd cHO -cIU -cJM -cKI -cJM -cJM -cNf -cJM -cJM -dTp -cPS +iEo +tZD +xXR +tZD +tZD +dui +tZD +tZD +kFs +rSC cQC -clW +iuN cmH cmH cmH cmH -cpZ +rML dTs dTs dTs @@ -94279,46 +94285,46 @@ dTs dao dao dao -dcw -dqt -dqt -cWp -cWp -cWp -dgY -dgY -cWp -cWp -cWp -tAG +gzw +fol +fol +tuk +tuk +tuk +owR +owR +tuk +tuk +tuk +qdK cZu cmH cmH -cBJ +hTX cCH clZ clZ crW -cmN -cnW +yfE +rRR cmH duC duC duC duC -dyn +xfj dXJ -dAD +cWL dBo -dZR -dZX -dFf -eaA -eaA +rrh +eUp +mgp +mFv +mFv dBo -dYX +luz dZn -dHD +rLH dBr dBr dBr @@ -94337,18 +94343,18 @@ acu (184,1,1) = {" acu afP -ajQ -akX -alm -alN -aiI -alI -alI -ajY -anI -ahJ -anH -anZ +fGU +lyx +tuj +rmc +hbh +wpl +wpl +lNO +oOM +fCb +mJK +ngb afP afP afP @@ -94356,10 +94362,10 @@ afP afP afP afP -amr -aot -akO -aqa +qLh +tyI +xAS +jrm aqr dTs dTs @@ -94372,17 +94378,17 @@ dTs dTs dTs dTs -aPg +mFb cov cYx aOh dTs dTs -aEp +qDz qlG qlG qlG -iCE +oIB dTs dTs dTs @@ -94392,32 +94398,32 @@ dTs dTs dTs dTs -aEU -aEV -aEZ -aFi -aFr -aGi +weP +sJp +hql +nLt +nsL +qRH dTs dTs -aEV +sJp adA -aEZ -aFi +hql +nLt adA -ajG -aGH +piL +vAC alj -aIm -aIs +oLs +gns azT -aIV -aIY -aJk -aJC +xED +fKi +oxy +qgh aEf -aGH -aEq +vAC +hXy adA adA aFn @@ -94425,33 +94431,33 @@ kiP kiP kiP aHI -adK +rUO aMf aMg aTq aUO -aHb -baX -bjQ -ilq -cDQ -dEY +vDN +vFT +oNw +dnY +txE +cSS dib dib dib -dLv -dLA +rph +eJG dLP adR -aOu -ccR -xzm -ciU +cXC +sWC +iav +eWu cfw cdC cdC chr -ctM +vsI cdw cdw aRK @@ -94462,8 +94468,8 @@ aMz aMz aMz cdw -cav -aRs +fdb +tsk cdw dTs dTs @@ -94473,33 +94479,33 @@ dTs dTs dTs czO -cAE -cBC -cCA -cDz -dRk -dRy -dSa -cGB +tYV +frc +xNF +vsp +lTI +hlz +oLR +uEk cHL cHL cHL cHL -cLq -cMb -cMb -cMb -cMb -cOQ -cPT +nNk +vQv +vQv +vQv +vQv +xtj +vET cQC -clW +iuN cmH cmH cmH cmH -cqU -dTv +qQE +oBM dTs dTs dTs @@ -94513,49 +94519,49 @@ dao dao dbw dao -dcw -dqt -dqt -dxR -dyS -dAf -dgY -dgY -dAk -dBd -dWB -tAG +gzw +fol +fol +tty +mBX +jVu +owR +owR +how +fCO +iDL +qdK cZu cmH cmJ -cBJ +hTX cCH cpR cET crW -jAS -cnW +oYj +rRR cmH duC -oVs -dwF +ikt +ugj duC -nIz +rXV dXJ -dAD +cWL dBo -dZR -eaA -dFf -eaC -eaC +rrh +mFv +mgp +uzW +uzW dBo -dGC +fzk dZn -ebj +qic dBr -dEr -dFf +lov +mgp dBr dTs dTs @@ -94571,29 +94577,29 @@ acu (185,1,1) = {" acu afP -ajV -akY -aln -aln -aiE -amH -alI -ahe -aln -anL -aln -aiE +mxI +qiR +oXb +oXb +jhe +hSA +wpl +utw +oXb +jbD +oXb +jhe afP -aoM -ape -ape -ape -apw +xwy +jML +jML +jML +ugn afP -amr -aot -akO -aqb +qLh +tyI +xAS +lfx akL dTs dTs @@ -94605,19 +94611,19 @@ dTs dTs dTs dTs -aWA -aOg +kqV +psH cov cYx aOh dTs -aJM +icE adA adA aeo adA -aFr -aGi +nsL +qRH dTs dTs dTs @@ -94626,32 +94632,32 @@ dTs dTs dTs dTs -aDY +nwX adA -aEZ -aFi +hql +nLt kmU -aFr -aEV +nsL +sJp adA adA adA -aEZ -aFi +hql +nLt adA -ajG -aGH +piL +vAC alj -aIn -aIt -aIC +jGP +rXs +tIW azT -aIZ -aJl -aJD +exr +vYH +jXw aEf -aGH -aEq +vAC +hXy adA adA aIk @@ -94659,17 +94665,17 @@ aFn aFR kiP aHI -adK +rUO aMf aMo aMg aUO -aZI -ouK -ilq -bxU -cDR -cEW +uJJ +vAr +dnY +sSs +wwd +rwN dib dib dib @@ -94678,26 +94684,26 @@ dLu adC dLP adR -ccR -caH -aKv +sWC +wTW +rIM cfw cdC cdC chr -ctM +vsI cdw cdw cdw cdw aMz -aMA -aNg -aNw +sKQ +mip +vUj aMz cdw -cav -aRs +fdb +tsk cdw dTs dTs @@ -94707,33 +94713,33 @@ dTs dTs dTs czO -cpy -cBD -cCC +lKO +ufI +bFj cDy -cwd -dRy -dRT -cGB +srT +hlz +tgA +uEk cub -cIV -cIV +prW +prW cHL -cLr -cMb -cMb -cMb -cOs -cOR -cPU +iiC +vQv +vQv +vQv +itr +dCi +nQI cLu -clW +iuN cmH cmH aJA cmH cmH -cqU +qQE dTs dTs dTs @@ -94747,49 +94753,49 @@ dao dbw dbw ded -dcw -dvn -dqs -dAg -dFh -dHo -dDK -dDK -dAk -cYK -dHS -tAG +gzw +nLs +fkl +iDq +pRU +cVG +ugS +ugS +how +qow +qAE +qdK cZu cmH cmH -cBJ +hTX cCH clZ clZ crW -cmN -cnW +yfE +rRR cmH duC -dvD -dwF -dxf -dym +rhO +ugj +gsc +fZX dXJ -dAD +cWL dBo -dZR -eaA -dFf -fsP -eaC +rrh +mFv +mgp +vVs +uzW dBo -dGC +fzk dZn -dHD -dFU -dFf -dJh +rLH +xJO +mgp +qHP dBr dTs dTs @@ -94805,28 +94811,28 @@ acu (186,1,1) = {" acu afP -ajY -aiI -alI -alI -alI -alI -alI -isZ -abH -alI -alI -alI -aoI -aoN +lNO +hbh +wpl +wpl +wpl +wpl +wpl +vjM +eQa +wpl +wpl +wpl +wOX +hlk rEa apk apg -apy +opf afP akM -aot -apX +tyI +scH akM akL dTs @@ -94846,12 +94852,12 @@ cYx dTs dTs aJx -aJM +icE adA aGZ adA adA -aEX +mlN dTs dTs dTs @@ -94859,33 +94865,33 @@ dTs dTs dTs azT -aEU -aEV +weP +sJp adA -aEZ +hql aGl -aEW -aEW -aEW -aEW -aEW -aEW +gcC +gcC +gcC +gcC +gcC +gcC aFa -aFi +nLt adA -ajG -aGH +piL +vAC alj azT azT azT azT azT -aJn -aJE +nhq +oWI aEf -aGH -aEq +vAC +hXy adA eqo wYO @@ -94893,45 +94899,45 @@ adA aHz aFn aHE -adK +rUO aMf aMp aMf aMf -aZI -ouK -bxS -bxV -cEW +uJJ +vAr +hpx +oPX +rwN dib dib dib dib dib -dLv -dLA +rph +eJG dJT dLO -ccR -caH -aKv +sWC +wTW +rIM cfw cge cgL chr -cZJ -aQO -aFH +mWz +qya +egj coJ coI aMz -aMB +vor aNh aNh aMz -cek -cax -aRz +epP +sPo +kIi dTs dTs dTs @@ -94945,30 +94951,30 @@ cAG cAG cAG cAG -cEM -dRy -cGt -cGB -cHR -cIW -cIW +egr +hlz +uas +uEk +xrq +gpG +gpG cHL cHO -cMc -dSW +qmw +xwX cHO cLu cLu cLu cLu -clW +iuN cmH cmH cmH cmH cmH cmH -ctm +wAi dTs dTs dTs @@ -94982,48 +94988,48 @@ dcp dbw dao dbK -dfn -dqs -dAG -dFk -dAG -dDK -dDK -dFk -dFk -dgb -tAG +ygk +fkl +gEX +cOB +gEX +ugS +ugS +cOB +cOB +lQU +qdK dbK cmH cmH -cBJ +hTX cCH sXR clZ crW -cmN -cnW +yfE +rRR cmH duC duC -dwF +ugj duC -dym +fZX dXJ -dAD +cWL dBo -dZR -eaA -dFf -eaA -eaA +rrh +mFv +mgp +mFv +mFv dBo -dGC +fzk dHk -dZz +iAz dBr -xzc -dEt +tGj +pdV dBr dTs dTs @@ -95039,29 +95045,29 @@ acu (187,1,1) = {" acu afP -ajY -aiI -als -alZ -alI -amI -amI -alI -alI -alI -alI -alI -aoI -aoN +lNO +hbh +okZ +olV +wpl +fyS +fyS +wpl +wpl +wpl +wpl +wpl +wOX +hlk apk apg apk -apy +opf afP -amx -are -amz -apj +peT +lAK +kjn +goU apW dTs dTs @@ -95080,46 +95086,46 @@ cYx dTs dTs aJB -acZ +mKl adA adA kmU aFN -aFr +nsL dTs dTs dTs dTs dTs dTs -aEU -aEV +weP +sJp adA adA -aEZ +hql aFf -aEP -aEP -fHr -aEP -aEP -aEP +sZo +sZo +rcL +sZo +sZo +sZo aHx -aFi +nLt adA -ajG -aGH +piL +vAC alj aIo azT azT azT aJa -aJo +sCt aJF aEf -aGH -aEq +vAC +hXy adA eqo eqo @@ -95127,14 +95133,14 @@ adA adA aHz aHG -adK +rUO aMf aMq aMg aMg -aTr -ouK -dEl +hTu +vAr +xEG dib dib dib @@ -95146,26 +95152,26 @@ dib dLu dJT dLO -ccR -caH -ciU +sWC +wTW +eWu cfw cdC cdC cht ccZ cix -ctM +vsI boG dxO aMz -aMG +iEx aNh aNh aNI -aNZ +dSJ caK -civ +qQV dTs dTs dTs @@ -95175,35 +95181,35 @@ dTs dTs dTs czP -cpz -nSN -nSN +tvS +rTz +rTz cDA -cEM -dRy -dRT -cGB +egr +hlz +tgA +uEk cub -cIX -cJN +nUV +eKo cHL -cLs -cLt -cLs -cLt +izz +sgm +izz +sgm cLu dTs dTs -cmc -cpW +jpr +mWm cmH cmH cEV cmH cmH cmH -cqU -csf +qQE +mDC dTs dTs dTs @@ -95215,36 +95221,36 @@ dao dcq dbw dao -deC -dcw -dzB -dAL -dgc -dHp -dIq -dJW -dDK -dgY -dDK -tAG +vYX +gzw +nOo +vmN +hmH +nWr +fBL +wWa +ugS +owR +ugS +qdK cZu cmH cmH -cBJ +hTX cCH cpR cET crW -cmN -cnW +yfE +rRR cmH duC duC duC duC -dym +fZX dXJ -dXY +mbf dBr dBr dBr @@ -95252,9 +95258,9 @@ dBr dBr dBr dBr -eaQ +uep dZn -dHE +hHh dIk dIk dIk @@ -95273,29 +95279,29 @@ acu (188,1,1) = {" acu afP -ajY -aiI -alI -alI -amo -dCo -amV -amo -alI -alI -akQ -akZ +lNO +hbh +wpl +wpl +sHy +tkh +tgd +sHy +wpl +wpl +htE +dmm afP -aoO -apq -apq -apq -apS +hfk +nyF +nyF +nyF +tNf afP -amx -are -amz -apj +peT +lAK +kjn +goU apW dTs dTs @@ -95314,19 +95320,19 @@ cYx dTs aIv aJB -acZ +mKl adA adA adA adA adA -aEX +mlN dTs dTs dTs dTs dTs -agD +dph adA adA wYO @@ -95338,22 +95344,22 @@ sXh adA adA aGY -aEZ -tai +hql +seb adA -ajG -aGH +piL +vAC alj azT azT azT azT -aJb -aJp -aJG -aJN -aGH -aEq +lMb +drD +cPA +nni +vAC +hXy adA adA adA @@ -95361,14 +95367,14 @@ adA adA adA adA -adK +rUO aUO aMf aMf aMf -aTr -ouK -dEl +hTu +vAr +xEG dib dib dib @@ -95380,27 +95386,27 @@ dib dLu dJT dLO -ccP -auv -civ +wPn +wEY +qQV cfw cdC cdC chu cdC chr -ctM +vsI btY dBh aMz -aMK +rLv aNi aNh aNh -cib +ikf caK -civ -cdA +qQV +wUK dTs dTs dTs @@ -95409,27 +95415,27 @@ dTs dTs dTs czP -cAI -cBF -cBG +mFX +jUv +jUn cDA -cEJ -cEM -dRT -cHj +srI +egr +tgA +rLu cHL cHL cHL cHL -cLt -cLs -cLt -cLs +sgm +izz +sgm +izz cLu dTs dTs dTs -ctp +roJ cmH cmH cFK @@ -95437,7 +95443,7 @@ cmH cmH cUK cmH -ctm +wAi dTs dTs dTs @@ -95449,52 +95455,52 @@ dHK dbw dbw dao -deD -dcw -dzC -cWp -cWp -dHl -dJi -dgY -dHl -dHl -dHl -tAG +vBP +gzw +lTO +tuk +tuk +gxt +fjH +owR +gxt +gxt +gxt +qdK cZu cmH cmH -cBJ +hTX cCH dWZ dXf crW -cmN -cnW +yfE +rRR cmH cmH cmH duC -dxg -dyo +gpd +lHV dXK -dYa +tJV dBo -dZU -dZY -nlU -dEu -dDJ -dDJ -dGE +ihz +eoZ +tfG +tsl +qyC +qyC +lhH dZn dCb dIl -dJm -dBC -dJX -dIJ -ebp +xha +hnK +nyh +xRo +enD dIk dTs dTs @@ -95507,18 +95513,18 @@ acu (189,1,1) = {" acu afP -ajY -aiI -alI -alI -amo -amo -amo -iIB -alI -alI -ajY -anZ +lNO +hbh +wpl +wpl +sHy +sHy +sHy +twW +wpl +wpl +lNO +ngb afP afP apr @@ -95526,10 +95532,10 @@ apr apr afP afP -amx -are -aoq -apj +peT +lAK +lHX +goU apW dTs dTs @@ -95548,61 +95554,61 @@ cYx dTs aIv aJB -njF +gpz adA adA adA adA -aCG -aCM +eJX +mUK dTs dTs dTs dTs dTs -agD -aEY -aEW -qCr +dph +xaU +gcC +eAo mDA aGn adA -aCG -kge +eJX +doc adA aGV adA -aEZ -aFi +hql +nLt adA -ajG -aGH +piL +vAC alj azT azT azT azT azT -aJq -aJJ -aJO -aGH -wQM +igU +rAi +gpq +vAC +xXY eqo -aCG -agC +eJX +mob adA adA kmU adA -adK +rUO aMf aMg aMf bmB -aTr -pAE -bxT +hTu +omU +kIC bxW diM dFR @@ -95614,28 +95620,28 @@ dib dLu dJT dLO -ccQ -auX -civ +tim +gQM +qQV cfw cge cgL chu cdC chr -ctM +vsI bPN clF aMz -aMX +eZR aNh aNh aMz -caH -cbD -civ -cdA -cdv +wTW +tkv +qQV +wUK +eBj dTs dTs dTs @@ -95643,36 +95649,36 @@ dTs dTs dTs czP -cAJ -cBG -cBG -cDB -cIW -cEM -dSb -cGB +iOj +jUn +jUn +rsw +gpG +egr +fMg +uEk cub -cIV -cIV +prW +prW cHL -cLs -cLt -cLs -cLt +izz +sgm +izz +sgm cLu dTs dTs dTs dTs -ctp +roJ cmH cmH cmH cmH cmH cmH -cqU -csf +qQE +mDC dTs dTs dTs @@ -95683,33 +95689,33 @@ dbw dbw uyn dao -deE -dcw -dzC -dBe -dGa -dHI -dDK -dDK -dHo -dVo -cYK -tAG +oFF +gzw +lTO +rfc +iif +mOl +ugS +ugS +cVG +mVk +qow +qdK cZu cmH -cUL -dfx +jNf +qGn cWe dXa dXa cFJ -cmN -cnX -xkF -cpb +yfE +hXD +wtv +hrZ cmH dim -dtq +jxu dwI dXK dXy @@ -95723,12 +95729,12 @@ dYk dYk ebc dYk -dZE -dZG -dZG -dZG -dIr -dKn +dEL +juA +juA +juA +loS +sDp dIk dTs dTs @@ -95741,29 +95747,29 @@ acu (190,1,1) = {" acu afP -ajY -aiI -alI -alI -amp -alI -amp -alI -nyN -alI -ahe -aiE +lNO +hbh +wpl +wpl +veY +wpl +veY +wpl +waL +wpl +utw +jhe afP -aoM -ape -ape -ape -apw +xwy +jML +jML +jML +ugn afP -amx -are -amz -anD +peT +lAK +kjn +uOo aIw aIw aIw @@ -95780,37 +95786,37 @@ dTs cov cYx dTs -aIF -aDL -adr +cwv +mkW +oGU adA aFb adA adA -aEB -aGi +rGY +qRH dTs dTs dTs dTs dTs -aEV -aEZ +sJp +hql aFf -aEP +sZo aGf aGo adA -aEX -akq -agC +mlN +uPI +mob adA aGZ -aEZ +hql aGl -mZj -aHH -aHK +hNA +wJL +efu aHZ azT azT @@ -95818,27 +95824,27 @@ aIo azT aJg azT -aJK -aJP -aGH -wQM +pSE +wTN +vAC +xXY eqo -aEX -akq -agC +mlN +uPI +mob adA adA adA -adK +rUO aMf aMf aMf aTq -aTr -pAE -ilq -ilq -ilq +hTu +omU +dnY +dnY +dnY dEW dib dib @@ -95846,29 +95852,29 @@ dib dib dib dLu -dLQ -aeh -ccR -caH -ciU +heZ +iDj +sWC +wTW +eWu cfw cdC cdC chu cdC chr -ctM +vsI cdw coI aMz -aNb +fmS aNh aNh aMz aMz -cbD -civ -cdA +tkv +qQV +wUK cdw dTs dTs @@ -95877,36 +95883,36 @@ dTs dTs dTs czP -cAC -cBH -cCE +ouh +uZK +iUj cDA -cwd -dRC -dSc -cGB -cHS -cIW -cIW +srT +dYW +pyI +uEk +mRp +gpG +gpG cHL -cLt -cLs -cLt -cLs +sgm +izz +sgm +izz cLu dTs dTs dTs dTs -ctq -ctp +ipc +roJ cmH cmH cmH cmH cmH cmH -ctm +wAi dTs dTs dTs @@ -95917,33 +95923,33 @@ dbw dbw tYS dao -deF -dqt -dzC -dxT -dGD -mZa -dDK -dJi -dSr -dWA -dHo -dWO +qPo +fol +lTO +pzY +rxJ +lvq +ugS +fjH +ktX +qfv +cVG +oek dbK dbK -cko -cUc +jPo +sNz dWV dXb cXt crX -cmU -cod -cvw -clW +jTU +iCc +wRQ +iuN cmH dim -dxh +rMn dYK dzv dYb @@ -95957,12 +95963,12 @@ eaK dYM dZp dFg -dIn -dIn -dZI -dZH -dJU -ebq +pEM +pEM +jXu +glZ +vnC +bqB dIk dTs dTs @@ -95975,34 +95981,34 @@ acu (191,1,1) = {" acu afP -ajZ -aiI -ajn -alI -alI -als -alI -alI -alI -alI -alI -alI -aoI -aoN +xZq +hbh +xjX +wpl +wpl +okZ +wpl +wpl +wpl +wpl +wpl +wpl +wOX +hlk apg apk rEa -apy +opf afP -amx -are -amz -aiH +peT +lAK +kjn +lSI aIw -asM -atG -asM -avQ +mrJ +xHy +mrJ +uvd aIw dTs dTs @@ -96014,37 +96020,37 @@ dTs ivd xFA dTs -ajB -acZ +tcC +mKl akb adA aFT aGr adA kmU -aFr -aGi +nsL +qRH dTs dTs dTs -agD +dph adA -aEZ -aFi +hql +nLt adA adA -aCG +eJX dTs dTs azT -agD +dph adA adA -aHy -aEP -aEP -aGB -aHM +quc +sZo +sZo +wOU +pVh aIj azT azT @@ -96054,25 +96060,25 @@ azT azT azT aEf -aGH -aEq -aCG -aCM +vAC +hXy +eJX +mUK dTs dTs -agC +mob adA adA -adK +rUO ble aMg aMf aMf -aTr +hTu aGc -aGw -aHU -ilq +rFS +lid +dnY dGu dib dib @@ -96081,31 +96087,31 @@ dib dib dLu dLO -aOu -aeG -caH -ciU +cXC +lPt +wTW +eWu cfw cdC cdC chu cdC chr -ctM +vsI cdw coJ aMz -aNc +mDF aNk aNh -aNQ +vtV aNC -cbD -civ -cdA +tkv +qQV +wUK cdw -aOG -ruJ +hBi +wrV dTs dTs dTs @@ -96115,18 +96121,18 @@ czP czP czP cAG -cEM -cEM -dSc -cGB +egr +egr +pyI +uEk cub -cIX -cJN +nUV +eKo cHL -cLs -cLt -cLs -cLt +izz +sgm +izz +sgm cLu dTs dTs @@ -96134,13 +96140,13 @@ dTs dTs dTs cSC -cTq -cTQ +gdD +hCv cmW cSC cmW cmW -cWH +xSL cSC dTs dTs @@ -96151,52 +96157,52 @@ dbx dbw dof dao -deG -dxS -dga -dgb -dFk -dFk -dDK -dDK -dFk -dFk -dFk -uMk -tAG +lJi +qDK +uYM +lQU +cOB +cOB +ugS +ugS +cOB +cOB +cOB +rtg +qdK cZu -cko -uVm +jPo +sqF dWW dXc clZ crY clY cFH -cUc -clW +sNz +iuN cmH dim -dxi +vqY dXy fDh -dYc +qvc dBo -dCc -dCW +yjN +xce dYk -dEx -dYN -dYR -dGF -dGF -ebk +hCG +vQl +yif +uHC +uHC +ofr dIl -dIK -dJj -dZG -dZG -dKn +yaO +fUj +juA +juA +sDp dIk dIk dIk @@ -96209,34 +96215,34 @@ acu (192,1,1) = {" acu afP -ake -ala -alt -alt -alt -alt -alt -akZ -alI -als -alI -alI -aoI -aoN +nLa +rGx +hSd +hSd +hSd +hSd +hSd +dmm +wpl +okZ +wpl +wpl +wOX +hlk apg apk apg -apy +opf afP -amx -arg -amz -amz -aso -atV -atV -atV -avU +peT +nHK +kjn +kjn +jpE +mZz +mZz +mZz +bXb aIw dTs dTs @@ -96248,8 +96254,8 @@ dTs cov cYx adA -aDz -adr +kyi +oGU adA adA aHC @@ -96257,28 +96263,28 @@ aGp adA adA adA -aFr +nsL dTs dTs -aEU -aEV +weP +sJp adA -aEZ -aFi +hql +nLt adA adA dTs dTs dTs dTs -akq -agC +uPI +mob adA adA adA adA -ajG -aGH +piL +vAC alj azT azT @@ -96288,26 +96294,26 @@ azT azT azT aEf -aGH -aEq -aEX +vAC +hXy +mlN azT dTs dTs -akq -agC +uPI +mob adA -adK +rUO bln aMf aUO aMf -aHb +vDN aGc -aGE -feU -ilq -dGz +xyC +gZA +dnY +isc dLk dib dib @@ -96315,32 +96321,32 @@ dib dib dLu dLO -aOu -ccR -caH -ciU +cXC +sWC +wTW +eWu cfw cge cgL chu cdC chr -ctM +vsI coI cdw aMz -aNd -aNl -aNl -aNR +jkV +lcH +lcH +rul aNC -cbD -civ -cdA +tkv +qQV +wUK cdw -cdv -cgK -cgc +eBj +njd +qXp dTs dTs dTs @@ -96348,11 +96354,11 @@ dTs dTs dTs cCF -cDC -cEN -dRD -dSd -cGB +wZy +nPX +wgB +rkp +uEk cHL cHL cHL @@ -96368,13 +96374,13 @@ dTs dTs dTs dTs -cuw -ctq -ctp +kBM +ipc +roJ cmH cmH cmH -cqU +qQE dTs dTs dTs @@ -96382,43 +96388,43 @@ dTs dao dao dao -dcs +orb dao dao dbK -dyT -dzD -dgY -dDK -dDK -dJi -dJi -dgY -dJV -dJi -dDK -mNn -dmL -cmM -dHm +puj +kjP +owR +ugS +ugS +fjH +fjH +owR +sIO +fjH +ugS +jwm +xuu +vjp +jpl dWW clZ clZ cUP clZ crW -cUc -dXq -dXu +sNz +fFe +mwJ duC -dxj +dcF dXy dXJ -dXY +mbf dBr dBr dBr -dYx +sfr dBr dBr dBr @@ -96426,13 +96432,13 @@ dBr dBr dBr dIk -dIL -dJj -ebn -dIr -dKo -dCI -dKm +xjd +fUj +nuH +loS +mqy +hkd +vQU dIk dTs dTs @@ -96443,34 +96449,34 @@ acu (193,1,1) = {" acu afP -akf -alb -alu -amb -amb -amL -amW -awc -ajw -alI -akQ -akZ +sYu +iFz +muR +iWb +iWb +htP +rjC +kaJ +mYU +wpl +htE +dmm afP -aoO -apq -apq -apq -apS +hfk +nyF +nyF +nyF +tNf afP -amx -are -amz -amz -aso -atV -atV -atV -avU +peT +lAK +kjn +kjn +jpE +mZz +mZz +mZz +bXb aIw dTs dTs @@ -96494,11 +96500,11 @@ adA adA dTs dTs -agD +dph adA eqo -cTd -aFi +lPr +nLt adA adA dTs @@ -96506,13 +96512,13 @@ dTs dTs dTs azT -agD +dph adA adA adA adA -ajG -aGH +piL +vAC azK aAm aAm @@ -96522,74 +96528,74 @@ aAm aAm aAm aEl -aGH -aEq -aEX +vAC +hXy +mlN dTs dTs dTs dTs -agD +dph adA -adK +rUO bmz aMf aMf aMf -aHb -baX -aEx -azO -pDW +vDN +vFT +uTI +idz +jjF duy -dEY +cSS dib dib dib dib dLu dLO -aOu -ccR -caH -ciU +cXC +sWC +wTW +eWu cfw cdC cdC chu cdC chr -ctM +vsI cdw aNr aMz -auc -auc -atm -auc +xgU +xgU +icL +xgU aNC -cbD -civ -cdA +tkv +qQV +wUK cdw cnE -cdv -ceW -cgK +eBj +ulJ +njd dTs dTs dTs dTs dTs cCF -cDD -cEM -dRy -cGB -cGB +poP +egr +hlz +uEk +uEk cub -cIV -cIV +prW +prW cCF dTs dTs @@ -96603,70 +96609,70 @@ dTs dTs dTs dTs -csf -ctq -ctp +mDC +ipc +roJ cmH cmH cmH -ctm +wAi dTs dTs dTs -cxm +mZY daO -dby -dcw -dqu -dvf -dqt -ddi -dzD -dCe -dDK -dgY -dDK -dJi -dDK -dDK -dgY -dgY -mNn -dcw -dvm -dHm +kDA +gzw +dvK +vZX +fol +rOk +kjP +rbC +ugS +owR +ugS +fjH +ugS +ugS +owR +owR +jwm +gzw +upJ +jpl cCH cpR cET cUP clZ crW -cmN -dXr -dXv +yfE +sWL +qfb dXx dXz dXy dXJ -dAD -dBs +cWL +trq dBy -dCX -dYy -dDL +qft +jZA +lha dBy -dFV -dFV -dFV -dFV +iTY +iTY +iTY +iTY dIk -dIM -dJj -dIr -dIr -dIr -dIr -dKF +jCS +fUj +loS +loS +loS +loS +wHK dIk dTs dTs @@ -96683,12 +96689,12 @@ afP afP afP afP -ajY -aiI -ajp -alI -ajY -aoa +lNO +hbh +tYv +wpl +lNO +oga afP afP afP @@ -96696,104 +96702,104 @@ afP afP afP afP -amx -are -ant -anv +peT +lAK +jZY +iox aIw -asW -atV -atV -avU +xbB +mZz +mZz +bXb aIw dTs dTs dTs dTs dTs -aPg +mFb aOh cov aiJ ajh adA adA -agN -akr -akr -akr -akr -akr -aEm +thg +oJc +oJc +oJc +oJc +oJc +uOw adA adA -aFr -aEV +nsL +sJp adA eqo -cTd -aFi +lPr +nLt adA -aCG +eJX dTs dTs dTs dTs dTs -aEV +sJp adA oUr adA adA -ajJ -aGM -aGH -aGH -aGH -aID -aIW -aGH -aGH -aGH -aGH -aEx -aEy +tWZ +asV +vAC +vAC +vAC +gCq +xPC +vAC +vAC +vAC +vAC +uTI +qfd dTs dTs dTs dTs dTs -agD -adA -aRP -aST -aST -aST -aST -aGU -bhw -aEq +dph adA -hiN -dAB -dJB +kPo +jBy +jBy +jBy +jBy +huY +buo +hXy +adA +fsg +iyQ +dKq dLk dib dib dib aPv dLR -bXq -ccR -caH -ciU +gZC +sWC +wTW +eWu cfw cdC cdC chq cdc ciy -ctM +vsI cdw cdw aMz @@ -96802,28 +96808,28 @@ auA aNB auA aMz -cbD -civ -cdA +tkv +qQV +wUK cdw cdw cdw cdw -cdv -cgK +eBj +njd dTs dTs dTs dTs cCF -cDE -cEM -cEO -cGC -cGB -cHU -cIW -cIW +ska +egr +omY +nZI +uEk +erd +gpG +gpG cCF dTs dTs @@ -96838,69 +96844,69 @@ dTs dTs dTs dTs -cuw -cxm +kBM +mZY cmH cmH cmH -cqU +qQE dTs dTs -cwo -cux +uYz +cZU daO -dbz -dqt -ddh +hty +fol +bBz dUd -dee -dfq -dzD +jYN +bJy +kjP dbK dbK dbK -dDK -dDK +ugS +ugS dbK dbK dbK -dgY -tAG +owR +qdK cZu -cko -cUc +jPo +sNz dWW clZ clZ cUP sXR crW -dvk -dXs -cvx +uFR +uWH +oyY dXy dXA dXy dXJ -dAD -dBt +cWL +xSW dBy -dCY -dYy -dDL +hvX +jZA +lha dFi -dFW -dFW -dFW -dHF +hKX +hKX +hKX +gXH dIk -dIN -dJj -dIr -eYK -dIr -dIr -dKF +wZU +fUj +loS +mcY +loS +loS +wHK dIk dTs dTs @@ -96917,12 +96923,12 @@ dTs dTs dTs afP -amX -aiI -ajp -alI -ajY -aob +kfJ +hbh +tYv +wpl +lNO +iTp afP dTs dTs @@ -96930,45 +96936,45 @@ dTs dTs dTs apW -amx -are -amz -apj +peT +lAK +kjn +goU aIw -asX -aua -atV -avU +ogq +qmO +mZz +bXb aIw dTs dTs dTs dTs -aOf -aOg +jSB +psH aUq cov cYx adA adA aFN -ajG +piL akV azU -aAF +egc azU aDZ -aEq +hXy adA adA adA adA adA adA -aEZ -aFi +hql +nLt kmU -aEX +mlN dTs dTs dTs @@ -96980,54 +96986,54 @@ adA adA adA adA -aHQ -azO -azO -azO -aHe -aHB -azO -azO -azO -azO -aEy +qqU +idz +idz +idz +gPO +vHo +idz +idz +idz +idz +qfd adA dTs dTs dTs dTs dTs -agD +dph adA -ajJ -azO -azO -azO -azO -azO -azO -aRU +tWZ +idz +idz +idz +idz +idz +idz +fQy dTs -wIr -dCU -dKA -dEY +miw +tow +voS +cSS dib dib dib dMq -caH -abg -aqw -caH -ciU +wTW +pjB +lAL +wTW +eWu cfw cdC cdC chr -chY -cjT -aFI +oxd +fkX +odM cdw cdw aMz @@ -97036,28 +97042,28 @@ aMz aNC aNC aMz -cbD -civ -cdA +tkv +qQV +wUK cdw cdw cdw coI cdw -cdv -ceW -ceW -ceW +eBj +ulJ +ulJ +ulJ dTs cCF -cDF -cEO -cvg -cvg -cGC +xFb +omY +uow +uow +nZI cub -cIX -cJN +nUV +eKo cCF dTs dTs @@ -97073,68 +97079,68 @@ dTs dTs dTs dTs -ctq -ctp +ipc +roJ cYj czQ cmH -cqU +qQE dTs -cxm +mZY cmH daO -dbA -dqs -ddi -dxN -dcw +xnn +fkl +rOk +eSd +gzw dbK -dzD +kjP dbK dbK dbK -dDK -dDK +ugS +ugS dbK dbK dbK -dgY -tAG +owR +qdK cZu -cko -dWT +jPo +vLh dWW dWZ dWZ cUP clZ crW -cUc -dXt -dXw +sNz +lSx +lzN duC -dxk +ibx dXD dXJ -dAD -dBu +cWL +gpV dBy -dwm -gls -dDL +uzI +hWk +lha dFi -bEc -dFW -dFW -dFW -dIo -dIr -dJj -dJG -dJG -dKp -dJG -dJG +iuH +hKX +hKX +hKX +olM +loS +fUj +vaN +vaN +mDt +vaN +vaN dIk dTs dTs @@ -97151,12 +97157,12 @@ dTs dTs dTs afP -ajY -aiI -ajp -alI -ajY -aob +lNO +hbh +tYv +wpl +lNO +iTp afP dTs dTs @@ -97164,21 +97170,21 @@ dTs dTs dTs apW -amx -are -amz -apj +peT +lAK +kjn +goU aIw -asY -aub -aub -avV +msm +eoM +eoM +hqB aIw dTs dTs dTs dTs -aOU +uSq aOh aOh cov @@ -97186,29 +97192,29 @@ cYx adA ajC adA -ajG +piL alj azT -aAM -aCK +uSY +mlQ aEf -aEq +hXy adA adA adA aHR adA adA -aEZ -aFi -aCG -aCM +hql +nLt +eJX +mUK dTs dTs dTs dTs dTs -agC +mob adA kmU adA @@ -97218,71 +97224,71 @@ adA adA adA adA -aEZ -aFi +hql +nLt adA adA adA adA adA adA -aEX +mlN dTs dTs dTs dTs -akq -agK -agK -agK -agC +uPI +oQF +oQF +oQF +mob dTs dTs -agC -aCG +mob +eJX dTs dTs -ilq -aMm -dLf -dEY +dnY +qSp +evF +cSS dib dib dib dMq -caH -chZ -civ -caH -ciU +wTW +whA +qQV +wTW +eWu csH cdc cdc ciy -ciU -caH -ccN -cek -cek -chy -caH -caH -caH -caH -caH -cbD -civ -ccN -cek -cek -cek -cek -cek -cek -cek -cek -cek -bFe +eWu +wTW +qin +epP +epP +lcx +wTW +wTW +wTW +wTW +wTW +tkv +qQV +qin +epP +epP +epP +epP +epP +epP +epP +epP +epP +wOd cCF cCF cub @@ -97308,67 +97314,67 @@ dTs dTs dTs dTs -ctq -ctp +ipc +roJ cmH cmH cmH -cqU -cux +qQE +cZU cmH daO -dbB -dqs -dri -dxN -dcw -dUt -dzD -dgY -dgY -dgY -dDK -dDK -dDK -dgY -dDK -dgY -mNn -dWQ -dvj -dHm +hvs +fkl +pNW +eSd +gzw +xyl +kjP +owR +owR +owR +ugS +ugS +ugS +owR +ugS +owR +jwm +ruA +vOQ +jpl dWW dXe dXg dXm clZ crW -cUc -clW +sNz +iuN cmH dim -dxl +qTL nlH dzw -dAD -dBv +cWL +gPY dBy -dDa -dDL -dYy +lNs +lha +jZA dFi -dFW -dGG -dFW -dFW +hKX +pux +hKX +hKX dIk -dIK -dJj -dJG -dZL -dZM -dZL -dJG +yaO +fUj +vaN +ycq +qrW +ycq +vaN dIk dTs dTs @@ -97385,12 +97391,12 @@ dTs dTs dTs afP -amY -aiE -ajp -alI -ahe -aoh +gEV +jhe +tYv +wpl +utw +ipC afP dTs dTs @@ -97398,21 +97404,21 @@ dTs dTs dTs apW -amx -are -amz -apj +peT +lAK +kjn +goU aIw -atm -auc -auc -avW +icL +xgU +xgU +etU aIw dTs dTs dTs dTs -aOg +psH aOh aOh cov @@ -97420,29 +97426,29 @@ cYx adA adA adA -ajG +piL alj aAe -aBw +jRu azT aEf -aEr -aEm +koA +uOw adA kmU adA aGq adA -aEZ -aFi -aFq +hql +nLt +vuX azT dTs dTs dTs dTs dTs -agD +dph adA adA adA @@ -97452,21 +97458,21 @@ aHR adA adA adA -aEZ -aFi +hql +nLt adA adA adA adA kmU adA -aFr -aGi +nsL +qRH dTs adA -aFr -qCR -aGi +nsL +xWK +qRH azT azT dTs @@ -97476,61 +97482,61 @@ dTs dTs dTs dTs -ilq -aMm -dLf -dEY +dnY +qSp +evF +cSS dib dib dib dMq -ccM -ank -arv -auY +nNV +fZf +gpb +ums cLk -aMC -auY -auY -auY +loD +ums +ums +ums cLk -aMV -cjT -aNj -aNj -cjT -cjT -cjT -cjT -cjT -cjT -cbF -cbG -cbH -cbH -cbH -cbH -cbH -cbH -cbH -cbH -brz -brz -brz -brz -brz -brz -brz -brz -brz -brz -brz -brz -bWD -bWJ -bWJ -bXM -bnA +sxz +fkX +jNC +jNC +fkX +fkX +fkX +fkX +fkX +fkX +uYj +cSN +mCU +mCU +mCU +mCU +mCU +mCU +mCU +mCU +lYn +lYn +lYn +lYn +lYn +lYn +lYn +lYn +lYn +lYn +lYn +lYn +qWb +kRU +kRU +kAZ +eaj dTs dTs dTs @@ -97543,7 +97549,7 @@ dTs dTs dTs dTs -cux +cZU cmH cmH cqT @@ -97551,58 +97557,58 @@ cmH cmH cmH daO -fTk -dqs -dri -deH -dcw -dUt -dzD -dDK -dDK -dIm -dJV -dDK -dDK -dDK -dDK -dDK -iTi -dqt -dvm -onA +jQc +fkl +pNW +iYP +gzw +xyl +kjP +ugS +ugS +obI +sIO +ugS +ugS +ugS +ugS +ugS +xVR +fol +upJ +dNc dWW dWZ dWZ dXm clZ crW -cUc -clW +sNz +iuN cmH dim -dxh +rMn dXE dzw -dAD -dBw +cWL +kse dBy -nnl -dYy -dYy +bTY +jZA +jZA dBy -dFX -dFX -dFX -dFX +sSt +sSt +sSt +sSt dIk -dIO -dJj -dJG -dZM -dZN -dZL -dJG +sUl +fUj +vaN +qrW +oIn +ycq +vaN dIk dTs dTs @@ -97621,8 +97627,8 @@ dTs afP afP ajl -ajp -amU +tYv +nJF ajl afP afP @@ -97632,10 +97638,10 @@ dTs dTs apW apW -amx -are -amz -anD +peT +lAK +kjn +uOo aIw aIw auA @@ -97645,8 +97651,8 @@ aIw dTs dTs dTs -aOg -aCh +psH +kqu cYu cZo cZp @@ -97654,29 +97660,29 @@ cZn adA adA adA -ajG +piL alj -aAf +jFv aBy azT aEh -aEv -aEz -aEW -aEW -aEW -aEW -aEW +nEP +kwK +gcC +gcC +gcC +gcC +gcC aFa -aFi -aFr -aGi +nLt +nsL +qRH azT dTs dTs dTs azT -agD +dph adA adA aHC @@ -97686,8 +97692,8 @@ adA adA adA adA -aEZ -srf +hql +xsX eqo aGZ adA @@ -97695,14 +97701,14 @@ adA adA adA adA -aFr -aGi +nsL +qRH adA adA adA -aFr -aJV -aGi +nsL +oUE +qRH dTs dTs dTs @@ -97710,10 +97716,10 @@ dTs dTs dTs dTs -pDW -aMn -dLf -dEY +jjF +feX +evF +cSS dib dib dib @@ -97729,10 +97735,10 @@ arw arw arw abe -aWH -dNI -civ -aNG +byI +jez +qQV +rcs aOy aOy aOz @@ -97748,19 +97754,19 @@ aTG aTG aTG aTG -bnA -bnA -bnA -bnA -aeO -aeQ -aeQ -aeQ -aeQ -aeQ -aeQ -aiy -bFF +eaj +eaj +eaj +eaj +uFM +ygR +ygR +ygR +ygR +ygR +ygR +vSh +fTU bWK bXH bXN @@ -97785,58 +97791,58 @@ dTx dzE cmH daO -dbD -dqs -drY +tnQ +fkl +oFk dbK -dcw -dUt -dga -cWp -cWp -cWp -dDK -dDK -dHl -cWp -cWp -tAG -tAG +gzw +xyl +uYM +tuk +tuk +tuk +ugS +ugS +gxt +tuk +tuk +qdK +qdK cZu -cko -cUc +jPo +sNz cCH dWZ dWZ cUP clZ crW -cUc -fqy +sNz +kTl cmH dim -dYC +exf dXE dzx -dAI -dBx +jjp +dNn dBy -dDa -dDL -dDL +lNs +lha +lha dBy dBy dBy dBy dBy dIk -dIP -dJj -ebo -dZN -dZN -dZM -dJG +ihc +fUj +lLX +oIn +oIn +qrW +vaN dIk dTs dTs @@ -97853,24 +97859,24 @@ dTs dTs dTs apW -alO -amy -alV -amz -aiH -anG +xAs +ivv +npa +kjn +lSI +iSw apW apW apW apW apW apW -alO -amy -are -amz -aiH -anG +xAs +ivv +lAK +kjn +lSI +iSw aJd aJd aJd @@ -97880,7 +97886,7 @@ aJd aJd gab aOh -aRk +kgm cYv cgR cgR @@ -97888,29 +97894,29 @@ dwG adA adA dZl -ajG +piL alj -aAg -aBA -aCK +jJM +hYy +mlQ aEj -aEw -aEA -aEP -aEP -aEP -aEP -aEP -aEP -aFj +joI +xzT +sZo +sZo +sZo +sZo +sZo +sZo +uww aFN -aFr -aGi +nsL +qRH azT dTs dTs -aGS -aEV +ijT +sJp adA aGr aFl @@ -97920,8 +97926,8 @@ aHS kmU adA adA -aEZ -srf +hql +xsX eqo adA adA @@ -97930,43 +97936,43 @@ adA adA adA adA -aFr +nsL aKE aKQ aKQ aKQ aKQ -aLz -aLE -aJV +apU +vCZ +oUE aLP aLV dTs dTs dTs -hiN -aMm -dLf -dEY +fsg +qSp +evF +cSS dib dib dib dMq -ccN -cek -cek -cek -cek -aMD -cek -cek -cek -cek -chy -caH -dNI -aNE -caH +qin +epP +epP +epP +epP +gYx +epP +epP +epP +epP +lcx +wTW +jez +gGX +wTW aOz aQw aOH @@ -97993,8 +97999,8 @@ bCK bjV bjV bKI -bNC -bFF +xPB +fTU bWL bXI bYd @@ -98009,8 +98015,8 @@ dTs dTs cmH dTs -cwo -cux +uYz +cZU cmH cmH cAL @@ -98019,58 +98025,58 @@ wQZ dTx cmH daO -dbE -dqs -drY -dUe -dcw -dUt -dga -cYK -dHi -dHi -dDK -dDK -dVl -dAd -dHi -dlN +wly +fkl +oFk +jcY +gzw +xyl +uYM +qow +oIK +oIK +ugS +ugS +uuC +pGK +oIK +hsA dbK dbK -cko -cUc +jPo +sNz cCH dXe dXg cUP clZ crW -cUc -clW +sNz +iuN cmH dim -dYD +pNr dXE dXN -dAJ +xHV dBy dBy dBy -dDM +rAd dBy dBy -eaL -eaL -eaL -eaL +fEb +fEb +fEb +fEb dIk -dIQ -dJj -dJG -dZN -ebi -dZN -dKG +pWQ +fUj +vaN +oIn +wbG +oIn +oXW dIk dTs dTs @@ -98087,34 +98093,34 @@ dTs dTs dTs apW -amx -amz -alV -ant -amz -aiH -aiO -akj -akj -akj -akj -aiO -amy -amz -are -amz -amz -aiH +peT +kjn +npa +jZY +kjn +lSI +uWe +tCz +tCz +tCz +tCz +uWe +ivv +kjn +lAK +kjn +kjn +lSI aJe -auB -ave -awt -awP -awt -auB +pGr +vWo +glF +hmU +glF +pGr oUN -aOi -aCi +iqG +pQz cYx aOh aOh @@ -98122,14 +98128,14 @@ adA adA adA adA -ajG +piL alj -aAk -aCm -aCK +jKD +qJl +mlQ aEf -aEx -aEy +uTI +qfd adA adA adA @@ -98139,11 +98145,11 @@ adA adA adA adA -aFr -aGi +nsL +qRH dTs dTs -agD +dph adA adA aFl @@ -98154,8 +98160,8 @@ aFT adA adA adA -aEZ -aFi +hql +nLt adA adA adA @@ -98166,11 +98172,11 @@ eqo adA kmU aKF -aGH -aGH -aGH -aGH -aGH +vAC +vAC +vAC +vAC +vAC aLC aLI adA @@ -98178,42 +98184,42 @@ aLW aMf aLV aLP -hiN -aMm -dLf -dEY +fsg +qSp +evF +cSS dib dib dib dMq -caH -caH -anm -anm -anm -anm -anm -aSG -aTt -aTt -aTt -aTt +wTW +wTW +xvA +xvA +xvA +xvA +xvA +jQO +tXB +tXB +tXB +tXB aNq aNF -aNP -aQd -aPc -aPc -aPc -aPc -aPc -aPc -aPc +jKl +pYP +tzR +tzR +tzR +tzR +tzR +tzR +tzR bfD aTM -aVr -aXh -bgW +utH +vAi +uIh bho aTM aYg @@ -98226,14 +98232,14 @@ bgl bgl bgl bgl -bFe -bTU -bFF +wOd +eSL +fTU bWL bTW bYe bYK -bYN +kOE bjV dTs dTs @@ -98243,7 +98249,7 @@ dTs cmH cmH cmH -cux +cZU cmH cmH cPz @@ -98253,58 +98259,58 @@ wQZ dOw cmH daO -dbF -dqs -drY -dUe -dcw -dUt -dga -dxT -dHj -cYK -dDK -dgY -dHi -dxT -dHS -tAG +hCY +fkl +oFk +jcY +gzw +xyl +uYM +pzY +iub +qow +ugS +owR +oIK +pzY +qAE +qdK cZu cmH -cup -cUc +faq +sNz cCH dWZ clZ cUP clZ crW -cUc -clW +sNz +iuN cmH dim -gmk +jad dyp dzz -dAF +qUv dBy -dCd -dDb -kee -dCd -dFj -dFZ -dYP -dYP -dHG +qkP +tkU +eAf +qkP +hoV +hjN +pfc +pfc +pdU dIk -dIR -tKS -dJG -dZN -dZN -dZN -dJG +olx +rLi +vaN +oIn +oIn +oIn +vaN dIk dTs dTs @@ -98321,33 +98327,33 @@ dTs dTs dTs apW -alT -amz -abL -amA -amA -amA -amA -amA -amA -amA -amA -amA -amA -amA -afp -ary -amA -amA -atq -auC -avf -awu -awQ -awQ -awQ -axu -aBT +xql +kjn +ezI +vMA +vMA +vMA +vMA +vMA +vMA +vMA +vMA +vMA +vMA +vMA +rok +kRK +vMA +vMA +iQO +lUW +ulN +hNB +sjk +sjk +sjk +pZD +fMG aCj cZn aij @@ -98356,13 +98362,13 @@ adA adA aeo adA -ajG +piL alj -aAl -aCs +xgP +bHH azT aEf -aEq +hXy adA adA adA @@ -98374,10 +98380,10 @@ adA adA adA adA -aFr +nsL dTs dTs -aEV +sJp adA adA aFn @@ -98400,74 +98406,74 @@ ofB aKe adA aKF -aGH -aLf -aLl -aLs -aGH +vAC +imf +joy +iXG +vAC aLC jVv aLQ aLZ aMf -aGH +vAC aLP -wIr -aMm -dLf -dEY +miw +qSp +evF +cSS dib dib dib dMq -caH -rjd -aDf -aDf -aDf -aME -caH -chZ +wTW +tPo +ngS +ngS +ngS +mkb +wTW +whA ciu -dnP -dnP -dnP -dnP -dnP -aNT -aPc -aPc -aPc -aPj -aSr -aQx -aPc -aPc +ijG +ijG +ijG +ijG +ijG +fFz +tzR +tzR +tzR +rkw +hqU +wMO +tzR +tzR aOH aTM -aVs -aXi -aXh +mnu +nyn +vAi bgZ aTM aYD -bcO -bdN +ndA +eYo bfX bgo -bgD -biY -bkl -bkM +eQh +rdx +iSO +vsl bgl -bXB -bTV -aie +liu +rih +jpO bWL bTW bYe bYK -bWI +tkC bZE bZN bXH @@ -98487,58 +98493,58 @@ dOw cQK cmH daO -dbG -dqs -dri +nll +fkl +pNW dbK -dcw -dUt -dga -dgb -dFk -dFk -dDK -dDK -dgb -dgb -dgb -tAG +gzw +xyl +uYM +lQU +cOB +cOB +ugS +ugS +lQU +lQU +lQU +qdK cZu cmH -cup -cUc +faq +sNz cCH dWZ clZ mgw clZ crW -cUc -clW +sNz +iuN cmH dim -dxm +nLl dwI dXO dAK -dBz -dYi -dYi -dYz -dYz -dYi -dYS -dYz -dYz -dYz -dIp -dIS -dBD -dJG -dZM -dZN -dZM -dJG +ufj +vdf +vdf +hRX +hRX +vdf +hMe +hRX +hRX +hRX +hGP +vov +wSI +vaN +qrW +oIn +qrW +vaN dIk dTs dTs @@ -98555,48 +98561,48 @@ dTs dTs dTs apW -amx -amz -amz -amz -amz -amz -amz -amz -amz -amz -amz -amz -amz -ant -amz -amz -amz -amz -ats -auD -avg -aww -awX -auT -auT -xEP -ath +peT +kjn +kjn +kjn +kjn +kjn +kjn +kjn +kjn +kjn +kjn +kjn +kjn +jZY +kjn +kjn +kjn +kjn +qXg +wdf +kCU +eMl +gom +eLd +eLd +fNf +pSn aOY coX aik -aRM -agK -agC +nda +oQF +mob adA adA -ajG +piL alj azT -aCz +mLV azT aEf -aEq +hXy adA adA adA @@ -98609,8 +98615,8 @@ adA kmU adA adA -aFr -aEV +nsL +sJp adA adA adA @@ -98634,74 +98640,74 @@ aHx aGn adA aKF -aGH -aLg -aLm -aLt -aGH +vAC +qnG +tKJ +hPe +vAC aLC adA aLI -ajG -aGH +piL +vAC aMi aLP -ilq -dEj -dLg -dEY +dnY +gqJ +iKr +cSS dib dib dib dMq -bnA -arx +eaj +hNV atC aeH aft ahA -bnA -chZ -civ -caH -caH -aMW -caH -caH -anm +eaj +whA +qQV +wTW +wTW +hCe +wTW +wTW +xvA aOz aOH -aPc -aPn +tzR +oNO aSD -aTi -aXj -aXq +hrp +jSK +qLv aOI aTM -aVD -aYb -aXh -aXh -biX -bcO -bfr -bdS -bcO +ggK +xMV +vAi +vAi +eGD +ndA +eTv +xEy +ndA bgs bgE bjv bka -bkN +jdQ bgl -bFF +fTU bTW bTW bWL bXI bYg bYK -bnA +eaj bWL bTX bTW @@ -98721,58 +98727,58 @@ csb cpT cmH daO -dbH -dqt -dtw -dUf -deg -dUu -dgd -dAL -dAL -dAL -dAL -dJW -dgY -dgY -dgY -tAG +mZN +fol +pYU +uhF +qcO +xDz +nYt +vmN +vmN +vmN +vmN +wWa +owR +owR +owR +qdK cZu cmH -gnu -cUc +gyw +sNz cCH cpR cET dXm clZ crW -cUc -clX -cmX +sNz +rkE +ltY duC -cYF +wdY cZV pEh -dAH +mxK dBy -dCd -dYm -dYm -dYm -dYP -dYm -kee -dYm -dYm +qkP +jmn +jmn +jmn +pfc +jmn +eAf +jmn +jmn dIk -dIK -dIr -dJG -dZN -dZM -ceV -dJG +yaO +loS +vaN +oIn +qrW +eWJ +vaN dIk dTs dTs @@ -98789,48 +98795,48 @@ dTs dTs dTs apW -amx -amz -amz -amz -amz -anv -anq -anq -anq -akH -anq -anq -amB -amz -amz -amz -amz -anv +peT +kjn +kjn +kjn +kjn +iox +olG +olG +olG +jOy +olG +olG +mDe +kjn +kjn +kjn +kjn +iox aJe -auE +wnN avh -aww -aww -awX -axa +eMl +eMl +gom +mbz oUN -aSi -aRj +gFT +sPi coX aOh -dfr +grv dTs -aDY +nwX adA adA -ajG +piL azK aAm aAm aAm aEl -aEq +hXy kmU adA adA @@ -98868,36 +98874,36 @@ aGd aGn adA aKF -aGH -aLi -aLn -aLu -aGH +vAC +rMj +fSy +nRG +vAC aLC adA aLR -aMc -aGH -aGH +lpq +vAC +vAC aLP -ilq -cAg +dnY +xoU dJT -dEY +cSS dib dib dib -adG -bnA -aOo +sBP +eaj +fpA dMf dib atW ahA -bnA -chZ -civ -caH +eaj +whA +qQV +wTW aOy aOy aOz @@ -98905,37 +98911,37 @@ aOz aPs aOy aOH -aPc -aPn +tzR +oNO aPN -aTo -aPc -aXu +kbS +tzR +lKc aOH aTM -aVV -aXh -aXh -aYb -aXh -aZh -bcO -beQ +kop +vAi +vAi +xMV +vAi +mSO +ndA +tCO bad bgo -bhs -bjw -bkC -bkO +uPD +gRV +sLL +jFr bgl -bFF +fTU bTW bWE bXx bTW bYh bYK -bnA +eaj bWL bTW bTX @@ -98955,58 +98961,58 @@ cmH cmH cmH daO -dxM -dqt -dux -dUe -dvg -dUt -dqt -cWp -dHl -dHl -dDK -dDK -cWp -cWp -cWp -tAG +puq +fol +oku +jcY +iKl +xyl +fol +tuk +gxt +gxt +ugS +ugS +tuk +tuk +tuk +qdK dbK cmH -cup -cUc +faq +sNz cCH clZ clZ dXm clZ crW -cmN -cok -cvw +yfE +uzp +wRQ dwH ltE dwI dax -dAD +cWL dBy -dCf +erH dBy -dCf +erH dBy -dCf +erH dBy -dCf +erH dBy -dCf +erH dIk -dIT -dIr -dJG -dZO -dZL -dZL -dJG +xdL +loS +vaN +ssD +ycq +ycq +vaN dIk dTs dTs @@ -99023,52 +99029,52 @@ dTs dTs dTs apW -abi -amB -amz -amz -anv -anM +lot +mDe +kjn +kjn +iox +xEn anP anP anP anP anP anP -amC -anq -akH -anq -anq -anM +dZC +olG +jOy +olG +olG +xEn aJd -auF +phf avh agn -aww -lHW -axb +eMl +gqH +tNS gab aOh -aRk -cqS +kgm +faH dTs -aRN +svd dTs -akq -agC +uPI +mob adA -ajJ -azO -azO -azO -azO -azO -aEy +tWZ +idz +idz +idz +idz +idz +qfd adA -aCG -agK -agC +eJX +oQF +mob aES adA adA @@ -99098,15 +99104,15 @@ eqo adA adA adA -aEZ +hql aGn aHT aKF -aGH -aLj -aLo -aGH -aGH +vAC +gZJ +ntB +vAC +vAC aLF adA adA @@ -99114,24 +99120,24 @@ aMd aMf aMk aLV -ilq -cAg -dLj -cEW +dnY +xoU +rCU +rwN dib dib dib adH -bnA -aOo +eaj +fpA dMf dib atW ahA -bnA -aSH -bvz -caH +eaj +kNr +hHA +wTW aOy aOE aOH @@ -99139,37 +99145,37 @@ aOH aPt aOH aOH -aPc -aPn +tzR +oNO aPN -aTo -aPc -aOB +kbS +tzR +nBD aOH aTM -aVW -aXi -aXh +mBv +nyn +vAi bhq aTM bad -bcO -aVU +ndA +uDk bfY bgl bgo -bjP +pzB bgo bgl bgl -bFF +fTU bTW bWE bWL bTW bYh bYK -bnA +eaj bWL bTW bTW @@ -99189,58 +99195,58 @@ dIi cmH cmH daO -dpF -dqt -dux -dUe -dcw +pqO +fol +oku +jcY +gzw dbK -dqt -dEv -dBe -dHo -dDK -dDK -dBc -dBf -cYK -tAG +fol +nef +rfc +cVG +ugS +ugS +gmA +qug +qow +qdK cZu cmH -cup -cUc +faq +sNz cCH cWc dXj dXn cma cXw -dbQ -duD -del +pIM +hpm +mrl dwJ vOv dwJ daX -dAD +cWL dBy -dCg +nxi dBy -dCg +nxi dBy -dCg +nxi dBy -dCg +nxi dBy -dCg +nxi dIk -dyt -dIr -dCj -dJG -dJG -dCV -dJG +tZx +loS +tHl +vaN +vaN +pnd +vaN dIk dTs dTs @@ -99258,16 +99264,16 @@ dTs dTs apW apW -alS -ant -amz -anD +tmz +jZY +kjn +uOo anP anP -wIl -apl -aoF -apl +eTP +mMV +lRr +mMV anP anP anP @@ -99276,36 +99282,36 @@ anQ anQ anP anP -auQ +jGx avh awx -aww -aww -axc +eMl +eMl +vOS oUN aOh -aRk -afl +kgm +rbv dTs dTs dTs azT -agD +dph adA adA kmU adA adA adA -aCG -agK -agK -aCM +eJX +oQF +oQF +mUK azT -akq -agK -agK -agC +uPI +oQF +oQF +mob aFn aFR kiP @@ -99314,71 +99320,71 @@ aFP adA adA eqo -dzO -agC +fZu +mob adA adA adA -aCG -agK -agC +eJX +oQF +mob aHC -aCG -agK -agC +eJX +oQF +mob adA eqo eqo adA adA kmU -aEZ +hql aGl aJh aKG aKR -aLg -aLn -aLw -aLA +qnG +fSy +lJR +hXd aLG -aEW -aLT +gcC +ild aLZ aMg fbK -aGH -ilq -cDQ -dEY +vAC +dnY +txE +cSS dib dib dib dib adH aof -arx +hNV asT dib atW ahA -bnA -aSH -bvz -caH +eaj +kNr +hHA +wTW aOz aOH -aPc -aPc -aPG -aPc -aPc -aPc -aPn +tzR +tzR +wkp +tzR +tzR +tzR +oNO aPN -aTp -aXj -aXy +sFl +jSK +wOe aOH aTG aWg @@ -99387,8 +99393,8 @@ bgZ bhr aTG aUU -bcO -bfl +ndA +dVQ aUU aUU bhI @@ -99396,14 +99402,14 @@ bka bka blf bgl -bGe +utE bTW bTX bWL bXJ bYg bYK -bnA +eaj bWL bZO cae @@ -99413,45 +99419,45 @@ cvI cvI cEY cmH -cUL -cmX -cmX -cmX -cmX -cmX -cmX -cpb +jNf +ltY +ltY +ltY +ltY +ltY +ltY +hrZ cmH daO -dpG -dqt -ddl +bcZ +fol +eVp dbK -dcw -dcw -dcw -cYK -cYK -dAd -dgY -dgY -cYK -cYK -dBb -tAG +gzw +gzw +gzw +qow +qow +pGK +owR +owR +qow +qow +eZv +qdK cZu cmH -cup -cUc +faq +sNz cCH dpH cET dXm clZ crW -cUc -cmc -cpY +sNz +jpr +koo jCJ jCJ jCJ @@ -99492,45 +99498,45 @@ dTs dTs dTs apW -amx -amz -amz -apj +peT +kjn +kjn +goU anP -anR -aoQ -apn -apn -apn -aqe -apn +kOu +geE +hnf +hnf +hnf +pnI +hnf aqQ -ark -aqk -asm -asH +pnA +hir +qtl +imx anQ -auF +phf avh -aww -aww -aww -axc +eMl +eMl +eMl +vOS oUN cTE -aRk -afl +kgm +rbv dTs dTs dTs dTs dTs -agK -agC +oQF +mob adA adA adA -aCG +eJX dTs dTs dTs @@ -99539,8 +99545,8 @@ azT azT azT azT -akq -agC +uPI +mob aFT aFn aFR @@ -99548,71 +99554,71 @@ aHE aGr adA adA -aEX -akq -agC +mlN +uPI +mob adA -aCG -aCM +eJX +mUK dTs dTs -agK -aCM +oQF +mUK dTs dTs -agC +mob adA adA adA adA adA -aEZ +hql aFf aGf aKJ aKS -aLk -aLp -aLx -aLB +viS +uBV +toL +kSa leZ aLJ -aLU +phu aMe -aGM -aGH -aGH -ilq +asV +vAC +vAC +dnY duy -dEY +cSS dib dib dib dib adH aof -arx +hNV asT dib atW ahA -bnA -aSH -bvz -caH +eaj +kNr +hHA +wTW aOz aOH -aPc -aPj -aPM -aPX -aQx -aPc -aPo -aSF -aQF -aPc -aYi +tzR +rkw +eXA +iwN +wMO +tzR +uOf +jLe +rwl +tzR +rfL aOH aUc aUc @@ -99621,23 +99627,23 @@ aUR aUc aTG baf -bcO -bcO +ndA +ndA bfZ aVn big -bjZ -bjZ +fVH +fVH bli biW -bFF +fTU bTW bTX bXx bTX bYh bYK -bnA +eaj bWL bTW bTX @@ -99647,50 +99653,50 @@ dWZ clZ cEY cmH -cup -dak -cvn -cvn -cvn -cZS -dXv -clW +faq +swL +wVq +wVq +wVq +gJP +qfb +iuN cmH daO -dbJ -dcw -ddl -dUc -dcw -dyU -dcw -dgb -dgb -dgb -dgY -dgY -dgb -dgb -dgb -tAG +vZr +gzw +eVp +ljp +gzw +psS +gzw +lQU +lQU +lQU +owR +owR +lQU +lQU +lQU +qdK cZu cmH -cup -cUc +faq +sNz hIO dpI dXf dXo cmb cXx -cUc -clW +sNz +iuN cmH xOb cmH -bDY +xJZ bKj -cwC +oya cFm cmH cmH @@ -99726,45 +99732,45 @@ dTs dTs dTs apW -amx -amz -amz -apj +peT +kjn +kjn +goU anP -anR -aod -aoT -aoT -aoT -aFA -aoT -aqU -aoT -aqs -aoT -asI +kOu +jdn +iCT +iCT +iCT +pMQ +iCT +fnk +iCT +ffK +iCT +mYu atv -auF -avi -aww -aww +phf +pid +eMl +eMl awx -axc +vOS oUN aOh -aRk -afl +kgm +rbv dTs dTs dTs dTs dTs dTs -akq -agC +uPI +mob aAr -aCG -aCM +eJX +mUK dTs dTs dTs @@ -99774,19 +99780,19 @@ dTs azT dTs azT -akq -oit +uPI +uxF adA aGp aGr adA -aCG -agK +eJX +oQF dTs dTs -akq -agK -aCM +uPI +oQF +mUK azT dTs dTs @@ -99794,20 +99800,20 @@ dTs azT dTs dTs -akq -agK -aJL +uPI +oQF +she adA adA adA -aEZ -aFi +hql +nLt adA aKF -aGH -aGH -aGH -aGH +vAC +vAC +vAC +vAC aLC adA adA @@ -99816,55 +99822,55 @@ aLI aMh aMf aMf -ilq +dnY duy -dEY +cSS dib dib dib dib adH aof -arx +hNV asZ atB atX ahA -bnA -aSH -bvz -caH +eaj +kNr +hHA +wTW aOz aOH -aOB -aPn +nBD +oNO aPN aPN -aQz -aPc -aPc -aPc -aQp -aPc -aPc +hRs +tzR +tzR +tzR +iRf +tzR +tzR bfF aUc -aWx -bgJ -aWG +gSm +hak +uHn aPL aUU baL -bcO -bcO +ndA +ndA bad aVn big -bkD -bjZ +mSJ +fVH bli biW -bFF +fTU bTX bWF bXx @@ -99887,8 +99893,8 @@ clY clY clY nsf -cUc -clW +sNz +iuN cmH daO dbK @@ -99896,38 +99902,38 @@ dbK ddm dbK dbK -dfs -dcw -dcw -dcw -dcw -dcw -dfs -dcw -dvg -dcw -dlN +xBS +gzw +gzw +gzw +gzw +gzw +xBS +gzw +iKl +gzw +hsA dbK cmH -cup -cUc +faq +sNz cWe dpJ dXa dXp -cmM -cok +vjp +uzp cto -cWr -cWa -uPS -cWa +qRq +sBW +qHu +sBW bDZ bKk cxl -cPp -cWa -cPx +rlK +sBW +mNZ dTs dTs dTs @@ -99960,34 +99966,34 @@ dTs dTs dTs apW -alT -amz -amz -apj +xql +kjn +kjn +goU anP -anS -aod -aoT -aoT -aoT -aoT -aoT -aqU -aoT -aqs -aFA -apI +krO +jdn +iCT +iCT +iCT +iCT +iCT +fnk +iCT +ffK +pMQ +seV anQ -auF -avi -aww -aww +phf +pid +eMl +eMl awx -axc +vOS oUN aOh -aRk -afm +kgm +guw dTs dTs dTs @@ -99995,8 +100001,8 @@ dTs dTs dTs dTs -akq -agK +uPI +oQF dTs dTs dTs @@ -100009,12 +100015,12 @@ dTs dTs dTs azT -agD +dph adA adA adA adA -aEX +mlN dTs dTs dTs @@ -100030,12 +100036,12 @@ dTs dTs dTs dTs -agD +dph adA adA adA -pyP -rpc +vCQ +kkj adA aKK aLe @@ -100050,55 +100056,55 @@ adA aMh aLP aMg -ilq +dnY duy -dEY +cSS dib dib dib dib adH -bnA -aeP -afM -afM -afM -ahQ -bnA -aSH -bvz -bnA +eaj +sXT +vxC +vxC +vxC +vKc +eaj +kNr +hHA +eaj aOz aOI -aOB -aPn +nBD +oNO aPN aQl -aQz -aPc -aPj -aSM -aTu -aPc -aPc +hRs +tzR +rkw +xWu +qbf +tzR +tzR aOH aUc -aWx -bgJ -bgJ +gSm +hak +hak aPL aUU baM -bcO -bfr -bcO -bgt -bih -bih -bih -bjZ -bll -bGs +ndA +eTv +ndA +sDL +mfe +mfe +mfe +fVH +rvA +gLi bTZ bWF bXx @@ -100121,8 +100127,8 @@ cSa cma dem crW -cUc -clW +sNz +iuN cmH cmH dbL @@ -100139,29 +100145,29 @@ dbK dbK dbK dbK -dkd +hwU dbK dbK cmH -cup -cUc +faq +sNz cCI dpK cXt crX -cmN -cod -cod -cod -cod -gKm -cod -cod -cod -cod -cod +yfE +iCc +iCc +iCc +iCc +hju +iCc +iCc +iCc +iCc +iCc cto -coc +yio dTs dTs dTs @@ -100194,33 +100200,33 @@ akk akk akk akk -amx -amz -amz -apj +peT +kjn +kjn +goU anP -anT -aod -aFA -aoT -apH -aqd -aqd +xJh +jdn +pMQ +iCT +liE +xsA +xsA anP -arl -aqs -aoT -asJ +vTo +ffK +iCT +hFC anQ -auF +phf avh -aww -aww -aww -axc +eMl +eMl +eMl +vOS oUN aOh -aRk +kgm coX aOh dTs @@ -100248,7 +100254,7 @@ aFz aFz vte aFz -aGI +rHt dTs dTs dTs @@ -100264,12 +100270,12 @@ dTs dTs dTs dTs -agD +dph adA adA aBF -aHy -aFj +quc +uww dic adA adA @@ -100277,62 +100283,62 @@ adA dTs dTs dTs -agC +mob adA adA dTs dTs dTs dTs -ilq +dnY duy -dEY +cSS dib dib dib dib -adJ -bnA -bnA -bnA -bnA -bnA -bnA -bnA -aSH -bvz -bnA +fuV +eaj +eaj +eaj +eaj +eaj +eaj +eaj +kNr +hHA +eaj aOy aOI -aOB -aPo -aPW -aQo -aQB -aPc -aPn +nBD +uOf +wWo +hyn +miq +tzR +oNO aPN -aQz -aXk -aPc +hRs +ekW +tzR aOH aUc -jvo -bgL -bgJ +erg +gRf +hak aPL aUU baN -bcO -bcO -bcO -bcO -bih -bih -bih -bih -bih -bGs +ndA +ndA +ndA +ndA +mfe +mfe +mfe +mfe +mfe +gLi bTX bTW bWL @@ -100355,10 +100361,10 @@ cnU clZ den yfq -cUc -clX -cmX -cmX +sNz +rkE +ltY +ltY dbL uGO ddn @@ -100371,19 +100377,19 @@ mTY dbN dbN dbK -xkf -dhd -dcw -dcw +mnP +uDi +gzw +gzw dbK dbK dbK -cUc +sNz cCH dpL clZ crW -cUc +sNz tMy ydw ydw @@ -100393,10 +100399,10 @@ aSw aSw aSw aQP -cko -cmN -coc -cko +jPo +yfE +yio +jPo dTs dTs dTs @@ -100422,50 +100428,50 @@ acu acu dTs akk -akl -akI -alz -alz -alC +kfg +ezD +tut +tut +vRH alP -amy -amz -amz -apj +ivv +kjn +kjn +goU anP -anS -aod -aoT -aoT -apI -aqi -aqi +krO +jdn +iCT +iCT +seV +mwn +mwn anP -arm -aqs -aoT -asL +raZ +ffK +iCT +rAA anP -auF +phf avh awx -aww -aww -axc +eMl +eMl +vOS oUN aOh -aRk +kgm coX aOh dTs dTs dTs dTs -aGX -aGX -aGX -aGX -aGs +kwl +kwl +kwl +kwl +qxO aeT aeT dTs @@ -100482,7 +100488,7 @@ aFz aFz aFz aFz -aGg +rxE dTs dTs dTs @@ -100498,29 +100504,29 @@ dTs dTs dTs axj -agD +dph adA axx lVW lVW lVW aKj -aKL +aVt adA adA -aCG +eJX dTs dTs -agD +dph adA adA adA dTs dTs dTs -ilq +dnY duy -dEY +cSS dib dib dib @@ -100532,43 +100538,43 @@ aNU aNU aoi aoi -bnA -aSH -bvz -aML +eaj +kNr +hHA +cVt aOy aOI -aOB -aPc -aPc -aQp -aPc -aPc -aPn +nBD +tzR +tzR +iRf +tzR +tzR +oNO aPN -aQz -aPc -aPc +hRs +tzR +tzR aOH aUs -aWG -bgJ -bgJ -aWG +uHn +hak +hak +uHn aVn baO -bda -bcO +ghY +ndA bad aVn big -bjZ -bkD +fVH +mSJ bli biW -aSH -bul -bWH +kNr +hWn +fTB bXF bXK bXK @@ -100589,10 +100595,10 @@ cZQ cpR der crW -cmN -cok -cok -cvw +yfE +uzp +uzp +wRQ dbM lOY ddn @@ -100600,37 +100606,37 @@ dHM dbN dHM dbN -fYS -fYS -dhe +nme +nme +kUB dbN dbK dbK dbK -dcw -dcw -dcw -dcw +gzw +gzw +gzw +gzw dbK -cUc +sNz cCH dpI clZ crW -cUc +sNz tMy -aSP -aTX -aTX -brA -aTX -rBr -bLn +ykE +evT +evT +eBA +evT +wYh +frA aQP -cko -cmN -dNC -cko +jPo +yfE +mbo +jPo dTs dTs dTs @@ -100656,39 +100662,39 @@ acu acu dTs akk -akm +gnz akK akK akK akK alR -amz -amz -ant -anD +kjn +kjn +jZY +uOo anP -anT -aod -aoT -aoT -apI -aqi -aqi +xJh +jdn +iCT +iCT +seV +mwn +mwn anP anP -arQ -aoU +xET +jZp anP anP -auR +nqg avh awx -awS -aww -axb +ojN +eMl +tNS gab aOh -aRk +kgm cWq bzS dTs @@ -100699,8 +100705,8 @@ aFz aFz aFz aFz -aHc -aGs +jVS +qxO aeT dTs dTs @@ -100711,8 +100717,8 @@ dTs dTs dTs dTs -aBd -aKB +hlA +iVi aFz aFz aFz @@ -100732,29 +100738,29 @@ dTs dTs aIv aJB -agD +dph adA axD azT azT -aKf -aKy -aKM +top +hTC +fxJ adA adA -aEX +mlN dTs dTs -agD +dph adA adA adA dTs dTs dTs -ilq +dnY duy -dEY +cSS dib dib dib @@ -100766,67 +100772,67 @@ avp aNS aNS aNU -bnA -aSH -bvz -bnA +eaj +kNr +hHA +eaj aOy aOS -aOB -aPj -aPX -aQr -aQx -aPc -aPn +nBD +rkw +iwN +iKE +wMO +tzR +oNO aSD -aQz -aXm -aPc -aOB -aUz -aWL -aWL -bhb -bhb -aVC -bda -aVU -bcO +hRs +szB +tzR +nBD +vGU +nYW +nYW +vMx +vMx +rbz +ghY +uDk +ndA bga aVn big -bjZ -bjZ +fVH +fVH bli biW -aSH +kNr bzY bzY -bul -bul -bul -bul -bul -bul -bul -bTV -bTV -bTV -cvn -cvn -cvn -cvn -cZR -dXv +hWn +hWn +hWn +hWn +hWn +hWn +hWn +rih +rih +rih +wVq +wVq +wVq +wVq +gID +qfb cCH clZ dpI crW -cmN -cod -cod -cvx +yfE +iCc +iCc +oyY dbN lOY ddo @@ -100834,37 +100840,37 @@ deh deK mTY dbN -dhe -fYS -xjb +kUB +nme +mmD dbN dbK -dhc -dhd -dcw -dfs -dlA -dlA +veX +uDi +gzw +xBS +wRn +wRn dbK -cUc +sNz cCH dpH cET crW -cUc +sNz ydw -aTe -aTY -aUb -wOO -aUb -aUa -bLK +kUT +kEm +uxL +nzF +uxL +nXZ +iUu aQP -cko -cmU -cvx -cko +jPo +jTU +oyY +jPo dTs dTs dTs @@ -100890,51 +100896,51 @@ acu acu dTs akk -akn +gUO akK akK akK akK akK -amz -amz -amz -apj +kjn +kjn +kjn +goU anP anP anP -apo -apo +iJo +iJo anP anP anP anP -lLI -aqs -aoT -asL +uqI +ffK +iCT +rAA anP -auQ +jGx avh -aww -aww -awy -axe +eMl +eMl +iLM +vkK oUN -aOi -aCi +iqG +pQz coX aOh dTs -beB -beM +nKC +xoW aFz vte aFz aFz aFz azV -aGI +rHt aeT aeT dTs @@ -100946,15 +100952,15 @@ dTs dTs dTs aBe -aKd +srY aFz aFz aFz aFz -aGI +rHt aeT -gTW -aGs +rbS +qxO aeT aeT aeT @@ -100966,29 +100972,29 @@ dTs dTs aIv aJB -agD +dph adA aBq uMr aJY -aKg -aKz -aKN +qNy +jpT +pzf kmU -aCG -aCM +eJX +mUK dTs dTs -agD -aCG -agK +dph +eJX +oQF dTs dTs dTs dTs -ilq -dAB -dJB +dnY +iyQ +dKq dLk dib dib @@ -100996,37 +101002,37 @@ dib dMq aNU asQ -avv -aNy -aNy -aOx -bnA -aSH -bvz -bnA +fEd +hRa +hRa +xNo +eaj +kNr +hHA +eaj aOz aOI -aOB -aPn +nBD +oNO aPN aPN -aQz -aPc -aPn +hRs +tzR +oNO aPN -aQz -aPc -aOB -aPc -aUN -aUN -aUN -aWL -aUN -aVU -bcI -bcO -bcO +hRs +tzR +nBD +tzR +rBs +rBs +rBs +nYW +rBs +uDk +kqY +ndA +ndA bgb aUU biC @@ -101034,33 +101040,33 @@ bka bka blf bgl -bMT +fGA bzY -buh -buh -buh -buh -buh -buh -buh -aie -dTs -dTs -aeO -cpY -cpY -cpY -cpY -czU -dWT +pzg +pzg +pzg +pzg +pzg +pzg +pzg +jpO +dTs +dTs +uFM +koo +koo +koo +koo +tvP +vLh cCH clZ dpI crW -cUc -cmc -cpY -cpY +sNz +jpr +koo +koo dbL puM ddn @@ -101068,9 +101074,9 @@ dbN dbN dbN dbN -dhf -dhf -dhf +rVu +rVu +rVu dbN dbK dbK @@ -101080,24 +101086,24 @@ dbK dbK dbK dbK -cUc +sNz cCH dpI clZ kmr -cUc +sNz ydw -aTe -aUa -aUb -bvq -aUb -buz -bLK +kUT +nXZ +uxL +nKh +uxL +sjd +iUu aQP aSw -aUb -bEb +uxL +xYx aSw aQP dTs @@ -101124,51 +101130,51 @@ acu acu dTs akk -oRZ +pWE akK akK akK -alF +oHG alP -amB -amz -amz -apj +mDe +kjn +kjn +goU anP -anU -aoR -aoT -aoT -apK -aqk -aqL -aqV -arn -aqs -aoT -apK +roR +hCh +iCT +iCT +rTn +hir +qKk +eYR +iCH +ffK +iCT +rTn anQ -auS -avi -aww -awy -auT -auT -axv -aOj +spP +pid +eMl +iLM +eLd +eLd +cOg +lOs aOY -cqS +faH dTs dTs aeT -aFU +plM aFz aFz aFz aFz aFz aFz -aGI +rHt aeT dTs dTs @@ -101180,16 +101186,16 @@ dTs dTs aJc aJQ -aBd -aKB +hlA +iVi aFz aFz aFz -aHc -aGX -aGR -aGg -aGs +jVS +kwl +gGO +rxE +qxO aeT aeT dTs @@ -101198,69 +101204,69 @@ dTs dTs aIv aIv -aIF -aIG -agD +cwv +gvy +dph adA adA axD -aJZ -aKh -aKA +eEJ +gNg +ssX vSH adA -aEX +mlN azT azT dTs -agD -aFr -aGi +dph +nsL +qRH dTs dTs dTs dTs -ilq -cAg +dnY +xoU dJT -dEY +cSS dib dib dib dMq aNU asS -aNy -aNy -aNy -aNy -bnA -aSH +hRa +hRa +hRa +hRa +eaj +kNr aid -aCo -aOA -aOB -aOB -aPn +uMu +qoP +nBD +nBD +oNO aPN aQl -aQz -aPc -aRh +hRs +tzR +lgy aPN -aQz -aPc -aOB +hRs +tzR +nBD aOI aUR -aXa -bgM -bhn -aXa +iZB +udg +qmk +iZB aVn bad -bda -bcO +ghY +ndA bgc aUU biW @@ -101268,16 +101274,16 @@ biW biW biW bgl -aSH -bvz -aeO -aeQ -aeQ -aeQ -aeQ -aeQ -aeQ -aeQ +kNr +hHA +uFM +ygR +ygR +ygR +ygR +ygR +ygR +ygR dTs dTs dTs @@ -101285,14 +101291,14 @@ cmH cmH aJA cmH -cup -cUc +faq +sNz dWW cpR der crW -cUc -clW +sNz +iuN cmH cmH dbL @@ -101310,29 +101316,29 @@ dke dbN dbN dbL -dle -dlR -dlD +hyO +vaR +omi dbL -cUc +sNz cCH dpI clZ crW -cUc +sNz ydw -aTe -aUb -aUW -aUb -aUb -aUb -bUa -brA -cVL -pHU -pHU -pwc +kUT +uxL +ojI +uxL +uxL +uxL +mId +eBA +rGU +lDN +lDN +rTf aQP dTs dTs @@ -101358,51 +101364,51 @@ acu acu dTs akk -ako +tRR akK oXK akK -alG +oYu akk -amx -amz -amz -apj +peT +kjn +kjn +goU anQ -aoc -aoS -aFA -aoT -aoT -aqs -aoT -aoT -aoT -aqs -aFA -aoT -atE -auT -avi -awy -auT -auT -auT -xEP -ath -aaw -atL +oXQ +kIt +pMQ +iCT +iCT +ffK +iCT +iCT +iCT +ffK +pMQ +iCT +jcm +eLd +pid +iLM +eLd +eLd +eLd +fNf +pSn +eqS +ttV dTs dTs aeT -aFU +plM aFz aFz aFz aJT aFz aFz -aGI +rHt dTs dTs dTs @@ -101415,7 +101421,7 @@ dTs aJc aBf aBe -aKd +srY aFz aFz aFz @@ -101423,8 +101429,8 @@ aFz aFz aFz aFz -aGg -aGs +rxE +qxO aeT azT dTs @@ -101433,58 +101439,58 @@ dTs aIv aIv aJB -aIH -aEV +mgq +sJp adA adA aBq -aKa -aKi +xZK +obb eAe gOE adA -aEX +mlN azT azT -aEU -aEV +weP +sJp adA -aFr -aJV +nsL +oUE dTs dTs dTs dTs -cAg +xoU dJT -dEY +cSS dib dib dib dMq aoi atY -aNy -aNy +hRa +hRa aNS aNU -bnA -aSH +eaj +kNr bzY -aie -aOB -aOB -aOB -aPo -aPW -aPW -aQF -aQp -aRI -aSR -aQB -aPc -aOB +jpO +nBD +nBD +nBD +uOf +wWo +wWo +rwl +iRf +fqS +lNB +miq +tzR +nBD aOI aUc aUc @@ -101493,23 +101499,23 @@ aUc aUc aUU bcK -aVU -bfR +uDk +gyL bcK aUU -bnA -bCH -bCH -aTx -bnA -aSH -bvz -bYN +eaj +hpV +hpV +gMJ +eaj +kNr +hHA +kOE bKI bjV bjV -bkP -bkm +piI +eQN dTs dTs dTs @@ -101519,19 +101525,19 @@ dTs dTs cmH cmH -cup -cUc +faq +sNz dWW clZ dpI crW -cUc -cko +sNz +jPo dap dap dap dap -ddq +gco dap dap dfv @@ -101540,33 +101546,33 @@ dbN dbN dbN rlU -wjC -lzZ +nIS +tML dbN dbL dbL -dlC +ldv dbL dbL -cUc +sNz cCH dpH cET crW -cUc +sNz tMy -aTN -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aUb -cSU +erW +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +rwf aQP dTs dTs @@ -101592,51 +101598,51 @@ acu acu dTs akk -akE +hPb akK akK akK -alH +pzm alP -amx -amz -amz -apj +peT +kjn +kjn +goU anQ -aod -aoT -apB -apB -apB -aqt -aqN -aqN -aqN -arU -asn -asn -atF -awQ -avz -auT -auT -auT -axa +jdn +iCT +pkg +pkg +pkg +twr +mpf +mpf +mpf +jiR +kvr +kvr +kXp +sjk +qHO +eLd +eLd +eLd +mbz oUN -aSi -aSi +gFT +gFT dTs dTs dTs -ccK -aFU +fdi +plM aFz aFz aFz aFz aFz vte -aGI +rHt dTs dTs dTs @@ -101646,10 +101652,10 @@ dTs dTs dTs dTs -aAW -aBg +tHY +eSB aJQ -aKd +srY vte aFz aFz @@ -101658,16 +101664,16 @@ aFz aFz aFz aFz -aGI +rHt aeT azT azT dTs -awR +xzO aIv -aIF -aIG -agD +cwv +gvy +dph adA adA adA @@ -101677,7 +101683,7 @@ gOE adA adA adA -aEX +mlN azT dTs dTs @@ -101685,63 +101691,63 @@ adA adA kmU adA -aJV +oUE dTs dTs dTs dTs -dLj -cEW +rCU +rwN dib dib dib dMq aoi atZ -aNy -aOn +hRa +fOO auZ aoi -aRl -aSH -bvz -bnA +vUb +kNr +hHA +eaj aOz aOH -aPc -aOB -aOB -aOB -aOB -aOB -aOB -aOB -aOB -aPc -aPc +tzR +nBD +nBD +nBD +nBD +nBD +nBD +nBD +nBD +tzR +tzR aOH aOy -bnA -aPq -aPx -aTx -ajW -bnA -awo -aCo -bnA -ajW -bnA -bCI -bCI -bnA -bnA -aSH -bvz -bYN +eaj +fmG +lgl +gMJ +oSV +eaj +eVm +uMu +eaj +oSV +eaj +tes +tes +eaj +eaj +kNr +hHA +kOE bjV bjV -bkP +piI dTs dTs dTs @@ -101753,20 +101759,20 @@ dTs dTs dTs cFK -cup -cUc +faq +sNz cCH clZ dpI crW -cUc -cko +sNz +jPo dap -daP -dbO -dcy -ddr -dbP +tIR +xyq +vxP +fMC +yen dap dbN dge @@ -101774,33 +101780,33 @@ dhg dhg dhj rlU -nMO -oOj +nzJ +pst dbN dlB -dlQ -dlR -dmO +mcp +vaR +oTx dbL -cUc +sNz cCH dpI clZ crW -cUc +sNz ydw -aTe -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aUW -aUb -aUb -cSX +kUT +uxL +uxL +uxL +uxL +uxL +uxL +uxL +ojI +uxL +uxL +xLs aQP dTs dTs @@ -101826,52 +101832,52 @@ acu acu dTs akk -akF +yam akK akK akK -alH +pzm alP -amx -amz -amz -apj +peT +kjn +kjn +goU anQ -aoA -aoT -aoT -aoT -aoT -aoT -aFA -aoT -aoT -aoT -aoT -apF +jiu +iCT +iCT +iCT +iCT +iCT +pMQ +iCT +iCT +iCT +iCT +bcw anQ -auV -avO -awN -awT -auT -axb +flK +vhl +rPO +sYX +eLd +tNS gab aOh -aRM +nda dTs dTs -aam -aiL -aFU +imR +ege +plM aFz aFz aFz aFz aKH aFz -aGg -aGs +rxE +qxO dTs dTs dTs @@ -101883,25 +101889,25 @@ aAN aAX aBh aJQ -aBd -aKB +hlA +iVi aFz aFz aFz aFz aFz aFz -bfh -bfi +pZN +ejd aeT azT azT azT -awW -aIx -aIG -tKQ -agD +bxO +hEH +gvy +uPv +dph adA adA aBF @@ -101914,17 +101920,17 @@ adA dTs dTs dTs -akq -agK -agK -agC +uPI +oQF +oQF +mob aHz fcE dTs dTs dTs dTs -cEW +rwN dib dib dib @@ -101932,14 +101938,14 @@ dib dMq aoi auZ -aNy -aNy +hRa +hRa aOt aoi -bnA -aSH -bvz -bnA +eaj +kNr +hHA +eaj aOy aOH aOH @@ -101949,32 +101955,32 @@ aOI aOH aOI aOH -aOB -aOB +nBD +nBD aOH beS bgG aOy -bnA -aPr -aPZ -bnA -bnA -bnA -btR -bux -aHP -aHP -bnA -bCJ -bCJ -bnA -bnA -aSH -bvz -bYN +eaj +hBx +qkA +eaj +eaj +eaj +wLA +gUM +ibs +ibs +eaj +mva +mva +eaj +eaj +kNr +hHA +kOE bjV -bkP +piI dTs dTs dTs @@ -101987,20 +101993,20 @@ dTs dTs dTs dTs -cup -cUc +faq +sNz cCH dXe der crW -cUc -cko +sNz +jPo dap -daQ -dbP -heR -ddr -dej +iSG +yen +nPt +fMC +iWh dap eeL dgf @@ -102008,33 +102014,33 @@ dhh dhh diN dbN -wjC -dhe +nIS +kUB dbN -dkL -dlR -dIu -dmP +eUD +vaR +jLt +pEQ dgo -cUc +sNz hIO dpI clZ crW -cUc +sNz ydw -aTe +kUT aUt aUt -aUb -aUb -aUb +uxL +uxL +uxL aUt aUt aUt -aUb -aUb -cSY +uxL +uxL +gjX aQP dTs dTs @@ -102060,44 +102066,44 @@ acu acu dTs akk -akG -ale +vbq +tVW akK akK -alH +pzm akk -alT -ant -amz -apj +xql +jZY +kjn +goU anP -aoC -aoT -aoT -apF -aqd -aqu -aoT -apF -arr -aqu -aoT -apI +jGM +iCT +iCT +bcw +xsA +soh +iCT +bcw +wOw +soh +iCT +seV anP aJd aJd aJd aJd -awZ +fyl aJd gab aOh -aWz -bgH -aam -azA +xAO +xir +imR +jVA aeT -aFU +plM aFz aFz aFz @@ -102105,37 +102111,37 @@ aFz aKI aGh aGb -aGg -aGs +rxE +qxO dTs dTs aFz -aAz +pre dTs aJc -aAO +oWl aAX aBh aJQ -aAY -aKd +ghg +srY aFz aFz aFO aFz aFz aFz -aGI +rHt lMc aeT azT azT azT azT -tKQ -tKQ -tKQ -agD +uPv +uPv +uPv +dph adA adA adA @@ -102151,9 +102157,9 @@ azT azT azT azT -agD +dph aHC -aCG +eJX dTs dTs dTs @@ -102170,10 +102176,10 @@ aNS auZ auZ aoi -bnA -aSH -bvz -bnA +eaj +kNr +hHA +eaj aOy aOy aOz @@ -102183,32 +102189,32 @@ aOz aOz aOy aOz -aOB -aTW +nBD +xIL aOz aOy aOy aOy -bnA -aPw -aQv -bnA -aPd -bnA -btR -bux -aHP -aHP -bnA -bnA -bnA -bnA -bnA -aSH -bvz -bYN +eaj +rTs +hsv +eaj +gfH +eaj +wLA +gUM +ibs +ibs +eaj +eaj +eaj +eaj +eaj +kNr +hHA +kOE bjV -brj +eHm dTs dTs dTs @@ -102221,20 +102227,20 @@ dTs dTs dTs dTs -cup -cUc +faq +sNz cCH dWZ dpI crW -cUc -cko +sNz +jPo dap -daQ -heR -gBV -ddr -dbP +iSG +nPt +wSB +fMC +yen dap dbN dgf @@ -102245,30 +102251,30 @@ dbN dkh dkM dkM -dlS -dlS -dme -knm +iZA +iZA +bqs +eeH dgo -cUc +sNz cCH dpH cET crW -cUc +sNz ydw -aTe +kUT aUP aUt -aUb -aUb -aUb +uxL +uxL +uxL aUt cxK aUt -aUb -aUb -cTg +uxL +uxL +mVI aQP aQP dTs @@ -102295,43 +102301,43 @@ acu dTs akk akk -alf +rTw akK akK -alJ +jAV alP -amy -amz -amz -anD +ivv +kjn +kjn +uOo anP anQ -aoU -aoU +jZp +jZp anQ anP anQ -aqP +oHb anQ anP anQ -aqP +oHb anQ anP -ava -avP -awO -awO -awO -awO +wCK +dCv +qHv +qHv +qHv +qHv gab aOh -aWA -aXY +kqV +sMf aeE aeE -aGQ -dUz +oev +dBL aFz aFz aFz @@ -102340,44 +102346,44 @@ azP rAo aGh azW -aGg -aGX -aGR +rxE +kwl +gGO aFz -aAz -aAG +pre +lPB aJc -aAO +oWl aAX aBh aBf aBe -aKd +srY aFz aFz vte aFz aFz aFz -aGI +rHt aeT aeT azT azT azT -tKQ -tKQ -tKQ -tKQ -akq -agK -agK -agK -iuk -agK -agK -agK -agK +uPv +uPv +uPv +uPv +uPI +oQF +oQF +oQF +qaa +oQF +oQF +oQF +oQF dTs dTs azT @@ -102385,9 +102391,9 @@ azT azT azT azT -lrn -aCG -aCM +qxU +eJX +mUK dTs dTs dTs @@ -102404,71 +102410,71 @@ aNU aNU aoi aoi -bnA -aSH -bvz -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -ajW -bnA -awo -aCo -bnA -ajW -bnA -bnA -bnA -bnA -bnA -bnA -aHP -aHP -btR -bux -bnA -aHP -bnA -aTx -bnA -bnA -bnA -aSH -bvz -bYN -bXG -bqp -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -cup -cUc +eaj +kNr +hHA +eaj +eaj +eaj +eaj +eaj +eaj +eaj +eaj +oSV +eaj +eVm +uMu +eaj +oSV +eaj +eaj +eaj +eaj +eaj +eaj +ibs +ibs +wLA +gUM +eaj +ibs +eaj +gMJ +eaj +eaj +eaj +kNr +hHA +kOE +noB +wJC +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +faq +sNz cCH dWZ dpI crW -cUc -cko +sNz +jPo dap -daQ -heR -dbP -dds -dej +iSG +nPt +yen +puy +iWh dap dbN dgf @@ -102480,30 +102486,30 @@ dki dbN dbN dlB -dlR -dmf -dmQ +vaR +nXy +jAz dbL -cUc +sNz cCH dpI clZ crW -cUc +sNz tMy -aTO +oDK aUV aUt -aUb -smJ -aUb +uxL +ksB +uxL rVo aUt aUt -aUb -aUb -cTv -cTZ +uxL +uxL +lHk +nZF aQP dTs dTs @@ -102529,42 +102535,42 @@ acu dTs dTs akk -akn +gUO akK akK akK alR -amz -amz -amz -aiH -akj -amy -amz -amz -apj +kjn +kjn +kjn +lSI +tCz +ivv +kjn +kjn +goU anP -mNC -aoT -apI +neJ +iCT +seV anP -aqv -aoT -apI +qtC +iCT +seV anP aJd aJd -awO -aKc -awO -awO +qHv +kdv +qHv +qHv gab -aPg +mFb cTE -aWz +xAO aeE aeE -aFU +plM aFz aFz aFz @@ -102578,48 +102584,48 @@ aFz aFz aFz aFz -aAA -aAH -aAI -aAP +pdt +xuy +lgM +xai aAN aBh aJc aJQ -aKd +srY aFz aFz aFz aFz aBC -bfh -bfi +pZN +ejd aeT aeT azT azT -tKQ -tKQ -tKQ -tKQ -tKQ +uPv +uPv +uPv +uPv +uPv aBk -tKQ +uPv aBk -tKQ -tKQ +uPv +uPv aBk -tKQ -tKQ +uPv +uPv aBk dTs dTs -aBW -wyo -wyo -wyo +nlx +yiK +yiK +yiK iNF -sPS +pOo dTs dTs dTs @@ -102630,52 +102636,52 @@ bLJ bLJ bLJ bLJ -ack -adM -bnA -bnA -bnA -bnA -bnA -bnA -bnA -aSH -bvz -bnA -bnA -bnA -bnA -bnA -bXB -bul -aiP -aiP -aiP +obA +wnm +eaj +eaj +eaj +eaj +eaj +eaj +eaj +kNr +hHA +eaj +eaj +eaj +eaj +eaj +liu +hWn +urS +urS +urS aid aid -bul -bul -bul -bul -bul -bul -aiP -aiP -aiP -aiP +hWn +hWn +hWn +hWn +hWn +hWn +urS +urS +urS +urS aid aid -bul -bul -bul -bul -bul -bul -bul +hWn +hWn +hWn +hWn +hWn +hWn +hWn bzY -bvz -bYN -brj +hHA +kOE +eHm dTs dTs dTs @@ -102690,19 +102696,19 @@ dTs dTs dTs dTs -cUc +sNz cCH dXe der crW -cUc -cko +sNz +jPo dap -daQ -heR -heR -dbP -dbP +iSG +nPt +nPt +yen +yen dap dcx dgf @@ -102714,30 +102720,30 @@ pIe uGO dbL dbL -dlR -dmf -dlR +vaR +nXy +vaR dgo -cUc +sNz cCH dpI clZ crW -cUc +sNz ydw -aTe +kUT aUX aUt -aUb -hRU -aUb +uxL +ugw +uxL rVo cxL aUt -aUb -aUW -cTw -cUa +uxL +ojI +els +fZC aQP dTs dTs @@ -102763,42 +102769,42 @@ acu dTs dTs akk -alg +xCp akK akK akK akK -amz -amz -amz -aoq -amz -amz -amz -amz -apj +kjn +kjn +kjn +lHX +kjn +kjn +kjn +kjn +goU anP -aoA -aoS -apI +jiu +kIt +seV anP -aoA -aoS -apI +jiu +kIt +seV anP -ava -avP -awO -awV -awV -axf +wCK +dCv +qHv +sZe +sZe +nWF gab -aPi -aSk -aRN +qyU +reA +svd ail aeE -aFU +plM aFz aFz aFz @@ -102813,42 +102819,42 @@ vte aFz aFz aFz -aAz -aAG +pre +lPB aJc -aAP -aBi +xai +jCj aJc aJQ -aKd +srY aFz aFz aFz aFz aFz -aGI +rHt aeT dTs dTs azT azT -tKQ -tKQ -tKQ -tKQ -dTs -tKQ -tKQ -tKQ +uPv +uPv +uPv +uPv +dTs +uPv +uPv +uPv aBk -tKQ -tKQ -tKQ +uPv +uPv +uPv aBk dTs dTs -aBW -rbp +nlx +hLA ioA ioA ioA @@ -102859,56 +102865,56 @@ dTs dTs dTs dTs -aaO +xMJ bLJ bLJ bLJ bLJ acr adN -bnA -bXB -bul -bul -bul -bul -bul +eaj +liu +hWn +hWn +hWn +hWn +hWn bzY bzY -bul -bul -bul -bul -bul +hWn +hWn +hWn +hWn +hWn bzY aid -ajA -ajA -ajA -ajA -ajA -ajA -ajA -ajA -ajA -buh -buh -ajA -ajA -buh -buh -buh -buh -buh -buh -buh -buh +dmb +dmb +dmb +dmb +dmb +dmb +dmb +dmb +dmb +pzg +pzg +dmb +dmb +pzg +pzg +pzg +pzg +pzg +pzg +pzg +pzg bzY bzY -buh -buh -aie -bWI +pzg +pzg +jpO +tkC dTs dTs dTs @@ -102924,19 +102930,19 @@ dTs dTs dTs dTs -cUc +sNz cCH dWZ dpI crW -cUc -cko +sNz +jPo dap -daQ -dbP -dbP -dbP -jJn +iSG +yen +yen +yen +dGP dap eeM eeR @@ -102944,34 +102950,34 @@ eeS eeS eeT dbL -dkj +kCO dbL dbL -dlE -dlR -dmf -dmP +uJv +vaR +nXy +pEQ dgo -cUc +sNz cCH dpH cET kmr -cUc +sNz ydw -aTe +kUT aUY nYf -aUb -aUb -aUb +uxL +uxL +uxL rVo aUt aUt -aUb -aUb -aUb -cUa +uxL +uxL +uxL +fZC aQP dTs dTs @@ -102997,28 +103003,28 @@ acu dTs dTs akk -aly -alA -alB -alB +kqy +tsw +iEe +iEe alP -amB -amz -amz -amz -amz -amz -amz -amz -aFF +mDe +kjn +kjn +kjn +kjn +kjn +kjn +kjn +kxO anP -aqx -aoT -apI +nmZ +iCT +seV anP -aqx -aoT -apI +nmZ +iCT +seV anP aJd aJd @@ -103027,13 +103033,13 @@ aJd aJd aJd gab -aan -ady +lWH +gfj aeE aeE aeE -bel -beM +wNE +xoW aFz aFz aFz @@ -103047,21 +103053,21 @@ aFz aFz aFz aFz -aAz -aAJ -aAI +pre +rfq +lgM aJc aJc -aJf -aJH -aKd +nyl +tNi +srY aFz aFz aFz aFz aFz -aGg -aGs +rxE +qxO aeT dTs dTs @@ -103071,17 +103077,17 @@ dTs dTs dTs dTs -tKQ -tKQ -tKQ -gXr +uPv +uPv +uPv +xKT aBk aBs -tKQ +uPv dTs dTs dTs -uhf +pDa ioA ioA ioA @@ -103093,56 +103099,56 @@ dTs dTs dTs aao -aaO +xMJ bLJ bLJ bLJ bLJ acr adN -bnA -atc -buh -buh -buh -buh -buh -buh -buh -buh -buh -buh -buh -buh +eaj +rqw +pzg +pzg +pzg +pzg +pzg +pzg +pzg +pzg +pzg +pzg +pzg +pzg bzY -bvz -bnA -bnA -bnA -bnA -bnA -aHP -aHP -aHP -aHP -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -aSH -bvz -aeO -aeQ -aeQ -aiy +hHA +eaj +eaj +eaj +eaj +eaj +ibs +ibs +ibs +ibs +eaj +eaj +eaj +eaj +eaj +eaj +eaj +eaj +eaj +eaj +eaj +eaj +kNr +hHA +uFM +ygR +ygR +vSh dTs dTs dTs @@ -103158,54 +103164,54 @@ dTs dTs dTs dTs -cUc +sNz cCH clZ dpI crW -cUc -cko +sNz +jPo dap -daQ -dbP -dcz -ddu -dek +iSG +yen +oDS +sWh +gxA dap -cYs +nRv dgh cnU cnU diR -eeU -dkk -cko +lWd +idY +jPo dbL -dlF -dlT -dmg -dmR +kDv +gcR +wwk +nCn dbL -cUc +sNz cCH dpI clZ crW -cUc +sNz ydw -aTe +kUT aVa aUt -aUb -aUb -aUb +uxL +uxL +uxL aUt cxK aUt -aUb -aUb -aUb -cUd +uxL +uxL +uxL +vpL aQP dTs dTs @@ -103236,23 +103242,23 @@ akk akk akk akk -amx -amz -amz -anv -anq -amB -amz -anv -anM +peT +kjn +kjn +iox +olG +mDe +kjn +iox +xEn anP -ujl -aqd -aqW +hRy +xsA +nYg anP -aqD -aqd -aqW +kcK +xsA +nYg anP dTs dTs @@ -103261,14 +103267,14 @@ dTs dTs dTs dTs -aam -aam -ady +imR +imR +gfj aeE aeE dTs -bel -beM +wNE +xoW aFz aFz aFz @@ -103281,21 +103287,21 @@ aFz aFz anu aFz -guK -aAK -aAJ -aKO -aKO -aJH -aJI -aJR +rde +uQU +rfq +fbP +fbP +tNi +ohh +guG vte aFz aFz aGF aFz -bfh -bfi +pZN +ejd aeT aeT aeT @@ -103315,8 +103321,8 @@ aBL dTs dTs dTs -aBO -aBR +rWQ +foC uKo uKo uKo @@ -103326,56 +103332,56 @@ dTs dTs dTs dTs -aap -aaW +taW +ybB abn bLJ bLJ bLJ -adp -adP -bnA -ate -awn -bnA -bnA -aPd -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -aSH -bvz -bnA -alw -amT -amT -amT -aLh -amT -amT -amT -aOZ -bnA -alw -amT -amT -amT -aLh -amT -amT -amT -aOZ -bnA -aSH -bvz -bYN +txZ +gFt +eaj +tXs +pdu +eaj +eaj +gfH +eaj +eaj +eaj +eaj +eaj +eaj +eaj +eaj +kNr +hHA +eaj +gpQ +qYB +qYB +qYB +jpy +qYB +qYB +qYB +hHJ +eaj +gpQ +qYB +qYB +qYB +jpy +qYB +qYB +qYB +hHJ +eaj +kNr +hHA +kOE bjV -bkP +piI dTs dTs dTs @@ -103397,8 +103403,8 @@ cCH cpR der crW -cUc -cmc +sNz +jpr dap dap dap @@ -103406,40 +103412,40 @@ dap dap dap dap -dfw +eox cCH clZ clZ crW -cko -dkk -cko +jPo +idY +jPo dbL dbL dbL dbL dbL dbL -dfw +eox cCH dpI clZ crW -cUc +sNz tMy -aTN +erW aUt aUt -aUb -jtz -aUb +uxL +rfr +uxL aUt aUt aUt -aUb -aUb -bUb -cUv +uxL +uxL +rit +gqd aQP dTs dTs @@ -103470,13 +103476,13 @@ dTs dTs dTs apW -amx -amz -amz -apj +peT +kjn +kjn +goU aas aas -awY +tHy aas aas anP @@ -103494,15 +103500,15 @@ dTs dTs dTs dTs -aam -aam -aam -azA +imR +imR +imR +jVA aeE aeE dTs dTs -aFU +plM vte aFz aFz @@ -103516,19 +103522,19 @@ aFz aFz aFz aFz -aAA -aAK -aAY -aJI -aKP -aJR +pdt +uQU +ghg +ohh +ieB +guG aFz aFz aFz aFz aFz vte -aGI +rHt aeT aeT aeT @@ -103541,7 +103547,7 @@ dTs dTs aBL qmy -qJU +lbQ aBE aBE aCk @@ -103558,56 +103564,56 @@ dTs dTs dTs dTs -mnc -mnc -aaD +pmP +pmP +ofc aao -aaO +xMJ bLJ bLJ bLJ bLJ -adQ -adS +siz +kOw ael -aeI -bnA -aOm -aPk -aPk -aPk -aPk -aPk -aPk -aPk -ahy -bnA -aSH -bvz -bnA -alx -ano -atA -aMl -aMx -aMx -aOd -aPl -aPf -bnA -alx -ano -aRJ -aTa -aUT -aUT -aWI -aPl -aPf -bnA -aSH -bvz -bYN +sdF +eaj +qjk +xoP +xoP +xoP +xoP +xoP +xoP +xoP +jHT +eaj +kNr +hHA +eaj +qGJ +pTm +ups +qHM +wmJ +wmJ +tQw +nsm +ktI +eaj +qGJ +pTm +dYq +ewl +aQD +aQD +niG +nsm +ktI +eaj +kNr +hHA +kOE bjV dTs dTs @@ -103631,8 +103637,8 @@ cCH clZ dpI crW -cUc -clW +sNz +iuN cmH cmH cmH @@ -103640,39 +103646,39 @@ cmH cmH cmH cmH -cBJ +hTX cCH clZ clZ crY clY dkl -dkN +mSV cmH cmH cPz csb cmH cmH -cBJ +hTX hIO dpH cET crW -cUc +sNz ydw -aTe +kUT aVb aUt -aUb -aUb -aUb -aUb -aUb -aUW -aUb -aUb -cTg +uxL +uxL +uxL +uxL +uxL +ojI +uxL +uxL +mVI aQP aQP dTs @@ -103704,14 +103710,14 @@ dTs dTs dTs aas -anx -anC -anC -aqZ +eqU +mUy +mUy +uxz aas -atJ -aus -axA +rFx +vQx +utF aas dTs dTs @@ -103729,14 +103735,14 @@ dTs dTs dTs aRv -abW -aje +jwB +pAH adc adc aRv dTs aeT -aFU +plM azE aFz aFz @@ -103751,9 +103757,9 @@ aFz aFz aJT aFz -aAA -aKP -aJR +pdt +ieB +guG aFz aFz aFz @@ -103762,8 +103768,8 @@ aFz aFz aFz aFz -aGg -aGs +rxE +qxO aeT aeT aeT @@ -103775,15 +103781,15 @@ dTs dTs gGC aBU -qJU +lbQ aBE aBE aAv aCk dTs dTs -iwy -gIS +qUr +dnE ndP ndP ndP @@ -103791,22 +103797,22 @@ ndP aBL dTs dTs -mnc +pmP aCk -mnc -aaD +pmP +ofc aao -aaO +xMJ bLJ bLJ bLJ bLJ bLJ -adp -aey -aeJ -bnA -aOo +txZ +tTo +hYn +eaj +fpA aeV aeV aeV @@ -103815,34 +103821,34 @@ aeV aeV aeV ahA -bnA -aSH -bvz -bnA -alx -atA -aMl -aMx -aMx -aMx -aMx -aOD -aPf -bnA -alx -aRJ -aTa -aUT -aUT -aUT -aUT -aXl -aPf -bnA -aSH -bvz -bYN -bkP +eaj +kNr +hHA +eaj +qGJ +ups +qHM +wmJ +wmJ +wmJ +wmJ +fvg +ktI +eaj +qGJ +dYq +ewl +aQD +aQD +aQD +aQD +fvp +ktI +eaj +kNr +hHA +kOE +piI dTs dTs dTs @@ -103865,48 +103871,48 @@ cCH clZ dpI crW -cUc -dIf -cmX -cmX -cmX -cmX -cmX -cmX -cmX -dfx +sNz +nkN +ltY +ltY +ltY +ltY +ltY +ltY +ltY +qGn cCH clZ clZ clZ clZ dkm -cta +rPJ cmH cmH cmH cmH cmH cmH -cBJ +hTX cCH dpI clZ crW -cUc +sNz ydw -aTe +kUT aVa aUt -aUb -aUW -aUb -aUb -aUb -aUb -aUb -aUb -cTA +uxL +ojI +uxL +uxL +uxL +uxL +uxL +uxL +dSE aQP dTs dTs @@ -103938,14 +103944,14 @@ dTs dTs dTs aas -any -app -app -arq +uES +xiY +xiY +kBe aas -atK -aAV -axA +iVn +ydg +utF aas dTs dTs @@ -103963,14 +103969,14 @@ dTs dTs dTs dTs -acY -bAw +tzb +rEs add add add aRv aeT -aFU +plM aFz aFz aFz @@ -103996,8 +104002,8 @@ aFz aFz aFz aFz -bfh -bfi +pZN +ejd aeT aeT aeT @@ -104009,7 +104015,7 @@ dTs dTs aBL tMi -qJU +lbQ aBE aBE aAv @@ -104017,20 +104023,20 @@ aCk dTs aBL aBE -hQM -iwy -iwy -iwy +lVh +qUr +qUr +qUr aCk aBL dTs ufW -mnc -mnc -mnc -aaD +pmP +pmP +pmP +ofc aao -aaO +xMJ bLJ bLJ bLJ @@ -104040,7 +104046,7 @@ bLJ bLJ bUN aeV -aOq +pHl afL agJ aeV @@ -104049,34 +104055,34 @@ avT avT agJ ahA -bnA -aSH -bvz -bnA -alx -awU -aMx -aMx -aMx -aMx -aMx -aMx -aPf -bnA -alx -aSh -aUT -aUT -aUT -aYQ -aUT -aUT -aPf -bnA -atc -aie -bYN -brj +eaj +kNr +hHA +eaj +qGJ +tKs +wmJ +wmJ +wmJ +wmJ +wmJ +wmJ +ktI +eaj +qGJ +tvh +aQD +aQD +aQD +xUz +aQD +aQD +ktI +eaj +rqw +jpO +kOE +eHm dTs dTs dTs @@ -104099,48 +104105,48 @@ cCH cpR der crW -cmU -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvx +jTU +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +oyY cCH clZ clZ clZ clZ dkm -cGJ -cpX -cpX -cpX -cpX -cpX -cpX -cSl +nuR +nBc +nBc +nBc +nBc +nBc +nBc +wGV cCH dpI clZ crW -cUc +sNz ydw -aTe +kUT aUX aUt aUt -aUb -aUb +uxL +uxL aUt -cyt -cyt +wNB +wNB aUt aUt -cTR +oIA aQP dTs dTs @@ -104172,14 +104178,14 @@ dTs dTs dTs aas -any -app -app -arq -asv -aus -aus -axA +uES +xiY +xiY +kBe +hmL +vQx +vQx +utF aas dTs dTs @@ -104198,13 +104204,13 @@ dTs dTs dTs dTs -bAw +rEs add add -bHG -aje +klL +pAH aeT -aFU +plM aFz aFz aFz @@ -104243,15 +104249,15 @@ dTs dTs tMi aCk -gKn +dDu aBE aBE aAv aCk aCk -qJU -azB -xBM +lbQ +moQ +twS aBE aBE nCi @@ -104259,12 +104265,12 @@ dTs dTs dTs ufW -mnc -mnc -mnc -aaD +pmP +pmP +pmP +ofc aao -aaO +xMJ bLJ bLJ bLJ @@ -104274,7 +104280,7 @@ bLJ bLJ bUN aeV -aOq +pHl agl bUN aeV @@ -104283,33 +104289,33 @@ bLJ bLJ bUN ahA -bnA -aSH -bvz -bnA -alY -awU -aMx -aMx -aOl -aMx -aMx -aMx -aPf -bnA -alY -aSh -aUT -aUT -aUT -aUT -aUT -aUT -byV -aeQ -aeQ -aeQ -bFd +eaj +kNr +hHA +eaj +qks +tKs +wmJ +wmJ +xJa +wmJ +wmJ +wmJ +ktI +eaj +qks +tvh +aQD +aQD +aQD +aQD +aQD +aQD +kOa +ygR +ygR +ygR +dBX dTs dTs dTs @@ -104361,20 +104367,20 @@ coZ dpH cET crW -cUc +sNz tMy -aTS -aVc -aVA -bvu -pHU -pHU -xYb -aVA -aVc -aVc -cPC -cTS +mNi +knI +jdk +pUT +lDN +lDN +nnN +jdk +knI +knI +rGy +vBN aQP dTs dTs @@ -104406,14 +104412,14 @@ dTs dTs dTs aas -any -aiM -app -arq +uES +xBs +xiY +kBe asw -atJ -aus -axA +rFx +vQx +utF aas dTs dTs @@ -104431,22 +104437,22 @@ dTs dTs dTs dTs -acY -bAw +tzb +rEs add -bHG -acY -aje +klL +tzb +pAH aeT -aFU +plM aFz aFz aFz aFz aFz aFz -bfh -beM +pZN +xoW aFz aFz aAw @@ -104474,19 +104480,19 @@ aeT aeT aeT dTs -vYZ -iwy -iwy -ayC +wHl +qUr +qUr +eOL aCk aBE -hQM -iwy -iwy -ayC +lVh +qUr +qUr +eOL azC uGL -azB +moQ aBE dTs dTs @@ -104494,11 +104500,11 @@ dTs dTs dTs aCk -mnc -mnc -aaD +pmP +pmP +ofc aao -aaO +xMJ bLJ bLJ bLJ @@ -104508,7 +104514,7 @@ bLJ bLJ bUN aeV -aOq +pHl ags ahv aeV @@ -104517,32 +104523,32 @@ awm awm ahv ahA -bnA -aSH -bvz -bnA -alx -awU -aMx -aMx -aMx -aMx -aMx -aMx -aPf -bnA -alx -aSh -aUT -aUT -aUT -aUT -aUT -aUT -byW +eaj +kNr +hHA +eaj +qGJ +tKs +wmJ +wmJ +wmJ +wmJ +wmJ +wmJ +ktI +eaj +qGJ +tvh +aQD +aQD +aQD +aQD +aQD +aQD +muk bjV -bkP -bkm +piI +eQN dTs dTs dTs @@ -104595,14 +104601,14 @@ cma cUb clZ crW -cWv +vxB tMy aQP aQP aQP bvv -aUb -bEb +uxL +xYx bvv aQP aQP @@ -104640,14 +104646,14 @@ dTs dTs dTs aas -any -app -app -arq -ata -avl -aus -axA +uES +xiY +xiY +kBe +lJI +hGI +vQx +utF aas dTs dTs @@ -104666,27 +104672,27 @@ dTs dTs dTs dTs -bAw +rEs add bIK -acY -aje +tzb +pAH dTs -bel -beM +wNE +xoW aFz aFz aFz aFz -bfh +pZN dTs dTs -beB -beM +nKC +xoW aGv aFz -bfh -aAL +pZN +pVg aFz dTs dTs @@ -104723,26 +104729,26 @@ aBL aCk aBE aAv -aBS +ujD aBL dTs aBE ooQ aCk -mnc -aaD +pmP +ofc aao -aaO +xMJ bLJ bLJ bLJ bLJ bLJ bLJ -ack -aeK -bnA -aOo +obA +ewm +eaj +fpA aeV aeV aeV @@ -104751,31 +104757,31 @@ aeV aeV aeV ahA -bnA -atc -aie -bnA -amh -aFg -aMs -aMx -aMx -aMx -aMx -aPm -aPf -bnA -aQL -aSZ -aTb -aUT -aUT -aUT -aUT -aZi -bAY +eaj +rqw +jpO +eaj +eux +qqw +vWy +wmJ +wmJ +wmJ +wmJ +rUD +ktI +eaj +oQG +sux +bkQ +aQD +aQD +aQD +aQD +pOw +jof bjV -brj +eHm dTs dTs dTs @@ -104829,16 +104835,16 @@ clZ clZ clZ crW -cWV +mhq xOb xec aVd -bby -bvw -blc -blc -bYO -cyw +vlt +mcG +nIr +nIr +jrW +rKL aVd dTs dTs @@ -104874,14 +104880,14 @@ dTs dTs dTs aas -any -app -app -arq +uES +xiY +xiY +kBe asw -avo -axy -axB +dnt +tKb +tpB aas dTs dTs @@ -104900,14 +104906,14 @@ dTs dTs dTs dTs -bAw +rEs add bIK -acY +tzb aRv dTs dTs -aFU +plM aFz aFz vte @@ -104917,11 +104923,11 @@ dTs dTs dTs dTs -beM -bfh -bfi -bel -beB +xoW +pZN +ejd +wNE +nKC dTs dTs dTs @@ -104947,11 +104953,11 @@ uVK aBE azC obv -qjg -azB -azB -azB -xBM +miD +moQ +moQ +moQ +twS aBE aBE aBE @@ -104962,54 +104968,54 @@ aCk aCk aBE aBE -mnc -mnc -aaD +pmP +pmP +ofc aao -aaW +ybB abn bLJ bLJ bLJ bLJ -ack -adU +obA +rFb adN -bnA -aeP -afM -afM -afM -afM -afM -afM -afM -ahQ -aeO -aeQ -aiy -bnA -ami -aMr -aMY -aMs -aMx -aMx -aOv -aRW -aPf -bnA -aQM -aTB -aTc -aTb -aUT -aUT -aWJ -aRW -byW +eaj +sXT +vxC +vxC +vxC +vxC +vxC +vxC +vxC +vKc +uFM +ygR +vSh +eaj +qsy +qBi +ycK +vWy +wmJ +wmJ +iHj +eMs +ktI +eaj +sMQ +qWl +qQw +bkQ +aQD +aQD +rmV +eMs +muk bjV -brj +eHm dTs dTs dTs @@ -105063,16 +105069,16 @@ cmb cmb meN cXx -cFE -eYP +mox +tGa cmH aVe -bem +gkn bvx -blc -vqS +nIr +gol bvx -cyx +mKh aVd dTs dTs @@ -105108,10 +105114,10 @@ dTs dTs dTs oYa -anz -tEn -tEn -arz +iPa +hyr +hyr +tHN oYa oYa oYa @@ -105133,26 +105139,26 @@ dTs dTs dTs dTs -acY -bAw +tzb +rEs add bNu -acY +tzb dTs dTs dTs dTs -beB -beM +nKC +xoW aFz -bfh -bfi +pZN +ejd dTs dTs dTs dTs dTs -bfi +ejd aeT aeT dTs @@ -105185,64 +105191,64 @@ aAv hoc gCS rQQ -qJU +lbQ ooQ aCk aBE aBE teR -aBS +ujD aCk aBE aCk aCk aCk -mnc -aaI -aap +pmP +eRH +taW aao -aaO +xMJ bLJ bLJ bLJ -ack -adU -adX -aeN -aeO -aeQ -aMH -aeQ -aeQ -aeQ -aeQ -aeQ -aeQ -aeQ -ahX -bkP -dTs -dTs -amO -atu -azr -aGm -aMZ -aNa -aOp -aNa -aPh -aeQ -aQN -aYR -bpr -azr -buv -aNa -aOp -aNa -bAZ -bkP +obA +rFb +etn +xqO +uFM +ygR +xkJ +ygR +ygR +ygR +ygR +ygR +ygR +ygR +ylc +piI +dTs +dTs +qZQ +jbv +vFn +tMs +wkl +jbs +lgp +jbs +khZ +ygR +nMK +txl +vgu +vFn +oMz +jbs +lgp +jbs +hcL +piI dTs dTs dTs @@ -105267,46 +105273,46 @@ dTs dTs dTs dTs -dak -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn +swL +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq +wVq cto -qlx +msU cmH aVe -bem +gkn bvx -blc -blc +nIr +nIr bvx -cyx +mKh aVd dTs dTs @@ -105340,14 +105346,14 @@ dTs dTs dTs dTs -aaq +vfg aat -anA -apJ -aqp -arA +vlm +qqe +xAu +mkg aat -avu +qzi dTs dTs dTs @@ -105367,20 +105373,20 @@ dTs dTs dTs dTs -acY -bAw +tzb +rEs add bIK -acY +tzb dTs dTs dTs dTs dTs -bel -beB -bfi -cdX +wNE +nKC +ejd +jPE dTs dTs dTs @@ -105417,43 +105423,43 @@ aBE aBE aAv rCp -mth +uaS fgo -qJU +lbQ aCk aBL aBL aBE aaG -rgT +qIr aBL dTs dTs dTs ufW dTs -aaK -aaD +gqs +ofc aao -aaO +xMJ bLJ bLJ bLJ acr -adX -aeF -ccR -bYN -bkP -dTs -bkm -blt +etn +gqf +sWC +kOE +piI +dTs +eQN +ooL bjV bjV bjV bjV -bkP -bkm +piI +eQN dTs dTs dTs @@ -105461,22 +105467,22 @@ dTs dTs dTs dTs -bkm -bkm -blt +eQN +eQN +ooL bjV -bkP -bkm -blt -bkP +piI +eQN +ooL +piI dTs dTs dTs -bkm -blt +eQN +ooL bjV bjV -brj +eHm dTs dTs dTs @@ -105504,43 +105510,43 @@ dTs dTs dTs dTs -cmc -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -dEP -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cVM -iRU -cmX +jpr +koo +koo +koo +koo +koo +koo +koo +koo +koo +koo +koo +wjq +koo +koo +koo +koo +koo +koo +koo +koo +koo +koo +koo +koo +koo +koo +qls +jiO +ltY aVf -blb +lLz bvx -blc -blc +nIr +nIr bvx -cza +mTH aVd dTs dTs @@ -105574,14 +105580,14 @@ dTs dTs dTs dTs -aaq +vfg aat aat aat aat aat atb -aRx +fDe dTs dTs dTs @@ -105595,17 +105601,17 @@ dTs dTs dTs dTs -acY -kQd +tzb +iIc dTs dTs dTs -acY -acY -bHE +tzb +tzb +goj add bIK -acY +tzb dTs dTs dTs @@ -105615,7 +105621,7 @@ dTs add add bIK -acY +tzb dTs dTs dTs @@ -105646,18 +105652,18 @@ aBE aBL hAv aCk -qjg -azB +miD +moQ aBE aAv hnJ hpL mkU -qJU +lbQ aBE -qjg -azB -azB +miD +moQ +moQ aBL aBL aBL @@ -105667,26 +105673,26 @@ dTs dTs dTs dTs -aaD +ofc aao -aaO +xMJ bLJ bLJ bLJ acr aeb -aOu -ccR -bWI +cXC +sWC +tkC dTs dTs dTs -bkb -blt +iqy +ooL bjV -bkP -bkm -bqp +piI +eQN +wJC dTs dTs dTs @@ -105697,9 +105703,9 @@ dTs dTs dTs dTs -bkb -bkm -bqp +iqy +eQN +wJC dTs dTs dTs @@ -105707,9 +105713,9 @@ dTs dTs dTs dTs -bkb -bkm -bkm +iqy +eQN +eQN dTs dTs dTs @@ -105765,16 +105771,16 @@ cmH cmH cmH dIi -cWN +oQr lfM -lPn -aVu -blc -blc -blc -blc +vFJ +wSr +nIr +nIr +nIr +nIr bvx -czh +hRM aVd dTs dTs @@ -105816,7 +105822,7 @@ aiN aat aat aat -axz +rGj dTs dTs dTs @@ -105827,19 +105833,19 @@ dTs dTs dTs dTs -acY -acY -acY -acY -acY -acY -bFc -bFc -bHE +tzb +tzb +tzb +tzb +tzb +tzb +lfX +lfX +goj add add bIK -acY +tzb dTs dTs dTs @@ -105849,7 +105855,7 @@ dTs add add bIK -acY +tzb dTs dTs dTs @@ -105878,16 +105884,16 @@ aBE aBE dTs aBL -kAJ -ays +nQK +qWP aAv azC kOR -hQM -iwy -iwy -iwy -ayC +lVh +qUr +qUr +qUr +eOL aBE aAv aBL @@ -105902,23 +105908,23 @@ dTs dTs dTs dTs -abu -abJ +vKA +rrL bLJ bLJ bLJ acr aeb -aOu +cXC dTs dTs dTs dTs dTs akP -bkb -bkm -bqp +iqy +eQN +wJC dTs dTs dTs @@ -105999,16 +106005,16 @@ dTs dTs dTs dTs -cWP +piG aTs -aTL -blc -blc -blc -blc -blc +pNs +nIr +nIr +nIr +nIr +nIr bvx -czn +oXy aVd dTs dTs @@ -106043,30 +106049,30 @@ dTs dTs dTs dTs -aax -aax +grT +grT apL aat aat aat aat -avu +qzi dTs add add add -bGp -acY +lBW +tzb dTs dTs dTs -acY -acY -acY -bFc -bFc -bFc -bHE +tzb +tzb +tzb +lfX +lfX +lfX +goj add cjc add @@ -106083,7 +106089,7 @@ dTs add add bIK -acY +tzb dTs dTs dTs @@ -106111,9 +106117,9 @@ ooQ aBE dTs dTs -aBS -uso -ays +ujD +mIB +qWP aCk aBL aBL @@ -106141,7 +106147,7 @@ bLJ bLJ bLJ bLJ -adp +txZ dTs dTs dTs @@ -106235,14 +106241,14 @@ dTs dTs dTs aTz -aUo +oIj aVd -bmQ +vDd bvx bvx bvx bvx -cCW +iYE aVd dTs dTs @@ -106280,23 +106286,23 @@ dTs aay aay apM -aax +grT apL aat aat -avu +qzi add add add add add -bGp -bFc +lBW +lfX dTs -bFc -bFc -bFc -bHE +lfX +lfX +lfX +goj cjc add add @@ -106305,19 +106311,19 @@ add add add add -bHG -acY +klL +tzb dTs dTs dTs dTs dTs dTs -bAw +rEs add add bIK -acY +tzb dTs dTs dTs @@ -106346,17 +106352,17 @@ dTs dTs dTs aBL -ekg -ayC +gyZ +eOL aCk slX aBL -azB -xBM +moQ +twS aBE aBE aCk -qjg +miD aBL aBL dTs @@ -106471,12 +106477,12 @@ dTs dTs cmH aVe -bnw -bzT -lei -bFD -caj -crV +pmI +wcz +pmv +kmL +gCw +iut aVd dTs dTs @@ -106512,13 +106518,13 @@ dTs dTs dTs dTs -anB +pMd aay aay aqo aat aat -avu +qzi cjc add add @@ -106535,9 +106541,9 @@ add add add add -bHG -btE -btE +klL +njg +njg dTs dTs dTs @@ -106547,11 +106553,11 @@ dTs dTs dTs dTs -bAw +rEs add cjc bIK -acY +tzb dTs dTs dTs @@ -106581,18 +106587,18 @@ dTs dTs dTs aBL -azB -azB -xBM +moQ +moQ +twS aAv aCk -qJU +lbQ aBE aBE aBE aAv -ivs -aBS +geF +ujD dTs dTs dTs @@ -106705,11 +106711,11 @@ dTs dTs dTs aVe -bnw -bBM -leJ -bBM -clA +pmI +vXR +slq +vXR +gmN aVd aVd dTs @@ -106750,26 +106756,26 @@ ajf aay aay ass -atd +tEz aat -aRx -aRw -bGp +fDe +uXF +lBW add add adD add -bHG -btE -btE -btE -bym +klL +njg +njg +njg +ebr add add add add -bHG -acY +klL +tzb dTs dTs dTs @@ -106779,9 +106785,9 @@ dTs dTs dTs dTs -acY -acY -bAw +tzb +tzb +rEs add add bIK @@ -106815,9 +106821,9 @@ dTs dTs aBL aBL -ayH -ayH -qJU +ihd +ihd +lbQ aAv aCk aCk @@ -106827,7 +106833,7 @@ aBE aBL aBL aBU -aBV +kxP dTs dTs dTs @@ -106939,11 +106945,11 @@ dTs dTs dTs aVd -bop -bBR -bBR -bGt -crV +fpb +glm +glm +mOB +iut aVd dTs dTs @@ -106982,21 +106988,21 @@ dTs dTs ajf aay -apN -aqX -aqY +eVB +fyr +ioo aat aat -aKX -aRT -aRV +dUU +jUB +mHr add add -bHG -acY -acY -acY -acY +klL +tzb +tzb +tzb +tzb dTs add add @@ -107010,12 +107016,12 @@ dTs dTs dTs dTs -acY +tzb dTs dTs -acY -acY -bAw +tzb +tzb +rEs add add bIK @@ -107047,10 +107053,10 @@ dTs aBE aBE aBL -axw -xmH -ayH -fFw +mWh +qQD +ihd +kGu dTs dTs aBE @@ -107059,9 +107065,9 @@ aBE aBE aBE aAv -aBS -aBV -aBV +ujD +kxP +kxP aBL dTs dTs @@ -107213,43 +107219,43 @@ dTs dTs dTs dTs -aaz -amJ +sJE +nvW aay aqq -ast +lqO aat aat aat aat aat -aRx -aRw +fDe +uXF add -bGp -bFc +lBW +lfX dTs dTs dTs dTs -btE -chl +njg +bPr add add bIK -bDy +xnb dTs dTs -acY -acY -acY +tzb +tzb +tzb dTs -acY -acY +tzb +tzb aRv -acY -bFc -bHE +tzb +lfX +goj add add dTs @@ -107280,21 +107286,21 @@ dTs dTs dTs aBE -xmH -xmH +qQD +qQD rfm -xmH +qQD dTs dTs dTs -azB -xBM +moQ +twS aBL dTs dTs dTs -ayH -nyR +ihd +pTd aBU aBL dTs @@ -107449,43 +107455,43 @@ dTs aar ajf aay -apN -aqX -aqY +eVB +fyr +ioo atf aat aat aat aat aat -aRx -aRT -aRw +fDe +jUB +uXF dTs dTs dTs dTs dTs -acY -bAw +tzb +rEs add add -bGp -bFc +lBW +lfX add -bGp -bFc -bFc -bHE -bFc -acY -acY -abW -bHE +lBW +lfX +lfX +goj +lfX +tzb +tzb +jwB +goj add adD -bHG -btE +klL +njg dTs dTs dTs @@ -107516,20 +107522,20 @@ dTs dTs dTs dTs -gpZ -mHf +fTo +ukl dTs dTs rvd -ayH +ihd trZ dTs dTs dTs dTs -qLD +mTS aBU -glD +jLK aBL dTs dTs @@ -107684,7 +107690,7 @@ aar ajf aay apR -aqY +ioo asu aat aat @@ -107694,32 +107700,32 @@ aat aat aat aat -avu +qzi dTs dTs dTs dTs dTs dTs -bAw +rEs add add add add add -btE +njg add add add add -bFc -bFc -ajD +lfX +lfX +faz add add add bIK -acY +tzb dTs dTs dTs @@ -107750,19 +107756,19 @@ dTs dTs dTs aBU -aBS -aBS +ujD +ujD aCk -aBS -ayH -ayH +ujD +ihd +ihd aBL dTs dTs aBL -pNG -aBV -ivQ +gMv +kxP +oHR aBL aBL dTs @@ -107915,7 +107921,7 @@ dTs dTs dTs dTs -amJ +nvW aay aqo aat @@ -107927,8 +107933,8 @@ aat aat aat aat -axz -axC +rGj +uSD dTs dTs dTs @@ -107936,24 +107942,24 @@ dTs dTs dTs dTs -btE -bym +njg +ebr add add aal -acY -bAw -btE -btE -btE -btE -btE +tzb +rEs +njg +njg +njg +njg +njg adc add add add bIK -acY +tzb dTs dTs dTs @@ -107983,20 +107989,20 @@ dTs dTs dTs aBL -nYz -ayH -aBV +nfv +ihd +kxP aBU aCk -ayH +ihd nFh aBL dTs dTs aBL -duR -xUU -duR +mPq +wKj +mPq aBL dTs dTs @@ -108161,7 +108167,7 @@ dTs dTs dTs aat -avu +qzi dTs dTs dTs @@ -108170,18 +108176,18 @@ dTs dTs dTs dTs -acY -bAw +tzb +rEs add add bIK -acY -acY -acY -acY +tzb +tzb +tzb +tzb dTs -acY -acY +tzb +tzb aRv add add @@ -108217,7 +108223,7 @@ dTs dTs dTs gGC -qLT +hLD dTs aBL aBL diff --git a/maps/map_files/DesertDam/standalone/clfship.dmm b/maps/map_files/DesertDam/standalone/clfship.dmm new file mode 100644 index 000000000000..05925423db23 --- /dev/null +++ b/maps/map_files/DesertDam/standalone/clfship.dmm @@ -0,0 +1,4342 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper General Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"ag" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"ak" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/break_room) +"au" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"av" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"aw" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan8" + }, +/area/lv624/lazarus/crashed_ship) +"az" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"aJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + dir = 4; + density = 1; + closed = 0 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"aK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"aP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"aW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"bf" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = -3 + }, +/turf/open/floor/almayer/green/southwest, +/area/lv624/lazarus/crashed_ship) +"bh" = ( +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"bu" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"bx" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"bM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"bR" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/break_room) +"bV" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/east_wing_hallway) +"ce" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan21" + }, +/area/lv624/lazarus/crashed_ship) +"cw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"cC" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"cD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/backpack/general_belt{ + pixel_y = 3 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"cI" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/emergency_room) +"cO" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"cY" = ( +/obj/structure/machinery/sleep_console, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"dd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"dg" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_3" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"dm" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"dC" = ( +/obj/structure/bed/stool, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"dG" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/adv, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"dK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 3 + }, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"dO" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/west_wing_hallway) +"dT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/storage/bag/trash, +/obj/item/tool/screwdriver, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"dY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"ed" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/shower, +/obj/structure/catwalk, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"eu" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + density = 1; + closed = 0 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"ew" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/toolbox, +/obj/item/toy/deck/uno{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"ex" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Emergency Room" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/emergency_room) +"eQ" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"eV" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"eW" = ( +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/west_wing_hallway) +"fk" = ( +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"fr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"fy" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"fC" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/north_wing_hallway) +"fE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"fR" = ( +/turf/open/floor/almayer/greencorner, +/area/lv624/lazarus/crashed_ship) +"fS" = ( +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"fX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/virology_wing) +"fY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/virology_wing) +"gc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/emerald/northwest, +/area/lv624/lazarus/crashed_ship) +"gj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"gq" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"gs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"gG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"gH" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"gI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/medical/west_wing_hallway) +"gJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"gM" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + icon_state = "plasteel_closed_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"gN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"he" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"hg" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"hj" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"hn" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"hv" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"hw" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"hy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/attached_gun/flamer, +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"hB" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/west_wing_hallway) +"hD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/east, +/area/lv624/lazarus/crashed_ship) +"hN" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/building/substation/central) +"hP" = ( +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"hS" = ( +/turf/open/floor/plating, +/area/desert_dam/building/substation/central) +"ib" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"ii" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/lv624/lazarus/crashed_ship) +"ij" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"ik" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"is" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"iB" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"iC" = ( +/turf/closed/shuttle/ert, +/area/lv624/lazarus/crashed_ship) +"iO" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"iP" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"iX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"jj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/north_wing_hallway) +"jl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"ju" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"jw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/desert_dam/building/medical/morgue) +"jz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"jB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/north_wing_hallway) +"jF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"jI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_y = 1 + }, +/obj/item/stack/sheet/plasteel{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/orange/southeast, +/area/lv624/lazarus/crashed_ship) +"jK" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"jQ" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/lv624/lazarus/crashed_ship) +"jT" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/west_wing_hallway) +"ka" = ( +/obj/item/stool, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"kg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"kk" = ( +/obj/structure/machinery/optable, +/turf/open/floor/plating, +/area/desert_dam/building/medical/morgue) +"kl" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"km" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"kp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"kG" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"kK" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"kN" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"kP" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = -3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3 + }, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"lf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"lg" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"lj" = ( +/turf/open/floor/almayer/greencorner/north, +/area/lv624/lazarus/crashed_ship) +"lm" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/morgue) +"lq" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/toy/katana, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"ls" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"lx" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/lv624/lazarus/crashed_ship) +"lH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"lI" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/treatment_room) +"lW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"lX" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"mc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"mh" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"mo" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"mx" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"mF" = ( +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"mM" = ( +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"mS" = ( +/obj/structure/surface/table/reinforced, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/plating, +/area/desert_dam/building/medical/treatment_room) +"na" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"nj" = ( +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"nl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"nn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"no" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/east_wing_hallway) +"np" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -8 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 9 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"ns" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"nx" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"nB" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"nF" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"nG" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating, +/area/desert_dam/building/substation/central) +"nO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"nP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/treatment_room) +"nQ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"nU" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2" + }, +/area/lv624/lazarus/crashed_ship) +"ok" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"ot" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"ou" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "clf_umbilical_1"; + pixel_x = 1; + pixel_y = 28; + range = 20 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"oA" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/lv624/lazarus/crashed_ship) +"oB" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"oO" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1" + }, +/area/lv624/lazarus/crashed_ship) +"oP" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"pc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"pg" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/treatment_room) +"pi" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/east_wing_hallway) +"pj" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_3_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"pu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/east_wing_hallway) +"pw" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"pA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/virology_wing) +"pD" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"pF" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"pH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/west_wing_hallway) +"pL" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/emerald/northeast, +/area/lv624/lazarus/crashed_ship) +"pN" = ( +/obj/structure/machinery/medical_pod/sleeper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"pU" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_3" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"pY" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_6_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"pZ" = ( +/obj/structure/girder, +/obj/item/stack/rods, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"qb" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ql" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"qm" = ( +/obj/item/storage/pill_bottle/spaceacillin, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/virology_isolation) +"qq" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/substation/central) +"qs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"qx" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing fifty reposessed USCM MRE packets."; + name = "\improper CLF Supply MRE crate (x50)" + }, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"qy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_2" + }, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/north_wing_hallway) +"qz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/west_wing_hallway) +"qA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_2" + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/north_wing_hallway) +"qG" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"qL" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"qX" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"rc" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"ro" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/north_wing_hallway) +"rx" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/treatment_room) +"rC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"rE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_3" + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"rF" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"rJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/north_wing_hallway) +"rO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/east_wing_hallway) +"rP" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_4_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"rT" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"rY" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/plating, +/area/desert_dam/building/medical/north_wing_hallway) +"sb" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"sf" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_s_w" + }, +/area/lv624/lazarus/crashed_ship) +"sm" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"sn" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"so" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/lv624/lazarus/crashed_ship) +"sp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"sq" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"sH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/virology_isolation) +"sK" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"sL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"sQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/restraint/handcuffs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/green/southeast, +/area/lv624/lazarus/crashed_ship) +"sR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/defibrillator, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"tb" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ti" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bridge" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"tk" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_2_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"to" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"tv" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"ty" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/virology_wing) +"tz" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_medic, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"tP" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/lv624/lazarus/crashed_ship) +"tS" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/virology_isolation) +"tT" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/office1) +"tV" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/primary_storage) +"tX" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"tZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"us" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/emergency_room) +"uu" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/morgue) +"ux" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"uy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"uC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Surgery" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"uE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"uF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"uP" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/break_room) +"uT" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/lv624/lazarus/crashed_ship) +"uU" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"uW" = ( +/obj/item/alien_embryo, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"uX" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan9" + }, +/area/lv624/lazarus/crashed_ship) +"va" = ( +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/treatment_room) +"vb" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"vd" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"vf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/emergency_room) +"vg" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/morgue) +"vl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Engineering Storage" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"vp" = ( +/obj/effect/vehicle_spawner/van/fixed{ + color = "#4a9eed"; + desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; + name = "CLF Van" + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"vr" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"vt" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/blue/north, +/area/lv624/lazarus/crashed_ship) +"vZ" = ( +/obj/item/stack/rods, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"wj" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"wk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"ws" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/north_wing_hallway) +"wv" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"wE" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/clothing/accessory/storage/webbing, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"wF" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"wT" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"wW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"wY" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"wZ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"xb" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/virology_wing) +"xk" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/medical/ointment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"xq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"xr" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"xu" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_left" + }, +/area/lv624/lazarus/crashed_ship) +"xI" = ( +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) +"xN" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/morgue) +"xW" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"xY" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"xZ" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"yj" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/north_wing_hallway) +"yl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/hud/health, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"yo" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"yp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/emergency_room) +"yr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" + }, +/obj/item/paper/prison_station/pirate_note/clfship, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"yz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/rifle/mar40/lmg{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"yF" = ( +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"yG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"yJ" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"zd" = ( +/obj/item/weapon/gun/rifle/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"zh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"zj" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" + }, +/area/lv624/lazarus/crashed_ship) +"zr" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"zt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"zx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/break_room) +"zz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"zD" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/lv624/lazarus/crashed_ship) +"zI" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"zN" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"zP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"Ab" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Ae" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/break_room) +"Aj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + density = 1; + closed = 0 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/west_wing_hallway) +"Ak" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"Aq" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan2" + }, +/area/lv624/lazarus/crashed_ship) +"Ar" = ( +/obj/item/stool, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"AE" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"AH" = ( +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/prison/whitegreen/north, +/area/lv624/lazarus/crashed_ship) +"AI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"AJ" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/orange/southwest, +/area/lv624/lazarus/crashed_ship) +"AM" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_2_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"AQ" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"AR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"Bj" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/lv624/lazarus/crashed_ship) +"Bm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/medical/west_wing_hallway) +"Bt" = ( +/obj/item/trash/semki, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/treatment_room) +"BH" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"BJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/virology_isolation) +"BY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"BZ" = ( +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/virology_isolation) +"Ce" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"Cj" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Cm" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/virology_wing) +"Cq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"Cz" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"CD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Medical Bay" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"CK" = ( +/obj/item/circuitboard/apc{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/cell{ + pixel_x = -2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"CL" = ( +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"CM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/north_wing_hallway) +"CR" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"CT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_isolation) +"CY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"De" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"Df" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/emergency_room) +"Do" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/item/storage/box/pillbottles, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"Dp" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"Dq" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_right" + }, +/area/lv624/lazarus/crashed_ship) +"Ds" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/CMO) +"Dv" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Cargo Bay"; + pixel_y = 32 + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"DB" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_color = "green"; + phone_id = "Medical Bay"; + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"DG" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"DH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/virology_wing) +"DQ" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/lv624/lazarus/crashed_ship) +"DT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"DX" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 + }, +/obj/item/storage/backpack/general_belt, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"DZ" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Armoury"; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"Ec" = ( +/turf/open/floor/prison/whitegreen/east, +/area/lv624/lazarus/crashed_ship) +"Ep" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/emergency_room) +"EB" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"EK" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/crashed_ship) +"EO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/morgue) +"ET" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"EU" = ( +/obj/structure/machinery/power/smes/buildable/charged, +/turf/open/floor/almayer/orange/north, +/area/lv624/lazarus/crashed_ship) +"EV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"Fh" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/incendiary{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Fi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/break_room) +"Fj" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/break_room) +"Fl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/transmitter/clf_net/rotary{ + phone_category = "CR-116"; + phone_color = "yellow"; + phone_id = "Engineering" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"Fp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/desert_dam/building/medical/morgue) +"Fu" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"Fx" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/break_room) +"FD" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 3; + pixel_y = 20 + }, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"FQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/treatment_room) +"Ga" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Gd" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"Gk" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"Gn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"Gp" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Gt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"GI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"GM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"GS" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_2" + }, +/area/lv624/lazarus/crashed_ship) +"GZ" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"Hb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Hf" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Hh" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Hn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/morgue) +"Hv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"Hw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/virology_isolation) +"HB" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"HC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"HD" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"HG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/virology_isolation) +"HX" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"Ie" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"In" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bunk Beds" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"It" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"Iv" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/morgue) +"Ix" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Side Entrance" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"IB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"IL" = ( +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/virology_wing) +"IN" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen/north, +/area/lv624/lazarus/crashed_ship) +"IO" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/emergency_room) +"IR" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"IS" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"IV" = ( +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"IX" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"Jf" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"Jt" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"JC" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"JJ" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"JM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"JR" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"JU" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"JV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/morgue) +"JW" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Ki" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"Kl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"Kv" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Kx" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Ky" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"KP" = ( +/turf/open/floor/prison/whitegreen, +/area/lv624/lazarus/crashed_ship) +"KR" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"KZ" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Lf" = ( +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Lm" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"Ls" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3" + }, +/area/lv624/lazarus/crashed_ship) +"Lv" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_r_w" + }, +/area/lv624/lazarus/crashed_ship) +"Lx" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/primary_storage) +"Lz" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"LC" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"LK" = ( +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/primary_storage) +"LL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/medical/west_wing_hallway) +"LM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"LP" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/bigredv2/outside/dorms) +"LU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/virology_isolation) +"LW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Md" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"Mk" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/west_wing_hallway) +"Mm" = ( +/obj/structure/machinery/computer/station_alert{ + icon_state = "atmosb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Mr" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"Mu" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/break_room) +"ME" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"MF" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/morgue) +"MJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"MM" = ( +/obj/structure/girder/displaced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"MN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/north_wing_hallway) +"MO" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/virology_wing) +"MS" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/treatment_room) +"MU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/medical/break_room) +"Nb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_3" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"Nc" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Ni" = ( +/obj/item/stool, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Nt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/virology_isolation) +"Ny" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"NA" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/bright_clean2/southwest, +/area/lv624/lazarus/crashed_ship) +"NE" = ( +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"NL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/west_wing_hallway) +"NP" = ( +/obj/structure/morgue, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"NR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"NZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"Or" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/east_wing_hallway) +"Os" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"OB" = ( +/turf/closed/wall, +/area/desert_dam/building/substation/central) +"OF" = ( +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/break_room) +"OM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ON" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/virology_isolation) +"OQ" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"OS" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/crashed_ship) +"OU" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/office1) +"OW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Hallway" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"Pa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/virology_wing) +"Pn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/west_wing_hallway) +"Po" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"Pr" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/lv624/lazarus/crashed_ship) +"PC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"PD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/west_wing_hallway) +"PE" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"PP" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"PU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"Qi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Qk" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/virology_wing) +"QZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"Rk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/west_wing_hallway) +"Rm" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/north_wing_hallway) +"Rv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"RH" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/virology_isolation) +"RT" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"RU" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"RW" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"RX" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/virology_wing) +"Si" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Sm" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -10 + }, +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"Sr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Dining Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Sv" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/central) +"SA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/east_wing_hallway) +"SE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"SL" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/treatment_room) +"SR" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"SZ" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/morgue) +"Tb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"Tc" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"Tg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/north_wing_hallway) +"Ti" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/west_wing_hallway) +"Tj" = ( +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/east_wing_hallway) +"Tn" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Tp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"Tq" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Ts" = ( +/obj/structure/machinery/computer/communications{ + icon_state = "commb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"Tv" = ( +/obj/structure/girder/displaced, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"Ty" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_white_t_up" + }, +/area/lv624/lazarus/crashed_ship) +"TC" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/desert_dam/building/medical/primary_storage) +"TT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"Ub" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"Ue" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"Uk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_3" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"Um" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/break_room) +"Uu" = ( +/obj/structure/surface/table, +/obj/item/device/autopsy_scanner, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/morgue) +"Uw" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Uz" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/lv624/lazarus/crashed_ship) +"UI" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/lv624/lazarus/crashed_ship) +"UP" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = -3; + pixel_y = 20 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/lv624/lazarus/crashed_ship) +"UQ" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/north_wing_hallway) +"UU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/treatment_room) +"UW" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"Vd" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Vg" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/west_wing_hallway) +"Vh" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"Vw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/virology_isolation) +"VO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/roller, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + faction_group = list("CLF") + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/west_wing_hallway) +"VR" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_1" + }, +/area/lv624/lazarus/crashed_ship) +"VS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"VY" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"Wk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"Wn" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"Ws" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/heavy_barrel, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"Wx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/treatment_room) +"WF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/desert_dam/building/medical/west_wing_hallway) +"WP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"WQ" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/north_wing_hallway) +"WR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"WS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"WY" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"WZ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Xa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/desert_dam/building/medical/east_wing_hallway) +"Xp" = ( +/obj/structure/machinery/power/apc{ + pixel_y = -24; + start_charge = 0 + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"Xv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/west_wing_hallway) +"XB" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_2" + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/north_wing_hallway) +"XG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"XH" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/morgue) +"XS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"XW" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"Yd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/west_wing_hallway) +"Yu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Cargo Hold" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Yw" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"Yz" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"YB" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_9_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"YF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"YG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/west_wing_hallway) +"YP" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"YQ" = ( +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"YR" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"YS" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"YZ" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Zd" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Zf" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"Zp" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/substation/central) +"Zr" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ZA" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/virology_isolation) +"ZE" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"ZG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -4 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"ZH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"ZI" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer/green/northwest, +/area/lv624/lazarus/crashed_ship) +"ZP" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/emergency_room) +"ZQ" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"ZT" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/turf/open/floor/almayer/orange/northeast, +/area/lv624/lazarus/crashed_ship) +"ZV" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/medical/north_wing_hallway) +"ZZ" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) + +(1,1,1) = {" +Vg +sL +Tb +ns +Vh +fE +dm +HB +dd +NZ +Tp +yl +rC +ux +zr +HB +Uk +sL +jF +kp +Ki +ZP +Ep +lH +cw +wW +Hv +PU +IO +xI +xI +xI +xI +xI +xI +xI +xI +"} +(2,1,1) = {" +Wk +ns +Xv +ib +ib +ib +CY +Kl +SE +wk +QZ +qz +gI +ij +VO +eW +Nb +Yd +eW +qz +ZE +ex +cI +EV +Wn +wW +HC +pN +IO +xI +xI +xI +xI +xI +xI +xI +xI +"} +(3,1,1) = {" +to +Rv +Pn +uF +pH +IB +sp +is +Bm +NL +GI +WF +Ti +LL +Ti +Do +rE +TT +pH +Rk +YR +nO +nO +ok +BY +Ue +WY +cY +IO +xI +xI +xI +xI +xI +xI +xI +xI +"} +(4,1,1) = {" +Vg +Ak +jT +eW +Mk +gH +PD +jT +YG +hB +eW +jT +jT +jT +jT +Mk +Aj +gG +Yd +Yd +dO +ZP +aP +RW +vf +Gd +ql +oP +IO +SL +SL +SL +SL +SL +xI +xI +xI +"} +(5,1,1) = {" +lm +MF +MF +MF +MF +MF +MF +ro +nl +WQ +WQ +ii +fy +fy +Lv +fy +iC +uT +au +UW +TC +Df +Df +Df +us +yp +uC +us +Df +fr +Cq +AI +lg +SL +xI +xI +xI +"} +(6,1,1) = {" +lm +NP +NP +NP +NP +NP +MF +XB +qA +qy +rY +fy +YP +AJ +VR +gc +wj +aw +uT +au +UW +ls +tV +UU +va +Wx +pg +wY +rx +iX +nB +pw +ZH +SL +xI +xI +xI +"} +(7,1,1) = {" +lm +RT +RT +RT +RT +jw +MF +WQ +Tg +ii +iC +oA +UP +Uz +VR +XS +GZ +Dp +aw +Pr +LK +Lx +tV +lI +lI +FQ +va +pg +rx +Bt +pg +va +sR +SL +xI +xI +xI +"} +(8,1,1) = {" +lm +gN +uW +xW +xN +Iv +MF +WQ +yG +ce +ZQ +CK +JW +tZ +VR +hj +IV +KR +Md +Dq +iC +iC +Ga +fy +iC +Pr +nP +va +lI +lI +va +pg +sR +SL +xI +xI +xI +"} +(9,1,1) = {" +lm +kl +Hn +Uu +Fp +JV +LP +Lf +VS +fS +EU +tZ +xY +Fl +VR +DB +tZ +tZ +yr +VR +qx +kN +uU +yJ +Yz +aw +uT +au +UW +ls +MS +lI +NR +SL +xI +xI +xI +"} +(10,1,1) = {" +lm +kl +XH +kk +ii +JR +oA +Lf +kK +VR +ZT +tZ +lX +jI +VR +LM +KR +tZ +iP +VR +nx +SR +vp +Lf +SR +NE +aw +uT +au +UW +ls +lI +mS +SL +xI +xI +xI +"} +(11,1,1) = {" +lm +vg +uu +EO +pZ +dT +Si +NE +nj +Ty +GS +vl +GS +GS +sf +YS +jQ +tz +lf +VR +XW +SR +nx +Lf +VY +iO +NE +aw +uT +au +UW +ls +HX +RH +RH +RH +RH +"} +(12,1,1) = {" +lm +SZ +ii +MM +sf +OM +tP +nj +Lf +Lf +tZ +tZ +Sm +bf +VR +DX +KR +tZ +IV +Yu +OS +hv +OS +EK +gq +eQ +tk +NE +aw +iC +iC +Pr +HX +HX +HX +Os +tS +"} +(13,1,1) = {" +lm +ii +oA +tP +VR +Lf +NA +LW +NE +VR +Fu +tZ +tZ +kP +VR +pL +hD +tZ +tZ +tZ +NE +xr +vZ +rF +Hh +cC +pU +dg +Ie +Zd +NE +Aq +ZA +HX +ZA +HX +az +"} +(14,1,1) = {" +uP +Tv +nj +Lf +VR +nj +Lf +Zd +vd +VR +vb +IV +tZ +YQ +Ty +GS +GS +tZ +CD +sf +BH +bh +Zd +AM +mx +vd +Zd +Lf +tb +Lf +nj +Aq +sH +ON +ON +HX +ZA +"} +(15,1,1) = {" +Nc +Ts +ka +nj +VR +uE +nj +Lf +Zd +Ab +JC +KZ +tZ +tZ +ac +tZ +tZ +tZ +nF +VR +ou +Lf +zN +Lf +qb +NE +nj +KP +mF +DG +SR +cO +BZ +HX +ZA +jz +az +"} +(16,1,1) = {" +DG +nj +tP +uy +Ty +Ga +nj +Zd +GS +sf +yo +hP +hP +fk +IV +nF +tZ +nF +yF +fy +AQ +pj +NE +Zd +pY +NE +IN +Lf +Lf +nj +Lf +nn +HX +LU +BZ +gs +az +"} +(17,1,1) = {" +Ab +NE +DG +Lf +ti +oB +Lf +DG +cD +Ty +GS +GS +GS +GS +sf +ju +tZ +eV +Zf +VR +wv +wF +Lf +Uw +eu +Zd +Zd +nj +Zd +NE +SR +sK +jK +Nt +ZA +BJ +az +"} +(18,1,1) = {" +lx +Mm +Ni +NE +Lf +Cj +Zd +Zd +KZ +VR +Tn +Gp +dG +Kv +VR +nF +yz +np +yF +fy +NE +RU +rP +Zd +eu +Ec +Lf +zI +NE +NE +SR +nn +bV +Vw +dC +HG +az +"} +(19,1,1) = {" +UI +DQ +NE +Zd +VR +nj +Zd +Lf +bM +Ab +JJ +Fh +ew +Kv +VR +hw +gJ +ZG +Zf +VR +Dv +NE +NE +nj +hn +Lf +AH +nj +nj +Lf +Ec +Vd +jK +qm +ZA +zt +az +"} +(20,1,1) = {" +sq +UI +DQ +Hf +VR +Zd +IV +tZ +IV +VR +nQ +tX +tX +tX +VR +DZ +ik +PP +yF +VR +AE +gM +Jt +NE +LC +Ie +NE +nj +Lf +Lf +nj +Aq +Tj +km +HX +BJ +Xp +"} +(21,1,1) = {" +HD +Fi +fy +WZ +VR +bu +IV +tZ +tZ +Sr +tZ +tZ +tZ +tZ +Sr +tZ +tZ +xZ +Zf +sm +Lf +ZZ +zd +Lm +tv +Kx +Kx +Tq +Ie +NE +Zd +Aq +pu +CT +Gn +GM +az +"} +(22,1,1) = {" +wZ +ak +UI +zD +sf +sb +bu +tZ +IV +IV +tX +tX +tX +tX +IV +IV +tZ +nF +yF +Ga +NE +Si +xr +Lz +nj +CR +YB +NE +uX +zD +zD +so +pi +ZA +Hw +av +az +"} +(23,1,1) = {" +Fx +OF +zx +Ae +VR +YZ +mh +tZ +IV +Ty +GS +GS +GS +GS +sf +vt +tZ +eV +Zf +VR +BH +Lf +bx +nj +ET +xr +ZZ +uX +Bj +Ls +nU +oO +pi +ZA +Hw +ZA +gs +"} +(24,1,1) = {" +IS +OF +dY +MU +UI +zD +DQ +tZ +IV +VR +ZI +lq +dK +lj +In +IV +tZ +nF +yF +VR +Qi +NE +mM +Lf +Zr +NE +uX +Bj +Ls +nU +oO +ty +MO +ed +xq +Ky +DH +"} +(25,1,1) = {" +zz +dY +Po +Po +Fi +Fj +UI +NE +Ix +sf +Hb +KZ +Ar +tZ +tZ +qL +tZ +tZ +Ws +VR +iB +Zd +nj +Zd +sn +uX +Bj +Ls +nU +oO +ty +ty +MO +ed +na +Ky +YF +"} +(26,1,1) = {" +CL +Cz +hg +rc +ME +CL +Um +ZV +ws +ce +Yw +IX +fk +fR +VR +ot +DQ +IV +hy +xu +zD +zD +zD +zD +zD +so +bV +ty +ty +ty +IL +Ky +MO +qX +xq +Ky +fY +"} +(27,1,1) = {" +CL +Cz +xk +he +qs +OF +Um +yj +MN +UI +zD +DQ +FD +Ub +VR +rT +VR +Mr +uX +so +qq +qq +qq +Tj +Tj +no +Xa +ty +IL +xb +kG +Ky +MO +IR +fX +pA +JU +"} +(28,1,1) = {" +CL +Cz +qG +De +qs +CL +Um +Rm +CM +jj +jl +ce +wE +sQ +VR +pD +VR +uX +Bj +Ls +nU +oO +OB +Tj +pF +SA +PC +MO +Cm +Pa +Ce +Ky +MO +wT +xq +pA +vr +"} +(29,1,1) = {" +dY +dY +Ny +AR +CL +CL +Um +ZV +jB +rJ +OQ +UI +zD +zD +zj +zD +zj +Bj +Ls +nU +oO +Sv +OB +Tj +rO +WS +Gk +MO +wT +wT +EB +wT +MO +ag +xq +XG +Ky +"} +(30,1,1) = {" +zP +dY +dY +dY +CL +Jf +Mu +lW +kg +aJ +PE +Ds +Ds +Ds +Ds +Ds +xI +xI +Zp +hN +hS +nG +OB +pF +MJ +aK +Or +wT +Qk +mo +gj +mo +Tc +RX +xq +XG +Ky +"} +(31,1,1) = {" +uP +bR +bR +bR +bR +uP +uP +UQ +mc +OW +UQ +fC +xI +xI +xI +xI +xI +xI +OU +tT +tT +tT +tT +pF +aW +Gt +pc +WP +JM +JM +DT +JM +mo +It +zh +WR +Ky +"} diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index f66743b6388e..3e51cc19d851 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -7,18 +7,19 @@ }, /turf/open/space, /area/fiorina/oob) +"aag" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/disco) "aak" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "4" }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) -"aaq" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) +"aam" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) "aar" = ( /obj/structure/machinery/power/apc, /turf/open/floor/almayer, @@ -33,6 +34,13 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"aaE" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "aaR" = ( /obj/structure/platform_decoration{ dir = 4 @@ -42,27 +50,32 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"abG" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) +"abi" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"abA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_y = 8 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "abJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ icon = 'icons/obj/structures/doors/2x1prepdoor.dmi' }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"ace" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" +"aca" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"ach" = ( -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/greenblue/southeast, +/area/fiorina/station/botany) "aco" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/sillycup{ @@ -77,62 +90,58 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"acO" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" +"acP" = ( +/obj/item/trash/eat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"adt" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"adP" = ( +/obj/structure/platform_decoration{ + dir = 1 }, /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"adq" = ( -/obj/structure/bed/chair, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"adR" = ( +/obj/structure/machinery/vending/security, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"adE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"aeb" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/fiorina/tumor/servers) -"aej" = ( +"adT" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "4" + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/maintenance) +"aed" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"aeg" = ( /obj/item/weapon/gun/rifle/m16, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/damaged3, -/area/fiorina/station/security) -"aeo" = ( -/obj/structure/monorail{ - name = "launch track" +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"aei" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"aez" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"aeL" = ( +/obj/structure/bed/chair, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) -"aeF" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibup1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"aeI" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"aeS" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"afk" = ( -/turf/open/floor/solarpanel, -/area/fiorina/oob) -"afq" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/station/medbay) +/area/fiorina/station/power_ring) "afO" = ( /obj/structure/bed/sofa/vert/grey/bot{ pixel_y = 8 @@ -143,29 +152,30 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"afX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/darkpurplefull2, +"agb" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"agi" = ( +/turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/servers) -"aga" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"agh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +"agk" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.5 + }, +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) -"agi" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/servers) +"ags" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"agt" = ( +/turf/open/floor/prison/greenbluecorner/west, +/area/fiorina/station/botany) "agv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/peach{ @@ -207,19 +217,51 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"agT" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, +"agM" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/green, /area/fiorina/station/chapel) +"agV" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_3"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"agW" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ahc" = ( +/obj/item/paper/carbon, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ahl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) "ahm" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"aic" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/station/telecomm/lz1_tram) +"ahO" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/servers) +"ahR" = ( +/obj/structure/machinery/door/morgue{ + dir = 2; + name = "Confession Booth" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"aib" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "aif" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -227,11 +269,33 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"aik" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) -"aiv" = ( +"aih" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"aiz" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"aiA" = ( +/obj/structure/surface/rack, +/obj/item/key, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"aiH" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"aiS" = ( /obj/structure/bed{ icon_state = "abed" }, @@ -255,70 +319,42 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"ajw" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) "ajx" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/space/basic, /area/fiorina/oob) -"ajP" = ( +"ajL" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/margherita, +/obj/item/reagent_container/spray/pepper, +/obj/item/clothing/glasses/sunglasses/sechud, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ake" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/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" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"akF" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"ajZ" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" - }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"akp" = ( -/turf/open/floor/prison/green, -/area/fiorina/station/chapel) -"akM" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "akW" = ( /obj/structure/bed/chair/janicart, /turf/open/floor/prison, /area/fiorina/station/medbay) -"akZ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"alC" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"alK" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"alP" = ( -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"alX" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"alY" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/platingdmg1, -/area/fiorina/station/security) +"alG" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"alI" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/pill_bottle/tramadol/skillless, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "amd" = ( /obj/effect/decal/hefa_cult_decals/d96, /obj/item/paper/crumpled/bloody, @@ -330,31 +366,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"amn" = ( -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells) +"amA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/power_ring) "amF" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/aux_engi) -"amZ" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) +"amO" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/station/civres_blue) "ane" = ( /obj/item/weapon/unathiknife{ name = "ceremonial knife" }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"anl" = ( -/obj/item/pamphlet/engineer, -/obj/structure/closet, -/obj/item/restraint/handcuffs, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec) "anm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -379,10 +410,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"ann" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) "anq" = ( /turf/closed/shuttle/ert{ icon_state = "stan9" @@ -395,16 +422,18 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"any" = ( -/obj/item/stack/cable_coil/random, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) "anJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"anK" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_4" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) "anP" = ( /obj/structure/bed/chair/office/dark{ dir = 4; @@ -419,50 +448,35 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"anT" = ( -/obj/item/reagent_container/food/snacks/meat, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"anW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/green/west, -/area/fiorina/station/chapel) -"aoo" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"aoZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 11 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"ape" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/maintenance) +"aoe" = ( +/obj/structure/tunnel, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"aop" = ( +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) "apf" = ( /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"apu" = ( -/turf/open/floor/prison/blue, -/area/fiorina/station/power_ring) +"apk" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "apw" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) -"apO" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) +"aqe" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "aqj" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -470,17 +484,42 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"aqo" = ( -/obj/item/shard{ - icon_state = "large" +"aqk" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"aqw" = ( -/obj/item/stool, -/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/disco) +"aqp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"aqr" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"aqN" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"aqW" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) +"arg" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "arl" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, @@ -491,59 +530,40 @@ }, /turf/closed/wall/prison, /area/fiorina/station/research_cells) -"art" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/greenblue/southwest, -/area/fiorina/station/botany) -"arG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"aro" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/lz/near_lzI) +"arK" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/lz/near_lzI) "arT" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"arW" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/oob) -"asf" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"ask" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) +"asl" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) "aso" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"ass" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "ast" = ( /obj/structure/machinery/power/apc{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"asz" = ( -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/central_ring) "asE" = ( /obj/structure/platform{ dir = 4 @@ -555,16 +575,22 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"asI" = ( -/obj/item/toy/deck, +"ati" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_y = 21 + }, +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 17; + pixel_y = 21 + }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"atd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "atl" = ( /obj/structure/platform{ dir = 1 @@ -590,36 +616,30 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"atw" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"atY" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"auj" = ( -/obj/item/frame/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"auQ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 +"atI" = ( +/obj/item/device/radio, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"aul" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/park) +"auu" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 +/obj/structure/machinery/shower{ + dir = 4 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"auS" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/yellowfull, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) +"auE" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) "avc" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -631,6 +651,10 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"avQ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "avT" = ( /obj/item/trash/semki, /turf/open/floor/prison, @@ -639,18 +663,30 @@ /obj/item/clothing/head/soft/rainbow, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"awg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"awl" = ( +/obj/item/bodybag, +/obj/item/bodybag{ + pixel_y = 2 + }, +/obj/item/bodybag{ + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "awL" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"awU" = ( -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) +"awM" = ( +/obj/item/device/multitool, +/turf/open/floor/prison/green/northwest, +/area/fiorina/tumor/civres) "axb" = ( /obj/item/clothing/suit/storage/marine/specialist, /turf/open/floor/plating/prison, @@ -662,6 +698,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) +"axw" = ( +/obj/item/stack/cable_coil/blue, +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/tumor/ice_lab) "axx" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -679,42 +719,29 @@ }, /turf/closed/wall/prison, /area/fiorina/station/security) -"aye" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ayo" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/security) -"ayB" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = -5 - }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"ayG" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +"axD" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/fiorina/station/flight_deck) +"axN" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/power_ring) +"axW" = ( +/obj/structure/machinery/disposal, +/obj/item/tool/kitchen/rollingpin{ + pixel_y = 8 }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"ayH" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"ayr" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"ayV" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +/obj/structure/machinery/computer/skills{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"ayW" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "ayX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -722,16 +749,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"azs" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) "azv" = ( /obj/structure/girder, /turf/open/floor/plating/prison, @@ -753,6 +770,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) +"azM" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "azZ" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/ice_lab) @@ -764,46 +785,56 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) +"aAg" = ( +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) "aAk" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"aAA" = ( -/turf/open/floor/prison/green/north, -/area/fiorina/station/transit_hub) -"aAJ" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"aBb" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"aBs" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +"aAl" = ( +/obj/structure/monorail{ + name = "launch track" }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"aAM" = ( +/turf/open/floor/prison/redcorner/north, +/area/fiorina/station/security) +"aAZ" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"aBD" = ( -/obj/structure/platform, /obj/structure/platform{ - dir = 8 + dir = 4 }, /obj/structure/platform_decoration{ - dir = 10 + dir = 9 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/area/fiorina/station/transit_hub) +"aBc" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"aBd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"aBl" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"aBH" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) "aBJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/chef_recipes{ @@ -811,10 +842,27 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"aBN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + layer = 3.5; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"aBX" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) "aBZ" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/prison, /area/fiorina/station/park) +"aCi" = ( +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) "aCC" = ( /obj/item/tool/soap{ pixel_x = 2; @@ -822,71 +870,78 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) +"aCQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) "aCZ" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"aDc" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, +"aDe" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"aDg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"aDx" = ( -/turf/open/floor/prison/yellow, -/area/fiorina/station/central_ring) +/area/fiorina/station/power_ring) +"aDl" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"aDr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/flight_deck) +"aDE" = ( +/obj/structure/machinery/sensortower, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"aDY" = ( +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) "aEi" = ( /obj/structure/machinery/door/poddoor/shutters/almayer, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"aEB" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/security/wardens) -"aEC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"aEG" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"aEQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) "aFp" = ( /obj/structure/machinery/defenses/tesla_coil{ faction_group = list("CLF") }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"aFK" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) -"aFQ" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibmid3" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) +"aFr" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "aFZ" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) -"aGF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 +"aGD" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/obj/item/frame/firstaid_arm_assembly, -/obj/item/stack/nanopaste{ - pixel_x = 11; - pixel_y = 6 +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) +/area/fiorina/tumor/civres) +"aGN" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/tumor/aux_engi) "aGR" = ( /obj/structure/largecrate/random, /obj/effect/spawner/random/powercell, @@ -895,6 +950,16 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"aGU" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"aGX" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/station/park) "aHg" = ( /obj/structure/prop/resin_prop, /turf/open/floor/plating/prison, @@ -907,51 +972,26 @@ /obj/item/tool/shovel/etool, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"aHJ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"aHK" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"aId" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/hypospray, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"aIm" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"aIB" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"aJk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison/sterile_white/southwest, +"aHQ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"aJo" = ( -/obj/structure/bed/chair{ +"aIq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ dir = 4; - pixel_x = -5 + pixel_x = 11 }, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"aJQ" = ( /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"aJv" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) "aJX" = ( /obj/structure/bed/chair{ dir = 8 @@ -963,27 +1003,46 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"aKb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"aKg" = ( +/obj/structure/prop/structure_lattice{ + health = 300 }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) +/obj/structure/prop/structure_lattice{ + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"aKi" = ( +/obj/item/tool/soap, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) "aKA" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/space, /area/fiorina/oob) -"aKN" = ( -/obj/structure/machinery/computer/cameras{ - network = list("omega") +"aKH" = ( +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"aKZ" = ( +/obj/structure/surface/rack, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"aLo" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) "aLp" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -993,51 +1052,13 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer_hull, /area/fiorina/station/medbay) -"aLz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"aLC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) "aLT" = ( /obj/item/trash/uscm_mre, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"aLX" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "aMg" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/ice_lab) -"aMr" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"aMu" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/tumor/ice_lab) -"aME" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) "aMM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -1045,18 +1066,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"aMS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/clothing/mask/cigarette, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_y = 8 +"aNd" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/central_ring) +"aNh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "aNk" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -1065,28 +1087,28 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"aNz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - layer = 3.5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +"aNN" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"aOa" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "aOc" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/fiorina/tumor/ship) -"aOm" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/tumor/servers) +"aOp" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"aOv" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "aOC" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -1097,34 +1119,23 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"aOL" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"aOT" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +"aOK" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/incendiary/molotov, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"aPd" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) +/area/fiorina/station/lowsec) +"aPg" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"aPh" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) "aPr" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -1145,28 +1156,49 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"aPF" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "aPH" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security/wardens) -"aPO" = ( +"aPQ" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = -3 }, +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/medbay) +"aPS" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"aQH" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/nightmare{ - insert_tag = "yardbasketball" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"aQR" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"aPY" = ( +/turf/open/floor/prison/panelscorched, /area/fiorina/station/transit_hub) +"aQd" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"aQQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "aQW" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -1175,16 +1207,13 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"aQY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) "aRk" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) +"aRp" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/research_cells) "aRt" = ( /obj/item/ammo_casing{ icon_state = "casing_5_1" @@ -1197,6 +1226,26 @@ /obj/item/paper/prison_station/inmate_handbook, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"aRy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"aRD" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/lz/near_lzI) +"aRL" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) +"aRP" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "aRT" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -1206,12 +1255,13 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"aSm" = ( -/obj/structure/bed/chair{ - dir = 8 +"aSk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "aSz" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/research_cells) @@ -1230,10 +1280,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) -"aTe" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) "aTo" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/transit_hub) @@ -1247,6 +1293,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"aTG" = ( +/obj/item/tool/mop, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"aTH" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "aTL" = ( /obj/structure/bed/chair{ dir = 4; @@ -1261,65 +1321,79 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"aTO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck/uno, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"aTY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase, +"aTQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"aUd" = ( +/obj/structure/surface/rack, +/obj/item/tool/plantspray/pests, +/obj/item/tool/plantspray/weeds, /turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "aUg" = ( /obj/item/tool/crowbar/red, /turf/open/floor/prison, /area/fiorina/station/security) -"aUA" = ( -/obj/item/stack/cable_coil/orange, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"aUG" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"aUH" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"aUV" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"aVa" = ( +/obj/structure/surface/rack, +/obj/item/poster, +/obj/item/poster, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "aVd" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"aVU" = ( -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) +"aWi" = ( +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/security) "aWk" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz2_maint) -"aWI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) "aWV" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) -"aXk" = ( -/obj/item/storage/fancy/candle_box, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +"aXb" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibmid1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"aXg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"aXi" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) "aXn" = ( /turf/closed/shuttle/elevator{ dir = 5 }, /area/fiorina/tumor/aux_engi) -"aXp" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/bed/chair/wheelchair{ - desc = "Great scott, it can move on its own!"; - dir = 4; - icon_state = "officechair_white"; - name = "Dr. O's fantastic self rolling wheelie chair"; - pixel_x = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) "aXv" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, @@ -1332,38 +1406,47 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"aXC" = ( -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/lowsec) -"aXO" = ( -/turf/open/floor/prison/damaged2, -/area/fiorina/station/central_ring) -"aXR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera, +"aXy" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"aXB" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/telecomm/lz1_cargo) +"aXX" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"aYs" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"aYN" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/maintenance) +"aYT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"aZj" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"aYf" = ( -/obj/item/tool/scythe, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"aYg" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"aZi" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/tumor/servers) +"aZs" = ( +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) +"aZz" = ( +/obj/item/trash/uscm_mre, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) "aZD" = ( /obj/structure/platform{ dir = 8 @@ -1380,19 +1463,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"aZL" = ( -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) +"aZI" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/fiorina/station/central_ring) "aZN" = ( /obj/item/toy/crayon/yellow, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"aZW" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +"bao" = ( +/obj/effect/alien/weeds/node, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/area/fiorina/tumor/servers) "baC" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station) @@ -1401,41 +1482,21 @@ /obj/item/stack/catwalk, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"baM" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"bbn" = ( -/obj/item/device/motiondetector, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"bbp" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +"bbg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"bbI" = ( -/obj/item/stool{ - pixel_x = -4; - pixel_y = 23 - }, +/area/fiorina/station/medbay) +"bbF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"bbV" = ( +/obj/item/stack/sheet/cardboard, /turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) -"bbU" = ( -/obj/structure/sign/safety/fire_haz, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"bcd" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) "bce" = ( /obj/structure/lattice, /turf/open/space/basic, @@ -1445,25 +1506,39 @@ /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"bcp" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) +"bcg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"bcl" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "bcq" = ( /obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison, /area/fiorina/station/security) -"bcz" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 +"bcx" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) +"bcG" = ( +/obj/item/paper, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"bcV" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"bcT" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/storage/belt/shotgun, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "bcX" = ( /obj/item/tool/warning_cone, /obj/structure/machinery/light/double/blue{ @@ -1473,35 +1548,25 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"bdb" = ( -/obj/structure/bed/chair{ - dir = 4 +"bdA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 16 }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"bdE" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"bec" = ( -/obj/item/stack/sheet/metal{ - amount = 5 +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 7 }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/lz/near_lzI) -"beh" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/whitegreencorner/west, -/area/fiorina/tumor/ice_lab) -"bel" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"bdL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/beer_pack{ + pixel_y = 7 }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "bem" = ( /obj/structure/platform{ dir = 1 @@ -1513,6 +1578,13 @@ /obj/item/ammo_magazine/m56d, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"bet" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) "bez" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -1523,9 +1595,6 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"beB" = ( -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/power_ring) "beW" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -1533,17 +1602,25 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"bff" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, +"bfq" = ( +/obj/structure/bed/chair, /turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) +/area/fiorina/station/power_ring) +"bfE" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/obj/effect/spawner/random/gun/smg, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "bfF" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"bfZ" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) "bgc" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -1559,10 +1636,15 @@ /obj/item/trash/pistachios, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"bgD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"bgO" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/green/north, +/area/fiorina/station/transit_hub) +"bhe" = ( +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) "bht" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -1582,18 +1664,25 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"bhW" = ( -/turf/open/floor/prison/greencorner/east, -/area/fiorina/tumor/civres) "bhX" = ( /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) +"bim" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) "bis" = ( /turf/closed/wall/prison, /area/fiorina/station/chapel) -"bix" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) +"biw" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"biz" = ( +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) "bjf" = ( /obj/item/tool/warning_cone, /obj/structure/machinery/light/double/blue, @@ -1607,53 +1696,28 @@ /obj/structure/machinery/faxmachine, /turf/open/floor/prison, /area/fiorina/station/security) -"bjt" = ( -/obj/structure/girder, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"bjR" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"bjZ" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "bkg" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"bki" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"bkQ" = ( -/obj/item/ammo_casing{ - icon_state = "casing_7_1" +"bkO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "bkU" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"ble" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" +"bkZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"blf" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring) -"blA" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/civres_blue) "blG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; @@ -1661,20 +1725,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"bma" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"bmw" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +"blT" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) "bmE" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"bmM" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "bmT" = ( /obj/structure/monorail{ dir = 4; @@ -1686,14 +1748,9 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bne" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"bnh" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) +"bnj" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/lz/near_lzI) "bno" = ( /obj/structure/barricade/handrail/type_b{ dir = 4; @@ -1701,13 +1758,20 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"bnx" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "bnA" = ( /turf/closed/wall/prison, /area/fiorina/station/transit_hub) +"bnI" = ( +/obj/structure/platform, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) "bnJ" = ( /obj/structure/machinery/lapvend, /turf/open/floor/prison, @@ -1717,15 +1781,17 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"bnM" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 +"bnW" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +/area/fiorina/station/security/wardens) "boe" = ( /obj/item/tool/wet_sign, /turf/open/floor/plating/prison, @@ -1734,63 +1800,36 @@ /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"boF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"boI" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"bpe" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"bpo" = ( -/obj/item/dogtag, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"bpx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"bqu" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"bqC" = ( -/obj/structure/platform{ - dir = 8 +"bow" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison/greenblue/west, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"bpk" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) -"bqD" = ( -/obj/structure/platform_decoration{ - dir = 4 +"bqe" = ( +/obj/structure/prop/invuln{ + desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; + icon = 'icons/obj/structures/doors/celldoor.dmi'; + icon_state = "door_closed"; + layer = 2.5; + name = "cell door" }, +/obj/structure/blocker/invisible_wall, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"bqF" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/storage/belt/marine, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/area/fiorina/tumor/servers) +"bqJ" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"bqU" = ( +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "bqX" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -1804,99 +1843,67 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"brC" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"brR" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/flight_deck) -"brY" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"bsc" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) +"brn" = ( +/turf/open/floor/prison/greencorner/west, +/area/fiorina/tumor/civres) +"bro" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring) +"brF" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/maintenance) +"brO" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_tram) "bsk" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/space/basic, /area/fiorina/oob) -"bsm" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) "bso" = ( /turf/closed/shuttle/ert{ icon_state = "stan_l_w" }, /area/fiorina/tumor/ship) -"bsO" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/barricade/wooden{ +"bst" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"bsN" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"bsT" = ( +/obj/structure/window{ dir = 4 }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"bsR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"btM" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) "buz" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"buG" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/central_ring) -"buJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"bvg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"bvp" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/damaged1/southwest, -/area/fiorina/station/central_ring) -"bvr" = ( -/obj/item/explosive/grenade/high_explosive/m15, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/panelscorched, -/area/fiorina/tumor/aux_engi) -"bvs" = ( -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/central_ring) +"bvi" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"bvk" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"bvu" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/station/medbay) "bvK" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/atmospipes{ @@ -1908,95 +1915,45 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"bwj" = ( -/obj/structure/computerframe, -/turf/open/floor/prison/floor_plate, +"bwl" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) -"bwk" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"bww" = ( -/obj/item/trash/candy, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"bwA" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"bwZ" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/oob) "bxc" = ( /obj/structure/window/reinforced, /turf/open/floor/prison, /area/fiorina/station/security) -"bxd" = ( -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/oob) -"bxe" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"bxg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"bxm" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"bxv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) -"bxy" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) -"bxA" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"bxE" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"bxQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"bxl" = ( +/obj/structure/bed{ + icon_state = "psychbed" }, -/turf/open/floor/prison/cell_stripe/north, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"bxN" = ( +/obj/structure/largecrate/supply/medicine/medivend, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "bxV" = ( /obj/item/clothing/head/cmcap, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/fiorina/station/chapel) -"bya" = ( -/obj/structure/machinery/disposal, -/obj/item/tool/kitchen/rollingpin{ - pixel_y = 8 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) "byb" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" @@ -2010,36 +1967,28 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"byh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "bym" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" }, /area/fiorina/lz/near_lzI) -"byB" = ( -/obj/structure/surface/rack, +"byy" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -1 + }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "byE" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"byF" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/tumor/ice_lab) -"byG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"byJ" = ( -/turf/open/floor/prison/green/west, -/area/fiorina/tumor/civres) "byT" = ( /obj/structure/platform, /turf/open/floor/prison, @@ -2047,106 +1996,104 @@ "byY" = ( /turf/open/floor/prison, /area/fiorina/station/medbay) -"bze" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitegreencorner/west, -/area/fiorina/station/medbay) +"bzg" = ( +/obj/structure/reagent_dispensers/watertank{ + layer = 2.6 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"bzp" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "bzO" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/power_ring) -"bzU" = ( -/obj/item/tool/shovel/snow, -/obj/item/device/flashlight, -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) +"bzT" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "bAc" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" }, /area/fiorina/tumor/aux_engi) -"bAf" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/power_ring) -"bAE" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"bAM" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"bBr" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/obj/item/bodybag/tarp/reactive, -/obj/item/bodybag/tarp/reactive, -/obj/structure/surface/rack, +"bAg" = ( +/obj/item/stock_parts/micro_laser/ultra, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"bBe" = ( +/obj/item/trash/sosjerky, /turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"bBt" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +/area/fiorina/station/flight_deck) +"bBj" = ( +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec) "bBA" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/station/power_ring) -"bBB" = ( -/obj/structure/largecrate/random/barrel, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) +"bBE" = ( +/turf/open/floor/prison/redcorner/north, +/area/fiorina/station/power_ring) "bBK" = ( /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/floor/prison, /area/fiorina/station/security) -"bCe" = ( -/turf/open/floor/prison/redcorner/north, -/area/fiorina/station/security) +"bBX" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "bCu" = ( /obj/item/shard{ icon_state = "large" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"bDv" = ( +"bCJ" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, /obj/structure/platform_decoration{ - dir = 1 + dir = 10 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"bDx" = ( -/obj/item/tool/extinguisher/mini, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/power_ring) +"bCM" = ( +/turf/open/floor/solarpanel, +/area/fiorina/oob) +"bDr" = ( +/obj/structure/machinery/power/apc{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"bDJ" = ( -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"bDM" = ( -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"bDu" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"bDN" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"bDQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) "bDU" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"bDX" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/green, -/area/fiorina/station/chapel) +"bEj" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "bEk" = ( /obj/structure/monorail{ name = "launch track" @@ -2170,31 +2117,57 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"bEP" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +"bEH" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"bES" = ( +/obj/structure/machinery/gibber, +/obj/effect/decal/cleanable/blood{ + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) "bEX" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"bFg" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/meat/human, -/obj/item/reagent_container/food/snacks/meat/human, -/obj/structure/machinery/light/double/blue, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"bFi" = ( -/obj/structure/platform_decoration{ - dir = 4 +"bFb" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 }, -/turf/open/floor/prison/darkbrown2/west, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) +"bFh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/baton, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"bFl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) "bFr" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/chapel) +"bFt" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "bFA" = ( /turf/closed/shuttle/ert{ icon_state = "wy27" @@ -2204,39 +2177,15 @@ /obj/structure/largecrate/random/case, /turf/open/floor/prison, /area/fiorina/station/park) -"bFJ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"bFL" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"bGA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"bGB" = ( -/obj/structure/largecrate/supply/generator, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"bGH" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) "bGY" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/fiorina/station/civres_blue) +"bHr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/aux_engi) "bHt" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -2254,14 +2203,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"bHx" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"bHE" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/tumor/civres) "bHP" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"bHR" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) "bHU" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -2276,18 +2233,6 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"bIP" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"bIR" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco) "bIZ" = ( /turf/closed/shuttle/elevator{ dir = 6 @@ -2305,33 +2250,36 @@ /obj/item/stack/cable_coil/pink, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"bJp" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +"bJZ" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"bJG" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"bKO" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"bKR" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"bKS" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"bLn" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/sterile_white/southwest, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"bKF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/imidazoline, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) "bLA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight, @@ -2345,13 +2293,6 @@ "bLJ" = ( /turf/closed/wall/prison, /area/fiorina/station/central_ring) -"bLM" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"bLO" = ( -/obj/item/stack/cable_coil/blue, -/turf/open/floor/prison/whitegreencorner, -/area/fiorina/tumor/ice_lab) "bMh" = ( /obj/item/frame/table/wood/fancy, /obj/item/paper/prison_station/warden_note, @@ -2364,35 +2305,58 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"bMz" = ( -/obj/item/tool/lighter/random, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"bMF" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"bMG" = ( +"bMy" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"bMU" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" + }, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/oob) +"bNb" = ( +/obj/item/inflatable, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"bNf" = ( /obj/structure/surface/rack, -/obj/item/restraint/handcuffs/zip, -/turf/open/floor/prison/darkredfull2, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"bNn" = ( +/obj/structure/platform_decoration, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"bNt" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" + }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"bMI" = ( +"bNw" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"bNB" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"bMT" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"bNo" = ( -/obj/item/trash/uscm_mre, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"bNE" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +"bNF" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) "bNP" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, @@ -2412,39 +2376,16 @@ /obj/item/stack/cable_coil/blue, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"bOx" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"bOK" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"bOR" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"bPh" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +"bOH" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "bPl" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/chapel) -"bPn" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"bPy" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) "bPG" = ( /turf/open/floor/plating/prison, /area/fiorina/station/botany) @@ -2454,9 +2395,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bPQ" = ( -/turf/open/floor/prison/green/north, -/area/fiorina/station/chapel) "bPT" = ( /obj/structure/monorail{ dir = 5; @@ -2464,10 +2402,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"bPV" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) +"bPU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/tracker, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) "bQh" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -2493,14 +2432,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bQn" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison/whitegreencorner/west, -/area/fiorina/station/medbay) -"bQv" = ( -/obj/item/trash/cigbutt/ucigbutt, +"bQr" = ( +/obj/item/inflatable, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "bQy" = ( @@ -2508,19 +2442,17 @@ /obj/item/reagent_container/spray/pepper, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"bQL" = ( -/obj/item/tool/mop, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) +"bQF" = ( +/obj/item/tool/kitchen/utensil/pspoon, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) "bQM" = ( /turf/open/space, /area/fiorina/oob) -"bQW" = ( -/obj/item/frame/rack, -/obj/item/stack/medical/bruise_pack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +"bQS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) "bRb" = ( /obj/structure/machinery/defenses/sentry/premade/dumb{ dir = 4 @@ -2534,52 +2466,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"bRo" = ( -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/item/prop/helmetgarb/rabbitsfoot{ - pixel_y = 22 - }, -/obj/item/reagent_container/food/drinks/bottle/kahlua{ - pixel_x = 5; - pixel_y = 25 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"bRs" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"bRA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) "bRC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"bRQ" = ( -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"bSm" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) -"bSq" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/nailgun, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"bSs" = ( -/turf/open/floor/prison/floorscorched2, -/area/fiorina/station/security) "bSM" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ draw_warnings = 0; @@ -2589,38 +2481,10 @@ }, /turf/open/floor/greengrid, /area/fiorina/station/botany) -"bSS" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"bTc" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) "bTo" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/space, /area/fiorina/oob) -"bTp" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"bTr" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"bTC" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) "bTI" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ indestructible = 1; @@ -2628,8 +2492,21 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"bUt" = ( -/obj/structure/largecrate/random, +"bTL" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"bTY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"bUd" = ( +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"bUt" = ( +/obj/structure/largecrate/random, /obj/item/trash/pistachios, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, @@ -2646,6 +2523,21 @@ }, /turf/open/space, /area/fiorina/oob) +"bUD" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/aux_engi) +"bUM" = ( +/obj/structure/prop/resin_prop{ + icon_state = "coolanttank" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"bVq" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "bVE" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/prison, @@ -2656,6 +2548,10 @@ opacity = 0 }, /area/fiorina/tumor/ship) +"bWe" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "bWg" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine, @@ -2666,79 +2562,84 @@ /obj/item/tool/mop, /turf/open/floor/prison, /area/fiorina/station/medbay) -"bXc" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"bXe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"bXh" = ( +"bWD" = ( /turf/open/floor/prison/bluecorner/north, /area/fiorina/station/chapel) -"bXz" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) +"bWP" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/lz/near_lzI) "bXA" = ( /obj/item/tool/screwdriver, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"bYY" = ( -/obj/structure/bed/chair{ +"bXU" = ( +/obj/structure/barricade/plasteel{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"bYs" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/maintenance) -"bZn" = ( -/obj/item/device/taperecorder{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"bYG" = ( +/obj/structure/machinery/computer/cameras{ + network = list("omega") }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"bZD" = ( -/turf/open/floor/prison/darkbrowncorners2/north, /area/fiorina/tumor/aux_engi) -"bZI" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 8; - flipped = 1 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) +"bYL" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"bYV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"bYZ" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "bZY" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"car" = ( -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/prison/yellow/west, +"cab" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"caE" = ( +/obj/item/frame/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/lowsec) -"caA" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"caC" = ( -/turf/open/floor/prison/green/east, -/area/fiorina/station/transit_hub) "caF" = ( /turf/open/floor/wood, /area/fiorina/station/lowsec) -"caX" = ( -/obj/structure/inflatable/popped/door, -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) "cbd" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison, /area/fiorina/station/chapel) +"cbn" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"cbp" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "cbA" = ( /obj/item/stack/rods, /turf/open/floor/prison, @@ -2768,14 +2669,43 @@ "cbN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station) -"cbY" = ( -/obj/item/newspaper, -/turf/open/floor/prison/whitepurplecorner, +"cbX" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/civres) +"ccc" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"cck" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "ccH" = ( /obj/structure/machinery/newscaster, /turf/closed/wall/prison, /area/fiorina/station/civres_blue) +"ccQ" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/nailgun, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"ccV" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 11; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "ccY" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/prop/invuln{ @@ -2793,79 +2723,110 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"cdp" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/flight_deck) -"cdV" = ( +"cdo" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/central_ring) +"cdr" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/tumor/servers) +"cdx" = ( /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; + dir = 8; + pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"cdY" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/obj/structure/bed/roller, -/obj/structure/machinery/light/double/blue{ +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"cdz" = ( +/obj/item/tool/soap, +/obj/structure/machinery/shower{ dir = 1; - pixel_y = 21 + pixel_y = -1 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"ceq" = ( -/obj/item/bodybag, -/obj/item/bodybag{ - pixel_y = 2 +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/item/bodybag{ - pixel_y = 4 +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"cdA" = ( +/obj/item/storage/secure/briefcase{ + pixel_x = 9; + pixel_y = 18 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"cer" = ( -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"ceB" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) +/area/fiorina/station/lowsec) +"cey" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "ceC" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/security) -"ceJ" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/tumor/ice_lab) -"cfa" = ( -/obj/item/frame/rack, -/obj/structure/barricade/handrail/type_b{ - dir = 1 +"ceI" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/pill_bottle/dexalin/skillless, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"ceM" = ( +/obj/item/pamphlet/skill/powerloader, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ceO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzI) +"ceX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"cfK" = ( +/turf/open/floor/prison/damaged1/southwest, /area/fiorina/station/lowsec) -"cfG" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 +"cga" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"cfU" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"cgx" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/sterile_white/southwest, +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"cgb" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) -"chg" = ( +"cgr" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +/obj/item/clothing/accessory/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"cgt" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"cgJ" = ( +/obj/item/reagent_container/food/drinks/cans/sodawater, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"cho" = ( +/obj/item/device/taperecorder{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "chx" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -2873,13 +2834,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"chE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) "chT" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -2888,85 +2842,59 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"chZ" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/shower, -/obj/structure/window{ - dir = 4 - }, -/obj/item/coin/uranium{ - desc = "You found one of the three uranium coins. It is entirely worthless." - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"ciy" = ( -/obj/structure/platform, -/obj/structure/platform{ +"cia" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"cib" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"cif" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "ciA" = ( /obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison, /area/fiorina/station/medbay) -"ciM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/reagent_container/syringe{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = 6; - pixel_y = 12 +"cjb" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"cjd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue/northeast, +/area/fiorina/station/botany) +"cjq" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"cjB" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "bee" }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"cje" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"cjG" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"cki" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 8 +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"cjC" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) "ckm" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"ckr" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/telecomm/lz1_tram) -"ckt" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/medbay) "ckA" = ( /obj/structure/platform, /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) -"ckS" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) "ckZ" = ( /obj/structure/platform, /turf/open/floor/prison, @@ -2978,6 +2906,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/chapel) +"cle" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/item/reagent_container/food/snacks/grown/eggplant{ + desc = "Eggplant. Or, wait..."; + layer = 2 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "cls" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, @@ -2986,41 +2922,76 @@ /obj/structure/girder, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"clv" = ( -/obj/structure/inflatable/popped/door, +"clG" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/fiorina/station/flight_deck) +"clJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/orange, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"clA" = ( -/obj/item/weapon/baton/cattleprod, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) +/area/fiorina/maintenance) "clN" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"clP" = ( -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +"clV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/lz/near_lzII) +"cmm" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"cmq" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cms" = ( +/obj/structure/sign/safety/fire_haz, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "cmy" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/prison, /area/fiorina/station/central_ring) -"cmE" = ( -/obj/item/stack/sheet/wood/medium_stack, -/obj/item/stack/sheet/wood/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) +"cmF" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/power_ring) "cmP" = ( /obj/structure/pipes/standard/tank{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"cmY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"cnd" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"cnq" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "cns" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -3028,14 +2999,68 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"cnH" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison/darkpurple2/southeast, -/area/fiorina/tumor/servers) +"cny" = ( +/obj/effect/spawner/random/goggles/midchance, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"cnQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"cnU" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 + }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) "coj" = ( /obj/item/stool, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) +"cot" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cow" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"coF" = ( +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"cpc" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"cpg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"cph" = ( +/obj/item/packageWrap, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"cpo" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "cpv" = ( /obj/structure/platform{ dir = 8 @@ -3043,38 +3068,52 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"cpw" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"cpK" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"cpM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "cpP" = ( /turf/closed/shuttle/elevator/gears, /area/fiorina/station/telecomm/lz1_cargo) +"cpR" = ( +/obj/structure/sign/kiddieplaque{ + desc = "It is a warning sign that describes the process by which fiberbush expands in humid environments, behaving similar to kudzu vines."; + name = "Fiberbush(tm) safety plaque"; + pixel_y = 29 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "cqz" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" }, /area/fiorina/oob) -"cqP" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"cqT" = ( -/turf/open/floor/prison/floorscorched1, -/area/fiorina/station/security) -"cqV" = ( -/obj/item/stool, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"cqW" = ( -/obj/item/stool, -/turf/open/floor/prison/damaged2, +"cqG" = ( +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/structure/surface/rack, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/lowsec) -"cqX" = ( -/obj/item/stool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) +"crh" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/station/transit_hub) "cri" = ( /obj/structure/machinery/computer/prisoner, /obj/structure/window/reinforced{ @@ -3085,13 +3124,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"crm" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) "cry" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -3106,125 +3138,145 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"csL" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/telecomm/lz1_tram) -"ctc" = ( -/obj/structure/prop/resin_prop{ +"crY" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"cst" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"csU" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"ctc" = ( +/obj/structure/prop/resin_prop{ icon_state = "sheater0" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"cte" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "cto" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"ctC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/skills{ - dir = 4 +"ctr" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "ctD" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"ctI" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"ctW" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/coin/uranium, -/obj/item/bedsheet/green, -/turf/open/floor/prison/yellow/southeast, +"ctP" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"cuo" = ( +/turf/open/floor/prison/floor_marked/west, /area/fiorina/station/lowsec) -"ctY" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/fiorina/station/central_ring) -"cui" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/civres_blue) -"cum" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/obj/item/frame/rack, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"cvc" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/structure/machinery/m56d_hmg/mg_turret/dropship{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/central_ring) -"cvd" = ( +"cuz" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"cuG" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"cvi" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, +/obj/item/trash/plate, /turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) "cvn" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"cvt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "cvv" = ( /obj/structure/bed/sofa/vert/grey, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"cvH" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) +"cvI" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "cvL" = ( /obj/effect/landmark/nightmare{ insert_tag = "gamertime" }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"cwB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"cwb" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"cwj" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + layer = 3.5 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"cwM" = ( /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"cxb" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/maintenance) -"cxc" = ( -/obj/item/stack/folding_barricade, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) +"cwk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"cwu" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 1; + pixel_y = -3 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"cwD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/tumor/ice_lab) +"cwP" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) "cxy" = ( /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0; @@ -3236,26 +3288,21 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"cxA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"cyb" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/aux_engi) +"cxX" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "cye" = ( /obj/item/trash/pistachios, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"cyk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"cyR" = ( +"cyn" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"cyy" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/fiorina/station/lowsec) "cyV" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) @@ -3266,22 +3313,20 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"czr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"czJ" = ( -/obj/structure/reagent_dispensers/watertank{ - layer = 2.6 +"czH" = ( +/obj/structure/window{ + dir = 1 }, -/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"cAl" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"cAJ" = ( -/obj/item/trash/snack_bowl, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) +/area/fiorina/tumor/ice_lab) +"cAK" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "cAO" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/monorail{ @@ -3299,50 +3344,27 @@ "cAW" = ( /turf/open/space/basic, /area/fiorina/oob) -"cBm" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"cBn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 +"cBj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"cBG" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"cBJ" = ( -/obj/item/clothing/shoes/laceup, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) "cBK" = ( /obj/item/shard{ icon_state = "large" }, /turf/open/space, /area/fiorina/oob) -"cBX" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 13 +"cBY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"cCe" = ( -/turf/open/floor/prison/whitepurplecorner, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "cCh" = ( /obj/item/ammo_casing{ dir = 6; @@ -3350,14 +3372,18 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"cCs" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) "cCt" = ( /obj/structure/barricade/wooden, /turf/open/floor/wood, /area/fiorina/station/park) +"cCv" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"cCw" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) "cCx" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/prison, @@ -3378,29 +3404,44 @@ /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/wood, /area/fiorina/station/chapel) -"cCO" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/floor_plate, +"cCJ" = ( +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/chapel) "cDb" = ( /obj/item/tool/crowbar, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"cDe" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) +"cDg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "cDl" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"cDE" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" +"cDr" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket" }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) +"cDz" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"cDV" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "cEb" = ( /obj/structure/stairs/perspective{ @@ -3409,11 +3450,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"cEg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) +"cEf" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "cEw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/transit_hub) @@ -3422,81 +3462,116 @@ icon_state = "stan_inner_t_right" }, /area/fiorina/tumor/ship) -"cEG" = ( -/obj/item/tool/pickaxe, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"cEW" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_4" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"cEY" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"cFg" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +"cES" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cEX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzI) "cFq" = ( /obj/item/tool/mop, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"cFT" = ( -/turf/open/floor/prison/green/north, -/area/fiorina/tumor/civres) +"cFr" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"cFA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) "cFX" = ( /obj/structure/largecrate/supply/supplies, /obj/effect/spawner/random/goggles/lowchance, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"cGa" = ( +"cGm" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"cGo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/frame/firstaid_arm_assembly, +/obj/item/stack/nanopaste{ + pixel_x = 11; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"cGz" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/tumor/servers) +"cGA" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"cGI" = ( +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) "cGR" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/fiorina/station/park) -"cGS" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/disco) -"cGU" = ( -/obj/structure/window/reinforced{ +"cGV" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 + pixel_x = -10; + pixel_y = -3 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"cHl" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"cGZ" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"cHj" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) "cHm" = ( /obj/item/bedsheet/green, /obj/structure/bed, /obj/item/toy/plush/farwa, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"cHC" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) +"cHE" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) "cHF" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/eastright, @@ -3506,112 +3581,63 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"cHK" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"cIt" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"cIJ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"cIl" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_1" }, -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"cIQ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cIn" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/park) -"cJv" = ( -/obj/item/stack/rods, -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"cJz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"cJL" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"cIv" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) -"cJS" = ( -/obj/item/trash/uscm_mre, -/obj/effect/landmark/corpsespawner/ua_riot, +"cIC" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"cIZ" = ( +/obj/structure/barricade/wooden, +/obj/item/device/flashlight/flare, /turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) +/area/fiorina/station/telecomm/lz1_cargo) +"cJh" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) "cJW" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"cJY" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/tumor/aux_engi) "cKa" = ( /turf/closed/wall/prison, /area/fiorina/station/research_cells) -"cKb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"cKB" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 +"cKc" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/obj/structure/barricade/handrail/type_b{ + dir = 8 }, /turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/medbay) +"cKC" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) "cKH" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/up, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"cKJ" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/reagent_container/glass/bottle/robot/antitoxin, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, +"cKR" = ( +/obj/item/poster, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "cKU" = ( /obj/structure/stairs/perspective{ @@ -3623,6 +3649,13 @@ }, /turf/open/floor/prison, /area/fiorina/station/botany) +"cLf" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) "cLu" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -3630,76 +3663,49 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"cLy" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, +"cLK" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) -"cLC" = ( +"cLR" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"cLS" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"cLZ" = ( -/obj/structure/largecrate/guns/merc, -/obj/item/toy/deck/uno, +/obj/item/reagent_container/hypospray, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"cMu" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"cMb" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/medbay) -"cMD" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/central_ring) +"cMx" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/fiorina/station/telecomm/lz1_cargo) "cME" = ( /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"cMP" = ( -/obj/structure/machinery/shower{ - dir = 8 +"cMG" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"cNQ" = ( +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/civres_blue) +"cOn" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"cNe" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"cOr" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"cOj" = ( -/turf/open/floor/prison/blue, -/area/fiorina/station/civres_blue) -"cOB" = ( -/obj/item/stool, -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/flight_deck) -"cOC" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"cOF" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/maintenance) +"cOs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) -"cOL" = ( -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"cPh" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6" - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) "cPq" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -3708,18 +3714,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"cPs" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) "cPz" = ( /obj/structure/machinery/fuelcell_recycler, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"cPC" = ( -/obj/item/stack/sandbags_empty, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) +"cPI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "cPL" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -3727,19 +3733,16 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"cQe" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"cQf" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"cPV" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cQh" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "cQv" = ( /obj/structure/monorail{ name = "launch track" @@ -3749,20 +3752,21 @@ layer = 3 }, /area/fiorina/oob) -"cRg" = ( -/obj/structure/machinery/vending/coffee/simple, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"cRl" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/book/manual/security_space_law, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"cRx" = ( -/obj/structure/machinery/sensortower, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +"cQP" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"cRh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 6 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"cRw" = ( +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "cRB" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ density = 0; @@ -3772,71 +3776,66 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"cRI" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +"cRT" = ( +/obj/item/shard{ + icon_state = "medium" }, -/obj/item/stool, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"cRK" = ( -/obj/structure/window, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"cRM" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) -"cRZ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"cSe" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"cSl" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" + }, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"cSU" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) -"cSh" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) +"cSY" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_1" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) "cTr" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"cTx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison/greenfull/east, +"cTM" = ( +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"cTy" = ( -/obj/item/stool, -/obj/item/trash/cigbutt{ - pixel_y = 8 +"cTU" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"cTD" = ( /obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"cTY" = ( +/obj/structure/stairs/perspective{ dir = 8; - pixel_x = -10; - pixel_y = -3 + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/lz/near_lzI) -"cTE" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_1" +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"cUd" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"cUA" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) +/area/fiorina/tumor/ice_lab) "cUU" = ( /obj/structure/monorail{ name = "launch track" @@ -3846,10 +3845,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"cVu" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) +"cVo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/card/id/gold{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"cVJ" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/security) "cVQ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -3861,15 +3867,43 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/station/disco) -"cXp" = ( -/obj/item/stack/sheet/metal/medium_stack, +"cVY" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"cXV" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/flight_deck) +"cWb" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"cWc" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"cWq" = ( +/obj/structure/closet/basketball, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"cXs" = ( +/turf/open/floor/prison/green, +/area/fiorina/tumor/civres) +"cXx" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5_1" + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cXA" = ( +/obj/item/device/flashlight/on, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/tumor/aux_engi) +"cXK" = ( +/turf/open/floor/prison/redcorner/east, +/area/fiorina/station/security) "cYd" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -3877,28 +3911,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"cYe" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"cYi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/gold{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"cYj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"cYf" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"cYH" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/lowsec) -"cYI" = ( -/turf/open/floor/prison/green/northeast, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "cYP" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/pill_bottle/dexalin/skillless, @@ -3906,22 +3929,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"cYS" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/central_ring) -"cYT" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) "cYV" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -3930,22 +3937,16 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"cZe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"cZh" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison/floor_plate, +"cZg" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) -"cZp" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +"cZo" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "cZq" = ( /obj/item/shard{ icon_state = "medium" @@ -3956,38 +3957,23 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"cZy" = ( -/obj/structure/machinery/door/window/northleft{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security/wardens) -"cZP" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"cZR" = ( -/turf/open/floor/prison/damaged2, -/area/fiorina/station/disco) "cZV" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/wood, /area/fiorina/station/security) -"dae" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"daA" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +"daB" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "daD" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -3999,6 +3985,10 @@ /obj/structure/machinery/autolathe, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"daM" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "daS" = ( /obj/item/ammo_magazine/pistol/kt42, /turf/open/floor/plating/prison, @@ -4008,42 +3998,32 @@ /obj/item/trash/kepler, /turf/open/floor/prison, /area/fiorina/station/security) -"dbh" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) +"dbg" = ( +/obj/item/stool, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "dbi" = ( /obj/item/storage/toolbox/electrical, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"dbq" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"dbr" = ( -/obj/structure/platform{ - dir = 8 +"dbD" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"dbI" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/station/lowsec) -"dbW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets{ - pixel_x = 5; - pixel_y = 9 +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"dbJ" = ( +/obj/item/trash/chips, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"dbU" = ( +/obj/item/ammo_casing{ + icon_state = "casing_10_1" }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "dcv" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, @@ -4054,41 +4034,24 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"dcO" = ( -/obj/effect/decal/cleanable/blood/drip, +"dcU" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowcorners2, +/area/fiorina/station/telecomm/lz1_cargo) +"ddj" = ( +/obj/structure/inflatable/popped/door, +/obj/item/stack/barbed_wire, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"ddl" = ( +/obj/item/stack/cable_coil/green, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"dde" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/oob) -"ddt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/beer_pack{ - pixel_y = 7 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"ddv" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/maintenance) +/area/fiorina/tumor/civres) "ddA" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"ddB" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) "ddD" = ( /obj/structure/janitorialcart, /turf/open/floor/prison, @@ -4108,48 +4071,41 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ddN" = ( -/turf/open/floor/prison/darkpurple2/southeast, -/area/fiorina/tumor/servers) -"ddU" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"ddY" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) "dec" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"deB" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) +"deC" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"deK" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "deR" = ( /obj/item/toy/crayon/red, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"dfc" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/oob) -"dfh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"deT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"dfb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + pixel_y = 5 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"dfo" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "dfA" = ( /obj/structure/barricade/sandbags{ icon_state = "sandbag_0"; @@ -4158,6 +4114,10 @@ /obj/structure/machinery/m56d_hmg, /turf/open/floor/prison, /area/fiorina/station/flight_deck) +"dfO" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "dga" = ( /obj/structure/monorail{ dir = 4; @@ -4165,24 +4125,50 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"dhc" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +"dge" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/tumor/servers) +"dgi" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"dgo" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"dgz" = ( +/turf/open/floor/prison/green/northwest, +/area/fiorina/tumor/civres) +"dhg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "dhi" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/space/basic, /area/fiorina/oob) -"dhL" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"dhq" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/green/northeast, +/area/fiorina/station/chapel) +"dhv" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"dhO" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "dhZ" = ( /obj/structure/window/reinforced{ dir = 1; @@ -4190,24 +4176,32 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"diF" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"diJ" = ( -/obj/item/stool, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"diL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 +"dib" = ( +/obj/structure/closet/crate/medical, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"dir" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, +/obj/structure/platform_decoration, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) +/area/fiorina/station/disco) +"diH" = ( +/obj/item/circuitboard/exosuit/peripherals/max/targeting, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"diP" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"diX" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/station/park) "dje" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/prison, @@ -4216,22 +4210,38 @@ /obj/effect/spawner/random/gun/smg/midchance, /turf/open/floor/wood, /area/fiorina/station/park) -"djB" = ( -/obj/vehicle/powerloader{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"djF" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"dkb" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"dkl" = ( -/obj/structure/bed/chair{ +"djv" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"djE" = ( +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"djG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"djI" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"djY" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"dkb" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"dkl" = ( +/obj/structure/bed/chair{ dir = 1 }, /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -4248,37 +4258,37 @@ "dkn" = ( /turf/open/floor/prison, /area/fiorina/station/security/wardens) -"dkz" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"dkX" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"dlj" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"dlr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) "dlA" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"dlF" = ( +/obj/structure/kitchenspike, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"dlM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"dmp" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"dmI" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec) +"dmM" = ( +/obj/structure/inflatable/popped, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "dmQ" = ( /obj/item/stack/sheet/metal{ amount = 5 @@ -4291,33 +4301,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"dnj" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) +"dnu" = ( +/turf/open/floor/prison/redcorner, +/area/fiorina/station/security) "dnz" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/spawner/random/toy, /turf/open/floor/wood, /area/fiorina/station/chapel) -"dnK" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"dnX" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) "doe" = ( /obj/item/tool/kitchen/utensil/pspoon, /turf/open/space/basic, @@ -4346,17 +4337,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"doY" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"dpe" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) +"dpf" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/central_ring) "dpn" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -4367,66 +4350,44 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"dpp" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) +"dpF" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "dpH" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"dpZ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"dqa" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/red_pool, +"dqt" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"dqC" = ( +/turf/open/floor/prison/darkbrowncorners2/east, /area/fiorina/station/park) "dqE" = ( /obj/structure/prop/souto_land/pole, /turf/open/floor/wood, /area/fiorina/station/park) -"dqG" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) "dqN" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_s_w" }, /area/fiorina/tumor/ship) -"dqX" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"drd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/station/flight_deck) -"drk" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"drt" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"drZ" = ( -/obj/item/clothing/mask/cigarette, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"dsS" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/item/trash/barcardine, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"drP" = ( +/obj/structure/filingcabinet/disk, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "dsW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_27"; @@ -4434,23 +4395,35 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"dta" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"dtd" = ( +/obj/structure/dropship_equipment/mg_holder, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "dtg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"dtk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/golden_cup, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"dtR" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"dtS" = ( -/turf/open/floor/prison/blue/southeast, +"dto" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/chapel) +"dtV" = ( +/obj/structure/coatrack, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "due" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/monorail{ @@ -4459,14 +4432,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"duw" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"duh" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"duj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"dut" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" }, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "duF" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, @@ -4475,44 +4454,44 @@ /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"duV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "duW" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/medbay) +"duY" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "dvg" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison, /area/fiorina/station/disco) +"dvh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "dvq" = ( /obj/structure/machinery/newscaster, /turf/closed/wall/prison, /area/fiorina/station/medbay) +"dvy" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "dvB" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) -"dwf" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/southeast, +"dwa" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"dwM" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) -"dwJ" = ( -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) "dwP" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, @@ -4526,30 +4505,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"dwZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"dwU" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_tram) "dxb" = ( /obj/item/storage/briefcase/stowaway, /turf/open/space, /area/fiorina/oob) -"dxc" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"dxl" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"dxv" = ( -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/maintenance) "dxE" = ( /obj/structure/prop/resin_prop{ icon_state = "rack" @@ -4562,20 +4524,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"dxQ" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "dxS" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/servers) -"dxW" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"dyh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"dyd" = ( +/obj/structure/bed{ + icon_state = "psychbed" }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"dyl" = ( +/turf/open/floor/prison/green/northwest, +/area/fiorina/station/chapel) "dyB" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -4583,26 +4548,32 @@ /obj/item/explosive/grenade/high_explosive/m15, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"dyY" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) +"dyF" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"dyL" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"dzh" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "dzl" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) -"dzB" = ( -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"dzE" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 +"dzx" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; + name = "\improper Fiorina Engineering Canteen Vendor" }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"dzM" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) "dAd" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -4610,13 +4581,19 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"dAg" = ( -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) -"dBl" = ( -/obj/item/ammo_magazine/rifle/mar40/extended, +"dAK" = ( +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"dAV" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/area/fiorina/station/power_ring) +"dBc" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "dBq" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -4632,28 +4609,32 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"dBs" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"dBt" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/greenblue/northeast, -/area/fiorina/station/botany) "dBy" = ( /turf/open/floor/prison, /area/fiorina/station/chapel) -"dBz" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"dBO" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"dBZ" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/fiorina/station/flight_deck) +"dBL" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) +"dBS" = ( +/turf/open/floor/prison/floorscorched2, +/area/fiorina/station/civres_blue) +"dBT" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dBX" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "dCg" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/blood/drip, @@ -4667,6 +4648,15 @@ /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison, /area/fiorina/station/medbay) +"dCj" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "dCn" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -4674,21 +4664,17 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"dCs" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"dCr" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"dCt" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) +/obj/effect/decal/cleanable/cobweb, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "dCu" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -4696,62 +4682,63 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"dCv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"dCK" = ( -/obj/structure/prop/souto_land/pole, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) "dCM" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"dDn" = ( +"dCO" = ( +/obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"dDc" = ( +/obj/item/clothing/gloves/boxing, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"dDG" = ( +/obj/item/frame/toolbox_tiles_sensor, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"dDI" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"dDT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +/area/fiorina/tumor/civres) +"dDH" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) "dDU" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"dEh" = ( -/obj/item/reagent_container/food/drinks/cans/sodawater, +"dDV" = ( +/obj/item/device/multitool, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"dEj" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" +/area/fiorina/station/telecomm/lz1_cargo) +"dEd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/turf/open/floor/prison/redcorner/east, +/area/fiorina/station/power_ring) +"dEk" = ( +/obj/item/trash/semki, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dEs" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) +/obj/item/frame/rack, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) "dFh" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk/prison, @@ -4761,6 +4748,12 @@ /obj/effect/spawner/random/gun/shotgun/midchance, /turf/open/floor/prison, /area/fiorina/station/security) +"dFE" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "dFH" = ( /obj/structure/closet/cabinet, /obj/item/key/cargo_train, @@ -4768,17 +4761,6 @@ /obj/item/clothing/accessory/armband/cargo, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"dFI" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"dFK" = ( -/obj/structure/surface/rack, -/obj/item/ammo_box/magazine/nailgun, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) "dFM" = ( /obj/item/circuitboard/machine/pacman/super, /obj/structure/machinery/constructable_frame{ @@ -4786,78 +4768,98 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"dGx" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"dGA" = ( -/obj/structure/machinery/light/double/blue{ +"dFS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ dir = 1; - pixel_y = 21 + pixel_y = 20 }, -/turf/open/floor/prison/cell_stripe/east, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"dFZ" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue, +/area/fiorina/station/civres_blue) +"dGi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrowncorners2/north, /area/fiorina/station/park) -"dHb" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/storage/box/pillbottles, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +"dGT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/obj/item/attachable/bipod, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "dHd" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/civres) -"dHD" = ( -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"dHU" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/station/security) -"dIh" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"dIo" = ( -/turf/closed/wall/prison, -/area/fiorina/tumor/civres) -"dIx" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/yellow/northeast, +"dHe" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"dHG" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) -"dJd" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/ammo_magazine/rifle/mar40, +"dHH" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"dHQ" = ( +/obj/structure/platform{ + dir = 1 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/area/fiorina/station/transit_hub) +"dHW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dIo" = ( +/turf/closed/wall/prison, +/area/fiorina/tumor/civres) "dJe" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/park) -"dJh" = ( -/obj/structure/bookcase/manuals/research_and_development{ - pixel_y = 10 +"dJi" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dJO" = ( +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_y = 5 }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"dJt" = ( -/obj/structure/machinery/light/double/blue{ +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"dJW" = ( +/obj/structure/machinery/shower{ + dir = 1; pixel_y = -1 }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/disco) +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"dJZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") + }, +/turf/open/floor/prison/redcorner/east, +/area/fiorina/station/power_ring) +"dKn" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/tumor/civres) "dKo" = ( /obj/effect/spawner/random/gun/shotgun, /turf/open/floor/carpet, @@ -4872,35 +4874,47 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) +"dLd" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "dLq" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/wood, /area/fiorina/station/park) -"dLL" = ( -/turf/open/floor/prison/darkpurple2/southwest, -/area/fiorina/tumor/servers) -"dLN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - pixel_y = 5 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"dMt" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/tumor/aux_engi) -"dNc" = ( -/obj/structure/platform{ - dir = 1 +"dLu" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"dLB" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; + icon_state = "fullgrass_1"; + name = "Fiberbush(tm) tubers" }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"dMq" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"dMy" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/tumor/aux_engi) +"dNf" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) "dNh" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/lz/near_lzI) @@ -4910,6 +4924,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"dNu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "dNx" = ( /obj/structure/monorail{ dir = 9; @@ -4917,44 +4936,39 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"dNC" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"dOk" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/tumor/civres) -"dOt" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 +"dOf" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"dOj" = ( +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) "dOE" = ( /obj/item/storage/bible/hefa, /turf/open/floor/wood, /area/fiorina/station/chapel) -"dOO" = ( -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) +"dOU" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "dOX" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzI) -"dOZ" = ( +"dPg" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"dPe" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "dPm" = ( /obj/structure/bed/chair{ dir = 1; @@ -4962,15 +4976,29 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"dPr" = ( -/obj/structure/monorail{ - name = "launch track" +"dPp" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"dPu" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) +"dPz" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/platform_decoration{ - dir = 1 +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dPQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "dPZ" = ( /obj/structure/monorail{ dir = 6; @@ -4982,31 +5010,30 @@ /obj/item/tool/surgery/scalpel, /turf/open/floor/prison, /area/fiorina/station/lowsec) +"dQh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/power_ring) +"dQv" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "dQV" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/disco) -"dQW" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, -/obj/effect/spawner/random/gun/smg, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"dRk" = ( -/obj/item/shard{ - icon_state = "large" +"dRh" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"dRj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Residential Apartment" }, -/turf/open/floor/prison/darkpurplefull2, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/servers) -"dRs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/accessory/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) "dRx" = ( /obj/structure/monorail{ dir = 5; @@ -5023,22 +5050,46 @@ name = "metal wall" }, /area/fiorina/oob) -"dSM" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) +"dRP" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"dSg" = ( +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"dSA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/card/id/guest{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/card/id/guest, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"dSC" = ( +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "dTf" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"dTg" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "dTx" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"dTL" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "dTX" = ( /obj/structure/surface/rack, /obj/item/storage/bible/hefa{ @@ -5047,12 +5098,14 @@ /obj/item/storage/bible/hefa, /turf/open/floor/prison, /area/fiorina/station/medbay) -"dUf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) +"dUb" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/prison/greenblue/southwest, +/area/fiorina/station/botany) +"dUe" = ( +/obj/item/paper, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "dUi" = ( /obj/structure/bed/sofa/vert/grey/bot{ pixel_y = 8 @@ -5068,23 +5121,6 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"dUu" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"dUx" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"dVu" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) "dVx" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -5092,28 +5128,27 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"dVA" = ( -/obj/item/stool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"dVC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"dVD" = ( +"dVL" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/item/trash/barcardine, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"dVQ" = ( +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) +"dVY" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitegreen, +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/lowsec) +"dWo" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "handblood" + }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"dVR" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"dWn" = ( -/obj/structure/barricade/wooden, -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) "dWp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/russianRed{ @@ -5122,123 +5157,89 @@ /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"dWv" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "dWB" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"dXi" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurple2/east, -/area/fiorina/tumor/servers) -"dXv" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, +"dXr" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/oob) +"dXu" = ( +/turf/open/floor/prison/greencorner/west, /area/fiorina/station/chapel) +"dXA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical/green, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "dXG" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"dXK" = ( -/obj/item/newspaper, -/turf/open/floor/prison/green, -/area/fiorina/station/transit_hub) -"dXN" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"dXS" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) "dXT" = ( /obj/structure/platform_decoration, /obj/effect/spawner/random/toolbox, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"dYi" = ( -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/central_ring) -"dYo" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) "dYp" = ( /obj/docking_port/stationary/marine_dropship/lz1{ name = "LZ1: Hangar Landing Zone" }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"dYq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"dYC" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/central_ring) "dYI" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" }, /area/fiorina/tumor/aux_engi) -"dYV" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/maintenance) -"dZj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"dZo" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"dZu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/guest, -/obj/effect/landmark/objective_landmark/close, +"dZk" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"dZK" = ( -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/chapel) -"dZQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"eac" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"eao" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"eca" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +"dZJ" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"dZU" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/servers) +"eaE" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"eaI" = ( +/obj/effect/landmark/corpsespawner/prison_security, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"eaS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"eaX" = ( +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/tumor/ice_lab) +"ebC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"ebN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "ecd" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -5247,15 +5248,6 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"ecD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) "ecL" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -5269,17 +5261,9 @@ icon_state = "stan_rightengine" }, /area/fiorina/tumor/ship) -"ecU" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/station/flight_deck) -"eds" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/blood, -/obj/item/attachable/bipod, -/obj/item/device/multitool, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) +"ede" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) "edu" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -5288,16 +5272,27 @@ /obj/structure/platform, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"edy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +"edL" = ( +/obj/structure/bed/chair/comfy, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"edR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"edU" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"edW" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) "edY" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -5305,6 +5300,10 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"eeo" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "eeH" = ( /obj/structure/monorail{ dir = 9; @@ -5317,6 +5316,16 @@ /obj/item/stack/sheet/metal, /turf/open/floor/almayer_hull, /area/fiorina/oob) +"eeU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) +"efh" = ( +/obj/structure/machinery/floodlight{ + name = "Yard Floodlight" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "efk" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/landmark/objective_landmark/close, @@ -5352,6 +5361,19 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"efO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -6; + pixel_y = 20 + }, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = 6; + pixel_y = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "efR" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -5365,52 +5387,95 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) -"efW" = ( -/turf/open/floor/prison/yellow/southeast, +"egg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/lockbox/vials{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"egd" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) "egk" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/central_ring) +"egm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"egp" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) "egv" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/civres_blue) -"egz" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "egL" = ( /obj/item/newspaper, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"egP" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) "egT" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/medbay) -"ehr" = ( -/obj/effect/landmark/corpsespawner/ua_riot, +"ehm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/obj/item/storage/syringe_case/burn{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"ehM" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" + }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"ehy" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) "ehO" = ( /obj/structure/platform/shiva, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"eim" = ( -/obj/structure/platform_decoration{ - dir = 4 +"eib" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"eic" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_x = -2; + pixel_y = 7 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"eie" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"ein" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) "eio" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, @@ -5423,18 +5488,28 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"ejf" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/prison, +"eit" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"eiB" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) +"ejf" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/prison, /area/fiorina/station/lowsec) +"ejm" = ( +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) "ejq" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) -"ejs" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/security) "ejt" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, @@ -5442,6 +5517,11 @@ "ejw" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) +"ejE" = ( +/obj/item/weapon/gun/smg/nailgun, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "ejL" = ( /obj/structure/largecrate/supply/supplies/water, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -5454,67 +5534,80 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"ejM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/wy_mre{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"ekb" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) "eki" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"ekx" = ( -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring) -"ekz" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ekF" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"ekS" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"ekW" = ( -/obj/structure/bed/chair{ +"ekm" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison/blue/southeast, +/turf/open/floor/prison/blue/southwest, /area/fiorina/station/power_ring) +"ekt" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"ekG" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"ekH" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "elc" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"ele" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"elO" = ( -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"emm" = ( -/obj/structure/machinery/light/double/blue{ +"elr" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) +"elG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"elH" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/green, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"elY" = ( +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"emb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/guestpass{ dir = 4; - pixel_x = 10; - pixel_y = -3 + reason = "Visitor" }, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"emn" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/oob) +"emz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) "emC" = ( /obj/structure/lattice, /obj/item/shard{ @@ -5522,54 +5615,78 @@ }, /turf/open/space, /area/fiorina/oob) +"emN" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"emP" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "end" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"enu" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"enx" = ( -/obj/item/tool/shovel, -/turf/open/floor/prison/green/southeast, -/area/fiorina/tumor/civres) -"enH" = ( -/obj/effect/alien/weeds/node, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) +"enj" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"enD" = ( +/obj/structure/window, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "enY" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/oob) -"eot" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_tram) +"eoj" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/power_ring) "eov" = ( /turf/closed/wall/r_wall/prison_unmeltable{ desc = "A huge chunk of metal used to seperate rooms."; name = "metal wall" }, /area/fiorina/station/research_cells) -"eow" = ( -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) +"eoM" = ( +/obj/item/storage/belt/marine/quackers, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) +"eoS" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) "eoW" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"epB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/blue, -/area/fiorina/station/power_ring) -"epD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreenfull/southwest, +"eoX" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) +"epA" = ( +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/ice_lab) +"epC" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 8; + flipped = 1 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) "epV" = ( /obj/item/paper/crumpled/bloody, /turf/open/floor/wood, @@ -5578,50 +5695,45 @@ /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"eqi" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/prison/darkyellow2/north, +"eqn" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"eqD" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/lz/near_lzI) -"eqw" = ( -/obj/structure/platform_decoration{ - dir = 4 +"eqI" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 }, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) "eqJ" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"eqQ" = ( -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"eqS" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/green, -/area/fiorina/station/chapel) -"eqU" = ( -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) "eqZ" = ( /obj/structure/largecrate/random/mini/ammo, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"erb" = ( -/obj/effect/decal/cleanable/blood/drip, +"erc" = ( /turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"erh" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/flight_deck) "erj" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -5641,10 +5753,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"erw" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "erD" = ( /obj/structure/largecrate/supply, /obj/structure/platform_decoration{ @@ -5658,70 +5766,90 @@ }, /turf/open/space, /area/fiorina/oob) -"erU" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +"erW" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 }, -/obj/structure/machinery/shower{ - dir = 8 +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"esw" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/medbay) -"esR" = ( -/obj/structure/machinery/space_heater, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + layer = 2.9; + pixel_y = 17 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"esd" = ( +/obj/item/device/flashlight/flare/on, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"esg" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"esn" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "esS" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"esZ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"etj" = ( -/turf/open/floor/prison/green/northeast, -/area/fiorina/station/chapel) -"etq" = ( -/obj/structure/platform{ - dir = 4 +"etf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"etg" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "etL" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eub" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/box/holobadge{ - pixel_y = 3 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"eux" = ( -/obj/structure/bed/chair{ - dir = 8 +"etV" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"euz" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"euf" = ( +/obj/structure/machinery/door/airlock/prison/horizontal, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"euy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"euJ" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" }, -/turf/open/floor/prison/bright_clean_marked/southwest, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) +"euL" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"euO" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/station/telecomm/lz1_cargo) "evd" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -5733,28 +5861,34 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"evk" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"evl" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "brflowers_1" +"evg" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/obj/structure/barricade/handrail/type_b{ + dir = 4 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"evC" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"evx" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 }, -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"evN" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"evO" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "evT" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -5762,6 +5896,13 @@ }, /turf/open/floor/prison, /area/fiorina/station/botany) +"ews" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/central_ring) "ewx" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -5770,6 +5911,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) +"ewD" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) "ewE" = ( /obj/item/clothing/accessory/armband/cargo{ desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; @@ -5782,39 +5927,17 @@ /obj/structure/surface/rack, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"ewI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "exa" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/fiorina/station/park) -"exl" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/wooden, +"exm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"exy" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/maintenance) -"exI" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/station/park) -"exO" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) +"exH" = ( +/turf/open/floor/prison/darkbrowncorners2, /area/fiorina/station/park) "exW" = ( /obj/structure/monorail{ @@ -5827,41 +5950,16 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"eyi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert{ +"eyd" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"eyj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 9 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "eys" = ( /obj/vehicle/train/cargo/engine, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"eyv" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) "eyy" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -5872,18 +5970,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"eyz" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) -"eyO" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"ezd" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) +"eyD" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/station/chapel) +"eyY" = ( +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/chapel) "eze" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -5898,27 +5990,55 @@ }, /turf/open/space/basic, /area/fiorina/oob) +"ezj" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "ezn" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz1_cargo) -"ezO" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ezU" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 4; - flipped = 1 - }, +"ezq" = ( /turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/area/fiorina/oob) +"ezt" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"ezA" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"ezJ" = ( +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) "ezV" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"eAa" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"eAd" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/station/botany) +"eAJ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/station/park) "eAM" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 @@ -5929,68 +6049,43 @@ /obj/structure/girder/displaced, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eBa" = ( +"eCQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"eDa" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"eDq" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"eDY" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "lavendergrass_3" }, /turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) -"eBj" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"eBr" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"eBO" = ( -/obj/structure/machinery/door/airlock/almayer/marine, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"eBS" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/power_ring) -"eCy" = ( -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eCK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/lz/near_lzII) -"eDp" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +"eEl" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"eEB" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"eDA" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/research_cells) -"eEx" = ( -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"eEC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 7; - pixel_y = 22 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "eED" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin{ @@ -6011,21 +6106,9 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"eEQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"eET" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"eEX" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) +"eEY" = ( +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) "eFa" = ( /obj/structure/barricade/metal{ dir = 1; @@ -6034,17 +6117,34 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"eFq" = ( -/obj/item/storage/bible/hefa, -/turf/open/floor/prison/green/southeast, -/area/fiorina/station/chapel) +"eFh" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"eFo" = ( +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "eFD" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"eFQ" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/disco) +"eFJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + icon_state = "mwo"; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) "eFR" = ( /obj/structure/prop/souto_land/streamer{ dir = 8; @@ -6055,15 +6155,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"eFX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) "eGm" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -6074,30 +6165,25 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"eGO" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, +"eGs" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +/area/fiorina/station/power_ring) +"eGR" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/botany) +"eGT" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/greenblue/southeast, +/area/fiorina/station/botany) "eHa" = ( /obj/structure/lattice, /obj/structure/platform/kutjevo/smooth, /turf/open/space, /area/fiorina/oob) -"eHk" = ( -/obj/structure/machinery/door/morgue{ - dir = 2; - name = "Confession Booth" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"eHn" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) "eHt" = ( /obj/structure/window/reinforced{ dir = 1; @@ -6122,32 +6208,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"eHQ" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"eIx" = ( +"eIZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/structure/window/reinforced{ - dir = 8 + dir = 8; + health = 80 }, -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"eJd" = ( +/obj/structure/curtain, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"eIB" = ( -/obj/item/frame/rack, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"eIF" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"eIX" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/oob) +/area/fiorina/station/power_ring) +"eJl" = ( +/obj/item/weapon/baton/cattleprod, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) "eJm" = ( /obj/structure/machinery/door/poddoor/almayer{ density = 0; @@ -6155,21 +6231,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"eJt" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"eJy" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"eJK" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) "eJQ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -6177,27 +6238,25 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) +"eJS" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/station/power_ring) +"eKY" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"eLl" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "eLu" = ( /turf/closed/wall/prison, /area/fiorina/maintenance) -"eLw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eLy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"eLB" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) +"eLE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "eLQ" = ( /obj/item/weapon/gun/energy/taser, /turf/open/floor/prison, @@ -6212,73 +6271,66 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"eLX" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"eMd" = ( +/obj/item/ammo_box/magazine/misc/flares{ + layer = 3.1; + pixel_y = 16 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"eME" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"eMA" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "eMG" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access{ name = "greenhouse airlock" }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"eMI" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, +"eMK" = ( /turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) +/area/fiorina/station/lowsec) "eMU" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; opacity = 0 }, /area/fiorina/station/power_ring) -"eNa" = ( -/turf/open/floor/prison/yellowcorner, -/area/fiorina/station/lowsec) -"eNn" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) "eNr" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/surgical_tray/empty, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"eNv" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"eOp" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell1decal" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"eOy" = ( -/obj/structure/platform_decoration{ - dir = 8 +"eNx" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/power_ring) +"eNy" = ( +/obj/structure/machinery/vending/snack/packaged, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"eNM" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"eNN" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"eNU" = ( +/turf/open/floor/prison/greencorner/east, +/area/fiorina/tumor/civres) +"eOC" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) "eOF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -6288,16 +6340,6 @@ }, /turf/open/space, /area/fiorina/oob) -"eOI" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/transit_hub) -"eOM" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) "ePq" = ( /obj/item/trash/cigbutt/ucigbutt, /obj/item/trash/cigbutt/ucigbutt{ @@ -6306,6 +6348,16 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"ePt" = ( +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"ePu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) "ePv" = ( /obj/structure/prop/resin_prop{ dir = 4; @@ -6317,19 +6369,32 @@ "ePB" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz2_maint) +"ePD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "ePM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/spacecash/c20, /turf/open/floor/prison, /area/fiorina/station/security) -"ePU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"eQb" = ( -/obj/item/clothing/gloves/boxing/green, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) +"ePT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"ePY" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "eQk" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -6338,55 +6403,65 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"eQz" = ( -/obj/structure/machinery/gibber, -/obj/effect/decal/cleanable/blood{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) -"eQQ" = ( -/turf/open/floor/prison/platingdmg1, +"eQK" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) -"eQX" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +"eQM" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"eQY" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"eRl" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"eRq" = ( -/obj/item/toy/bikehorn, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"eQV" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/tumor/servers) +"eQW" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "eRz" = ( /obj/structure/machinery/vending/snack/packaged, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eRF" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"eRR" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"eRZ" = ( -/obj/item/stack/rods, +"eRB" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"eRH" = ( +/obj/item/reagent_container/food/snacks/eat_bar, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"eSn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/greenblue/southeast, -/area/fiorina/station/botany) +"eRX" = ( +/turf/open/floor/prison/greencorner/north, +/area/fiorina/tumor/civres) +"eRY" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"eSj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stool{ + pixel_y = 12 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"eSm" = ( +/obj/item/clothing/gloves/boxing/green, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/central_ring) "eSF" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 @@ -6399,15 +6474,6 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"eSO" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eTa" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) "eTb" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -6417,6 +6483,10 @@ "eTc" = ( /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) +"eTd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "eTr" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, @@ -6425,6 +6495,23 @@ /obj/item/frame/rack, /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"eTE" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"eTG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"eTQ" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "clfship" + }, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"eTZ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "eUi" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, @@ -6433,17 +6520,6 @@ /obj/structure/largecrate/random, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"eUy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eUN" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) "eUP" = ( /obj/item/tool/warning_cone, /turf/open/floor/prison, @@ -6477,68 +6553,32 @@ /obj/structure/machinery/computer/arcade, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eVK" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"eVN" = ( -/obj/item/bodybag, -/obj/item/bodybag{ - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) "eVO" = ( /turf/closed/shuttle/ert, /area/fiorina/tumor/ship) -"eWf" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/central_ring) -"eWr" = ( -/turf/open/floor/prison/green/southwest, -/area/fiorina/tumor/civres) -"eWz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flash, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"eWA" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +"eVQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"eWl" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "eWP" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/ice_lab) -"eWV" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) +"eWU" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "eXp" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/civres_blue) @@ -6546,6 +6586,10 @@ /obj/item/tool/wet_sign, /turf/open/floor/prison, /area/fiorina/station/disco) +"eXJ" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "eXP" = ( /obj/structure/machinery/door/poddoor/almayer{ density = 0; @@ -6560,23 +6604,45 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"eYr" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eYs" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire/empty, +"eYk" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"eYA" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + pixel_y = 19 + }, +/obj/item/stack/sheet/wood, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "Somehow, it still functions."; + layer = 3.1; + name = "discarded camera console"; + pixel_x = -6; + pixel_y = 5 + }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) -"eYz" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) "eYC" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"eYI" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) "eYN" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -6584,6 +6650,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/botany) +"eYQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "eYT" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 @@ -6599,6 +6673,9 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security/wardens) +"eYY" = ( +/turf/open/floor/prison/greencorner/north, +/area/fiorina/station/chapel) "eZi" = ( /obj/structure/machinery/power/apc{ dir = 8 @@ -6610,37 +6687,31 @@ /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"eZQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"eZW" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) +"eZv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"eZK" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "fac" = ( /obj/structure/platform/shiva{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"faw" = ( +"fal" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"faw" = ( /obj/structure/barricade/metal{ health = 250; icon_state = "metal_1" @@ -6653,10 +6724,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fbc" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"faF" = ( +/obj/item/tool/shovel/snow, +/obj/item/device/flashlight, +/obj/structure/surface/rack, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"faS" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"faZ" = ( +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) "fbo" = ( /obj/structure/barricade/plasteel, /obj/structure/barricade/metal{ @@ -6666,37 +6749,21 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"fbF" = ( -/obj/item/clothing/suit/chef/classic, -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"fbX" = ( -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"fcg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_x = -2; - pixel_y = 7 - }, +"fcs" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"fcy" = ( +/obj/structure/machinery/disposal, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +/area/fiorina/station/security/wardens) "fcA" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"fcB" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) +"fcF" = ( +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "fdf" = ( /obj/structure/closet, /obj/item/stack/cable_coil, @@ -6704,12 +6771,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"fdu" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/lz/near_lzI) +"fdg" = ( +/obj/structure/platform, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "fdC" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; @@ -6719,16 +6784,24 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"fdR" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/station/park) "fdV" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/space/basic, /area/fiorina/oob) +"feb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"fef" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"feh" = ( +/turf/open/floor/prison/damaged2, +/area/fiorina/station/disco) "fer" = ( /obj/structure/platform{ dir = 1 @@ -6739,47 +6812,74 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"ffA" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) +"feB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"feH" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"feY" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/tumor/aux_engi) +"ffT" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "ffZ" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/power_ring) -"fgq" = ( -/obj/effect/landmark/corpsespawner/engineer, +"fgi" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"fgj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/skills{ + dir = 4 + }, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"fgM" = ( -/obj/structure/platform, -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" - }, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) -"fgN" = ( -/obj/item/device/flashlight/flare, +"fgB" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/telecomm/lz1_cargo) "fgU" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fgY" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/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" +"fhk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) -"fhB" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/emergency, +"fhD" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"fhV" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) +/area/fiorina/tumor/servers) "fic" = ( /obj/structure/bed/sofa/south/grey/right, /obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ @@ -6787,9 +6887,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"fie" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/chapel) "fiq" = ( /turf/open/floor/plating/prison, /area/fiorina/oob) @@ -6801,48 +6898,18 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"fiw" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"fiG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_7" - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) "fiU" = ( /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) "fjd" = ( /turf/closed/wall/prison, /area/fiorina/lz/near_lzI) -"fje" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) "fjg" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, /turf/open/floor/prison, /area/fiorina/station/disco) -"fjo" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5_1" - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "fjr" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/plating_catwalk/prison, @@ -6853,49 +6920,95 @@ /obj/item/attachable/magnetic_harness, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"fjV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_cargo) +"fjL" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "fjX" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/fiorina/tumor/aux_engi) -"fkG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +"fkp" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/fiorina/station/medbay) +"fky" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"fkH" = ( /obj/structure/platform{ - dir = 8 + dir = 4 }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" +/obj/structure/platform_decoration{ + dir = 9 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"fmb" = ( -/obj/item/storage/firstaid/toxin, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) +/area/fiorina/station/botany) +"fkJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"fkK" = ( +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"fkN" = ( +/obj/structure/closet/crate/medical, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"fkV" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/fiorina/station/research_cells) +"fkX" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"flo" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"fls" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) +"flA" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/tumor/ice_lab) +"fmf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "fmg" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"fmE" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) +"fmh" = ( +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"fmm" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/tool/shovel/spade, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"fmn" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "fmY" = ( /obj/item/device/cassette_tape/ocean, /turf/open/floor/plating/prison, @@ -6904,22 +7017,37 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fno" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform{ - dir = 4 +"fny" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) +/obj/item/coin/uranium, +/obj/item/bedsheet/green, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"fnA" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_3" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"fnB" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "fnD" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/fiorina/station/telecomm/lz1_cargo) -"fnY" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +"fnQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/chapel) +"fnU" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) "fob" = ( /obj/structure/platform{ dir = 4 @@ -6928,45 +7056,28 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"fop" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) "fou" = ( /obj/structure/barricade/deployable{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/security) -"fpg" = ( -/obj/structure/platform{ - dir = 4 +"foS" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 7 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "fpn" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/aux_engi) -"fpq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/bright_clean_marked/southwest, -/area/fiorina/station/medbay) "fpB" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/plating/prison, @@ -6978,16 +7089,23 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"fqg" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/central_ring) -"fqh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"fqc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"fqt" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"fqy" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/northeast, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"fqA" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "fqF" = ( /obj/effect/landmark{ @@ -6997,122 +7115,75 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"fqI" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"frc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) "frv" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"frM" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"frR" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +"frO" = ( +/obj/structure/machinery/power/apc{ + dir = 1 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"frW" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) "fsk" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"ftb" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"ftd" = ( -/obj/structure/platform{ +"fsA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"ftf" = ( +/obj/item/frame/rack, +/obj/item/stack/medical/bruise_pack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ftI" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"fth" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"ftS" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/whitegreen, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) -"ftU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"fun" = ( -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_casing{ - icon_state = "casing_6_1" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) "fuw" = ( /obj/item/stack/cable_coil, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"fuJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic{ - pixel_x = 3 - }, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/paper_bin{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"fuO" = ( -/obj/item/clipboard, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"fvr" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/park) -"fvH" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/oob) -"fvK" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "fvL" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"fwg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv{ - pixel_x = -5; - pixel_y = 2 +"fvS" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/item/storage/firstaid/adv{ - pixel_x = 9; - pixel_y = 2 +/obj/item/reagent_container/food/drinks/flask/marine, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"fvX" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"fvY" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) "fwn" = ( /obj/structure/lattice, /obj/item/stack/sheet/metal, @@ -7122,13 +7193,12 @@ /obj/item/poster, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fwt" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" +"fwG" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/yellow, +/area/fiorina/station/disco) "fwY" = ( /obj/structure/barricade/metal/wired{ health = 250; @@ -7147,28 +7217,31 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/fiorina/station/security) -"fxt" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"fxL" = ( -/obj/structure/filingcabinet, +"fxk" = ( +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fxQ" = ( +/obj/item/tool/shovel/etool, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/civres_blue) "fxS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/mask/surgical, /turf/open/floor/prison, /area/fiorina/station/lowsec) +"fxY" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "fyi" = ( /turf/open/floor/wood, /area/fiorina/station/research_cells) -"fyt" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_3" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) "fyy" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -7182,6 +7255,13 @@ }, /turf/open/space, /area/fiorina/oob) +"fyH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "fyL" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, @@ -7190,65 +7270,54 @@ /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"fzp" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"fzC" = ( +"fyQ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/shotgun/highchance, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/maintenance) -"fzO" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/obj/item/paper_bin, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"fyX" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/telecomm/lz1_tram) +"fzo" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"fzF" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"fzM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 11 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "fAf" = ( /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"fAr" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"fAt" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_3"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/aux_engi) -"fAv" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 +"fAs" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"fAF" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) "fAI" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/gun/pistol/lowchance, /turf/open/floor/wood, /area/fiorina/station/park) -"fAS" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"fAU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 7 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) "fAZ" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/bottle/holywater{ @@ -7257,59 +7326,42 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"fBr" = ( -/obj/structure/closet/secure_closet/engineering_materials, +"fBb" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"fBC" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +/area/fiorina/tumor/servers) "fBD" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"fCf" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"fCr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"fCw" = ( -/obj/structure/machinery/vending/snack/packaged, +"fCz" = ( /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) "fCD" = ( /obj/item/stack/sheet/metal, /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"fCF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/cell/super{ - pixel_y = 12 - }, -/obj/item/cell/super, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"fCJ" = ( -/obj/structure/girder, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) +"fCI" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "fCW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications, @@ -7321,20 +7373,17 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fDb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"fDi" = ( -/obj/structure/machinery/computer/arcade, +"fDh" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"fDE" = ( -/turf/open/floor/prison/damaged1/southwest, /area/fiorina/station/central_ring) -"fDJ" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) "fDQ" = ( /obj/structure/window/framed/prison/reinforced/hull, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -7343,81 +7392,84 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"fDT" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "fDW" = ( /obj/structure/machinery/power/reactor/colony, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"fEb" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "fEn" = ( /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) -"fEv" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"fEH" = ( +"fEK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"fEY" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/delivery, -/area/fiorina/station/power_ring) -"fFv" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"fFx" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"fFw" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/power_ring) +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"fFy" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "fFE" = ( /obj/item/tool/screwdriver, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fGi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/station/park) +"fFI" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"fGx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "fGA" = ( /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/prison, /area/fiorina/station/security) -"fGW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 4 +"fGG" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 8; + flipped = 1 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +/obj/item/storage/box/ids, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = 14; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"fGP" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) "fHb" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fHo" = ( -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"fHI" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "fHK" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -7426,10 +7478,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"fIn" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) "fIq" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "bee" @@ -7439,13 +7487,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"fIL" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/chapel) "fIT" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/plating/prison, @@ -7455,6 +7496,14 @@ icon_state = "stan20" }, /area/fiorina/station/power_ring) +"fIX" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/greencorner/east, +/area/fiorina/station/chapel) +"fJb" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "fJj" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -7462,88 +7511,50 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"fJV" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) +"fJl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"fJp" = ( +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "fJW" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/accessory/storage/webbing, /obj/item/clothing/accessory/storage/webbing, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"fKm" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"fKn" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"fKu" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"fKP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"fKX" = ( -/obj/item/storage/backpack{ - pixel_x = -11; - pixel_y = 15 - }, -/obj/item/trash/syndi_cakes, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"fLb" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"fLu" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"fLH" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"fKf" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"fKT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) +/obj/structure/medical_supply_link, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"fLC" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "fLS" = ( /obj/structure/bed/chair, /turf/open/floor/wood, /area/fiorina/station/park) -"fLX" = ( -/obj/structure/bed/sofa/south/grey/left, +"fMj" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) -"fLY" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"fMc" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.5 - }, -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"fMn" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "fNA" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -7551,21 +7562,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) +"fNL" = ( +/obj/item/toy/handcard/uno_reverse_blue, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "fNN" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"fOe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco) -"fOg" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) "fOi" = ( /obj/structure/bed/chair{ dir = 8; @@ -7577,38 +7581,41 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"fOC" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"fOK" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/station/flight_deck) -"fOT" = ( -/turf/open/floor/prison/blue/north, -/area/fiorina/station/power_ring) -"fPl" = ( -/obj/structure/machinery/power/apc{ +"fOR" = ( +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) +"fPa" = ( +/obj/structure/prop/souto_land/pole{ dir = 1 }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"fPs" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/station/park) "fPB" = ( /turf/open/space, /area/fiorina/station/medbay) -"fQa" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/telecomm/lz1_tram) -"fQA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - layer = 3.5; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) +"fPF" = ( +/obj/structure/closet/bombcloset, +/obj/effect/spawner/random/gun/rifle/midchance, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) +"fQd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/margherita, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fQp" = ( +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"fQr" = ( +/obj/item/trash/burger, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "fQB" = ( /obj/item/ammo_casing/shell{ icon_state = "shell_9_1" @@ -7616,14 +7623,11 @@ /obj/effect/spawner/random/gun/shotgun/highchance, /turf/open/floor/wood, /area/fiorina/station/park) -"fQI" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" +"fQH" = ( +/obj/item/bananapeel{ + name = "tactical banana peel" }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "fQV" = ( /obj/structure/platform/kutjevo/smooth{ @@ -7635,35 +7639,36 @@ /obj/structure/machinery/portable_atmospherics/powered/pump, /turf/open/floor/prison, /area/fiorina/station/medbay) -"fRc" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 +"fRe" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"fRf" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"fRm" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/park) "fRo" = ( /obj/structure/bed/chair, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fRq" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/security) -"fSa" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"fSp" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"fSi" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/item/stack/sheet/metal{ - amount = 5 +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"fSl" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/power_ring) "fSq" = ( /obj/structure/machinery/door/airlock/almayer/marine{ dir = 1; @@ -7693,9 +7698,14 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"fTd" = ( -/turf/open/floor/prison/green/southwest, -/area/fiorina/tumor/aux_engi) +"fSX" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"fTe" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "fTn" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -7714,12 +7724,18 @@ /obj/item/clothing/suit/suspenders, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fUd" = ( -/obj/structure/barricade/plasteel{ - dir = 4 +"fTS" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"fUk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/floor/almayer/plating/northeast, -/area/fiorina/tumor/ship) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) "fUm" = ( /obj/item/clothing/head/pirate, /obj/item/clothing/under/pirate, @@ -7731,6 +7747,9 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"fUy" = ( +/turf/open/floor/prison/darkpurple2, +/area/fiorina/station/central_ring) "fUz" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -7742,41 +7761,29 @@ /obj/structure/stairs/perspective, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"fUD" = ( -/obj/structure/dropship_equipment/mg_holder, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"fUP" = ( -/obj/structure/machinery/door/window/eastright{ - dir = 2 +"fUF" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) "fUX" = ( /obj/structure/bedsheetbin, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"fVs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/green/southwest, -/area/fiorina/station/chapel) -"fVY" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"fWr" = ( +"fVj" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"fVq" = ( +/obj/item/newspaper, /turf/open/floor/prison/red/east, /area/fiorina/lz/near_lzII) +"fVL" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/telecomm/lz1_tram) "fWs" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -7787,12 +7794,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"fWy" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/power_ring) -"fWH" = ( -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) "fWI" = ( /obj/structure/monorail{ dir = 9; @@ -7800,25 +7801,9 @@ }, /turf/open/space, /area/fiorina/oob) -"fWV" = ( -/turf/open/floor/prison/damaged1/southwest, -/area/fiorina/station/disco) -"fXo" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) "fXB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) -"fXD" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"fXI" = ( -/turf/open/floor/prison/green, -/area/fiorina/station/transit_hub) "fXL" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -7830,18 +7815,18 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/servers) -"fXW" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/bluecorner/west, +"fXR" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/bluecorner/north, /area/fiorina/station/power_ring) -"fYa" = ( -/obj/structure/inflatable, +"fXZ" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"fYi" = ( +/obj/item/trash/cigbutt, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"fYf" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) "fYo" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -7850,120 +7835,109 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) +"fYp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"fYD" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"fYE" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"fYV" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "fYW" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"fYY" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"fZc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "fZd" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"fZe" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"fZz" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/security) -"fZD" = ( -/obj/item/tool/warning_cone, +"fZs" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"fZz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fZD" = ( +/obj/item/tool/warning_cone, /turf/open/floor/wood, /area/fiorina/station/park) -"fZT" = ( -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"fZG" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"fZW" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"fZK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -6; - pixel_y = 16 +/obj/item/paper, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"gav" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"gag" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"gaw" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/servers) "gaQ" = ( /obj/structure/machinery/power/apc{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/security) -"gbf" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"gbh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gbk" = ( -/obj/item/trash/burger, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"gbv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gbF" = ( -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) -"gbO" = ( +"gbe" = ( /obj/structure/platform_decoration{ dir = 4 }, -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"gbR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"gbk" = ( +/obj/item/trash/burger, +/turf/open/floor/prison, /area/fiorina/station/disco) "gbT" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison, /area/fiorina/station/medbay) -"gbV" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) +"gcj" = ( +/obj/item/stool, +/obj/structure/sign/poster{ + icon_state = "poster15"; + pixel_y = 32 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"gcl" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "gcx" = ( /obj/structure/monorail{ dir = 4; @@ -7971,31 +7945,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"gcD" = ( -/obj/structure/kitchenspike, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"gdQ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/chapel) -"gdS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/yellowfull, +"gcP" = ( +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/lowsec) -"gec" = ( -/obj/structure/prop/structure_lattice{ - dir = 8; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) +"gdc" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"gdu" = ( +/obj/item/tool/shovel, +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/civres) "gef" = ( /obj/structure/lattice, /obj/structure/platform/kutjevo/smooth{ @@ -8003,24 +7963,32 @@ }, /turf/open/space, /area/fiorina/oob) -"ger" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) "geF" = ( /obj/structure/lattice, /turf/open/floor/almayer_hull, /area/fiorina/oob) +"geI" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) "geL" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/fiorina/station/chapel) -"geT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"geO" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/chapel) +"geS" = ( +/obj/structure/machinery/vending/cigarette/free, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"geU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) "gfh" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -8033,9 +8001,20 @@ /obj/effect/spawner/gibspawner/human, /turf/open/floor/wood, /area/fiorina/station/park) +"gfl" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "gfo" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) +"gfr" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"gfK" = ( +/obj/item/broken_device, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "gfL" = ( /obj/structure/prop/souto_land/pole, /obj/structure/prop/souto_land/pole{ @@ -8049,6 +8028,12 @@ icon_state = "leftengine_1" }, /area/fiorina/oob) +"ggg" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "ggh" = ( /obj/effect/landmark/nightmare{ insert_tag = "birthdayparty" @@ -8061,12 +8046,21 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"ggA" = ( +"ggu" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"ggF" = ( +/obj/item/trash/c_tube, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"ggS" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/pepper, -/obj/item/clothing/glasses/sunglasses/sechud, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/obj/item/device/radio{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "ghg" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -8081,11 +8075,6 @@ }, /turf/open/space, /area/fiorina/oob) -"ghw" = ( -/obj/structure/bed/chair/dropship/pilot, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) "ghz" = ( /obj/structure/lz_sign/prison_sign, /turf/open/floor/prison, @@ -8094,25 +8083,50 @@ /obj/item/tool/warning_cone, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"gir" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) +"giq" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "giw" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"giA" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +"giB" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/maintenance) +"giF" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "giX" = ( /obj/structure/barricade/handrail/type_b{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"giZ" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"gjg" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/station/central_ring) "gjr" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/floor/prison, @@ -8124,32 +8138,34 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"gjz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"gjY" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/chapel) -"gkv" = ( -/obj/structure/platform_decoration{ - dir = 1 +"gjU" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"gkc" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"gkC" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec) +"gkJ" = ( +/obj/item/explosive/grenade/high_explosive/m15, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/aux_engi) +"gkN" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"gkE" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) +/obj/item/reagent_container/glass/bottle/cyanide{ + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) "glj" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -8164,25 +8180,22 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"gmg" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/flight_deck) -"gmp" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"glK" = ( +/obj/structure/sign/poster{ + icon_state = "poster18"; + pixel_y = 32 }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"gmn" = ( +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) -"gmx" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/greenblue/north, -/area/fiorina/station/botany) +/area/fiorina/station/power_ring) +"gmq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "gmF" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, @@ -8191,84 +8204,128 @@ /obj/structure/machinery/constructable_frame, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"gmN" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/spawner/random/gun/smg, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"gmT" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"gnG" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" +"gmP" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/obj/structure/bed/roller, -/turf/open/floor/prison/sterile_white/southwest, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"gnL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/obj/item/reagent_container/food/snacks/grown/carrot, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) +"gnf" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/research_cells) +"gng" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"gnn" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) "gnQ" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"gnY" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/bible/hefa, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"goo" = ( -/turf/open/floor/prison/yellow/west, -/area/fiorina/lz/near_lzII) +"gnR" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "goG" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"goU" = ( +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"goX" = ( +/obj/structure/bed/chair, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"goY" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gpd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"gpf" = ( +/obj/item/storage/wallet/random, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) "gpr" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"gpA" = ( -/obj/item/trash/pistachios, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) "gpG" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"gpY" = ( -/obj/item/explosive/grenade/high_explosive/m15{ - pixel_x = -9; - pixel_y = -8 +"gpH" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/green/west, +/area/fiorina/station/chapel) +"gpI" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"gqn" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/obj/item/explosive/grenade/high_explosive/frag{ - pixel_x = 6; - pixel_y = 3 +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"gqA" = ( +/obj/structure/machinery/disposal, +/obj/item/tool/kitchen/rollingpin{ + pixel_y = 8 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"gqM" = ( -/obj/structure/platform_decoration, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"gqL" = ( +/obj/item/reagent_container/food/drinks/bottle/tomatojuice, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"gqU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/janitor, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"grg" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/tumor/aux_engi) +"gqO" = ( +/obj/item/stack/cable_coil/orange, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"grj" = ( +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "grA" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 @@ -8281,6 +8338,23 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"gsf" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"gst" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"gsv" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/station/central_ring) +"gsJ" = ( +/obj/item/ammo_magazine/rifle/m16, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "gsL" = ( /obj/structure/platform, /obj/structure/platform{ @@ -8296,11 +8370,6 @@ /obj/effect/spawner/random/gun/shotgun/midchance, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"gsU" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) "gsX" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -8309,14 +8378,10 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"gtf" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) +"gtc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "gtg" = ( /obj/structure/barricade/sandbags{ dir = 4; @@ -8329,31 +8394,22 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"gtr" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"gtH" = ( -/obj/structure/safe, -/obj/item/storage/beer_pack, -/obj/item/storage/beer_pack, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"gtN" = ( -/obj/item/storage/beer_pack{ - pixel_y = 10 +"gth" = ( +/obj/structure/monorail{ + name = "launch track" }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) "gtP" = ( /obj/item/trash/uscm_mre, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"gtT" = ( -/obj/item/trash/eat, +"gub" = ( +/obj/structure/platform{ + dir = 4 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/power_ring) "guf" = ( /obj/structure/bed/chair{ dir = 4; @@ -8361,18 +8417,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"guv" = ( -/obj/item/packageWrap, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) "gux" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison, /area/fiorina/station/disco) -"guz" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) +"guT" = ( +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 32 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "guU" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -8384,53 +8440,61 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/civres) -"gve" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) -"gvr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"gvz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"gvt" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"gvE" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, /obj/structure/platform{ - dir = 1 + dir = 8 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison/bright_clean2/southwest, +/area/fiorina/station/power_ring) +"gvK" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/maintenance) +"gwa" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/telecomm/lz1_cargo) +"gws" = ( +/turf/open/floor/plating, +/area/fiorina/oob) +"gwt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups{ + pixel_x = -3; + pixel_y = 6 }, -/obj/structure/platform_decoration{ - dir = 9 +/obj/item/storage/box/cups, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"gww" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/turf/open/floor/prison/yellowfull, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) -"gvZ" = ( -/obj/item/stack/sheet/wood{ - pixel_x = 1; - pixel_y = -3 +"gwy" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"gwm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"gws" = ( -/turf/open/floor/plating, -/area/fiorina/oob) +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/maintenance) +"gwA" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) "gwH" = ( /turf/closed/wall/strata_ice/jungle{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -8446,57 +8510,75 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"gxe" = ( +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left" + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"gxg" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/shower, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"gxi" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/tumor/aux_engi) "gxj" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/dice/d20, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"gxn" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"gxl" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"gxB" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"gxD" = ( +/obj/structure/machinery/door/window/eastright{ + dir = 2 }, -/turf/open/floor/prison/darkpurplefull2, +/turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) -"gxQ" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"gxR" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"gyh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"gxF" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"gxK" = ( +/obj/structure/prop/structure_lattice{ + dir = 8; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gyt" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"gxU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"gyo" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/maintenance) "gyy" = ( /obj/structure/platform{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"gyA" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"gyB" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_2" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) "gyJ" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -8505,35 +8587,34 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"gyP" = ( -/obj/item/stack/sheet/wood{ - amount = 10 +"gyO" = ( +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) "gzb" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gzh" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -11; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"gzu" = ( -/obj/item/clothing/mask/cigarette/bcigarette, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"gzN" = ( +"gzs" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/toy/handcard/aceofspades, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "gAh" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -8549,49 +8630,18 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/station/park) +"gAr" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) "gAA" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"gAC" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gAQ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"gBe" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"gBw" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"gBx" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"gBN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"gBP" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) +"gBq" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) "gBR" = ( /obj/structure/platform{ dir = 4 @@ -8602,10 +8652,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"gBY" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/prison/redfull, -/area/fiorina/station/chapel) "gCn" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper{ @@ -8619,6 +8665,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"gCt" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/flight_deck) "gCE" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -8629,15 +8681,21 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/civres) -"gCH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gCK" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) +"gCI" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"gDj" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "gDx" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper{ @@ -8653,9 +8711,6 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) -"gEq" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/oob) "gEx" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -8679,34 +8734,32 @@ /obj/item/fuel_cell, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"gFp" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"gFN" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"gFW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/green/southeast, -/area/fiorina/tumor/aux_engi) -"gFZ" = ( -/obj/structure/barricade/wooden{ - dir = 1 +"gGb" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "gGc" = ( /obj/structure/platform{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/disco) +"gGq" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) "gGx" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"gGM" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"gHe" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/fiorina/tumor/ice_lab) "gHh" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -8714,30 +8767,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"gHn" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +"gHk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 }, /turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"gHo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/civres_blue) "gHy" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/plating/prison, @@ -8757,42 +8798,49 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"gIa" = ( -/obj/item/stool, -/obj/item/reagent_container/food/drinks/bottle/bluecuracao{ - pixel_x = 15; - pixel_y = 25 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"gIo" = ( +"gIv" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/storage/box/cups, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"gIs" = ( -/obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) +/obj/item/card/id/guest, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "gIB" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"gID" = ( -/turf/open/floor/prison/darkredfull2, -/area/fiorina/oob) +"gIG" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/lz/near_lzII) +"gJg" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "gJu" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"gKg" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +"gJG" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"gJO" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"gKf" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/flight_deck) "gKi" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -8805,13 +8853,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"gKG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/chapel) +"gKt" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"gKW" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "gLk" = ( /obj/item/stool, /turf/open/floor/prison, @@ -8828,73 +8877,48 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gLK" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison/greenblue/southwest, -/area/fiorina/station/botany) -"gLV" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"gNx" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gNJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"gNU" = ( -/obj/structure/platform{ - dir = 4 +"gLT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"gMM" = ( +/obj/structure/barricade/handrail/type_b, /turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) -"gNY" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ppflowers_2" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"gOd" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkbrown2, +"gMW" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"gNB" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/telecomm/lz1_cargo) +"gNG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) -"gOk" = ( -/obj/structure/cargo_container/grant/right{ - density = 0; - desc = "A huge industrial shipping container. You could slip just behind it."; - health = 5000; - layer = 4; - unacidable = 1 +"gOj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"gOy" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/power_ring) -"gOJ" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/obj/effect/spawner/random/pills, +"gOI" = ( +/obj/structure/closet/crate/medical, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/corsat/squares, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"gOM" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) -"gOU" = ( -/obj/item/bodybag, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) "gPk" = ( /obj/structure/barricade/metal/wired{ dir = 4 @@ -8902,42 +8926,21 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"gPo" = ( -/turf/open/floor/prison/green/northwest, -/area/fiorina/tumor/civres) -"gPp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison/kitchen, +"gPn" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "gPs" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"gPE" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"gPS" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"gPV" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"gPA" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "gQc" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"gQz" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "gQK" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -8954,17 +8957,31 @@ /obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"gRf" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gRg" = ( -/obj/item/device/flashlight/lamp/tripod, +"gQW" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"gRA" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) +/area/fiorina/station/telecomm/lz1_cargo) +"gRI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"gRO" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/maintenance) +"gRS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) "gRT" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/sign/poster{ @@ -8983,28 +9000,37 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"gSf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"gSc" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"gSg" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"gSn" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "gSC" = ( /obj/item/prop/helmetgarb/gunoil, /turf/open/floor/prison, /area/fiorina/maintenance) -"gSK" = ( -/obj/effect/landmark/yautja_teleport, +"gSE" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) +"gSL" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "gSP" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/candelabra{ @@ -9020,40 +9046,50 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"gTc" = ( -/obj/item/storage/belt/shotgun/full/quackers, -/obj/effect/spawner/gibspawner/human, -/turf/open/gm/river/darkred_pool, -/area/fiorina/station/park) -"gTi" = ( -/turf/open/floor/prison/blue, -/area/fiorina/station/chapel) -"gTy" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) -"gTN" = ( -/turf/open/floor/prison/darkpurple2/northeast, -/area/fiorina/tumor/ice_lab) -"gTW" = ( -/obj/structure/platform, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"gUj" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan3" +"gTh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + pixel_y = 32 }, -/area/fiorina/tumor/ship) -"gUu" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"gVc" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"gTk" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"gTl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"gUb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + layer = 3.5; + pixel_y = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"gUj" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/fiorina/tumor/ship) +"gVc" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, /obj/structure/machinery/light/double/blue{ dir = 1; @@ -9062,6 +9098,16 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/disco) +"gVd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"gVg" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "gVs" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, @@ -9077,17 +9123,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gVT" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"gWg" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) "gWq" = ( /obj/item/ammo_casing{ icon_state = "casing_1" @@ -9098,6 +9133,10 @@ /obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/wood, /area/fiorina/station/disco) +"gWE" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) "gXd" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ density = 0; @@ -9112,97 +9151,74 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"gXF" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/tumor/servers) -"gXI" = ( -/obj/item/book/manual/atmospipes, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"gYD" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/whitepurple, +"gXM" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"gXO" = ( +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_x = -24 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"gXV" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) -"gYH" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ +"gYk" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"gYM" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gZc" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "4" +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"gYU" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/maintenance) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "gZf" = ( /obj/structure/machinery/shower{ pixel_y = 13 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"gZg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"gZx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"gZG" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"gZM" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/station/park) -"hae" = ( +"gZp" = ( +/obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"hao" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 7 +/area/fiorina/station/medbay) +"gZI" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "hay" = ( /turf/closed/shuttle/ert{ icon_state = "wy_leftengine" }, /area/fiorina/station/medbay) -"haJ" = ( -/obj/item/disk, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"haQ" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"hbn" = ( -/obj/structure/bed/chair{ +"haP" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"haU" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) "hbo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/classic{ @@ -9241,20 +9257,30 @@ /obj/structure/platform, /turf/open/floor/prison, /area/fiorina/station/disco) -"hbt" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"hbH" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"hcs" = ( -/obj/item/stack/sheet/metal{ - amount = 5 +"hbu" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/maintenance) +"hbC" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/flight_deck) +"hbU" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"hcb" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/maintenance) "hcv" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -9265,67 +9291,37 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"hcB" = ( -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 32 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"hcY" = ( -/obj/structure/platform{ - dir = 1 +"hcU" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_2" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) "hds" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-8" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"hdA" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 +"hdy" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"hdJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv{ + pixel_x = -5; + pixel_y = 2 }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"hdR" = ( -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"hej" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/maintenance) -"hek" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/weapon/baton, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"heo" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +/obj/item/storage/firstaid/adv{ + pixel_x = 9; + pixel_y = 2 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"heA" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/telecomm/lz1_cargo) "heO" = ( /turf/closed/shuttle/elevator, /area/fiorina/station/civres_blue) -"heT" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/greenblue/southeast, -/area/fiorina/station/botany) "hfc" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -9344,34 +9340,68 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"hfv" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"hfJ" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) "hfT" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/flight_deck) -"hgc" = ( -/obj/structure/largecrate/supply/medicine/medivend, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hgh" = ( -/obj/item/trash/burger, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"hgA" = ( -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"hgD" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrowncorners2/east, -/area/fiorina/tumor/aux_engi) -"hgP" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrowncorners2/north, +"hgt" = ( +/obj/structure/machinery/defenses/tesla_coil{ + faction_group = list("USCM") + }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) +"hgK" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/power_ring) +"hgL" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"hgQ" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"hgR" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "hgS" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/tumor/aux_engi) +"hhj" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "hhu" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner{ @@ -9380,12 +9410,29 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"hhD" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/surface/rack, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) +"hhy" = ( +/obj/structure/bed/chair, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"hhz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"hhI" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) "hhL" = ( /obj/effect/spawner/random/powercell, /obj/structure/disposalpipe/segment{ @@ -9397,33 +9444,40 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hil" = ( -/obj/structure/surface/rack, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/weeds, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) +"hic" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) +"hip" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) "hir" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"hiF" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) "hiO" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/fiorina/tumor/aux_engi) -"hiP" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"hjp" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"hjB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) +"hji" = ( +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"hjs" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "hjC" = ( /obj/structure/platform{ dir = 8 @@ -9442,11 +9496,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"hjM" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +"hjG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/medbay) "hjR" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison, @@ -9466,36 +9519,20 @@ }, /turf/open/floor/almayer_hull, /area/fiorina/oob) -"hko" = ( +"hkQ" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison/green/southwest, +/area/fiorina/tumor/civres) +"hkV" = ( +/obj/item/inflatable, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"hlc" = ( /obj/effect/decal/medical_decals{ - icon_state = "docdecal1" + icon_state = "docstripingdir" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hkA" = ( -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/flight_deck) -"hkB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"hkH" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"hkM" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"hlk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette, -/obj/item/storage/fancy/cigarettes/emeraldgreen{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) "hlB" = ( /obj/item/tool/kitchen/knife, /turf/open/floor/prison, @@ -9508,53 +9545,61 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"hmq" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"hmE" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) +"hmk" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"hms" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"hmL" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "hmS" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) +"hne" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "hnh" = ( /obj/item/reagent_container/food/drinks/sillycup, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"hnK" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"hnM" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison/floor_plate, +"hnA" = ( +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/security) +"hnO" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"hnU" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/oob) "hob" = ( /obj/item/phone{ pixel_y = 7 }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"hoo" = ( -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/civres_blue) -"hox" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"hoC" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) "hoH" = ( /obj/effect/decal/cleanable/cobweb{ desc = "Spun only by the terrifying space widow. Some say that even looking at it will kill you."; @@ -9576,10 +9621,25 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) -"hpn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) +"hpg" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) +"hpi" = ( +/turf/open/floor/prison/green/west, +/area/fiorina/station/chapel) +"hpp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "hpz" = ( /obj/structure/ice/thin/indestructible{ dir = 1; @@ -9592,10 +9652,6 @@ /obj/item/stack/cable_coil/orange, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"hpX" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) "hqb" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -9613,32 +9669,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"hqG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/tumor/ice_lab) -"hqO" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/lz/near_lzII) -"hqX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) +"hqH" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"hqR" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/tumor/aux_engi) +"hqZ" = ( +/obj/item/frame/rack, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "hre" = ( /obj/structure/platform_decoration{ dir = 4 @@ -9654,9 +9698,13 @@ /obj/structure/girder, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hrw" = ( -/turf/open/floor/prison/darkpurple2/east, -/area/fiorina/tumor/servers) +"hrr" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "hrz" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ density = 0; @@ -9674,46 +9722,36 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"hrA" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) "hrB" = ( /obj/item/tool/weldingtool, /turf/open/floor/prison, /area/fiorina/station/security) -"hrL" = ( -/obj/structure/machinery/shower{ +"hrQ" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/tumor/aux_engi) +"hrU" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 8 + pixel_y = 21 }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/central_ring) +"hrV" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) "hsc" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hsf" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"hsl" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"hsz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northeast, +"hsk" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/power_ring) +"hso" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/disco) "hsC" = ( /obj/structure/surface/table/reinforced/prison, @@ -9726,6 +9764,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"hsM" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "hsZ" = ( /obj/item/book/manual/marine_law, /obj/item/book/manual/marine_law{ @@ -9733,71 +9775,30 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) -"htq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) "htt" = ( /turf/closed/shuttle/ert, /area/fiorina/station/power_ring) -"htD" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"htO" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "casing_6" - }, -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" - }, -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"htT" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) -"htX" = ( -/turf/open/floor/prison/green/southwest, -/area/fiorina/station/chapel) -"hub" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) +"htE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"htW" = ( +/obj/item/stack/cable_coil/pink, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "hul" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"huB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +"hup" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "huD" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"huG" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"huJ" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec) "hva" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -9805,59 +9806,57 @@ /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/wood, /area/fiorina/lz/near_lzI) -"hvg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"hvp" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) +"hvl" = ( +/obj/structure/closet/basketball, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"hvm" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"hvA" = ( +/obj/structure/computerframe, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "hvF" = ( /obj/structure/grille, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"hvL" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"hwr" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 +"hvM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"hvT" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"hwj" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) -"hwN" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"hwS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"hxj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"hwv" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/park) +"hxo" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) "hxq" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) +"hxF" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "hxG" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -9883,57 +9882,34 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"hyc" = ( -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/maintenance) -"hyo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"hyh" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/lz/near_lzII) +"hym" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"hyq" = ( -/obj/structure/closet/crate/medical, -/obj/item/tool/surgery/bonegel, -/obj/item/tool/surgery/bonegel, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "hys" = ( /obj/structure/grille, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"hyx" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/tumor/aux_engi) "hyT" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" }, /area/fiorina/tumor/aux_engi) -"hzi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"hzv" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hzF" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"hyZ" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) "hzG" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8; @@ -9943,49 +9919,17 @@ icon_state = "wy4" }, /area/fiorina/station/medbay) -"hzL" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/tumor/aux_engi) -"hAs" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 11; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"hAI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"hzI" = ( +/obj/structure/cargo_container/grant/left, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"hAP" = ( -/obj/item/clothing/under/stowaway, -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"hAX" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/fiorina/tumor/ice_lab) -"hBc" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"hBf" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/power_ring) +"hzU" = ( +/turf/open/floor/prison/floorscorched2, +/area/fiorina/station/security) +"hzX" = ( +/obj/item/device/cassette_tape/nam, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "hBF" = ( /obj/structure/window_frame/prison/reinforced, /obj/item/stack/sheet/glass/reinforced{ @@ -9993,6 +9937,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) +"hBR" = ( +/obj/item/trash/candy, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"hBZ" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/station/disco) "hCc" = ( /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/plating/plating_catwalk/prison, @@ -10000,66 +9951,28 @@ "hCh" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"hCk" = ( -/obj/item/poster, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"hCp" = ( -/obj/structure/prop/invuln{ - desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; - icon = 'icons/obj/structures/doors/celldoor.dmi'; - icon_state = "door_closed"; - layer = 2.5; - name = "cell door" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"hCR" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"hDb" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"hDl" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hDm" = ( -/obj/item/trash/burger, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"hDS" = ( -/obj/structure/platform{ +"hDA" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"hDV" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/civres_blue) +"hDJ" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "hEb" = ( /turf/closed/shuttle/ert{ icon_state = "wy20" }, /area/fiorina/station/medbay) -"hEk" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/flight_deck) +"hEo" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "hEs" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, @@ -10071,9 +9984,33 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"hEZ" = ( -/turf/open/floor/prison/platingdmg3, -/area/fiorina/station/security) +"hEP" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"hFl" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hFo" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"hFv" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) "hFC" = ( /obj/item/disk, /turf/open/floor/prison, @@ -10086,70 +10023,38 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"hFW" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"hGg" = ( -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_x = -24 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) "hGn" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"hGu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "hGy" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"hGW" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"hHc" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 +"hHo" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/obj/effect/decal/cleanable/cobweb, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) "hHq" = ( /obj/structure/closet/cabinet, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"hHr" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"hHC" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/bed/chair{ - dir = 1 +"hHx" = ( +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 }, -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"hHD" = ( +/obj/structure/curtain, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/power_ring) "hHH" = ( /obj/effect/decal/cleanable/blood{ desc = "Watch your step."; @@ -10157,42 +10062,69 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"hHX" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 +"hHT" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"hHZ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"hIs" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"hIC" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/yellow/northwest, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"hIR" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/central_ring) +"hIY" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) +"hJh" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"hJt" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) -"hIO" = ( -/obj/structure/largecrate/random/barrel/green, +"hJF" = ( /turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"hIX" = ( -/obj/structure/machinery/power/apc{ +/area/fiorina/oob) +"hJM" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/tumor/aux_engi) +"hJR" = ( +/obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison/green/north, -/area/fiorina/station/chapel) -"hJo" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/reagent_container/food/drinks/flask/barflask, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"hKN" = ( -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"hKP" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"hLd" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 }, -/obj/item/tool/shovel/spade, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"hLr" = ( +/obj/structure/largecrate/supply/ammo, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "hLz" = ( /turf/closed/wall/prison, /area/fiorina/lz/near_lzII) @@ -10213,33 +10145,50 @@ }, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"hMA" = ( -/obj/item/tool/crowbar, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"hMH" = ( -/obj/item/newspaper, -/turf/open/floor/prison/red/east, -/area/fiorina/lz/near_lzII) +"hMm" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"hMq" = ( +/obj/structure/barricade/sandbags{ + dir = 4; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "hMK" = ( /obj/effect/landmark/nightmare{ insert_tag = "pizzatime" }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/power_ring) -"hNj" = ( +"hMT" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -6; - pixel_y = 20 - }, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = 6; - pixel_y = 20 - }, +/obj/effect/spawner/random/toolbox, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) +"hMW" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"hNs" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"hNG" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "hNU" = ( /obj/structure/janitorialcart, /turf/open/floor/prison, @@ -10248,23 +10197,53 @@ /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"hOA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"hOG" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"hOQ" = ( -/obj/structure/platform_decoration{ - dir = 4 +"hOb" = ( +/obj/item/stool, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"hOp" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"hOs" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/tumor/aux_engi) +"hOx" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/central_ring) +"hOz" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"hOA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"hOE" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) +"hON" = ( +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring) +"hOV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/reagent_container/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" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) "hPi" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -10273,26 +10252,23 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"hPq" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"hPu" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring) -"hPL" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/darkpurple2/southeast, -/area/fiorina/tumor/servers) +"hPj" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"hPw" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "hPN" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/fiorina/station/security) -"hPO" = ( -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) "hPY" = ( /obj/structure/surface/rack, /turf/open/floor/wood, @@ -10304,13 +10280,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"hQj" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) "hQk" = ( /obj/structure/monorail{ name = "launch track" @@ -10322,6 +10291,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"hQu" = ( +/obj/item/reagent_container/food/snacks/meat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) "hQv" = ( /obj/structure/platform{ dir = 1 @@ -10335,16 +10309,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"hQM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"hQL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"hQQ" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) +/area/fiorina/station/park) "hQR" = ( /obj/structure/barricade/metal/wired{ dir = 1 @@ -10358,68 +10327,55 @@ /obj/item/stack/barbed_wire, /turf/open/floor/prison, /area/fiorina/station/disco) -"hRb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 1 +"hRQ" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"hRs" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"hRX" = ( -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) -"hSk" = ( -/obj/structure/toilet, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"hSl" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"hSo" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"hRT" = ( +/obj/item/storage/bible/hefa{ + pixel_y = 3 }, -/obj/item/tool/crowbar/red, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"hSj" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/disco) +"hSz" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/prison/cell_stripe/east, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"hSA" = ( -/obj/item/reagent_container/food/drinks/bottle/tomatojuice, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"hSG" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/fiberbush) "hSH" = ( /obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"hSO" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/lz/near_lzI) -"hTf" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" +"hSI" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"hTh" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +/obj/item/card/id/visa, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"hSL" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"hTk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"hTl" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "hTo" = ( /obj/item/smallDelivery, /obj/structure/closet/fireaxecabinet{ @@ -10432,18 +10388,10 @@ dir = 10 }, /area/fiorina/station/civres_blue) -"hTy" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) "hTM" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"hTN" = ( -/obj/structure/girder, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) "hUi" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, @@ -10453,23 +10401,12 @@ /obj/effect/spawner/random/technology_scanner, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"hUD" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/greencorner/east, -/area/fiorina/station/chapel) -"hUL" = ( -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = -5 - }, -/turf/open/floor/prison/sterile_white/southwest, +"hUN" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"hUY" = ( +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) -"hUO" = ( -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) "hVu" = ( /obj/item/stack/sheet/metal, /obj/structure/cable/heavyduty{ @@ -10477,10 +10414,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hVA" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) "hVG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -10491,17 +10424,28 @@ "hVI" = ( /turf/closed/wall/prison, /area/fiorina/station/medbay) +"hVP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) "hVS" = ( /obj/structure/platform_decoration/kutjevo, /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"hWb" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 +"hVY" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "hWi" = ( /obj/structure/machinery/door/airlock/almayer/maint/autoname{ dir = 1; @@ -10511,47 +10455,32 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"hWk" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/lz/near_lzI) "hWv" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar/red, /obj/item/storage/pill_bottle/inaprovaline/skillless, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"hWz" = ( -/obj/structure/platform{ - dir = 1 - }, +"hWB" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) +/area/fiorina/tumor/civres) "hWF" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"hWG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"hXF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, +"hWH" = ( +/obj/structure/closet/crate/medical, +/obj/item/tool/surgery/bonegel, +/obj/item/tool/surgery/bonegel, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"hXG" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/medbay) +"hXi" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "hXN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, @@ -10576,10 +10505,10 @@ icon_state = "wy2" }, /area/fiorina/station/medbay) -"hYl" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) +"hYb" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) "hYs" = ( /obj/structure/barricade/sandbags{ icon_state = "sandbag_0"; @@ -10596,53 +10525,71 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"hYX" = ( -/obj/structure/machinery/bot/medbot, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"hYA" = ( +/obj/item/tool/soap, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"hYH" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hYS" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 11; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"hYU" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "hZf" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/prison, /area/fiorina/station/medbay) -"hZi" = ( -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_tram) -"hZG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"hZs" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/station/chapel) +"hZQ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"hZN" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/fiorina/maintenance) +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "hZR" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"iaa" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/disco) -"iad" = ( -/obj/item/device/multitool, -/turf/open/floor/prison/green/northwest, -/area/fiorina/tumor/civres) -"iaE" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 +"hZY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"iac" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) +"iaP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"ibl" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) "ibz" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -10657,15 +10604,62 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"icg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/northwest, +"ibB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"ibI" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "bee" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"icd" = ( +/obj/structure/prop/resin_prop{ + dir = 4; + icon_state = "chair"; + pixel_y = 6 + }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"ics" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) "icu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/pizzabox/mushroom, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"icv" = ( +/obj/structure/machinery/door/poddoor/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"icz" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"icJ" = ( +/obj/item/stack/sheet/wood/medium_stack, +/obj/item/stack/sheet/wood/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"icR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 9 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "icS" = ( /obj/structure/bed/chair{ dir = 1 @@ -10676,71 +10670,68 @@ /obj/structure/largecrate/random/case, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"idb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) "idi" = ( /obj/item/trash/sosjerky, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"idj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"idP" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"idt" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"idJ" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) "idS" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"iea" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/fiorina/station/medbay) -"ieu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 +"ien" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/obj/structure/morgue{ - dir = 8; - layer = 2.6 +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"iep" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) "ieA" = ( /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"ieJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"ifc" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"ifk" = ( -/obj/structure/platform_decoration{ +"ieB" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"ieK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ifn" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/shower, +/obj/structure/window{ dir = 4 }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"ifm" = ( -/turf/open/floor/prison/greencorner, -/area/fiorina/tumor/civres) +/obj/item/coin/uranium{ + desc = "You found one of the three uranium coins. It is entirely worthless." + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "ifp" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/light/double/blue{ @@ -10766,42 +10757,27 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"ifL" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"ifN" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"ifP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - density = 0; - pixel_y = 16 - }, +"ifQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"igp" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"igv" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"igc" = ( +/area/fiorina/station/park) +"igI" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"ign" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/lz/near_lzI) -"igu" = ( +/obj/item/paper/carbon, /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "igQ" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/rank/janitor, @@ -10809,14 +10785,27 @@ /obj/item/clothing/head/bio_hood/janitor, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"igV" = ( -/obj/item/stack/cable_coil, +"ihl" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ihn" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) +/area/fiorina/station/lowsec) +"ihm" = ( +/obj/item/trash/barcardine, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"iho" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "ihp" = ( /obj/structure/closet/crate/science{ density = 0; @@ -10831,32 +10820,14 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison, /area/fiorina/station/medbay) -"ihv" = ( -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/prison/darkpurple2/east, -/area/fiorina/tumor/servers) "ihz" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"ihB" = ( -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ihO" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ihV" = ( -/obj/structure/blocker/invisible_wall, +"ihK" = ( +/obj/item/clothing/mask/cigarette, /turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/oob) -"iie" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/area/fiorina/station/research_cells) "iiw" = ( /obj/structure/monorail{ dir = 6; @@ -10864,16 +10835,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"iiz" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"iiY" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +"iiH" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"iiL" = ( +/obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) +/area/fiorina/station/park) "ijd" = ( /obj/item/trash/cigbutt, /turf/open/floor/prison, @@ -10883,22 +10852,9 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"ijt" = ( -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/station/park) -"ijC" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/lz/near_lzI) -"ika" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"ikt" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) +"ikD" = ( +/turf/open/floor/prison/platingdmg3, +/area/fiorina/station/transit_hub) "ikF" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -10909,50 +10865,53 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"ikG" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) "ikL" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"ilr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ilM" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +"ikS" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"ils" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) -"img" = ( -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) +"ilt" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"imp" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/area/fiorina/tumor/ice_lab) +"ilT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison/blue/southwest, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) "imt" = ( /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"imz" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"imG" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"imE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/hugemushroomslice, +/obj/item/reagent_container/food/snacks/hugemushroomslice{ + pixel_y = 3 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "imI" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -10965,10 +10924,13 @@ /obj/structure/filingcabinet/disk, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"ing" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) +"ink" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "inA" = ( /obj/structure/surface/table/reinforced/prison{ flipped = 1 @@ -10976,46 +10938,19 @@ /obj/item/device/cassette_tape/hiphop, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"inO" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"ioc" = ( -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"iox" = ( -/obj/structure/platform_decoration{ - dir = 8 +"inC" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"iom" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"ioE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "ioM" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/medbay) -"ioS" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ioV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"ioW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) "ipa" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -11028,28 +10963,28 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/botany) +"ipj" = ( +/obj/structure/bed/roller, +/obj/item/bedsheet/green, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "ipz" = ( /obj/item/device/flashlight, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"ipA" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"ipM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/pistol/heavy{ - pixel_y = 7 +"ipK" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/ammo_magazine/pistol/heavy{ - pixel_y = 12 +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) -"ipV" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) +"iqb" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/maintenance) "iqB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/clothing/head/helmet/warden{ @@ -11059,6 +10994,10 @@ /obj/structure/machinery/computer/objective, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) +"irv" = ( +/obj/structure/largecrate/supply/explosives/mines, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "irB" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/park) @@ -11069,19 +11008,38 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"irE" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" +"isa" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/flight_deck) -"irQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/area/fiorina/tumor/ice_lab) +"isy" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/sign/poster{ + icon_state = "poster1"; + pixel_y = 32 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"isI" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"isX" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/fiorina/tumor/aux_engi) +"itb" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "itd" = ( /obj/item/tool/lighter/random, /turf/open/floor/plating/plating_catwalk/prison, @@ -11090,30 +11048,13 @@ /obj/item/toy/handcard/uno_reverse_yellow, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"itK" = ( -/turf/open/floor/prison/platingdmg3, -/area/fiorina/maintenance) "itN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/park) -"itW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) "iuz" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"iuC" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"iuN" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/floor/prison/blue/north, -/area/fiorina/tumor/servers) "iuZ" = ( /obj/item/stack/rods, /obj/structure/machinery/light/double/blue{ @@ -11126,13 +11067,23 @@ /obj/effect/spawner/gibspawner/human, /turf/open/space/basic, /area/fiorina/oob) -"ivr" = ( -/turf/open/floor/prison/cell_stripe, +"ivn" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"ivt" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ivy" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/fiorina/station/power_ring) -"ivw" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) "ivz" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -11141,39 +11092,88 @@ /obj/effect/landmark/corpsespawner/prison_security, /turf/open/floor/wood, /area/fiorina/station/park) -"ivD" = ( -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"ivK" = ( -/turf/open/floor/prison/darkbrown2, -/area/fiorina/maintenance) "ivN" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/attachment, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"ivU" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "iwf" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"iwi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +"iwg" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "iwu" = ( /obj/item/newspaper, /turf/open/floor/prison, /area/fiorina/station/security) -"iwy" = ( -/obj/structure/bed/sofa/south/grey/right, +"iwD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"iwF" = ( +/obj/item/trash/cigbutt, /turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"iwH" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"iwL" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) +"iwM" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"iwS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "iwT" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -11186,26 +11186,25 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"iwZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Archives" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +"ixg" = ( +/obj/item/toy/deck, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "ixl" = ( /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"ixn" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"ixE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/power_ring) +"ixZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"ixK" = ( -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "iyc" = ( /obj/item/stack/rods/plasteel, /turf/open/auto_turf/sand/layer1, @@ -11214,25 +11213,6 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"iyk" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"iys" = ( -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) "iyS" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -11244,24 +11224,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"iyY" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"izh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"iza" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" }, -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "izN" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced/prison, @@ -11273,6 +11242,10 @@ "izZ" = ( /turf/closed/wall/prison, /area/fiorina/station/disco) +"iAk" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "iAq" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -11295,27 +11268,53 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"iAB" = ( -/turf/open/floor/prison/darkpurple2/southwest, -/area/fiorina/station/central_ring) +"iAK" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6_1" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"iBa" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"iBp" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/combat, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "iBr" = ( /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"iBM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greenblue/northeast, -/area/fiorina/station/botany) +"iBy" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/tumor/ice_lab) +"iBI" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"iBO" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "iBP" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" }, /area/fiorina/oob) -"iCf" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/gloves/boxing/blue, -/obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) +"iCd" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, +/obj/structure/bed/roller, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "iCE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -11326,10 +11325,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"iCN" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) "iCU" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/prison, @@ -11357,130 +11352,74 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"iDA" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, +"iEl" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"iER" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"iFt" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"iDK" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" +"iGe" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/fancy/cigar/tarbacks, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"iGz" = ( +/obj/structure/sign/poster{ + icon_state = "poster7"; + pixel_x = -26; + pixel_y = 6 }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"iDO" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"iDQ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"iEl" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, /area/fiorina/station/medbay) -"iEA" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"iEF" = ( -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"iEG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/reagent_container/glass/bottle/cyanide{ - pixel_x = -12; - pixel_y = 13 +"iGX" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"iHh" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"iFg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"iFz" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"iFB" = ( -/obj/structure/toilet{ +/obj/structure/prop/souto_land/pole{ dir = 8; - pixel_y = 8 + pixel_y = 24 }, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"iFC" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"iFP" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"iHr" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"iFZ" = ( +/obj/structure/window/reinforced, /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/hugemushroomslice, -/obj/item/reagent_container/food/snacks/hugemushroomslice{ - pixel_y = 3 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"iGw" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"iGx" = ( -/obj/structure/closet/crate/trashcart, +/obj/item/storage/firstaid/regular, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"iGX" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) +/area/fiorina/tumor/ice_lab) "iHu" = ( /obj/item/newspaper, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"iHB" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"iHT" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 +"iHI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/wy_mre{ + pixel_x = 5; + pixel_y = 2 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"iHW" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "iIl" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -11493,13 +11432,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"iIx" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/flight_deck) "iIE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/cups, @@ -11510,158 +11442,144 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"iIG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 8; - pixel_y = 5 - }, +"iIP" = ( /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/area/fiorina/station/power_ring) "iIS" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"iIZ" = ( -/obj/item/stack/cable_coil, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"iJF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) "iKg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"iKs" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/chapel) -"iKy" = ( +"iKj" = ( /obj/structure/sink{ - dir = 8; - pixel_x = -12 + dir = 4; + pixel_x = 12 }, -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"iKF" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"iKI" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkyellowcorners2, -/area/fiorina/station/telecomm/lz1_cargo) -"iKO" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"iKm" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) -"iLl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"iKn" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/flight_deck) +"iKs" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/chapel) +"iKt" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"iKu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) "iLJ" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"iLY" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/park) "iMo" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"iMq" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 +"iMp" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"iMJ" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"iMN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/tumor/ice_lab) -"iNk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, +"iMW" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/green/west, /area/fiorina/tumor/civres) -"iNt" = ( -/obj/item/device/whistle, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"iNm" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/central_ring) "iOa" = ( /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"iON" = ( -/obj/structure/closet/bombcloset, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"iOX" = ( -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"iOY" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/tumor/ice_lab) -"iPv" = ( +"iOs" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/lz/near_lzI) +"iOu" = ( +/obj/structure/safe, +/obj/item/storage/beer_pack, +/obj/item/storage/beer_pack, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"iPl" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/oob) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "iPx" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"iPz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box/empty, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"iQj" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"iPH" = ( +/obj/structure/platform_decoration, +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"iQc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/tarbacks, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +/area/fiorina/station/chapel) "iQz" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"iQH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) +"iQA" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "iQJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -11675,18 +11593,14 @@ /obj/structure/disposalpipe/broken, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"iQU" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) "iRa" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"iRn" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) "iRG" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/chunk, @@ -11697,11 +11611,27 @@ /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"iRI" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/tumor/ice_lab) -"iSg" = ( -/turf/open/floor/prison/darkyellow2/west, +"iRY" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"iRZ" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"iSp" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "iSu" = ( /turf/closed/wall/prison{ @@ -11709,34 +11639,21 @@ icon_state = "rwall_s" }, /area/fiorina/station/park) -"iSw" = ( -/obj/structure/machinery/disposal, +"iSL" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"iTa" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"iSR" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/oob) -"iSW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/reagent_container/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" - }, -/turf/open/floor/prison/redfull, +/area/fiorina/tumor/civres) +"iTk" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"iTj" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/security) "iTm" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/station/civres_blue) -"iTr" = ( -/obj/structure/closet/basketball, -/obj/item/storage/pill_bottle/tramadol/skillless, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "iTs" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -11746,43 +11663,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"iTt" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"iTE" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/fiorina/station/flight_deck) -"iTJ" = ( -/turf/open/floor/prison/greenblue/northwest, -/area/fiorina/station/botany) "iTK" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/prison, /area/fiorina/station/security) -"iUa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"iUc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"iTW" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"iUA" = ( +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) -"iUr" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) "iUB" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -11791,6 +11684,13 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) +"iUD" = ( +/obj/structure/inflatable/popped/door, +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "iUO" = ( /obj/structure/platform{ dir = 8 @@ -11804,17 +11704,19 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"iVo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/park) +"iVj" = ( +/obj/structure/closet/emcloset, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "iVv" = ( /obj/structure/blocker/invisible_wall, /turf/open/space, /area/fiorina/oob) +"iVK" = ( +/obj/item/device/multitool, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "iVT" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -11823,21 +11725,15 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"iWe" = ( -/obj/item/trash/candy, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreen/west, +"iVU" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"iWh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"iWp" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec) "iWq" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -11849,17 +11745,31 @@ }, /turf/open/space, /area/fiorina/oob) -"iWP" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"iWF" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"iXh" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_psycopath_l"; + pixel_y = 4 }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/central_ring) -"iXq" = ( -/obj/item/stool, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_ketchup_l"; + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_guilty_l"; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"iXi" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) "iXs" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -11868,44 +11778,50 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"iXJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/civres_blue) +"iXu" = ( +/obj/item/newspaper, +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) +"iXU" = ( +/obj/item/trash/semki, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "iXV" = ( /obj/structure/closet/l3closet/general, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"iYa" = ( -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/chapel) -"iYe" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring) +"iYl" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) "iYw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/central_ring) -"iYJ" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) "iYQ" = ( /obj/item/fuel_cell, /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/maintenance) -"iZm" = ( -/obj/item/trash/chips, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"iZM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"jaj" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"jas" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"jax" = ( +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec) "jaB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -11915,19 +11831,26 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"jbg" = ( -/obj/structure/holohoop{ - dir = 1 +"jaG" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"jaI" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"jaV" = ( +/obj/item/weapon/harpoon, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"jbm" = ( -/obj/item/clothing/under/color/orange, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"jbq" = ( -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) +/area/fiorina/station/disco) +"jbh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "jbu" = ( /obj/structure/window/reinforced{ dir = 8 @@ -11935,19 +11858,14 @@ /obj/structure/window/reinforced, /turf/open/floor/prison, /area/fiorina/station/security) -"jbF" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +"jbM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/storage/belt/shotgun, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "jbU" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, @@ -11959,20 +11877,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jci" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) "jcv" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/wood, /area/fiorina/station/park) +"jcE" = ( +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "jcF" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -11981,58 +11894,51 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"jcG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"jdn" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"jew" = ( -/obj/structure/largecrate/supply/ammo, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"jeL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, +"jcO" = ( /obj/structure/platform_decoration{ - dir = 5 + dir = 4 }, -/turf/open/floor/prison/bluefull, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) +"jdv" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/central_ring) +"jeE" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"jeH" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"jeN" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"jeU" = ( +/obj/item/device/whistle, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"jeZ" = ( +/obj/structure/platform_decoration, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "jfc" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jfd" = ( -/turf/open/gm/river/pool, -/area/fiorina/station/park) -"jfp" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"jft" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 +"jfD" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"jfM" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"jfO" = ( -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) "jfT" = ( /obj/structure/platform{ dir = 4 @@ -12046,42 +11952,46 @@ "jgu" = ( /turf/closed/wall/prison, /area/fiorina/station/park) -"jgz" = ( +"jgB" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"jgR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"jgW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/park) +"jhj" = ( +/obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = -3 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"jgL" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"jhl" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/science, +/area/fiorina/station/lowsec) +"jhF" = ( +/obj/item/stool, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"jhp" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) "jhG" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" }, /area/fiorina/tumor/ship) -"jhN" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/clothing/suit/armor/bulletproof/badge, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) +"jhW" = ( +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/tumor/servers) "jiq" = ( /obj/structure/lz_sign/prison_sign, /turf/open/floor/prison, @@ -12097,16 +12007,26 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"jiz" = ( -/obj/structure/bed/chair{ - dir = 8 +"jiv" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + layer = 2.6 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"jiJ" = ( +/obj/structure/toilet{ + pixel_y = 4 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"jiA" = ( -/obj/item/storage/firstaid/regular, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"jiU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) "jiV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/saltshaker, @@ -12128,13 +12048,6 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"jjp" = ( -/obj/structure/largecrate/random/case, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) "jjs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -12149,22 +12062,44 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"jjW" = ( -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) +"jjU" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"jjV" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "jkg" = ( /obj/structure/largecrate/supply, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"jkj" = ( -/obj/structure/largecrate/random/case/small, +"jky" = ( +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/structure/surface/rack, /turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"jkw" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) +/area/fiorina/maintenance) +"jkL" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/station/medbay) "jkW" = ( /obj/structure/dropship_equipment/fulton_system, /turf/open/floor/prison, @@ -12175,29 +12110,17 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"jld" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) "jlk" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/aux_engi) -"jln" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/card/id/silver/clearance_badge, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"jlq" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) "jls" = ( /obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/prison, /area/fiorina/station/park) -"jlB" = ( -/obj/item/stack/nanopaste, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/civres_blue) "jlH" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -12208,18 +12131,24 @@ /obj/structure/bed/sofa/south/grey, /turf/open/floor/prison, /area/fiorina/station/disco) -"jlU" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - name = "\improper Fiorina Engineering Canteen Vendor" +"jlK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"jmp" = ( -/obj/item/ammo_magazine/handful/shotgun/incendiary{ - unacidable = 1 +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"jlR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"jlV" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) "jmr" = ( /obj/structure/platform{ dir = 4 @@ -12231,18 +12160,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"jmv" = ( -/obj/structure/machinery/shower{ - dir = 4 +"jmu" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"jmE" = ( +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) "jmG" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/research_cells) -"jna" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/fiorina/station/research_cells) +"jmR" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) "jnd" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -12251,25 +12184,36 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) -"jnm" = ( -/obj/structure/machinery/vending/sovietsoda, +"jng" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"jny" = ( +/obj/vehicle/train/cargo/trolley, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"jnQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +/area/fiorina/station/transit_hub) +"jnC" = ( +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"jnU" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"jnX" = ( -/obj/item/storage/pill_bottle/spaceacillin/skillless, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/ice_lab) +"jnI" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jnJ" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"jnL" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/flight_deck) "jor" = ( /obj/effect/spawner/random/attachment, /obj/structure/disposalpipe/segment{ @@ -12281,21 +12225,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"jot" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) "joJ" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/prison, /area/fiorina/station/lowsec) +"joO" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) "joU" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison, @@ -12306,46 +12244,38 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"jpt" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"jpx" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" +"jpg" = ( +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"jph" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"jpN" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/research_cells) -"jpQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"jpm" = ( /obj/structure/machinery/light/double/blue{ dir = 8; pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"jpW" = ( -/obj/item/reagent_container/food/drinks/cans/souto/cherry, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) +/area/fiorina/station/disco) +"jpy" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"jpN" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/research_cells) +"jqa" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "jqs" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -12368,89 +12298,76 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) +"jqz" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) "jqE" = ( /obj/item/circuitboard/robot_module/janitor, /turf/open/floor/prison, /area/fiorina/station/disco) -"jqM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"jri" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"jqQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 11 }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"jrN" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/tumor/aux_engi) -"jrO" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"jqZ" = ( +/obj/structure/bed/chair{ + dir = 4; + layer = 2.8 }, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring) -"jrT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/clothing/accessory/holobadge/cord, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"jsf" = ( -/obj/structure/closet/crate/trashcart, +/obj/structure/barricade/handrail/type_b, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"jsp" = ( -/obj/effect/spawner/random/toolbox, +/area/fiorina/station/flight_deck) +"jrn" = ( +/obj/item/storage/box/gloves, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"jrw" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"jrz" = ( +/obj/structure/platform_decoration, +/obj/item/reagent_container/food/drinks/sillycup, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"jsu" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 8; - flipped = 1 - }, -/obj/item/storage/box/ids, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = 14; - pixel_y = 7 +/area/fiorina/station/flight_deck) +"jrP" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"jsU" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + layer = 3.5 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/area/fiorina/station/power_ring) +"jsB" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "jta" = ( /obj/structure/bed{ icon_state = "psychbed" }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"jtK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"jtM" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"juX" = ( -/obj/structure/machinery/door/poddoor/almayer{ +"jty" = ( +/obj/structure/closet{ density = 0; - dir = 4 + pixel_y = 18 }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"juI" = ( +/obj/structure/platform, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/area/fiorina/station/disco) +"juL" = ( +/obj/item/reagent_container/food/drinks/sillycup, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "jva" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -12459,19 +12376,6 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"jvi" = ( -/obj/structure/closet/wardrobe/orange, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"jvm" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) "jvy" = ( /mob/living/simple_animal/hostile/carp{ desc = "He is late for work."; @@ -12486,35 +12390,74 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) +"jwd" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"jwj" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"jwx" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/station/transit_hub) +"jwD" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "jwK" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) +"jwS" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "jxc" = ( /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"jxm" = ( +"jxj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"jxA" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jxD" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/central_ring) +"jxO" = ( +/obj/item/tool/crowbar, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"jxQ" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"jyt" = ( +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"jyC" = ( /obj/item/trash/hotdog, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"jyo" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/power_ring) -"jyv" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"jyF" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison/yellow/southwest, +"jyD" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"jyK" = ( +/turf/open/floor/prison/yellowcorner/west, /area/fiorina/station/lowsec) +"jyL" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "jyM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/plating/prison, @@ -12527,37 +12470,46 @@ /obj/item/device/flashlight, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"jyY" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"jzN" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"jzP" = ( -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring) -"jAF" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +"jzl" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/sterile_white/southwest, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/tumor/ice_lab) +"jzF" = ( +/turf/open/floor/prison/whitegreencorner, /area/fiorina/station/medbay) +"jzR" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"jAc" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"jAD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/mre_pack/meal4{ + name = "\improper prison food"; + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "jAW" = ( /obj/structure/largecrate/supply/ammo, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jBn" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"jBj" = ( +/obj/item/stool, +/turf/open/floor/prison/damaged2, +/area/fiorina/station/lowsec) "jBv" = ( /obj/structure/bed/sofa/vert/grey/bot{ pixel_y = 8 @@ -12568,28 +12520,10 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/wood, /area/fiorina/station/park) -"jCe" = ( -/turf/open/floor/prison/darkpurple2/northeast, -/area/fiorina/tumor/servers) -"jCt" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"jCy" = ( -/obj/structure/prop/dam/crane{ - icon_state = "tractor_damaged" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"jCA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) +"jCz" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) "jCO" = ( /obj/structure/platform{ dir = 8 @@ -12600,12 +12534,37 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"jDe" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"jCS" = ( +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -1; + pixel_y = 7 }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"jDq" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"jDy" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"jDA" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"jDB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "jDR" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -12613,22 +12572,32 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"jEa" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring) +"jEg" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/chapel) +"jEn" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"jEq" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "jEr" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"jEy" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"jEz" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +"jEI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/chapel) "jEK" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -12640,12 +12609,6 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, /turf/open/floor/prison, /area/fiorina/lz/console_II) -"jET" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) "jFh" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -12656,20 +12619,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) +"jFk" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/obj/item/frame/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) "jFl" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"jFz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"jFD" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison/darkpurplefull2, +"jFn" = ( +/turf/open/floor/prison/whitegreencorner/north, /area/fiorina/tumor/ice_lab) "jFO" = ( /obj/effect/landmark/nightmare{ @@ -12677,76 +12639,58 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/park) -"jFP" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"jGf" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"jGs" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/oob) -"jGz" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/effect/spawner/random/tool, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison/darkpurplefull2, +"jFT" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"jGO" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) -"jGC" = ( -/obj/structure/platform{ - dir = 8 +"jHq" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"jHr" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6" }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"jHj" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"jHp" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"jHz" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) +/area/fiorina/station/lowsec) +"jHy" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "jHC" = ( /obj/structure/surface/rack, /obj/item/tool/lighter, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"jHD" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"jHF" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"jHI" = ( +/obj/structure/barricade/metal{ + dir = 4; + health = 85; + icon_state = "metal_1" }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"jHP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) -"jHU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"jHV" = ( -/obj/item/paper, -/obj/structure/inflatable/door, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"jIw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 +"jIf" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "jIz" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison, @@ -12757,6 +12701,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"jJd" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/fiorina/station/park) +"jJh" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"jJj" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "jJS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/grape{ @@ -12784,21 +12745,23 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"jJZ" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"jKv" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"jKz" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +"jKj" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"jKs" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) +"jKu" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "jKI" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -12813,6 +12776,13 @@ }, /turf/open/space, /area/fiorina/oob) +"jKM" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/central_ring) +"jKP" = ( +/obj/structure/tunnel, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) "jKR" = ( /obj/structure/machinery/shower{ dir = 4 @@ -12823,22 +12793,47 @@ /obj/structure/machinery/constructable_frame, /turf/open/floor/prison, /area/fiorina/station/disco) -"jLC" = ( +"jLn" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/item/reagent_container/food/snacks/sandwich{ + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"jLq" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"jLQ" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"jLX" = ( +/obj/item/device/binoculars/civ, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"jMb" = ( /obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" + dir = 2; + icon_state = "casing_5" }, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"jLD" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"jMe" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - layer = 3.5 +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "jMf" = ( /obj/item/stack/tile/plasteel{ pixel_x = 5; @@ -12846,30 +12841,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jMh" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/medbay) "jMk" = ( /obj/item/tool/screwdriver, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"jMv" = ( -/obj/item/tool/wrench, +"jMZ" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"jNb" = ( +/obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"jMH" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"jNi" = ( -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/chapel) "jNl" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Straight" @@ -12877,9 +12860,13 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"jNw" = ( -/turf/open/floor/prison/blue/northwest, +"jNn" = ( +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) +"jNs" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "jOb" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -12890,64 +12877,50 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"jOd" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"jOv" = ( -/obj/structure/platform_decoration{ - dir = 8 +"jOA" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" }, -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/power_ring) -"jOY" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"jOS" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/station/chapel) +"jPg" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +/obj/structure/machinery/recharger, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "jPK" = ( /turf/closed/shuttle/elevator{ dir = 6 }, /area/fiorina/station/telecomm/lz1_cargo) -"jPM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"jPY" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Residential Apartment" +"jQe" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/power_ring) +"jQI" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) -"jQc" = ( -/obj/item/organ/lungs, -/obj/effect/decal/cleanable/blood, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"jQs" = ( -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"jQy" = ( -/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) -"jQS" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, +"jQM" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"jQV" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"jRc" = ( +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/prison/red/east, /area/fiorina/station/security) "jRf" = ( /obj/structure/girder/displaced, @@ -12969,31 +12942,38 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"jRC" = ( -/obj/structure/platform{ +"jRn" = ( +/obj/structure/barricade/metal/wired{ dir = 4 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) +/area/fiorina/station/lowsec) +"jRy" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"jRD" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "jRF" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"jRK" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river/pool, +/area/fiorina/station/park) "jRL" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/disco) -"jSc" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/drinks/flask/marine, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) +"jRR" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) "jSD" = ( /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating/prison, @@ -13006,45 +12986,38 @@ /obj/item/stack/sheet/mineral/plastic, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"jSU" = ( +"jSR" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"jTf" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"jSZ" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"jTo" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"jTD" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/obj/item/reagent_container/food/snacks/ricepudding, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"jTn" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/tumor/aux_engi) +"jTw" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/maintenance) "jTJ" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/lowsec) -"jTN" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"jUa" = ( -/obj/structure/platform_decoration{ - dir = 4 +"jTP" = ( +/obj/item/pamphlet/engineer, +/obj/structure/closet, +/obj/item/restraint/handcuffs, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"jUc" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) "jUs" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -13059,21 +13032,16 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"jUP" = ( -/obj/item/trash/c_tube, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"jVj" = ( -/obj/structure/bed/chair, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +"jUR" = ( +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jUX" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"jVt" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/maintenance) "jVE" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -13088,43 +13056,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"jVM" = ( -/turf/open/floor/prison/green, -/area/fiorina/station/botany) -"jWg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"jWk" = ( -/obj/structure/bed/chair{ - dir = 8 +"jVH" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"jWy" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 4 +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"jVW" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"jWE" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" +/turf/open/floor/prison/redcorner/west, +/area/fiorina/station/power_ring) +"jWA" = ( +/obj/structure/largecrate/random/case, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"jWI" = ( /turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) -"jWY" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/cigar/tarbacks, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) "jXj" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -13136,6 +13087,15 @@ "jXz" = ( /turf/closed/wall/prison, /area/fiorina/tumor/servers) +"jXJ" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"jXK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box/empty, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "jXV" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/floor/plating/plating_catwalk/prison, @@ -13143,41 +13103,16 @@ "jXZ" = ( /turf/closed/shuttle/elevator, /area/fiorina/tumor/aux_engi) -"jYm" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"jYn" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) "jYs" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jYt" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"jYK" = ( -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"jYM" = ( -/obj/item/trash/chips, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"jYU" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_tram) +"jYx" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "jYV" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -13197,29 +13132,28 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"jZk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"kag" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/power_ring) -"kat" = ( -/turf/open/floor/prison/green/north, -/area/fiorina/station/botany) -"kaw" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"jZQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel/laser{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/tool/surgery/circular_saw{ + pixel_y = -2 }, -/obj/structure/platform, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"kaF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/telecomm/lz1_cargo) +"kaB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"kaG" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_10_1" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "kaO" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -13235,10 +13169,15 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) -"kbh" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +"kbf" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "kbi" = ( /obj/item/ammo_casing{ dir = 6; @@ -13247,14 +13186,10 @@ /obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/wood, /area/fiorina/station/park) -"kbj" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"kbo" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) +"kbq" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "kbt" = ( /obj/structure/janitorialcart, /obj/item/tool/mop{ @@ -13269,13 +13204,49 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"kbx" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"kbz" = ( +/obj/item/trash/eat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "kbT" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"kdq" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) +"kca" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kcp" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"kcs" = ( +/obj/item/tool/warning_cone, +/obj/structure/barricade/metal{ + dir = 8; + health = 150; + icon_state = "metal_2" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"kcy" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"kcN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) "kds" = ( /obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/prison, @@ -13284,22 +13255,83 @@ /obj/item/stack/tile/plasteel, /turf/open/floor/carpet, /area/fiorina/tumor/civres) +"kdQ" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/chapel) "kdR" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzI) -"kfL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison, -/area/fiorina/station/security) -"kfW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/clothing/mask/cigarette, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_y = 8 - }, -/obj/structure/sign/nosmoking_1{ +"kdX" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"kew" = ( +/obj/structure/closet/basketball, +/obj/item/storage/pill_bottle/tramadol/skillless, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"kez" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"keE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"keL" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"keZ" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"kfe" = ( +/obj/structure/closet/wardrobe/orange, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"kfq" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"kfv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"kfy" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"kfL" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison, +/area/fiorina/station/security) +"kfS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"kfW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/clothing/mask/cigarette, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_y = 8 + }, +/obj/structure/sign/nosmoking_1{ pixel_y = 30 }, /turf/open/floor/plating/prison, @@ -13311,84 +13343,81 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"kgp" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"kgG" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"kgN" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"kgQ" = ( -/obj/item/stool, +"kga" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"kgr" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"kgU" = ( +/obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"kgT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/carbon, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +/area/fiorina/station/chapel) +"khA" = ( +/obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"kgY" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"khd" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) -"khu" = ( -/obj/structure/prop/structure_lattice{ +"khB" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"khw" = ( -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"khY" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"kid" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" + pixel_x = 10; + pixel_y = -3 }, -/obj/structure/surface/table/reinforced/prison{ - dir = 4; - flipped = 1 +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"khE" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/flight_deck) +"khO" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"kii" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"kia" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) "kil" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"kiL" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + dir = 1; + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/research_cells) +"kiM" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) "kiR" = ( /obj/item/tool/weldpack, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"kiT" = ( -/obj/item/stack/sheet/metal, +"kiV" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"kiY" = ( +/obj/structure/tunnel/maint_tunnel, /turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"kjt" = ( -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/servers) +"kjv" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "kjP" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/northleft, @@ -13397,58 +13426,40 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"kjT" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"kjX" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"kka" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"kke" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreenfull/southwest, +"kjV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/medbay) +"kjY" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/fiorina/maintenance) +"kkq" = ( +/obj/structure/foamed_metal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"kkC" = ( +/obj/structure/platform, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"kkE" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) "kkU" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/space/basic, /area/fiorina/oob) -"kle" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"klh" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +"kln" = ( +/obj/structure/prop/souto_land/pole, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "klp" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; opacity = 0 }, /area/fiorina/tumor/ship) -"klt" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) "klB" = ( /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/prison, @@ -13459,26 +13470,36 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"klN" = ( +"klH" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"kmm" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/turf/open/floor/prison/yellow/southeast, +/obj/item/reagent_container/food/snacks/cheesyfries, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"klW" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/disco) -"kmn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 +"kmb" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"kmC" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "kmL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 1; @@ -13494,10 +13515,10 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"knb" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) +"kmX" = ( +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "knh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating/prison, @@ -13509,34 +13530,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"knW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"knY" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" - }, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/oob) -"kob" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_2" - }, +"knD" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"knR" = ( +/obj/item/poster, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"knS" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kog" = ( +/obj/structure/inflatable, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"kok" = ( -/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/station/transit_hub) -"kon" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) "kor" = ( /obj/structure/bed/chair{ dir = 4 @@ -13547,33 +13556,22 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"koH" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"koK" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"koY" = ( -/obj/structure/platform_decoration{ - dir = 4 +"koE" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"koF" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"kph" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"kpe" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) "kpp" = ( /obj/item/trash/popcorn, /obj/structure/cable/heavyduty{ @@ -13581,75 +13579,91 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"kpq" = ( -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"kpu" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/explosive/mine/pmc, -/obj/effect/spawner/random/gun/smg, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"kpv" = ( -/obj/structure/pipes/standard/simple/visible{ +"kps" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"kpH" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"kpR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"kqy" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"kql" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/bodybag/tarp/reactive{ + pixel_y = 6 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/medbay) "kqC" = ( /turf/closed/wall/prison, /area/fiorina/station/lowsec) -"kqJ" = ( -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) -"krb" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"krn" = ( -/obj/structure/barricade/handrail/type_b{ +"kqH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"kqS" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kqW" = ( +/obj/structure/holohoop{ dir = 8; - layer = 3.5 + id = "basketball"; + side = "right" }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/servers) -"krE" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/flight_deck) -"ksu" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"krv" = ( +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"krM" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"ksE" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"krN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"ksk" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/power_ring) +"kss" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"ksz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/beret/eng{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/book/manual/engineering_guide{ + pixel_x = -4 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"ksH" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) "ksL" = ( /obj/structure/stairs/perspective{ @@ -13659,137 +13673,115 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"ksV" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/servers) "ksY" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"ktq" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) "ktv" = ( /obj/item/trash/sosjerky, /turf/open/floor/prison, /area/fiorina/station/security) -"ktC" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"kue" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"kvg" = ( +"ktV" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"kvh" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 + pixel_y = 13 }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"kun" = ( +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) +"kuy" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"kvu" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"kvp" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "kvx" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"kvT" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison/blue, -/area/fiorina/station/chapel) +"kwg" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kwm" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "kwT" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"kwZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"kwX" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/civres_blue) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"kxc" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "kxf" = ( /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/fiorina/station/park) -"kxl" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8 +"kxg" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"kxE" = ( +/obj/structure/closet/bombcloset, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"kxI" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "kxQ" = ( /obj/structure/prop/resin_prop{ icon_state = "rack" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"kxU" = ( -/turf/open/floor/prison/green/southwest, -/area/fiorina/station/transit_hub) -"kyd" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) +"kxZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "kyh" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"kyF" = ( -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"kyU" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 +"kys" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/civres_blue) "kyW" = ( /obj/item/stack/sandbags/large_stack, /turf/open/floor/plating/prison, @@ -13810,68 +13802,43 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"kzs" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/green/east, -/area/fiorina/tumor/civres) -"kzx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/civres_blue) "kzz" = ( /obj/item/tool/shovel/etool, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"kzB" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/green/northeast, -/area/fiorina/station/chapel) -"kzL" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"kzR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"kAc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 +"kAf" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, +/obj/item/tool/soap/syndie, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/gun/special, +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) +/area/fiorina/tumor/civres) "kAO" = ( /obj/item/folder/yellow, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"kBm" = ( -/obj/item/device/multitool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"kBt" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +"kAQ" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) "kBE" = ( /obj/item/toy/bikehorn/rubberducky, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"kBN" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/tumor/aux_engi) +"kBP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "kBX" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -13882,67 +13849,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"kCj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/green/north, -/area/fiorina/station/chapel) -"kCH" = ( -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/tumor/aux_engi) "kCI" = ( /obj/item/weapon/baseballbat/metal, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"kCN" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"kCS" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"kCT" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec) "kCY" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"kDa" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"kDw" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/fiorina/station/telecomm/lz1_cargo) -"kDN" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) +"kDv" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) "kEj" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"kEx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) "kEy" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -13954,6 +13876,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"kED" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"kES" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "kEZ" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -13961,30 +13891,52 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"kFd" = ( -/obj/structure/machinery/vending/hydronutrients, +"kFa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) -"kGc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"kGd" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"kGo" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"kGB" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"kGD" = ( -/obj/structure/largecrate/random/mini/med, +"kFi" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/central_ring) +"kFk" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"kFx" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/disco) +"kFC" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kFV" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"kGw" = ( +/obj/structure/largecrate/random/barrel, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"kGV" = ( +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/chapel) +"kGW" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "kGZ" = ( /obj/structure/platform{ dir = 1 @@ -14007,17 +13959,11 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"kHf" = ( -/obj/structure/platform_decoration{ - dir = 1 +"kHm" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"kHv" = ( -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring) -"kHF" = ( -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "kHG" = ( /obj/effect/decal/cleanable/blood/oil, @@ -14027,41 +13973,16 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/disco) -"kHI" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"kHS" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"kHZ" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"kIb" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"kIg" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"kIh" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +"kHT" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"kIo" = ( -/obj/structure/girder, -/turf/open/floor/almayer/plating/northeast, -/area/fiorina/tumor/ship) +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"kIl" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) "kIA" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -14072,67 +13993,50 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"kIO" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"kJd" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"kJf" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"kJz" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"kJJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"kJS" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +"kIG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/subspace/amplifier{ + pixel_x = 6; + pixel_y = 3 }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 +/obj/item/stock_parts/subspace/analyzer{ + pixel_x = -9; + pixel_y = 8 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"kIX" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"kJf" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"kJp" = ( +/obj/item/trash/burger, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"kJz" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"kJH" = ( +/obj/structure/girder, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) "kJU" = ( /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0 }, /turf/open/floor/prison, /area/fiorina/station/security) -"kKd" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"kKs" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/flight_deck) -"kKt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/baton, +"kKB" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"kKP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) +/area/fiorina/station/chapel) "kKQ" = ( /obj/structure/platform/stair_cut/alt, /obj/structure/stairs/perspective{ @@ -14140,40 +14044,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"kLs" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"kLz" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/civres_blue) -"kLI" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +"kLy" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 1; + icon_state = "human2" }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"kLW" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"kMm" = ( -/obj/structure/barricade/handrail, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) +/area/fiorina/tumor/servers) "kMq" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/civres_blue) -"kMC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +"kMt" = ( +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "kME" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/mineral/plastic, @@ -14183,24 +14073,11 @@ /obj/effect/spawner/gibspawner/robot, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) -"kMV" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) "kNk" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"kNs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) "kNB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/bottle/holywater{ @@ -14213,71 +14090,64 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ship) -"kNW" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/servers) "kNY" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"kOu" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"kOB" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"kOV" = ( +"kOC" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/obj/item/folder/red{ - pixel_x = 3; - pixel_y = 5 +/obj/item/clipboard, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"kOQ" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/turf/open/floor/prison/redfull, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"kPk" = ( +/obj/item/tool/pickaxe, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"kPr" = ( +/turf/open/floor/prison/platingdmg2, /area/fiorina/station/security) -"kPf" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) "kPz" = ( /obj/structure/lattice, /turf/open/space, /area/fiorina/oob) +"kPM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"kPN" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "kPY" = ( /turf/closed/wall/prison, /area/fiorina/tumor/fiberbush) -"kQr" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"kQy" = ( -/obj/item/frame/rack, -/obj/structure/barricade/handrail/type_b{ +"kQs" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"kQx" = ( +/obj/structure/prop/structure_lattice{ dir = 4; - layer = 3.5 + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"kQG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/ricepudding, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) "kQH" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -14287,41 +14157,49 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"kRO" = ( -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 2 +"kQJ" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 5 +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"kRr" = ( +/obj/item/storage/toolbox, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 8 +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"kRv" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"kRM" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/darkpurple2/west, +/area/fiorina/tumor/servers) +"kRQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/obj/structure/surface/rack, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"kSd" = ( -/obj/structure/toilet{ - pixel_y = 4 +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"kSc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 6 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"kSe" = ( -/turf/open/floor/prison/yellow, -/area/fiorina/station/disco) +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "kSh" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/fiorina/station/telecomm/lz1_cargo) -"kSB" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) "kSD" = ( /obj/structure/monorail{ name = "launch track" @@ -14332,15 +14210,42 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"kTs" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/maintenance) -"kTD" = ( -/obj/structure/platform_decoration{ - dir = 1 +"kSK" = ( +/turf/open/floor/prison/green, +/area/fiorina/station/botany) +"kSL" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 }, -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/power_ring) +/obj/item/bedsheet/green, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"kSP" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"kSZ" = ( +/obj/item/bedsheet, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"kTf" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/storage/pill_bottle/alkysine, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "kTL" = ( /obj/item/stack/rods, /obj/item/shard{ @@ -14348,33 +14253,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"kTW" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"kTY" = ( -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 4 +"kTX" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "kUj" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"kUo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"kUR" = ( -/obj/structure/platform{ - dir = 1 +"kUq" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"kUL" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) "kVg" = ( /obj/item/stack/cable_coil/blue, /turf/open/floor/plating/prison, @@ -14383,53 +14281,46 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"kVN" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"kVW" = ( -/obj/item/weapon/pole/wooden_cane, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +"kVl" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"kVz" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"kVH" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"kVT" = ( +/obj/structure/bed/chair/dropship/pilot, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"kVY" = ( +/turf/open/floor/prison/blue, +/area/fiorina/tumor/servers) "kWv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/restraint/handcuffs, /turf/open/floor/prison, /area/fiorina/station/security) -"kWx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"kWL" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/lz/near_lzII) -"kWS" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"kXk" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"kXm" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/heavy, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/medbay) -"kXs" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 +"kXc" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +/obj/structure/platform_decoration{ + dir = 10 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "kXD" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -14442,87 +14333,69 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"kYd" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"kYi" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "handblood" +"kXX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 2.8 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"kYz" = ( -/obj/structure/closet/crate/medical, -/obj/effect/landmark/objective_landmark/science, +/obj/structure/barricade/handrail/type_b, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) +/area/fiorina/station/flight_deck) +"kYy" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"kYI" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"kYW" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "kYZ" = ( /obj/structure/surface/table/woodentable, /obj/item/cell/super/empty, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"kZl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"kZu" = ( -/obj/structure/toilet{ - pixel_y = 4 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = 2; - pixel_y = 25 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) "kZy" = ( /obj/item/clothing/mask/breath, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"kZS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"kZV" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"kZB" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/oob) +"kZU" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"lac" = ( +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/civres) "lag" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"laz" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) "laJ" = ( /obj/structure/airlock_assembly, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"laK" = ( -/obj/item/stool, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"laX" = ( -/obj/structure/toilet{ - dir = 8 +"lbh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/turf/open/floor/prison/sterile_white, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "lbt" = ( /obj/structure/disposalpipe/segment{ @@ -14534,13 +14407,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"lbz" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "lbK" = ( /obj/structure/platform, /obj/structure/stairs/perspective{ @@ -14549,30 +14415,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"lbL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"lbZ" = ( -/obj/structure/platform{ - dir = 1 +"lbY" = ( +/obj/structure/toilet{ + pixel_y = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"lcm" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 2; + pixel_y = 25 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"lcn" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/station/transit_hub) -"lco" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"lcg" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) "lcq" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -14580,100 +14436,89 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"lcE" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"lcJ" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/tumor/ice_lab) -"ldd" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/stack/rods, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) +"lcy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"lcB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) "lde" = ( /obj/structure/prop/resin_prop{ icon_state = "coolanttank" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ldj" = ( -/obj/item/weapon/harpoon, +"ldt" = ( /obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"ldz" = ( -/obj/structure/bed{ - icon_state = "abed" + layer = 3 }, -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"ldF" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/power_ring) -"ldW" = ( -/obj/item/stack/sandbags, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"ldZ" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison/red/east, -/area/fiorina/station/security) -"lev" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) "lex" = ( /obj/structure/closet/crate, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"leC" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/aux_engi) "leF" = ( /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"leN" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/disco) -"leZ" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "lfo" = ( /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"lfX" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"lge" = ( -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/civres_blue) -"lgx" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/park) -"lgG" = ( -/obj/structure/coatrack, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"lgH" = ( -/turf/open/floor/prison/green, -/area/fiorina/tumor/civres) +"lfT" = ( +/obj/item/disk, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"lgq" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lgz" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "3" + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "lgS" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/park) +"lgY" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"lhf" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"lhx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) +"lhA" = ( +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/lz/near_lzI) +"lhB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "lhJ" = ( /obj/item/weapon/gun/flamer, /obj/structure/closet/secure_closet/guncabinet, @@ -14693,22 +14538,22 @@ }, /turf/closed/wall/prison, /area/fiorina/station/power_ring) -"lic" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"lit" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) +"lil" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) "liA" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"liT" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "liZ" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -14725,12 +14570,41 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"ljx" = ( +"ljA" = ( /obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"ljM" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"ljN" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/greenblue/southwest, +/area/fiorina/station/botany) +"ljS" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/station/medbay) +"ljU" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/telecomm/lz1_cargo) "ljV" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison, @@ -14740,28 +14614,11 @@ /obj/structure/bed/roller, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"lkr" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/tumor/ice_lab) "lku" = ( /turf/closed/shuttle/ert{ icon_state = "stan_rightengine" }, /area/fiorina/oob) -"lkA" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"lkM" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"lkP" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) "lkQ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -14769,9 +14626,30 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"lld" = ( -/turf/open/floor/prison/red/west, -/area/fiorina/station/security) +"lle" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"lli" = ( +/obj/structure/inflatable/popped, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"llp" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/central_ring) "lls" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -14782,21 +14660,17 @@ /obj/item/reagent_container/food/drinks/cans/souto/diet/cherry, /turf/open/floor/wood, /area/fiorina/station/park) -"llE" = ( -/obj/structure/machinery/reagentgrinder/industrial{ +"llM" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/head/that{ pixel_y = 10 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"llJ" = ( -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4 +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/platingdmg3, -/area/fiorina/station/security) +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) "llQ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -14818,49 +14692,38 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"lmu" = ( +"lmr" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lmC" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "lnK" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/telecomm/lz1_tram) -"loj" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"lou" = ( -/obj/item/ammo_box/magazine/misc/flares/empty{ - pixel_x = -1; - pixel_y = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"loE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"loP" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) -"lpd" = ( +"lon" = ( +/obj/item/stool, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/blue, -/area/fiorina/station/chapel) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"loQ" = ( +/obj/structure/machinery/door/airlock/almayer/marine, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"loS" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) "lpl" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" @@ -14872,17 +14735,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"lpw" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"lps" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"lpH" = ( -/turf/open/floor/prison/green/northwest, -/area/fiorina/station/chapel) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) "lpS" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -14893,18 +14752,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"lpW" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"lpX" = ( -/obj/structure/machinery/door/airlock/prison/horizontal, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"lpZ" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) "lqa" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -14914,29 +14761,30 @@ "lqq" = ( /turf/open/floor/wood, /area/fiorina/station/chapel) -"lqC" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/lz/near_lzI) -"lqI" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"lqJ" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_2" +"lqP" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"lqN" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"lqT" = ( +/obj/structure/platform, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"lrb" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"lre" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/tumor/civres) +"lrg" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"lri" = ( -/turf/open/floor/prison/green/west, -/area/fiorina/station/transit_hub) +/obj/item/card/id/silver/clearance_badge, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) "lrA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/plating/prison, @@ -14947,19 +14795,10 @@ /obj/item/toy/katana, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"lrI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/milk{ - pixel_x = 2; - pixel_y = 3 - }, +"lsi" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) -"lrV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) "lsn" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison, @@ -14969,75 +14808,39 @@ /obj/item/stack/sheet/mineral/plastic/small_stack, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"lsR" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"lsZ" = ( -/obj/item/tool/soap, -/obj/structure/machinery/shower{ +"lsY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"ltx" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - pixel_y = -1 + pixel_y = 21 }, -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/lz/near_lzI) +"ltN" = ( +/obj/structure/sink{ + pixel_y = 23 + }, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = -5 }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"ltd" = ( -/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"lte" = ( -/obj/structure/barricade/metal{ - dir = 4; - health = 85; - icon_state = "metal_1" +"luo" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"ltz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"ltA" = ( -/turf/open/floor/prison/floorscorched1, -/area/fiorina/tumor/aux_engi) -"ltQ" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/security) -"luf" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"lva" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"lun" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"lux" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"luy" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"luZ" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"lvf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "lvg" = ( /obj/item/trash/candle, /turf/open/floor/prison/chapel_carpet, @@ -15049,6 +14852,13 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"lvn" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "lvt" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/prop/souto_land/pole{ @@ -15064,12 +14874,8 @@ icon_state = "stan_rightengine" }, /area/fiorina/tumor/aux_engi) -"lvD" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"lvV" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/yellow/west, +"lvW" = ( +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/lowsec) "lwd" = ( /obj/structure/machinery/light/double/blue{ @@ -15079,6 +14885,9 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) +"lwm" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_tram) "lwn" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -15086,40 +14895,44 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"lwp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/security_space_law{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"lwq" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/central_ring) -"lwA" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"lxT" = ( -/obj/item/ammo_casing{ +"lwI" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"lxb" = ( +/obj/structure/barricade/sandbags{ dir = 8; - icon_state = "casing_6" + icon_state = "sandbag_0" }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"lxs" = ( +/turf/open/floor/prison/blue/northeast, +/area/fiorina/tumor/servers) +"lxx" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/flight_deck) +"lxH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"lxL" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"lxX" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"lya" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) "lyf" = ( /obj/structure/flora/bush/ausbushes/ausbush{ desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; @@ -15128,6 +14941,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"lyI" = ( +/obj/item/clothing/mask/cigarette/bcigarette, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "lyJ" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/prison, @@ -15139,19 +14956,22 @@ }, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"lzd" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) +"lzf" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "lzm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced/tinted, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"lzn" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) "lzq" = ( /obj/item/tool/wet_sign, /obj/item/tool/mop{ @@ -15160,65 +14980,28 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"lzz" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"lzB" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"lzE" = ( -/obj/structure/machinery/vending/snack/packaged, +"lzt" = ( +/obj/structure/platform, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/area/fiorina/station/power_ring) +"lzH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "lzJ" = ( /turf/open/floor/plating/prison, /area/fiorina/station/park) -"lzP" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/station/park) "lAh" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/ice_lab) -"lAn" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"lAE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"lAM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"lAN" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"lAQ" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +"lAz" = ( +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"lAD" = ( +/turf/open/floor/prison/greenblue/northwest, +/area/fiorina/station/botany) "lAV" = ( /obj/structure/bed/stool, /turf/open/floor/plating/prison, @@ -15236,49 +15019,71 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"lBE" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"lBI" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5_1" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"lBR" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"lBS" = ( +"lBg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"lCl" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"lBk" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp/captain, -/obj/structure/machinery/processor{ - icon_state = "blender_jug_f_red"; - pixel_x = -6; - pixel_y = 6 +/obj/item/phone, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"lBU" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"lCz" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"lBZ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"lCc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"lCw" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"lCF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/handcard/aceofspades, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"lCJ" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/weapon/baton, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "lDo" = ( /obj/item/storage/fancy/cigar, /turf/open/floor/prison, /area/fiorina/station/medbay) +"lDs" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) "lDC" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -15294,18 +15099,14 @@ /obj/structure/window/reinforced, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"lDU" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"lEd" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"lEg" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) +"lDY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/aux_engi) +"lEf" = ( +/obj/item/tool/match, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "lEk" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ @@ -15324,6 +15125,13 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer_hull, /area/fiorina/station/medbay) +"lEt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/obj/item/reagent_container/food/snacks/grown/carrot, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) "lEy" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -15335,82 +15143,62 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"lEF" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"lEL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) "lFc" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/security/liaison, /turf/open/floor/wood, /area/fiorina/station/park) -"lFg" = ( -/obj/item/paper, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"lFm" = ( -/obj/structure/bed/roller, -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"lFo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) +"lFr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "lFv" = ( /obj/item/stack/cable_coil, /turf/open/floor/prison, /area/fiorina/station/disco) -"lFB" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"lFD" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"lFM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) +"lFy" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "lFQ" = ( /obj/structure/machinery/m56d_hmg/mg_turret/dropship, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"lFV" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"lGL" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -1 +"lGc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"lHw" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"lGq" = ( +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) +"lGr" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"lGz" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/fiorina/station/telecomm/lz1_cargo) +"lGF" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) +"lGO" = ( +/obj/item/weapon/gun/smg/mp5, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"lGZ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "lHx" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -15423,84 +15211,40 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"lIj" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/floor/prison/blue/east, -/area/fiorina/tumor/servers) -"lIk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"lIl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +"lIm" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/tumor/ice_lab) -"lIt" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"lIs" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "lIv" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/lz/near_lzI) -"lIA" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) -"lIC" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +"lID" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "lIG" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/research_cells) -"lIH" = ( -/obj/structure/machinery/processor, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) "lIJ" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"lJf" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - layer = 2.6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) +"lJc" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) "lJx" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -15509,27 +15253,13 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"lJI" = ( -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"lJS" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) +"lKf" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) "lKI" = ( /obj/structure/largecrate/random/case, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"lKP" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/chapel) "lLe" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, @@ -15538,15 +15268,19 @@ /obj/item/bedsheet/blue, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"lLN" = ( +/obj/structure/mirror{ + pixel_x = -32 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) "lLQ" = ( /turf/open/floor/prison, /area/fiorina/tumor/servers) -"lLS" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) "lMh" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, @@ -15555,37 +15289,19 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"lMq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - icon_state = "mwo"; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"lMV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"lNc" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"lNf" = ( -/obj/item/inflatable, +"lMz" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"lNv" = ( -/obj/item/restraint/adjustable/cable/pink, -/turf/open/floor/prison/chapel_carpet/doubleside/north, +/turf/open/floor/prison/green/north, /area/fiorina/station/chapel) +"lNx" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/medbay) +"lNL" = ( +/turf/open/floor/prison/greenbluecorner/north, +/area/fiorina/station/botany) "lNP" = ( /obj/structure/bed/roller, /turf/open/floor/prison, @@ -15594,80 +15310,88 @@ /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"lOe" = ( -/obj/structure/largecrate/random/barrel/yellow, +"lOO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) -"lOk" = ( -/obj/structure/curtain, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/power_ring) -"lOm" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/bodybag/tarp/reactive{ - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"lOx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"lPe" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"lOy" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) +/obj/effect/spawner/random/tool, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"lPi" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) "lPA" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"lPE" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"lQo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"lPL" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"lPU" = ( +/obj/item/reagent_container/food/drinks/bottle/pwine, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"lQN" = ( +/obj/item/stack/sheet/metal, +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/transit_hub) -"lQJ" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/maintenance) -"lQL" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform{ - dir = 8 +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"lRc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"lRy" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"lRk" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/damaged3, -/area/fiorina/station/security) -"lRq" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/park) -"lRr" = ( -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/civres_blue) +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"lRz" = ( +/turf/open/floor/prison/redfull, +/area/fiorina/station/security/wardens) +"lRF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster3"; + name = "magazine"; + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster17"; + name = "magazine" + }, +/obj/structure/sign/poster{ + desc = "The M41A is on the cover."; + icon_state = "poster15"; + name = "magazine"; + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) "lRT" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/lz/near_lzI) -"lRW" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) "lSb" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, @@ -15679,10 +15403,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"lSq" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "lSS" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -15690,12 +15410,15 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"lTp" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) +"lTA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"lTJ" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "lTW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -15720,15 +15443,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"lUu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) "lUv" = ( /obj/structure/platform{ dir = 1 @@ -15741,36 +15455,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"lUZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"lVa" = ( +/obj/item/stool, +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"lVA" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/lz/near_lzII) -"lVQ" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/whitegreencorner, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"lVb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"lWn" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +"lVM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/item/tool/soap/nanotrasen, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"lWy" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"lVU" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/tumor/servers) +"lWe" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"lWW" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"lXb" = ( +/obj/structure/bed/chair/comfy, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/area/fiorina/station/security/wardens) "lXs" = ( /obj/item/book/manual/marine_law, /obj/item/book/manual/marine_law{ @@ -15794,35 +15516,23 @@ }, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"lYj" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) +"lYk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"lYE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"lZc" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "lZf" = ( /turf/closed/shuttle/elevator{ dir = 10 }, /area/fiorina/tumor/aux_engi) -"lZm" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"lZo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"lZp" = ( -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) "lZs" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -15844,14 +15554,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"maA" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"maY" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, +"lZB" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"lZU" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"maW" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"maZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/poster, /turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) +/area/fiorina/station/research_cells) "mbg" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/plating_catwalk/prison, @@ -15862,70 +15581,39 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"mbz" = ( -/obj/item/ammo_box/magazine/M16, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) "mbC" = ( /obj/item/clipboard, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"mbN" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"mcg" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) "mcr" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stock_parts/matter_bin/super, /turf/open/floor/wood, /area/fiorina/station/park) -"mcH" = ( -/turf/open/floor/prison/blue, -/area/fiorina/tumor/servers) -"mcJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) "mdd" = ( /obj/item/storage/toolbox/electrical, /turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"mdz" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"mdD" = ( -/obj/item/stool, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"mdG" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"mdH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/guest{ - pixel_x = -2; - pixel_y = 6 +/area/fiorina/tumor/servers) +"mdg" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/transit_hub) +"mdv" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/obj/item/card/id/guest, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "mdJ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -15933,17 +15621,30 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/space, /area/fiorina/oob) -"mdS" = ( -/turf/open/floor/prison/greenbluecorner/west, -/area/fiorina/station/botany) -"mdY" = ( -/obj/structure/machinery/light/double/blue{ +"mdP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4; - pixel_x = 10; - pixel_y = 13 + pixel_y = 5 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) +/area/fiorina/station/power_ring) +"mdR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"mea" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "mei" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -15958,6 +15659,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"meJ" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/item/storage/briefcase{ + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"meL" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "mfe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/twohanded/sledgehammer{ @@ -15965,10 +15677,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"mfF" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) +"mft" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) "mfR" = ( /obj/structure/bed{ icon_state = "psychbed" @@ -15979,26 +15690,14 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"mgh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"mgz" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"mgE" = ( +"mgP" = ( +/obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"mgO" = ( -/obj/structure/window{ - dir = 8 + dir = 1; + pixel_y = 21 }, -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) "mho" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -16006,6 +15705,14 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"mhv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"mhA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "mhM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -16017,34 +15724,61 @@ /obj/effect/spawner/random/gun/rifle/lowchance, /turf/open/auto_turf/sand/layer1, /area/fiorina/station/flight_deck) -"mhS" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/greenblue/north, -/area/fiorina/station/botany) +"mhV" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"mil" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"miG" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) "miU" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"mjm" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" +"mjq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison/yellow/northeast, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"mjv" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) -"mju" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) "mjx" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"mjB" = ( -/obj/structure/platform, -/turf/open/gm/river/pool, -/area/fiorina/station/park) -"mkn" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/power_ring) +"mjW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"mkq" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"mkv" = ( +/obj/item/trash/pistachios, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"mkA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "mkI" = ( /obj/structure/machinery/microwave{ desc = "So uh yeah, about that cat..."; @@ -16054,38 +15788,14 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"mlb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/tumor/ice_lab) -"mld" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"mlg" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"mlu" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) +"mlq" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "mlC" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"mlU" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/item/tool/soap/syndie, -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/gun/special, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) "mmp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stock_parts/matter_bin/adv{ @@ -16094,11 +15804,40 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"mmx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "mmy" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"mmD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/green/southwest, +/area/fiorina/station/chapel) +"mmQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"mmX" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"mnc" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/civres) "mnd" = ( /obj/structure/reagent_dispensers/water_cooler{ density = 0; @@ -16113,47 +15852,29 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/fiberbush) -"mns" = ( -/obj/item/stool, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) +"mnt" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "mny" = ( /turf/closed/wall/prison, /area/fiorina/station/flight_deck) -"mnJ" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"mnR" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"mok" = ( -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/fuel_cell, -/obj/item/stack/sheet/plasteel, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"mom" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/surgicaldrill, -/turf/open/floor/prison/yellowcorner, -/area/fiorina/station/lowsec) -"moK" = ( -/obj/item/clothing/under/shorts/red, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/central_ring) -"moQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +"moj" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/oob) +"mop" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"mov" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/civres_blue) "moW" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/plating/prison, @@ -16183,21 +15904,6 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"mpE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/botany) -"mpN" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison/darkpurple2/east, -/area/fiorina/tumor/servers) -"mpR" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "mpY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -16210,10 +15916,15 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"mqB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/red, -/area/fiorina/station/security) +"mqq" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"mqr" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue/northeast, +/area/fiorina/station/botany) "mqJ" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -16221,10 +15932,10 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"mqM" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/flight_deck) +"mrc" = ( +/obj/item/stool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "mrk" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -16241,10 +15952,6 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"mrK" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) "mrW" = ( /obj/item/stack/rods, /turf/open/floor/prison, @@ -16255,22 +15962,24 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"msd" = ( -/obj/structure/platform_decoration{ - dir = 1 +"mrZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"msh" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "msj" = ( /obj/item/toy/crayon/orange, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"msn" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/fiorina/tumor/ship) "msu" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -16278,14 +15987,9 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"msF" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"msH" = ( -/obj/item/tool/surgery/cautery, -/turf/open/floor/prison/yellow/west, +"msR" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "mtj" = ( /obj/structure/machinery/light/double/blue{ @@ -16295,47 +15999,51 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"mtD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 7 +"mtz" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"mtT" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"mtG" = ( -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/station/park) -"mtP" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"mum" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"mue" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison/yellowfull, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"muq" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"muC" = ( +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) -"muD" = ( -/obj/structure/tunnel, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"muX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) "mvl" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"mvp" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"mvD" = ( +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"mvE" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "mvF" = ( /obj/structure/monorail{ name = "launch track" @@ -16346,72 +16054,36 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"mvV" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"mvY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"mwu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c10, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"mwK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ +"mvJ" = ( +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/power_ring) +"mvM" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 10 - }, -/obj/item/phone{ - pixel_x = 9; - pixel_y = -10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"mwP" = ( -/obj/structure/bed{ - icon_state = "abed" - }, /turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) +/area/fiorina/station/disco) +"mvU" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/tumor/aux_engi) +"mwt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "mxc" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"mxj" = ( +/obj/item/clothing/under/marine/ua_riot, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "mxk" = ( /obj/item/trash/tray, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) -"mxm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/plantspray/pests, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"mxs" = ( -/obj/item/storage/belt/marine/quackers, -/obj/effect/spawner/gibspawner/human, -/turf/open/gm/river/darkred_pool, -/area/fiorina/station/park) "mxQ" = ( /turf/closed/wall/prison, /area/fiorina/station/power_ring) @@ -16424,48 +16096,29 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"myi" = ( -/obj/item/tool/mop, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) "myj" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"myA" = ( -/obj/structure/bed/chair{ - dir = 4; - layer = 2.8 - }, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"myH" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"myJ" = ( -/obj/structure/closet/bombcloset, -/obj/effect/spawner/random/gun/rifle/midchance, +"mym" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/flight_deck) -"myK" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"myQ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/tumor/ice_lab) -"mzn" = ( -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"mzy" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"myr" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"myx" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"myV" = ( +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "mzJ" = ( /obj/item/tool/lighter/random{ pixel_x = 14; @@ -16473,9 +16126,23 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"mzK" = ( -/turf/open/floor/prison/whitegreencorner, -/area/fiorina/station/medbay) +"mzM" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"mzQ" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "mzS" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1; @@ -16489,55 +16156,50 @@ opacity = 0 }, /area/fiorina/oob) -"mAs" = ( -/obj/item/broken_device, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"mAt" = ( -/turf/open/floor/prison/greenbluecorner, -/area/fiorina/station/botany) -"mAK" = ( -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster17"; - name = "magazine" +"mAa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/golden_cup, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"mAB" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/fiorina/station/research_cells) +"mAM" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"mBn" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/central_ring) +"mBs" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"mBy" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster3"; - name = "magazine"; - pixel_x = 6; - pixel_y = 8 +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"mBE" = ( +/obj/item/ammo_casing{ + icon_state = "casing_7_1" }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"mAN" = ( -/obj/item/toy/crayon/mime, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"mAS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"mBG" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"mBJ" = ( -/obj/item/ammo_box/magazine/misc/flares/empty, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"mBZ" = ( -/obj/structure/machinery/disposal, +/area/fiorina/station/lowsec) +"mCb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"mCj" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; + name = "\improper Fiorina Green Block Canteen Vendor" + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"mCe" = ( -/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/lowsec) -"mCp" = ( -/turf/open/floor/prison/blue/north, -/area/fiorina/station/chapel) "mCA" = ( /obj/structure/prop/resin_prop, /turf/open/floor/plating/prison, @@ -16550,49 +16212,53 @@ /obj/item/newspaper, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"mCR" = ( -/obj/structure/platform, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"mDn" = ( -/turf/open/floor/prison/green/northeast, +"mDl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) -"mDq" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" +"mDo" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_tram) +"mDy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) "mDz" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"mDO" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"mDS" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"mEn" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 +"mDD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets{ + pixel_x = 5; + pixel_y = 9 }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/obj/item/storage/box/donkpockets, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"mEb" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"mEp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "mEJ" = ( /obj/structure/window/reinforced{ dir = 4 @@ -16604,23 +16270,16 @@ /obj/structure/machinery/computer/secure_data, /turf/open/floor/prison, /area/fiorina/station/security) +"mEL" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "mEO" = ( /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"mEU" = ( -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"mEY" = ( -/obj/item/device/flashlight/on, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/fiorina/tumor/aux_engi) -"mFS" = ( -/obj/structure/cargo_container/grant/left, +"mGq" = ( +/obj/item/tool/weldingtool, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"mGf" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/blue/east, /area/fiorina/station/civres_blue) "mGr" = ( /obj/structure/stairs/perspective{ @@ -16628,6 +16287,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"mGz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "mGN" = ( /obj/structure/platform{ dir = 8 @@ -16636,10 +16302,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"mGX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) "mGZ" = ( /obj/item/trash/eat, /obj/structure/machinery/light/double/blue{ @@ -16657,16 +16319,23 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) +"mHI" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"mHP" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "mHR" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) -"mHY" = ( -/obj/item/frame/rack, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) "mIf" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -16675,34 +16344,17 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"mIr" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "mIu" = ( /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"mIQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"mJc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"mJg" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) +"mIx" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/civres) +"mIO" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "mJk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/aspen{ @@ -16718,30 +16370,36 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"mJm" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) "mJq" = ( /obj/item/trash/kepler, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"mJH" = ( -/obj/item/device/flashlight/flare/on, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"mKd" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"mKo" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"mKp" = ( -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"mKx" = ( -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) +"mJE" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/station/chapel) +"mJL" = ( +/obj/effect/alien/weeds/node, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"mKh" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"mKK" = ( +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/civres_blue) "mKS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -16756,16 +16414,17 @@ }, /turf/open/space, /area/fiorina/oob) -"mLm" = ( -/obj/structure/platform_decoration{ - dir = 4 +"mLc" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"mLL" = ( -/obj/item/tool/mop, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"mLk" = ( +/obj/item/frame/rack, +/obj/item/clothing/under/marine/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "mLP" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/smartfridge/drinks{ @@ -16773,40 +16432,30 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"mLY" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"mMa" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) -"mMh" = ( -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison/sterile_white/southwest, +"mLU" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"mMi" = ( -/obj/item/tool/weldpack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"mMk" = ( -/obj/structure/prop/resin_prop, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"mMH" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 +"mMl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"mMF" = ( +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"mMM" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"mMN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_2" }, /turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) -"mMP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) "mNc" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/prison, @@ -16815,69 +16464,67 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"mNk" = ( +/obj/item/paper, +/obj/structure/inflatable/door, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"mNo" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "mNB" = ( /obj/effect/decal/hefa_cult_decals/d32, /turf/open/floor/prison, /area/fiorina/station/medbay) -"mNN" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"mOf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"mOm" = ( -/obj/structure/platform{ +"mNU" = ( +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"mOt" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/obj/structure/platform{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"mOM" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9 +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"mOP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"mOE" = ( -/obj/structure/stairs/perspective{ +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"mOV" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "p_stair_full" + pixel_x = 10; + pixel_y = -3 }, -/obj/structure/platform, -/turf/open/floor/prison/bright_clean_marked/southwest, -/area/fiorina/station/power_ring) -"mOI" = ( -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"mOU" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, +/area/fiorina/station/chapel) +"mPa" = ( +/obj/structure/tunnel/maint_tunnel, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"mPe" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/medbay) -"mPf" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/tumor/ice_lab) "mPg" = ( /obj/item/trash/boonie, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"mPn" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +"mPt" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"mPQ" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "mPW" = ( /obj/structure/prop/structure_lattice{ dir = 4; @@ -16885,40 +16532,27 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) -"mPX" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/station/park) -"mQy" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +"mQd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"mQt" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "mQB" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"mQG" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) "mQV" = ( /obj/item/tool/stamp, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"mRA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"mRC" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "mRM" = ( /obj/structure/monorail{ dir = 5; @@ -16926,30 +16560,26 @@ }, /turf/open/space, /area/fiorina/oob) -"mRS" = ( -/turf/open/floor/prison/darkpurple2/northeast, -/area/fiorina/station/central_ring) "mSk" = ( /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"mSo" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"mSp" = ( -/obj/item/clothing/under/marine/ua_riot, -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +"mSn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"mSv" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"mSC" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "mSP" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"mSZ" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) "mTa" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -16962,106 +16592,81 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"mTl" = ( -/obj/item/storage/box/gloves, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) "mTs" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/civres_blue) +"mTF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) "mTM" = ( /obj/item/tool/warning_cone, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"mUd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"mTU" = ( +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"mUc" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "mUA" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"mUK" = ( -/obj/structure/window{ - dir = 4 - }, -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"mVd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster3"; - name = "magazine"; - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster17"; - name = "magazine" - }, -/obj/structure/sign/poster{ - desc = "The M41A is on the cover."; - icon_state = "poster15"; - name = "magazine"; - pixel_x = -5; - pixel_y = 5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"mVk" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"mVn" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) +"mVz" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "mVO" = ( /obj/item/tool/extinguisher, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"mVY" = ( -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/security) -"mWs" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 6 +"mVW" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) +"mWo" = ( +/obj/item/disk/botany, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"mWp" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"mWO" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"mWR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications/simple, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"mWS" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"mWt" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/landmark/nightmare{ + insert_tag = "yardbasketball" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"mWM" = ( /obj/item/stack/rods, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"mWT" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/fiorina/tumor/servers) +"mWV" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"mWX" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +"mWW" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "mWY" = ( /obj/item/coin/uranium{ anchored = 1; @@ -17070,58 +16675,77 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"mXa" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) "mXk" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"mXS" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/launcher/grenade/m81, -/obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"mYl" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"mYy" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"mYG" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ship) -"mZo" = ( -/obj/item/tool/shovel, -/turf/open/auto_turf/sand/layer1, -/area/fiorina/tumor/civres) -"mZy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/spawner/random/gun/smg/lowchance, +"mXl" = ( +/obj/item/weapon/twohanded/spear, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) -"mZH" = ( +"mXK" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison/sterile_white/southwest, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/central_ring) +"mXO" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"mYd" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"mYR" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"mZf" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"mZh" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"mZm" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibmid3" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"mZo" = ( +/obj/item/tool/shovel, +/turf/open/auto_turf/sand/layer1, +/area/fiorina/tumor/civres) +"mZw" = ( +/obj/item/stool, +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec) +"mZF" = ( +/obj/structure/closet/firecloset/full, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "naf" = ( /turf/closed/shuttle/ert, /area/fiorina/oob) -"naI" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) +"nai" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "naW" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/civres) @@ -17129,13 +16753,30 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"nbP" = ( +"nbf" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"nbl" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/fiberbush) +"nbo" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"ncb" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/tumor/aux_engi) +"nbR" = ( +/obj/item/trash/candy, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"nbU" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"ncd" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "ncj" = ( /obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue{ @@ -17144,116 +16785,69 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"nck" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"ncs" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"ncF" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"ncY" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/item/storage/briefcase{ - pixel_y = -2 +"ncE" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) "ndl" = ( /obj/item/storage/box/cups, /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/pills/lowchance, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"ndD" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"ndQ" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/whitepurple/northeast, +"ndr" = ( +/obj/item/clothing/glasses/material, +/obj/structure/barricade/handrail, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) +"ndP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"ndV" = ( +/obj/structure/machinery/disposal, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "ndZ" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"nec" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"nez" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_5" +"neo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/plantspray/pests, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"neu" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "neE" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/prison, /area/fiorina/station/security) +"neO" = ( +/obj/item/paper/crumpled/bloody/csheet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "neT" = ( /obj/item/tool/wet_sign, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"neY" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/central_ring) -"nfe" = ( -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_psycopath_l"; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_ketchup_l"; - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_guilty_l"; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"nfh" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"nfu" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) "nfA" = ( /obj/structure/platform, /obj/item/stack/sheet/metal, @@ -17276,19 +16870,34 @@ name = "synthetic vegetation" }, /area/fiorina/station/civres_blue) -"ngg" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"ngn" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ngF" = ( -/obj/item/device/flashlight/lamp/tripod, +"nge" = ( +/obj/structure/platform, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"ngx" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"ngK" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_5" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"ngO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' + }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) +"nhf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal/medium_stack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "nho" = ( /obj/structure/platform{ dir = 1 @@ -17299,24 +16908,24 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"nhM" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/civres_blue) -"nhX" = ( -/obj/structure/machinery/gibber, -/obj/effect/decal/cleanable/blood{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/prison/blue_plate, +"nhz" = ( +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) +"nhE" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "nhY" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/flight_deck) +"nia" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "nib" = ( /obj/structure/sign/safety/fire_haz, /turf/open/floor/plating/prison, @@ -17327,44 +16936,43 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"nim" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/fiorina/lz/near_lzI) "nip" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"niw" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"njg" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"njm" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"nju" = ( -/obj/item/gift, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"njG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"nit" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/tumor/aux_engi) +"niM" = ( +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"niN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) +"njk" = ( +/obj/item/trash/pistachios, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"njq" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"njz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "njK" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -17379,101 +16987,50 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"njN" = ( -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison/darkpurple2/southwest, -/area/fiorina/tumor/servers) -"njY" = ( -/obj/structure/inflatable/popped, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"nkg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"nkF" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/park) -"nkJ" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"nkM" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"nlw" = ( -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"nlR" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_2"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"nmh" = ( -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"nmi" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - dir = 1; - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/research_cells) -"nmm" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"nmy" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"nmK" = ( +"nky" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) -"nmL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"nkV" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"nmM" = ( -/obj/structure/platform_decoration{ - dir = 8 +"nlD" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"nlZ" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"nmb" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "nmT" = ( /obj/item/toy/crayon/blue, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"nno" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "nnr" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"nny" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"nnC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "nnG" = ( /obj/structure/platform{ dir = 4 @@ -17485,34 +17042,49 @@ /obj/structure/closet/emcloset, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"nnL" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "noa" = ( /obj/structure/largecrate/supply/supplies/plasteel, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"noe" = ( -/obj/structure/flora/grass/tallgrass/jungle, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"nor" = ( -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" +"noo" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"noq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "noz" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"npx" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) +"noC" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"noM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"npS" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/lz/near_lzI) +"nqI" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "nqL" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner, @@ -17524,43 +17096,48 @@ "nqN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security) -"nrd" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, +"nqR" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) +/area/fiorina/station/lowsec) "nre" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"nrn" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/maintenance) -"nrU" = ( -/obj/item/tool/pickaxe, -/obj/item/tool/pickaxe{ - pixel_y = 5 - }, -/obj/item/tool/pickaxe{ - pixel_y = 10 +"nrm" = ( +/turf/open/floor/prison/greencorner, +/area/fiorina/tumor/civres) +"nrp" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"nrr" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"nso" = ( +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster17"; + name = "magazine" }, -/obj/structure/surface/rack, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"nsm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster3"; + name = "magazine"; + pixel_x = 6; + pixel_y = 8 }, -/obj/structure/medical_supply_link, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"nsp" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "nss" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -17568,41 +17145,33 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/research_cells) -"nsD" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +"nsw" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"nth" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"ntc" = ( -/turf/open/floor/prison/green/east, -/area/fiorina/tumor/civres) -"ntf" = ( -/obj/item/implanter/compressed, -/obj/structure/safe, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/redfull, +/area/fiorina/station/disco) +"ntm" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/platingdmg1, /area/fiorina/station/security) +"ntt" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) "ntv" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"ntw" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/lz/near_lzI) -"ntx" = ( -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/disco) -"ntE" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) "ntH" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -17615,10 +17184,6 @@ }, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"ntM" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "ntZ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -17626,32 +17191,18 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"nub" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"nuo" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"nup" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"nuN" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"nuh" = ( +/obj/structure/platform, +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 }, -/turf/open/floor/prison/sterile_white/southwest, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) +"nuR" = ( +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "nuX" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -17660,25 +17211,14 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"nvi" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"nvn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/chapel) -"nvs" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" +"nvz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "nvD" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/botany) @@ -17687,35 +17227,38 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"nvX" = ( -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"nwv" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"nwS" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"nwT" = ( -/turf/open/floor/prison/green/north, -/area/fiorina/tumor/aux_engi) -"nxc" = ( -/obj/structure/sign/poster{ - icon_state = "poster18"; - pixel_y = 32 +"nwk" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/clothing/accessory/storage/holster, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"nwH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/phone{ + pixel_y = -4 + }, +/obj/item/phone{ + pixel_x = 7; + pixel_y = 10 }, +/obj/item/tool/pen, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"nxd" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/chapel) +"nxp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/atmos_alert, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"nxl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) "nxq" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "A ticket to Souto Man's raffle!"; @@ -17725,39 +17268,48 @@ }, /turf/open/floor/prison, /area/fiorina/station/chapel) -"nxW" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +"nxu" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/barricade/wooden{ - dir = 4 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"nxG" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"nxQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/mop, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"nyb" = ( +/obj/item/trash/candy, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"nxY" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"nyo" = ( +/obj/structure/prop/structure_lattice{ + health = 300 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/latex, +/obj/structure/prop/structure_lattice{ + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"nyG" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) -"nyq" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"nyC" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/floorscorched2, -/area/fiorina/station/security) -"nyF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/fiorina/station/chapel) +"nyI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "nyO" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -17766,6 +17318,17 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"nyP" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/obj/effect/spawner/random/technology_scanner, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "nyS" = ( /obj/structure/platform{ dir = 4 @@ -17776,27 +17339,27 @@ /obj/item/tool/extinguisher/mini, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"nzf" = ( -/obj/structure/machinery/processor, -/obj/effect/decal/cleanable/blood{ - pixel_y = 20 +"nzb" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_tram) +"nzh" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) "nzi" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"nzu" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"nzw" = ( -/obj/item/clothing/head/soft/yellow, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) +"nzx" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "nzI" = ( /obj/structure/largecrate/random, /turf/open/floor/wood, @@ -17810,6 +17373,10 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) +"nzY" = ( +/obj/structure/tunnel, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) "nAf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/marine_law{ @@ -17817,27 +17384,18 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"nAm" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/lz/near_lzII) -"nAs" = ( -/obj/structure/inflatable, +"nAv" = ( +/obj/structure/bed/chair, /turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"nAK" = ( -/turf/open/floor/prison/yellowcorner/north, -/area/fiorina/station/lowsec) -"nAV" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/disco) +"nAA" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) -"nBb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) +"nBp" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) "nBt" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "4" @@ -17847,9 +17405,17 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"nBw" = ( -/turf/open/floor/prison/bluecorner/west, +"nBv" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"nBG" = ( +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) +"nBP" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "nCh" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -17858,32 +17424,20 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"nCm" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/fiorina/lz/near_lzI) "nCt" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "2" }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"nCH" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"nCV" = ( -/obj/item/ammo_casing{ - icon_state = "casing_7_1" +"nDp" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"nCX" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"nDq" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +/obj/item/clothing/suit/armor/bulletproof/badge, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) "nDr" = ( /obj/structure/machinery/door/airlock/almayer/maint/autoname{ name = "\improper Null Hatch REPLACE ME"; @@ -17892,46 +17446,29 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"nDI" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"nEh" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"nEB" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/floor_plate, +"nDN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, /area/fiorina/station/medbay) +"nEa" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "nEI" = ( /obj/structure/machinery/deployable/barrier, /turf/open/floor/prison, /area/fiorina/station/security) -"nEN" = ( -/obj/item/clothing/glasses/material, -/obj/structure/barricade/handrail, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) "nEP" = ( /obj/structure/closet, /obj/item/reagent_container/spray/cleaner, /obj/item/stack/sheet/plasteel/small_stack, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"nEW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"nFb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/emeraldgreen, -/obj/item/tool/lighter, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) "nFc" = ( /obj/item/ammo_casing{ icon_state = "cartridge_1" @@ -17939,6 +17476,16 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/fiorina/station/medbay) +"nFi" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"nFt" = ( +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "nFB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/gift, @@ -17951,6 +17498,14 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"nFQ" = ( +/obj/structure/platform, +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "nGp" = ( /obj/structure/platform_decoration{ dir = 1 @@ -17961,46 +17516,36 @@ /obj/item/newspaper, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"nGB" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"nGO" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"nGV" = ( +"nGD" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"nGU" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"nGZ" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"nHl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"nGZ" = ( -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"nHm" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"nHp" = ( +/obj/item/stool, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) "nHZ" = ( /turf/closed/shuttle/ert{ icon_state = "wy_rightengine" }, /area/fiorina/station/medbay) -"nIb" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/transit_hub) "nIc" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -18018,31 +17563,42 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"nIw" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" +"nIf" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/darkredfull2, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"nJq" = ( -/obj/structure/platform{ - dir = 1 +"nIi" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"nIJ" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) "nJu" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"nJT" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"nKf" = ( -/obj/structure/bed/chair{ - dir = 1 +"nJA" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 }, -/turf/open/floor/prison/bluefull, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"nKc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "nKl" = ( /obj/structure/platform{ @@ -18056,18 +17612,27 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"nKo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - icon_state = "mwo"; - pixel_y = 6 +"nKp" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"nKu" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"nKG" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"nKv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "nKX" = ( /obj/structure/barricade/metal{ dir = 8; @@ -18080,53 +17645,20 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"nLS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/obj/item/reagent_container/food/snacks/doughslice, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) +"nLF" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) "nLV" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" }, /area/fiorina/tumor/aux_engi) -"nMg" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/telecomm/lz1_tram) -"nMi" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"nMm" = ( -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) "nMn" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/gun/pistol/lowchance, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"nMp" = ( -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) -"nMz" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/central_ring) "nMI" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -18134,6 +17666,13 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) +"nMJ" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "nMZ" = ( /obj/structure/ice/thin/indestructible, /obj/structure/prop/invuln{ @@ -18149,32 +17688,34 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) +"nNd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"nNu" = ( +/obj/item/clothing/under/shorts/red, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/central_ring) +"nNw" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/servers) +"nNC" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "nNJ" = ( /obj/structure/surface/rack, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"nNS" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) "nOe" = ( /obj/structure/barricade/handrail/type_b{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/disco) -"nOg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"nOi" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) "nOw" = ( /obj/structure/ice/thin/indestructible{ dir = 1; @@ -18196,83 +17737,61 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) +"nOJ" = ( +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "nPj" = ( /obj/item/clothing/glasses/gglasses, /turf/open/space, /area/fiorina/oob) -"nPA" = ( +"nPq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera, /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"nQl" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" + dir = 1; + pixel_y = 21 }, -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/sterile_white/southwest, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"nPZ" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/telecomm/lz1_tram) +"nQe" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/tumor/servers) "nQq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"nQu" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"nQE" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) +"nQx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "nQF" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"nQH" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"nRe" = ( +/obj/structure/monorail{ + name = "launch track" }, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"nQJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"nRQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/transit_hub) +"nRl" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"nRK" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"nRO" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) -"nRT" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"nRU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) "nSh" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -18283,32 +17802,68 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"nSl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"nSo" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"nSp" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "nSx" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/disco) -"nSS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/dropper, -/obj/item/attachable/bipod, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) +"nSD" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"nSQ" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/obj/structure/closet/bombcloset, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "nSU" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"nTh" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "nTq" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/tumor/ship) -"nTv" = ( -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/chapel) -"nTV" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) +"nTt" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "nUb" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -18319,10 +17874,20 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"nUm" = ( -/obj/structure/barricade/wooden, +"nUf" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/transit_hub) +"nUk" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "nUr" = ( /obj/structure/ice/thin/indestructible, /obj/structure/prop/invuln{ @@ -18348,42 +17913,43 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) +"nUB" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "nUJ" = ( /obj/effect/spawner/random/technology_scanner, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"nUS" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"nVu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +"nUV" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/maintenance) +"nVh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"nVD" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "nVE" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/prison, /area/fiorina/station/disco) -"nVN" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"nVR" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) +"nWc" = ( +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "nWh" = ( /obj/item/tool/wrench, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"nWk" = ( -/obj/effect/spawner/random/gun/smg/midchance, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) "nWv" = ( /obj/item/reagent_container/food/drinks/coffee{ name = "\improper paper cup" @@ -18395,28 +17961,37 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/prison, /area/fiorina/station/medbay) -"nWB" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/maintenance) +"nWA" = ( +/obj/item/tank/jetpack/carbondioxide, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "nWC" = ( /obj/item/clothing/shoes/yellow, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"nWM" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +"nWO" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"nXa" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"nXe" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "nXj" = ( /obj/structure/curtain/black, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"nXn" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) "nXu" = ( /obj/item/storage/backpack/satchel/lockable, /turf/open/floor/prison, @@ -18428,6 +18003,10 @@ /obj/item/weapon/gun/smg/mp5, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"nXT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "nXX" = ( /obj/item/stack/medical/bruise_pack, /turf/open/floor/prison, @@ -18438,16 +18017,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"nYB" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"nYE" = ( -/obj/item/tool/wrench, +"nYk" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"nYl" = ( +/obj/item/clothing/under/shorts/black, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/central_ring) "nYT" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -18462,40 +18039,67 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"nZB" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"nZI" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) +"nZn" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"nZM" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) "nZQ" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"nZU" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 +"nZX" = ( +/obj/structure/machinery/line_nexter, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"oad" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/disco) +"oag" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/floor/prison/blue/north, +/area/fiorina/tumor/servers) +"oaK" = ( +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_casing{ + icon_state = "casing_6_1" }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/flight_deck) -"oaa" = ( /turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) +/area/fiorina/station/telecomm/lz1_cargo) +"oaS" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"oaW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"oaX" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "obh" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/prison, /area/fiorina/station/security) -"oby" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) +"obv" = ( +/obj/item/stool, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) "obz" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/plating/prison, @@ -18512,6 +18116,12 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/civres) +"obV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "occ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/lime{ @@ -18539,6 +18149,20 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"ocr" = ( +/obj/item/ammo_magazine/m56d, +/obj/item/ammo_magazine/m56d, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"ocI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/surgicaldrill, +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec) +"oda" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) "ode" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -18546,60 +18170,54 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"odl" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"ody" = ( -/obj/structure/machinery/autolathe, +"odg" = ( +/obj/item/stack/cable_coil, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"odC" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"odm" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"odD" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/flight_deck) "odQ" = ( /obj/structure/largecrate/supply, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"oer" = ( -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"oev" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"oeN" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"oeT" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; +"odR" = ( +/obj/item/reagent_container/food/drinks/bottle/rum, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"oeq" = ( +/obj/effect/decal/cleanable/blood{ dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 + icon_state = "gib6" }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"oeV" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"oeH" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "oeY" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison, /area/fiorina/station/chapel) -"ofl" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) +"ofd" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "ofq" = ( /turf/closed/shuttle/elevator{ dir = 10 @@ -18622,18 +18240,31 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"ofJ" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"ofL" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "ofQ" = ( /obj/structure/machinery/power/apc{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"oga" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) +"ofZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "ogf" = ( /obj/structure/monorail{ name = "launch track" @@ -18644,22 +18275,23 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"ohc" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +"ogV" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ohl" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/station/central_ring) -"ohx" = ( -/obj/item/tool/match, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/area/fiorina/tumor/servers) +"ohf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/tumor/aux_engi) "ohF" = ( /obj/structure/platform/kutjevo/smooth, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/ice_lab) +"ohH" = ( +/obj/structure/largecrate/guns/merc, +/obj/item/toy/deck/uno, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "ohY" = ( /obj/item/circuitboard/machine/pacman/super, /obj/structure/machinery/constructable_frame{ @@ -18667,43 +18299,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"oib" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"oih" = ( -/obj/item/paper/crumpled/bloody, +"oio" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"ojh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/crayons, /turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"oiF" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) -"oiV" = ( -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"oiX" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"ojc" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"ojj" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/medbay) "ojk" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -18727,12 +18331,20 @@ "ojK" = ( /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"ojW" = ( -/obj/structure/bed/chair{ - dir = 8 +"ojN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) +"oka" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) "okg" = ( /obj/structure/barricade/handrail/type_b{ dir = 1 @@ -18794,39 +18406,10 @@ }, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"okG" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"okJ" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) "okT" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"olb" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) "olg" = ( /obj/structure/closet/crate/delta{ desc = "A crate with delta squad's symbol on it. Now how did that get here? The words 'HEFA was never real' are scrawled on it in black ink."; @@ -18839,10 +18422,6 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"olo" = ( -/obj/structure/machinery/disposal, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) "oly" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -18851,6 +18430,28 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) +"olS" = ( +/obj/item/ammo_box/magazine/M16, +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"olX" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = -3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) +"olY" = ( +/obj/item/clothing/suit/storage/labcoat, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "omb" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/guestpass, @@ -18869,69 +18470,30 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"omG" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "omI" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"omN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"omO" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/medbay) -"onb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 +"onI" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"onh" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"ooo" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ont" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"onB" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"onW" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = -6; + pixel_y = 4 }, -/turf/open/floor/prison/kitchen, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) -"ooq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) "oou" = ( /obj/structure/closet/emcloset, /obj/item/clothing/head/cmcap{ @@ -18943,10 +18505,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"oox" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring) "ooF" = ( /obj/structure/machinery/power/apc, /turf/open/floor/wood, @@ -18955,119 +18513,128 @@ /obj/item/storage/briefcase/inflatable, /turf/open/floor/prison, /area/fiorina/station/disco) -"oph" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"opj" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"opM" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"opN" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) -"opP" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) -"oqG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"orr" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 +"opg" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 4; + pixel_y = 24 }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"ort" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/green/west, -/area/fiorina/station/chapel) -"orB" = ( -/obj/structure/platform_decoration{ +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"orC" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"orD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - name = "Lung Transplants for Dummies"; - pixel_y = 4 +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"opR" = ( +/obj/item/storage/toolbox/antag, +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) +"opU" = ( +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/prison/platingdmg3, +/area/fiorina/station/security) +"oqs" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/tumor/aux_engi) +"oqH" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/tumor/servers) +"ora" = ( +/obj/item/device/motiondetector, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"orb" = ( +/obj/structure/closet, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"ord" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"orv" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/power_ring) "orV" = ( /obj/item/tool/weldingtool, /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) -"osv" = ( -/obj/structure/platform_decoration{ - dir = 1 +"osw" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"osz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/station/park) +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) "osN" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"osQ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/bedsheet/green, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) "osX" = ( /obj/structure/cable/heavyduty{ icon_state = "0-4" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ota" = ( -/obj/effect/landmark/survivor_spawner, +"osZ" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"otp" = ( +/obj/item/tool/warning_cone, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"otg" = ( -/turf/open/floor/prison/darkpurple2/west, -/area/fiorina/tumor/servers) -"oty" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"otz" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/fancy/vials/random, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/area/fiorina/station/disco) +"ott" = ( +/obj/item/dogtag, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) "otC" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/security/wardens) -"otK" = ( -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/tumor/servers) +"ouc" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"oum" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ouC" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "ouH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop{ @@ -19075,82 +18642,112 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) +"ouS" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"ouW" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/fiorina/station/central_ring) "ove" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/park) -"ovk" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/tumor/ice_lab) -"ovq" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"ovm" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzI) "ovr" = ( /obj/structure/girder/displaced, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"ovA" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "ovJ" = ( /turf/open/floor/wood, /area/fiorina/station/medbay) -"ovM" = ( -/obj/item/storage/bible/hefa{ - pixel_y = 3 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) +"ovO" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "owd" = ( /obj/item/storage/backpack/souto, /turf/open/floor/prison, /area/fiorina/station/chapel) -"owp" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"owS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"oww" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"oxp" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 +/obj/item/tool/pickaxe, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"owx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + icon_state = "mwo"; + pixel_y = 6 }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"owB" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"owH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oxn" = ( +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) -"oxv" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) "oxA" = ( /turf/closed/shuttle/ert{ icon_state = "stan22" }, /area/fiorina/tumor/ship) -"oxK" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"oxS" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"oxU" = ( -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/transit_hub) +"oxB" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"oxF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"oxI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "oyd" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"oyg" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) "oyk" = ( /obj/structure/platform{ dir = 1 @@ -19163,16 +18760,9 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"oyo" = ( -/obj/structure/flora/pottedplant/random, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"oyy" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) +"oyv" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/civres_blue) "oyC" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/wood, @@ -19184,28 +18774,10 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"oyO" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/bright_clean_marked/southwest, -/area/fiorina/station/power_ring) "oyS" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison, /area/fiorina/station/disco) -"oyT" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"oza" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) "ozC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -19213,20 +18785,31 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"oAf" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"oAj" = ( -/obj/structure/machinery/bot/medbot{ - name = "Dr. O" +"ozM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"oAA" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"oAL" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"oBe" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/green/east, +/area/fiorina/station/chapel) "oBj" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"oBx" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/tumor/servers) "oBC" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -19235,76 +18818,50 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) +"oBD" = ( +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"oCa" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security/wardens) "oCe" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/park) -"oCn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, +"oCg" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"oCt" = ( +/obj/structure/bed/roller, +/obj/effect/spawner/random/gun/rifle/highchance, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/area/fiorina/lz/near_lzI) +"oCE" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/flight_deck) "oDe" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"oDg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_x = 6; - pixel_y = -15 - }, -/obj/item/phone{ - pixel_y = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) "oDh" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"oDH" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"oDV" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"oEi" = ( -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/civres_blue) -"oEs" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 +"oDp" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"oDQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ppflowers_2" }, /turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) -"oEu" = ( -/obj/structure/platform_decoration, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) +"oEa" = ( +/turf/open/floor/prison/red/east, +/area/fiorina/lz/near_lzII) "oED" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, @@ -19316,6 +18873,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"oEJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "oEK" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -19336,76 +18902,55 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"oEQ" = ( -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring) -"oEX" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"oFf" = ( -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"oFk" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"oFp" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"oEV" = ( +/obj/structure/closet/firecloset, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/maintenance) +"oEW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "oFI" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"oFO" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" - }, -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"oFU" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"oFN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) -"oGg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/darkbrown2/east, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"oGy" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 +"oFY" = ( +/obj/structure/barricade/handrail, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"oGv" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ppflowers_2" }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"oGw" = ( +/obj/structure/bed/roller, +/obj/item/trash/used_stasis_bag, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"oGR" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/area/fiorina/station/telecomm/lz1_cargo) +"oGE" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) "oGU" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/recharger{ @@ -19417,9 +18962,24 @@ /obj/item/stool, /turf/open/floor/prison, /area/fiorina/station/disco) -"oHm" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/tumor/aux_engi) +"oHq" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_tram) +"oHA" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"oHS" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "oHX" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -19428,6 +18988,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) +"oIa" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "oIq" = ( /obj/structure/ice/thin/indestructible{ dir = 1; @@ -19440,36 +19004,33 @@ }, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"oIz" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green, +"oIu" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"oIS" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oJg" = ( +/obj/item/tool/weldpack, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"oIE" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"oJd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"oJl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) +/area/fiorina/station/civres_blue) +"oJj" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "oJm" = ( /obj/item/tool/weldingtool, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"oJK" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/storage/briefcase, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) +"oJs" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"oJz" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "oJL" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -19484,17 +19045,13 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"oJN" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 +"oKd" = ( +/obj/item/stool, +/obj/item/trash/cigbutt{ + pixel_y = 8 }, -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"oJY" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/green/southeast, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "oKf" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -19503,113 +19060,58 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"oKn" = ( -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) "oKq" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"oKV" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"oLF" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"oLK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) +"oKT" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/red/east, +/area/fiorina/station/security) +"oLH" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/tumor/ice_lab) "oLV" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison, /area/fiorina/station/chapel) -"oLX" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring) -"oMf" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) +"oMb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"oMl" = ( +/obj/structure/machinery/processor, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) "oMu" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/fiorina/station/park) -"oMw" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"oNu" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"oNx" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"oNC" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"oOg" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"oOh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, +"oMv" = ( +/turf/open/floor/prison/redcorner/west, /area/fiorina/station/security) -"oOi" = ( -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"oOk" = ( -/obj/structure/platform, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 +"oMC" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"oMY" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"oND" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/oob) +"oNU" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"oOn" = ( +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/research_cells) "oOp" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; @@ -19617,35 +19119,55 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"oOw" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, +"oOS" = ( +/turf/open/floor/prison/blue/northeast, /area/fiorina/station/civres_blue) -"oOU" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) "oOV" = ( /obj/structure/machinery/filtration/console{ pixel_y = 22 }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"oPn" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison/whitegreenfull/southwest, +"oOY" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) +"oPa" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"oPi" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"oPy" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"oPE" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) "oPN" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"oPR" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) +"oPO" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"oPP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "oPU" = ( /turf/open/floor/prison, /area/fiorina/station/park) @@ -19653,10 +19175,22 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"oQk" = ( -/obj/structure/inflatable/popped, +"oQw" = ( +/obj/item/gift, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"oQB" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) +"oQF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_y = 13 + }, /turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) "oQI" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; @@ -19666,65 +19200,59 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"oQS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"oQX" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"oRg" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"oRB" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/station/park) +"oRO" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) +"oRQ" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) "oRR" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/fiorina/station/park) -"oSn" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec) -"oSz" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/yellow/northwest, +"oSN" = ( +/turf/open/floor/prison/yellow, /area/fiorina/station/disco) -"oTa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_y = 8 +"oTF" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"oTK" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/obj/item/trash/cigbutt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"oTi" = ( -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"oTy" = ( -/obj/structure/prop/structure_lattice{ - health = 300 +/obj/structure/machinery/shower{ + dir = 4 }, -/obj/structure/prop/structure_lattice{ - layer = 3.1; - pixel_y = 10 +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"oTM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 }, +/obj/item/weapon/gun/energy/taser, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"oTz" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"oTP" = ( -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/security) "oTS" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -19744,6 +19272,10 @@ "oUg" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz1_cargo) +"oUo" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "oUP" = ( /obj/structure/lattice, /obj/effect/landmark/nightmare{ @@ -19751,61 +19283,42 @@ }, /turf/open/space, /area/fiorina/oob) -"oVk" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"oWw" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/fiorina/station/park) -"oWC" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/yellow/northeast, +"oVj" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) +"oWx" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "oWF" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"oWG" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_10_1" - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"oWY" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/drinks/coffee{ +"oWH" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"oXb" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"oXg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"oXk" = ( -/obj/structure/closet/secure_closet/personal, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"oXD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"oXI" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" +"oWM" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"oXr" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) "oXR" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -19823,6 +19336,11 @@ /obj/item/stock_parts/manipulator/nano, /turf/open/floor/wood, /area/fiorina/station/park) +"oXX" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "oYs" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -19832,37 +19350,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"oYG" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/chapel) -"oYW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"oZf" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"oYK" = ( +/obj/item/tool/shovel/spade, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "oZi" = ( /obj/item/clothing/under/color/orange, /turf/open/floor/prison, /area/fiorina/station/security) -"oZj" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"oZk" = ( -/turf/open/floor/prison/darkpurple2/southwest, -/area/fiorina/tumor/ice_lab) "oZx" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -19886,15 +19381,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"oZS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"oZU" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) "pab" = ( /obj/item/tool/weldpack{ pixel_x = 6 @@ -19905,57 +19391,61 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"pae" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) "pah" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"pai" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; - name = "\improper Fiorina Green Block Canteen Vendor" +"pal" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/tumor/civres) +"pap" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"paA" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"paF" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "paI" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"paO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 +"paN" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"pbj" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"pbs" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"pbx" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"pbp" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat/plate, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) -"pbv" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 +"pbC" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"pbI" = ( +/obj/item/stack/sandbags, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "pbV" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -19970,9 +19460,6 @@ }, /turf/open/space, /area/fiorina/oob) -"pbX" = ( -/turf/open/floor/prison/red, -/area/fiorina/station/security) "pca" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -19980,20 +19467,28 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"pce" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) "pcu" = ( /turf/open/floor/almayer_hull, /area/fiorina/oob) +"pcH" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "pcK" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/cans/aspen, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"pcN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "pdB" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -20001,80 +19496,95 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"pdN" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) "pdP" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"pdX" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_1" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"pen" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/prison/green, -/area/fiorina/station/transit_hub) -"peA" = ( -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 - }, +"pec" = ( +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ped" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/surface/rack, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"pee" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) +"peo" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) -"peP" = ( /obj/structure/machinery/light/double/blue{ - pixel_y = -1 + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"pgb" = ( +/obj/effect/spawner/random/gun/smg/lowchance, /turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/ice_lab) -"pgx" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 8 +/area/fiorina/station/research_cells) +"pfx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 8; + pixel_y = 1 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"pgQ" = ( -/turf/open/floor/prison/blue/southwest, +/obj/item/book/manual/security_space_law{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pfA" = ( +/obj/item/storage/fancy/candle_box, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) +"pfD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"pgp" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/aux_engi) +"pgR" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"pgS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "phe" = ( /obj/structure/girder, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"pho" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "phz" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"phC" = ( -/obj/item/newspaper, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"phQ" = ( -/obj/structure/platform{ - dir = 8 +"phF" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"pim" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/redfull, -/area/fiorina/station/lowsec) +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"phS" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"pin" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "piw" = ( /obj/structure/platform{ dir = 1 @@ -20087,59 +19597,33 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"pjf" = ( -/obj/item/ammo_magazine/rifle/m16, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"pjg" = ( -/turf/open/floor/prison/green/northwest, -/area/fiorina/tumor/servers) -"pjE" = ( -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"pjR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/phone{ - pixel_x = 7; - pixel_y = -16 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 16 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +"piK" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) "pjT" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"pjW" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"pkB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/lz/near_lzI) +"pky" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/central_ring) +"pkL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "pkM" = ( /obj/structure/largecrate/machine, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"plh" = ( -/turf/open/floor/prison/greenblue/southwest, -/area/fiorina/station/botany) +"pls" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "plu" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, @@ -20147,61 +19631,113 @@ "plK" = ( /turf/closed/wall/prison, /area/fiorina/station/security/wardens) +"plT" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) +"plU" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/tumor/aux_engi) "pma" = ( /obj/structure/foamed_metal, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"pmn" = ( -/obj/structure/surface/rack, -/obj/item/poster, -/obj/item/poster, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"pmv" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 +"pmd" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"pmg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pmt" = ( +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" }, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"pmC" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" +/obj/item/alienjar, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"pmX" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"pnh" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"pna" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"pns" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/fiorina/tumor/aux_engi) "pnx" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"pnP" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) "pnS" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"poC" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"ppq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 +"poc" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"poe" = ( +/turf/open/gm/river/pool, +/area/fiorina/station/park) +"pol" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"poo" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/central_ring) +"ppo" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"ppy" = ( +/obj/structure/machinery/gibber, +/obj/effect/decal/cleanable/blood{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) "ppG" = ( /obj/item/stack/rods/plasteel, /turf/open/floor/plating/prison, @@ -20212,38 +19748,45 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"ppN" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "ppQ" = ( /obj/item/storage/briefcase, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"ppS" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison/green/north, -/area/fiorina/station/transit_hub) -"ppX" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" +"pqe" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pqo" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/item/alienjar, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"ppZ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"pqz" = ( -/obj/item/clothing/suit/storage/labcoat, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) "pqC" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"pqI" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "pqO" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" }, /area/fiorina/tumor/ship) +"pqW" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) "pqY" = ( /obj/structure/monorail{ dir = 9; @@ -20251,14 +19794,39 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"prh" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/almayer/plating/northeast, -/area/fiorina/tumor/ship) -"prC" = ( -/obj/structure/machinery/autolathe/medilathe/full, +"prf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/baton, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"prj" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/power_ring) +"pro" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"prr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"pru" = ( +/obj/item/device/flashlight, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) +"prF" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" + }, +/obj/effect/spawner/random/gun/smg, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "prG" = ( /obj/structure/platform{ dir = 8 @@ -20268,75 +19836,22 @@ /obj/item/stack/flag/yellow, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"prL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/space_heater{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/power_ring) -"pse" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_5" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"psh" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) "psm" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/fiorina/station/security) -"pst" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"psx" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/botany) -"psL" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"psP" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) "pte" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/power_ring) -"pti" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"ptH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) +"pug" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "puw" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/prison, @@ -20344,44 +19859,41 @@ "puE" = ( /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) -"pvi" = ( -/obj/item/ammo_box/magazine/M16, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"pvz" = ( -/obj/structure/janitorialcart, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"puS" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"puW" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"puY" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) "pvD" = ( /turf/closed/wall/r_wall/prison_unmeltable{ desc = "A huge chunk of metal used to seperate rooms."; name = "metal wall" }, /area/fiorina/oob) -"pvE" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"pvF" = ( -/turf/open/floor/prison/whitegreencorner, -/area/fiorina/tumor/ice_lab) -"pwo" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"pvP" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/station/medbay) +"pvU" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"pwJ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/flight_deck) -"pwC" = ( -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison/damaged3, -/area/fiorina/station/security) +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "pwL" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -20389,10 +19901,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"pxf" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) +"pwT" = ( +/turf/open/floor/prison/red/east, +/area/fiorina/station/security) +"pxg" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "pxk" = ( /obj/structure/closet/cabinet, /obj/item/reagent_container/pill/cyanide, @@ -20400,71 +19917,83 @@ /obj/item/reagent_container/syringe, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"pxr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"pxL" = ( +"pxA" = ( /turf/open/floor/prison/darkbrown2/east, -/area/fiorina/maintenance) -"pxW" = ( -/obj/structure/platform_decoration{ - dir = 1 +/area/fiorina/tumor/aux_engi) +"pxD" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"pxM" = ( +/obj/item/storage/box/flashbangs, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"pxV" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/obj/item/tool/pickaxe, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"pxX" = ( -/obj/structure/largecrate/random/case/double, +/obj/item/storage/fancy/cigarettes/blackpack, /turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) -"pyK" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"pzh" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) -"pzE" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, +"pyx" = ( +/obj/effect/landmark/objective_landmark/far, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"pyF" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"pyR" = ( +/obj/item/toy/deck, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"pzL" = ( -/obj/item/ammo_magazine/m56d, -/obj/item/ammo_magazine/m56d, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/central_ring) -"pAl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"pAr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) +"pzf" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5_1" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"pzl" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"pzQ" = ( +/obj/structure/machinery/door/window/northleft{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security/wardens) +"pAn" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "pBb" = ( /obj/structure/curtain/open/black, /turf/open/floor/prison, /area/fiorina/maintenance) -"pBe" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/green/east, -/area/fiorina/station/chapel) +"pBm" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) "pBq" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"pBT" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" +"pBH" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) "pBV" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -20472,10 +20001,16 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"pBW" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"pBY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/medbay) "pCc" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -20499,48 +20034,90 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"pCQ" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/stool{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) "pCX" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"pDo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' +"pDb" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/power_ring) +"pDi" = ( +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"pDt" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"pDQ" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"pEt" = ( -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/maintenance) -"pFc" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) +"pDF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"pDT" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"pEr" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"pET" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"pFe" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"pFf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) "pFi" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"pFA" = ( -/obj/item/storage/toolbox/emergency, +"pFq" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"pFB" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, /turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) +/area/fiorina/station/civres_blue) +"pFE" = ( +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"pFF" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"pFJ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "pFP" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -20553,6 +20130,14 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) +"pFU" = ( +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" + }, +/obj/effect/spawner/random/pills, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) "pFW" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -20560,6 +20145,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"pGm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"pGv" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "pGy" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -20568,24 +20161,15 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/botany) +"pGz" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "pGH" = ( /turf/closed/shuttle/ert{ icon_state = "stan_white_t_up" }, /area/fiorina/tumor/ship) -"pGK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/pool, -/area/fiorina/station/park) -"pGS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) "pHh" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -20598,30 +20182,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"pHi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"pHx" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"pIs" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) +"pHv" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "pIt" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -20629,10 +20193,6 @@ /obj/item/reagent_container/food/snacks/grown/apple/poisoned, /turf/open/floor/wood, /area/fiorina/station/park) -"pIw" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) "pIA" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -20644,55 +20204,66 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) +"pIV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Residential Archives" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "pJc" = ( /turf/open/floor/wood, /area/fiorina/maintenance) "pJK" = ( /obj/structure/surface/rack, /obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"pJP" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/station/chapel) -"pKf" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/head/that{ - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"pKu" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"pKJ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - layer = 2.9; - pixel_y = 17 +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"pKs" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"pKR" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"pKO" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"pKW" = ( +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/floorscorched1, /area/fiorina/tumor/servers) +"pKX" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/station/transit_hub) "pKY" = ( /obj/structure/cable/heavyduty{ icon_state = "2-4" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"pLb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/beaker{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"pLg" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "pLj" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -20701,29 +20272,62 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"pLE" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 +"pLq" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"pLJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery{ + name = "Lung Transplants for Dummies"; + pixel_y = 4 }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"pLM" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"pLL" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) "pLQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"pLS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greencorner/west, -/area/fiorina/tumor/aux_engi) +"pMb" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"pMz" = ( +/obj/item/tool/mop, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"pNa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "So uh yeah, about that cat..."; + icon_state = "mwbloodyo"; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"pNh" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "pNj" = ( /obj/structure/bookcase, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"pNB" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "pNG" = ( /obj/structure/closet/crate/science{ density = 0; @@ -20755,10 +20359,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"pPo" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) "pPG" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -20769,38 +20369,66 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"pQc" = ( -/obj/structure/closet/basketball, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/sterile_white/southwest, +"pPO" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) +"pQa" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_3"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/aux_engi) +"pQk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"pQm" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "pQs" = ( /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"pQz" = ( -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/civres_blue) -"pRa" = ( -/obj/structure/bed{ - icon_state = "abed" +"pQM" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"pRc" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"pRp" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, +/obj/structure/machinery/photocopier, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) +/area/fiorina/tumor/ice_lab) +"pRs" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/tumor/servers) "pRx" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"pRz" = ( -/turf/open/floor/prison/red/southwest, -/area/fiorina/station/power_ring) -"pRD" = ( -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) +"pRF" = ( +/obj/item/implanter/compressed, +/obj/structure/safe, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "pRG" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -20809,26 +20437,43 @@ /obj/item/weapon/wirerod, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"pSr" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"pSs" = ( -/obj/item/ammo_box/magazine/misc/flares{ - layer = 3.1; - pixel_y = 16 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/whitegreenfull/southwest, +"pRX" = ( +/obj/item/organ/lungs, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"pSf" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) +"pSo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "pSU" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/med_data/laptop, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"pSX" = ( +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"pTg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "pTj" = ( /turf/open/floor/plating/prison, /area/fiorina/station/security) +"pTG" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "pTR" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -20841,45 +20486,39 @@ dir = 5 }, /area/fiorina/station/telecomm/lz1_cargo) -"pUf" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"pUo" = ( -/obj/structure/platform, +"pUa" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/tumor/ice_lab) +"pUW" = ( +/obj/item/stool, /obj/structure/machinery/light/double/blue{ - pixel_y = -1 + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"pUG" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"pUO" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "pVc" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"pVk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"pVq" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"pVD" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"pVv" = ( +/turf/open/floor/prison/platingdmg3, +/area/fiorina/maintenance) "pVR" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible/hefa{ @@ -20888,19 +20527,29 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/fiorina/station/chapel) -"pVY" = ( -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"pWc" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) "pWp" = ( /turf/closed/shuttle/ert{ icon_state = "stan8" }, /area/fiorina/tumor/ship) +"pWt" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/medbay) +"pWD" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/tumor/ice_lab) +"pWF" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) "pWO" = ( /obj/item/stack/rods, /obj/structure/cable/heavyduty{ @@ -20908,29 +20557,27 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"pWX" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"pXt" = ( -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) +"pXe" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) "pXH" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"pXJ" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 +"pXM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"pXP" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/turf/open/floor/prison/darkyellow2/east, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "pXY" = ( /obj/structure/bookcase{ @@ -20944,13 +20591,18 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"pYz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"pYB" = ( -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +"pYv" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "pYD" = ( /obj/structure/monorail{ dir = 5; @@ -20958,13 +20610,17 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"pYL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"pYE" = ( +/obj/structure/platform_decoration{ + dir = 4 }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) +"pYI" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) "pZm" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -20979,24 +20635,38 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"pZn" = ( -/turf/open/floor/prison/yellowcorner/west, -/area/fiorina/station/lowsec) -"pZp" = ( -/obj/item/tool/soap, -/obj/structure/machinery/shower{ - dir = 8 +"pZv" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"qaA" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"pZJ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"qaL" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"pZS" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"pZV" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"qaf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"qaD" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) "qaO" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -21008,12 +20678,14 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qaT" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +"qaY" = ( +/obj/structure/janitorialcart, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "qbd" = ( /obj/structure/flora/bush/ausbushes/ausbush{ desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; @@ -21025,18 +20697,16 @@ "qbl" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/lz/near_lzII) -"qbn" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/maintenance) "qby" = ( /obj/item/stack/sheet/metal{ amount = 5 }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) +"qbB" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "qbI" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -21044,8 +20714,19 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"qbR" = ( -/turf/open/floor/prison/kitchen, +"qbO" = ( +/obj/structure/prop/structure_lattice{ + dir = 8; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"qbU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "qbW" = ( /obj/item/tool/candle{ @@ -21061,16 +20742,27 @@ /obj/item/stack/catwalk, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"qcy" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"qck" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"qcX" = ( -/obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/area/fiorina/station/power_ring) +"qcH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/tomatosoup, +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) +"qcI" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) "qdd" = ( /obj/structure/grille, /obj/structure/lattice, @@ -21080,36 +20772,51 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, /area/fiorina/station/flight_deck) +"qdq" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/obj/item/storage/toolbox, +/obj/item/storage/toolbox, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) "qdC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/civres) -"qdE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +"qdF" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/obj/item/tool/pen, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"qdH" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "qdJ" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"qes" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_tram) -"qet" = ( +"qdM" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/tumor/aux_engi) +"qdV" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/explosive/mine/pmc, +/obj/effect/spawner/random/gun/smg, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"qey" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) "qeC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -21126,20 +20833,26 @@ /obj/effect/spawner/random/pills/highchance, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) +"qeJ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) "qeN" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"qeR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/park) +"qeQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) "qeX" = ( /obj/structure/surface/table/reinforced/prison{ flipped = 1 @@ -21161,11 +20874,14 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"qfi" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, +"qfq" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) +"qfZ" = ( +/obj/item/trash/snack_bowl, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "qgd" = ( /obj/item/explosive/grenade/incendiary/molotov{ pixel_x = 8; @@ -21183,23 +20899,6 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/civres) -"qgk" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"qgv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel/laser{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/tool/surgery/circular_saw{ - pixel_y = -2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) "qgB" = ( /obj/item/clothing/gloves/rainbow, /turf/open/floor/plating/prison, @@ -21208,90 +20907,81 @@ /obj/item/reagent_container/food/drinks/golden_cup, /turf/open/space, /area/fiorina/oob) -"qhk" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/station/park) -"qhC" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" +"qgV" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"qha" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"qhb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) -"qhD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/turf/open/floor/prison/redcorner/east, -/area/fiorina/station/power_ring) -"qhJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/redcorner/west, +"qhB" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"qhO" = ( +/obj/structure/closet, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/power_ring) -"qhN" = ( -/turf/open/floor/prison/redcorner/east, -/area/fiorina/station/security) -"qhP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/obj/item/attachable/bipod, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"qhZ" = ( -/turf/open/floor/prison/platingdmg3, -/area/fiorina/station/transit_hub) -"qif" = ( -/obj/item/inflatable, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) +"qic" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qiq" = ( /obj/item/trash/cigbutt, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"qiK" = ( +"qiJ" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"qiL" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"qju" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"qjw" = ( +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) +"qjy" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"qjz" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"qjb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"qjh" = ( -/obj/item/reagent_container/food/snacks/boiledegg, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"qjM" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b{ - dir = 4 +/obj/structure/platform_decoration{ + dir = 5 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"qjR" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, +"qkd" = ( +/obj/item/device/motiondetector, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"qjX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/greenblue/north, -/area/fiorina/station/botany) +/area/fiorina/station/disco) "qkg" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/wood, @@ -21301,24 +20991,54 @@ /obj/item/storage/pouch/tools/full, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"qkq" = ( -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/oob) -"qkt" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) +"qku" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qkN" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) +"qkX" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) "qlf" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"qlu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"qlA" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"qlP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"qlV" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "qmj" = ( /obj/structure/closet/emcloset, /obj/item/weapon/nullrod{ @@ -21329,6 +21049,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) +"qmk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "qmv" = ( /obj/structure/monorail{ dir = 10; @@ -21336,48 +21064,59 @@ }, /turf/open/space, /area/fiorina/oob) -"qnb" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"qny" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"qob" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) -"qoc" = ( -/obj/structure/surface/table/reinforced/prison, +"qmB" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"qmN" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"qna" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/fiorina/tumor/ice_lab) +"qnL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greencorner/west, +/area/fiorina/tumor/aux_engi) +"qnX" = ( +/turf/open/floor/prison/red/west, +/area/fiorina/lz/near_lzII) +"qoa" = ( +/obj/structure/inflatable, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"qof" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/station/disco) -"qov" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, +/area/fiorina/tumor/ship) +"qoj" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/maintenance) +"qoA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/space_heater, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) +/area/fiorina/tumor/ice_lab) "qoG" = ( /obj/item/toy/crayon/rainbow, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"qph" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"qoM" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) -"qpk" = ( -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"qpe" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/telecomm/lz1_tram) +"qpw" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "qpB" = ( /obj/item/stack/cable_coil/blue, /turf/open/floor/plating/prison, @@ -21387,31 +21126,14 @@ icon_state = "stan_leftengine" }, /area/fiorina/station/power_ring) -"qpN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/item/coin/gold{ - desc = "Coin op, in this place, in this year, localized entirely on this table? .... I uh, yes."; - name = "arcade token"; - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"qpX" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"qqc" = ( -/obj/structure/inflatable/popped, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) +"qpQ" = ( +/obj/structure/toilet, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"qpZ" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "qqd" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -21419,46 +21141,39 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"qqC" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"qqQ" = ( -/turf/open/floor/prison/green/northeast, -/area/fiorina/station/transit_hub) -"qqW" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"qre" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"qrn" = ( +"qqR" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"qrt" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) +"qqU" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"qrr" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/central_ring) "qrz" = ( /obj/item/explosive/plastic, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) -"qrI" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/item/reagent_container/food/snacks/sandwich{ - pixel_y = 2 +"qrG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) -"qrU" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) +"qrK" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "qsc" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, @@ -21471,48 +21186,38 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"qss" = ( -/obj/structure/flora/pottedplant/random, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"qsE" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/obj/structure/platform{ - dir = 8 +"qsO" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/telecomm/lz1_cargo) +"qta" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"qsF" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"qtf" = ( +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) +"qtt" = ( +/obj/structure/machinery/bot/medbot, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qtP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/prop/helmetgarb/raincover, /turf/open/floor/prison, /area/fiorina/station/medbay) -"qug" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"qun" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"quL" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +"quw" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"quU" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "qva" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/smg/mp5, @@ -21521,36 +21226,45 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"qvN" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" +"qvi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/clothing/accessory/holobadge/cord, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"qvz" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"qvH" = ( +/obj/structure/barricade/sandbags{ + dir = 4; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"qws" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "bee" +/obj/item/storage/pouch/tools/full, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"qvK" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"qwG" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/maintenance) -"qwH" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/lowsec) -"qwK" = ( -/turf/open/floor/prison/floorscorched2, -/area/fiorina/station/civres_blue) -"qxx" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"qxy" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"qxi" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"qxn" = ( +/obj/structure/barricade/plasteel, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"qxp" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "qxN" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -21559,38 +21273,44 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"qxP" = ( -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/tumor/aux_engi) -"qxZ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"qya" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +"qyx" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"qyH" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) +"qyJ" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/item/clothing/gloves/combat, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"qyq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/stack/sheet/metal{ + amount = 5 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"qyM" = ( -/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"qyN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"qyX" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) +"qza" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "qzb" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -21605,48 +21325,39 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison, /area/fiorina/station/security) -"qzM" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"qzZ" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 +"qzL" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"qAe" = ( -/obj/item/trash/eat, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"qAk" = ( -/obj/item/shard{ - icon_state = "medium" +/area/fiorina/lz/near_lzII) +"qAw" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"qAl" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison/sterile_white/southwest, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"qAD" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"qAQ" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/tumor/aux_engi) +"qAI" = ( +/obj/structure/barricade/metal{ + dir = 8; + health = 150; + icon_state = "metal_2" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) +"qBa" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) "qBe" = ( /turf/open/floor/prison, /area/fiorina/station/disco) -"qBf" = ( -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/central_ring) -"qBj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/briefcase, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) "qBB" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "A ticket to Souto Man's raffle!"; @@ -21663,19 +21374,9 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qBI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"qBT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) +"qBM" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/maintenance) "qCa" = ( /obj/structure/prop/resin_prop{ dir = 1; @@ -21684,81 +21385,65 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"qCk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 +"qCc" = ( +/obj/structure/monorail{ + name = "launch track" }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"qCx" = ( -/obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"qCE" = ( -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_y = 4 +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"qCT" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"qCK" = ( -/turf/open/floor/prison/damaged1/southwest, -/area/fiorina/station/lowsec) "qCW" = ( /turf/closed/shuttle/elevator{ dir = 6 }, /area/fiorina/tumor/aux_engi) -"qDn" = ( -/obj/item/stool, -/obj/structure/sign/poster{ - icon_state = "poster15"; - pixel_y = 32 +"qDj" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"qDq" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"qDG" = ( +/obj/structure/closet/firecloset, /obj/structure/machinery/light/double/blue{ dir = 8; pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) -"qDZ" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"qEk" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + pixel_y = 13 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"qEl" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"qEs" = ( -/turf/open/floor/prison/yellowcorner/east, -/area/fiorina/station/lowsec) -"qEC" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"qFf" = ( -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison/kitchen, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) +"qDH" = ( +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = -9; + pixel_y = -8 + }, +/obj/item/explosive/grenade/high_explosive/frag{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"qDV" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/prison/bluecorner, /area/fiorina/station/power_ring) +"qDY" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) "qFi" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -21787,42 +21472,14 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"qFO" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"qGe" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"qGf" = ( -/obj/item/tool/scythe, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"qGh" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"qGn" = ( -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) "qGy" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"qGB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells) -"qGO" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"qGL" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "qGP" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison, @@ -21833,12 +21490,24 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) +"qHy" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) "qHG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 25 }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) +"qHQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qHX" = ( /obj/structure/window/reinforced{ dir = 8 @@ -21846,17 +21515,53 @@ /obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/floor/prison, /area/fiorina/station/security) +"qHY" = ( +/obj/item/trash/c_tube, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qIq" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"qIT" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket" +"qIz" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/turf/open/floor/prison/blue, -/area/fiorina/station/chapel) +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qIN" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"qIX" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qIZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"qJe" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "qJf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/blue{ @@ -21884,31 +21589,15 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qJl" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" +"qJp" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) "qJr" = ( /turf/open/floor/prison, /area/fiorina/tumor/fiberbush) -"qJv" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"qJK" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) "qJL" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -21920,20 +21609,30 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qJP" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) "qJQ" = ( /obj/structure/barricade/metal/wired{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"qJR" = ( -/obj/item/disk/data, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) +"qKa" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/tumor/ice_lab) +"qKf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"qKj" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "qKq" = ( /obj/structure/machinery/computer/arcade, /obj/item/toy/syndicateballoon{ @@ -21957,89 +21656,125 @@ /obj/item/stack/rods/plasteel, /turf/open/auto_turf/sand/layer1, /area/fiorina/lz/near_lzII) -"qLa" = ( -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) -"qLi" = ( -/obj/structure/toilet{ +"qKV" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light/double/blue{ dir = 8; - pixel_y = 8 + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"qKZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"qLg" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"qLp" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/floor/prison/blue/east, +/area/fiorina/tumor/servers) "qLv" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"qLH" = ( -/obj/item/trash/used_stasis_bag, +"qMh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"qLI" = ( -/obj/item/storage/toolbox, +/area/fiorina/station/power_ring) +"qMw" = ( +/turf/open/floor/prison/greenbluecorner, +/area/fiorina/station/botany) +"qMB" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"qLN" = ( -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"qMi" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"qMC" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"qME" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"qMs" = ( -/obj/item/stack/cable_coil/green, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"qMI" = ( -/turf/open/floor/prison/damaged3, -/area/fiorina/station/security) -"qNj" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, +/area/fiorina/station/park) +"qMF" = ( /obj/structure/platform_decoration{ - dir = 10 + dir = 1 }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring) +"qMH" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"qMJ" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) -"qNu" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/clothing/accessory/storage/holster, -/obj/structure/window/reinforced{ - dir = 4 +"qNh" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"qNr" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "qNv" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"qNy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +"qNG" = ( +/obj/item/clothing/under/stowaway, +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/obj/item/reagent_container/food/snacks/cheesyfries, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"qNF" = ( -/turf/open/floor/prison/yellow/northeast, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) +"qNQ" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qNV" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"qNX" = ( +/obj/item/tool/shovel/snow, +/obj/item/device/flashlight, +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) "qOk" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -22050,9 +21785,24 @@ /obj/structure/grille, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"qOu" = ( -/turf/open/floor/prison/damaged3, -/area/fiorina/station/disco) +"qOA" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"qOI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qON" = ( /obj/item/stack/cable_coil/cyan, /turf/open/floor/plating/prison, @@ -22069,29 +21819,24 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qPa" = ( -/obj/item/device/motiondetector, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"qPb" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) "qPr" = ( /obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) -"qPL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/obj/item/storage/syringe_case/burn{ - pixel_x = -10; - pixel_y = 8 +"qPT" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"qQa" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/station/central_ring) +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" + }, +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"qPZ" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "qQb" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -22124,19 +21869,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"qQy" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring) -"qQA" = ( -/obj/item/reagent_container/food/drinks/bottle/holywater{ - desc = "A flask of the holy HEFA grenade oil."; - name = "Flask of HEFA Oil" - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +"qQB" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/up, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "qQM" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -22151,13 +21887,9 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"qRf" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) +"qRd" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/lz/near_lzI) "qRg" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." @@ -22176,13 +21908,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"qRK" = ( -/turf/open/floor/prison/darkpurple2/southeast, -/area/fiorina/station/central_ring) -"qRS" = ( -/obj/item/trash/candy, +"qRt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 7; + pixel_y = 22 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/power_ring) "qRW" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -22190,6 +21924,27 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"qRZ" = ( +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) +"qSc" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"qSk" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "qSm" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison, @@ -22200,132 +21955,178 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"qSz" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"qSA" = ( -/obj/item/trash/candy, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) "qTe" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"qTt" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"qTx" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"qTQ" = ( -/obj/structure/platform_decoration, -/obj/item/reagent_container/food/drinks/sillycup, +"qTf" = ( +/obj/item/frame/rack, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"qTW" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"qUo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 +/area/fiorina/tumor/servers) +"qTl" = ( +/obj/structure/holohoop{ + pixel_y = 25 }, -/obj/structure/barricade/handrail/type_b{ +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"qTo" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"qTY" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - layer = 3.5 + pixel_x = -10; + pixel_y = -3 }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - layer = 2.9; - pixel_y = 17 +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"qUA" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"qUw" = ( -/obj/item/device/multitool, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"qUC" = ( -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"qUN" = ( +/obj/item/stool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"qUQ" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"qUZ" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/lz/near_lzII) +"qVg" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "qVW" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/park) -"qXj" = ( -/obj/structure/machinery/shower{ +"qWd" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qWf" = ( +/obj/structure/prop/structure_lattice{ + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"qWl" = ( +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/civres_blue) +"qWU" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/chapel) +"qXv" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - pixel_y = -1 + pixel_y = 21 }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"qXF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/flight_deck) "qXM" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"qYZ" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"qZc" = ( -/obj/structure/prop/structure_lattice{ +"qYC" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzI) +"qYI" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"qZa" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"qZz" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/prop/structure_lattice{ +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/station/park) +"qZJ" = ( +/obj/structure/stairs/perspective{ dir = 4; - layer = 3.1; - pixel_y = 10 + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"qZK" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"qZO" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ral" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"raz" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"raB" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/storage/box/pillbottles, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"raQ" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) -"qZv" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"rbm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/pistol/heavy{ + pixel_y = 7 + }, +/obj/item/ammo_magazine/pistol/heavy{ + pixel_y = 12 }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/central_ring) -"raC" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"raL" = ( -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"raP" = ( -/obj/structure/barricade/wooden, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"rbp" = ( -/obj/structure/closet/crate/medical, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"rbv" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"rbI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) "rbK" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, @@ -22337,21 +22138,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"rbZ" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"rcc" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"rce" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_y = 11 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "rcg" = ( /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) @@ -22364,29 +22150,64 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"rcE" = ( -/obj/structure/inflatable/popped/door, -/obj/item/stack/barbed_wire, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"rcI" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/prison/whitegreencorner/east, +"rcw" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"rcy" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"rcz" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"rdi" = ( +"rcB" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"rcP" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) -"rdo" = ( -/turf/open/floor/prison/greenbluecorner/north, -/area/fiorina/station/botany) +"rdg" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "rdt" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"rdF" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"rdO" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "red" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -22394,32 +22215,21 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"rez" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco) -"reZ" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"reN" = ( +/obj/item/stool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"rfb" = ( +/turf/open/floor/prison/redcorner, +/area/fiorina/station/power_ring) "rfd" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/prison, /area/fiorina/tumor/ice_lab) -"rfe" = ( -/obj/structure/surface/rack, -/obj/item/tool/mop, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"rft" = ( -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) +"rfI" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "rfQ" = ( /obj/effect/spawner/random/tech_supply, /obj/structure/machinery/light/double/blue{ @@ -22428,80 +22238,113 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"rgc" = ( -/obj/item/device/binoculars/civ, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"rfR" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -11; + pixel_y = 13 }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "rgg" = ( /obj/item/tool/candle{ pixel_x = -2 }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"rhf" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/research_cells) -"rhh" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" +"rgz" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/prison/greenfull/northwest, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"rgA" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/station/central_ring) +"rgG" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"rgW" = ( +/obj/item/device/pinpointer, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"rhc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) -"rhH" = ( +"rhD" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"rie" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"riP" = ( -/obj/item/stack/tile/plasteel, +/obj/item/bedsheet/green, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"rhQ" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"riD" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/park) +"riR" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "rja" = ( /turf/closed/wall/prison, /area/fiorina/station/civres_blue) -"rjy" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"rjP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"rki" = ( -/obj/item/stack/tile/plasteel, +"rjg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +/area/fiorina/station/power_ring) +"rjn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"rjS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) "rko" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"rkp" = ( -/obj/structure/toilet{ +"rkE" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ dir = 4; - pixel_y = 8 + layer = 3.5 }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"rkv" = ( -/turf/open/floor/prison/greencorner/west, -/area/fiorina/station/chapel) -"rkF" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "rkH" = ( /obj/structure/grille, /obj/structure/lattice, @@ -22515,10 +22358,23 @@ /obj/item/stack/cable_coil/green, /turf/open/floor/wood, /area/fiorina/station/chapel) -"rlP" = ( -/obj/structure/largecrate/supply, +"rlx" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/disco) +"rlE" = ( +/obj/structure/machinery/disposal, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) +/area/fiorina/station/transit_hub) +"rlL" = ( +/obj/structure/surface/rack, +/obj/item/frame/table/almayer, +/obj/item/frame/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"rlW" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) "rmh" = ( /obj/structure/surface/rack, /obj/item/storage/bag/trash, @@ -22528,6 +22384,13 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"rmw" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "rmJ" = ( /obj/structure/platform, /obj/item/fuel_cell, @@ -22547,6 +22410,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/disco) +"rmY" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "rmZ" = ( /obj/structure/barricade/metal/wired{ dir = 4 @@ -22574,74 +22443,65 @@ /obj/structure/largecrate/supply/explosives/mortar_flare, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"rnE" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"rnM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"roi" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 +"rnB" = ( +/obj/item/ammo_casing{ + icon_state = "casing_9_1" }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"rot" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" +/turf/open/floor/prison/yellowcorner/west, +/area/fiorina/station/lowsec) +"rnX" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "birthday" }, -/turf/open/floor/prison/darkpurple2/southeast, -/area/fiorina/tumor/ice_lab) -"roE" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"roz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"roR" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"roF" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"rpa" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"rpm" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"rpp" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 }, -/obj/structure/machinery/computer/cameras{ +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"rpq" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"roH" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"rpB" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/oob) -"roQ" = ( -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"rpf" = ( -/obj/structure/grille, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"rpt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "rpL" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"rpT" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) +"rpR" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "rqh" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -22650,42 +22510,42 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rqq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"rqA" = ( -/turf/open/floor/prison/blue/west, -/area/fiorina/tumor/servers) -"rqC" = ( -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"rqG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"rqp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/obj/item/folder/red{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"rqY" = ( -/obj/structure/filingcabinet/disk, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"rrs" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/darkyellow2/northeast, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"rqS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) -"rru" = ( -/obj/effect/spawner/random/goggles/midchance, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"rrD" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 +"rrt" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/security) +"rrM" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"rrO" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"rrY" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"rsf" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) @@ -22693,63 +22553,93 @@ /obj/structure/platform_decoration, /turf/open/floor/prison, /area/fiorina/station/park) +"rsk" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 + }, +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"rsn" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"rso" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "rsp" = ( /obj/item/toy/crayon/purple, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"rsv" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"rsE" = ( +/obj/structure/sink{ + pixel_y = 23 + }, +/obj/item/prop/helmetgarb/rabbitsfoot{ + pixel_y = 22 + }, +/obj/item/reagent_container/food/drinks/bottle/kahlua{ + pixel_x = 5; + pixel_y = 25 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "rsH" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/coffee, /turf/open/floor/prison, /area/fiorina/station/medbay) -"rsQ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, +"rsN" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire/empty, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"rsR" = ( -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/power_ring) +/area/fiorina/tumor/servers) "rsU" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"rta" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) "rtc" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"rtw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - layer = 2.8 - }, -/obj/structure/barricade/handrail/type_b, +"rtx" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"rty" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/area/fiorina/tumor/servers) +"rtA" = ( +/obj/structure/machinery/power/apc{ + dir = 1 }, -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/civres_blue) -"rtP" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"rur" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"ruu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"rtI" = ( +/obj/item/frame/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "ruD" = ( /turf/open/floor/wood, /area/fiorina/oob) @@ -22764,17 +22654,23 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"rwj" = ( -/obj/structure/barricade/plasteel, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"rwm" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +"rvQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"rwg" = ( +/obj/item/stack/folding_barricade, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"rwq" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) "rwu" = ( /obj/structure/bed/chair{ dir = 1 @@ -22785,22 +22681,38 @@ pixel_x = -6; pixel_y = -7 }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"rwK" = ( -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/structure/surface/rack, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"rwQ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/greenblue/west, +/turf/open/floor/wood, +/area/fiorina/station/park) +"rwv" = ( +/turf/open/floor/prison/damaged2, +/area/fiorina/station/central_ring) +"rww" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"rwY" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) -"rxg" = ( -/turf/open/floor/prison/redcorner, -/area/fiorina/station/security) +"rxa" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) +"rxo" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) "rxr" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -22828,34 +22740,60 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"ryw" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"ryC" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "ryJ" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"rzp" = ( -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) +"ryV" = ( +/obj/item/tool/scythe, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) "rzt" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rzF" = ( -/obj/structure/holohoop{ - pixel_y = 25 - }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) +"rzu" = ( +/obj/item/book/manual/atmospipes, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"rzH" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"rzL" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"rzO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) +"rzQ" = ( +/obj/item/tool/shovel/etool, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "rAm" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"rAw" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) +"rAE" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"rAJ" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "rAK" = ( /obj/structure/barricade/metal{ dir = 4; @@ -22868,12 +22806,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"rAU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) "rAY" = ( /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0 @@ -22881,19 +22813,14 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/fiorina/station/security) +"rBb" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "rBr" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"rBs" = ( -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"rBu" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) "rBz" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -22903,12 +22830,14 @@ "rBF" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/flight_deck) -"rCe" = ( -/obj/structure/platform{ - dir = 4 +"rBR" = ( +/obj/item/inflatable, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "rCq" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/plating/prison, @@ -22919,6 +22848,20 @@ }, /turf/open/floor/wood, /area/fiorina/station/lowsec) +"rCS" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/item/tool/soap/nanotrasen, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"rCY" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "rDu" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -22930,30 +22873,65 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"rFu" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +"rDP" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) +"rDT" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"rEh" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"rEx" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) +"rEX" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"rFq" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) "rFw" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"rFF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"rGc" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"rGe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"rFJ" = ( +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/fuel_cell, +/obj/item/stack/sheet/plasteel, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"rFZ" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "rGf" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/station/disco) +"rGn" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "rGq" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) @@ -22961,27 +22939,17 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"rGK" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"rHf" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, +"rGC" = ( +/obj/structure/window/framed/prison, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"rHh" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/floorscorched1, -/area/fiorina/station/chapel) +"rGN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) "rHr" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/prison, @@ -22990,32 +22958,27 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rHV" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"rHv" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"rHA" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"rHX" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"rIr" = ( -/obj/structure/machinery/light/double/blue{ +/obj/structure/barricade/metal{ dir = 8; - pixel_x = -10; - pixel_y = -3 + health = 150; + icon_state = "metal_2" }, -/turf/open/floor/prison/whitepurple/southwest, +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"rIl" = ( +/obj/item/storage/pill_bottle/spaceacillin/skillless, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) -"rIy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) "rIE" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -23026,23 +22989,36 @@ }, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"rJc" = ( -/obj/effect/decal/cleanable/blood/drip, +"rIU" = ( +/obj/structure/machinery/space_heater, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"rIV" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) +/area/fiorina/station/park) "rJh" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"rJn" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "rJu" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rJF" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) "rJO" = ( /turf/open/floor/carpet, /area/fiorina/station/security/wardens) @@ -23054,6 +23030,11 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"rJX" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "rJZ" = ( /obj/item/stack/cable_coil/green, /turf/open/floor/plating/prison, @@ -23068,59 +23049,52 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"rKd" = ( -/obj/item/stool, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"rKm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"rKs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, +"rKx" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_tram) +"rKZ" = ( +/obj/structure/filingcabinet, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"rKy" = ( -/turf/open/floor/prison/greenblue/north, -/area/fiorina/station/botany) -"rKA" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue, -/area/fiorina/station/civres_blue) -"rKG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) +/area/fiorina/tumor/aux_engi) +"rLd" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "rLA" = ( /obj/structure/platform, /turf/open/floor/prison, /area/fiorina/station/botany) -"rLG" = ( -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"rLJ" = ( -/obj/item/clothing/gloves/boxing, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"rMo" = ( -/obj/effect/landmark/objective_landmark/far, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"rMq" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"rMw" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) +"rLK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"rMh" = ( +/obj/item/clothing/under/shorts/green, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"rMm" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + name = "\improper Fiorina Engineering Canteen Vendor" + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"rMs" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"rMC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/clothing/mask/cigarette, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_y = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "rMT" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ density = 0; @@ -23130,30 +23104,47 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"rMY" = ( -/obj/structure/machinery/light/small{ +"rMU" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"rMZ" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - pixel_x = -11; - pixel_y = 10 + pixel_x = -10; + pixel_y = -3 }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"rNc" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_1"; - name = "Fiberbush(tm) tubers" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"rNk" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"rNK" = ( -/obj/effect/spawner/random/gun/pistol/lowchance, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"rNs" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/lz/near_lzI) +"rNz" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" + }, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"rND" = ( +/obj/item/toy/bikehorn, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) -"rNV" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) "rOu" = ( /obj/structure/closet, /obj/effect/spawner/random/sentry/midchance, @@ -23167,31 +23158,25 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"rOL" = ( -/obj/structure/machinery/floodlight{ - name = "Yard Floodlight" +"rPr" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"rPd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"rPf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"rPy" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"rPD" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) "rPI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/cherry{ @@ -23219,14 +23204,21 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"rPK" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"rPN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) "rPS" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"rPW" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) "rPZ" = ( /obj/item/shard{ icon_state = "medium" @@ -23239,37 +23231,42 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rQu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/orange, -/turf/open/floor/prison/floor_plate, -/area/fiorina/maintenance) -"rQB" = ( -/turf/open/floor/prison/sterile_white/west, -/area/fiorina/station/lowsec) -"rQK" = ( -/obj/item/bananapeel{ - name = "tactical banana peel" +"rQm" = ( +/obj/vehicle/powerloader{ + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"rQN" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/station/power_ring) -"rRg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"rRo" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_tram) -"rRz" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"rQC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"rQL" = ( /obj/structure/bed/chair/comfy{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison/blue/north, +/turf/open/floor/prison/blue/southwest, /area/fiorina/station/civres_blue) +"rQM" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"rQU" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"rRI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "rSr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -23277,6 +23274,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) +"rSt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "rSN" = ( /obj/structure/platform{ dir = 8 @@ -23294,16 +23296,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"rTd" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"rTD" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) "rTH" = ( /obj/structure/sign/prop1{ layer = 2.5; @@ -23311,53 +23303,52 @@ }, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"rTV" = ( -/obj/structure/platform_decoration{ - dir = 8 +"rTY" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) +"rUo" = ( +/obj/item/bodybag, +/obj/item/bodybag{ + pixel_y = 2 }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"rUu" = ( /obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibup1" + dir = 1 }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"rTZ" = ( -/turf/open/floor/prison/whitepurplecorner/north, -/area/fiorina/station/research_cells) -"rUf" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "rUA" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"rUQ" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_y = 21 +"rUH" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 17; - pixel_y = 21 +/obj/item/weapon/gun/launcher/grenade/m81, +/obj/item/storage/pill_bottle/kelotane, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"rUX" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"rVi" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/flight_deck) -"rVp" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/maintenance) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"rUY" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"rVo" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "rVM" = ( /obj/structure/closet/crate/miningcar, /obj/structure/barricade/wooden{ @@ -23384,6 +23375,9 @@ /obj/item/stack/cable_coil/cut, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"rWC" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "rWQ" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -23396,32 +23390,41 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"rXt" = ( -/obj/structure/surface/rack, -/obj/item/device/camera, +"rXf" = ( +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -2 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"rYw" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"rYy" = ( -/obj/item/stool{ - pixel_x = -4; - pixel_y = 10 +/area/fiorina/tumor/servers) +"rXS" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/sign/poster{ - icon_state = "poster1"; - pixel_y = 32 +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"rYs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"rYK" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"rYG" = ( +/obj/item/stool, +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/flight_deck) +"rYL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"rYP" = ( +/turf/open/floor/prison/red, +/area/fiorina/station/security) "rYY" = ( /obj/structure/bed/roller, /obj/structure/machinery/filtration/console{ @@ -23431,66 +23434,77 @@ /obj/item/trash/used_stasis_bag, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"rZe" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security/wardens) +"rZc" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/lz/near_lzI) +"rZh" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "rZi" = ( /turf/closed/shuttle/ert{ icon_state = "stan_rightengine" }, /area/fiorina/station/power_ring) -"rZI" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"rZM" = ( -/obj/item/circuitboard/exosuit/peripherals/max/targeting, -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"rZN" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/station/flight_deck) -"rZO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +"rZr" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"rZt" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) "rZP" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) -"saL" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 8 +"rZX" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_5" }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 11; - pixel_y = 8 +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"sai" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"sal" = ( +/obj/structure/machinery/processor, +/obj/effect/decal/cleanable/blood{ + pixel_y = 20 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"sbf" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/gm/river/darkred_pool, -/area/fiorina/station/park) -"sbF" = ( -/turf/open/floor/prison/red/east, -/area/fiorina/station/security) -"sbL" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"saw" = ( +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"saQ" = ( +/obj/item/stack/nanopaste, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"sbm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) +"sbB" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "sbU" = ( /obj/item/trash/pistachios, /obj/structure/machinery/light/double/blue{ @@ -23500,32 +23514,33 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"sbW" = ( -/turf/open/floor/prison/greenbluecorner/east, -/area/fiorina/station/botany) -"scp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"sca" = ( +/obj/structure/bookcase/manuals/research_and_development{ + pixel_y = 10 + }, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "scG" = ( /obj/item/reagent_container/food/drinks/sillycup, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"scH" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) "scM" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz1_tram) -"scS" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 +"scN" = ( +/obj/item/ammo_magazine/handful/shotgun/incendiary{ + unacidable = 1 }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/aux_engi) +"scO" = ( +/obj/item/clothing/head/cmcap, +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) +"scW" = ( +/obj/structure/machinery/vending/security, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) +/area/fiorina/station/security) "scZ" = ( /obj/structure/platform, /obj/structure/platform{ @@ -23540,14 +23555,24 @@ /obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"sdr" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"sdE" = ( -/obj/item/storage/wallet/random, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) +"sdb" = ( +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/structure/closet/crate/freezer, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"sdq" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"sdC" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "sdK" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp{ @@ -23557,32 +23582,20 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"sdR" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"sdV" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"sdY" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"seh" = ( -/obj/item/reagent_container/glass/bucket/janibucket, +"sdO" = ( +/obj/structure/machinery/disposal, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"set" = ( -/obj/structure/bed/chair{ +/area/fiorina/tumor/civres) +"seg" = ( +/obj/structure/barricade/wooden{ dir = 4 }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"sej" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "seF" = ( @@ -23592,90 +23605,74 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) +"seU" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/flight_deck) "seW" = ( /turf/closed/shuttle/ert{ icon_state = "stan_r_w" }, /area/fiorina/tumor/ship) -"sfe" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"sfi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"sfn" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"sfs" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"sfu" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 +"sfj" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/prison/yellow/northwest, +/obj/item/stool, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) +"sfE" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) "sfI" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"sfK" = ( +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) "sfW" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"sfZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/baton, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -6; - pixel_y = 12 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"sga" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) "sgt" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/prison, /area/fiorina/station/lowsec) +"sgv" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) "sgw" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"sgJ" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/gun/flaregun/full, -/obj/item/storage/belt/gun/flaregun/full, -/obj/item/storage/belt/gun/flaregun/full, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) +"sgG" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/bed/chair/wheelchair{ + desc = "Great scott, it can move on its own!"; + dir = 4; + icon_state = "officechair_white"; + name = "Dr. O's fantastic self rolling wheelie chair"; + pixel_x = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "sha" = ( /obj/item/storage/bible/hefa{ pixel_y = 3 @@ -23684,37 +23681,47 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"shh" = ( -/obj/structure/machinery/shower{ +"shf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ dir = 1; - pixel_y = -1 + pixel_y = 21 }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"shp" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/botany) "shH" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"sia" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"sig" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"siy" = ( -/obj/item/stack/cable_coil, +"sis" = ( +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/structure/surface/rack, +/obj/item/explosive/grenade/phosphorus, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"siz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"siB" = ( -/obj/item/poster, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"siE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) +/area/fiorina/tumor/civres) +"siH" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/medbay) "siK" = ( /obj/structure/prop/resin_prop{ dir = 1; @@ -23735,95 +23742,67 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"sjJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"sjM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sjR" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ +"sjq" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"sjr" = ( +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/oob) +"sjt" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"sjI" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"sjK" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/organic/grass/astroturf, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) -"sjT" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 +"sjO" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"sjX" = ( -/obj/item/reagent_container/blood, -/turf/open/floor/prison/greenbluecorner/east, /area/fiorina/station/botany) -"sjZ" = ( +"sjY" = ( +/obj/item/storage/firstaid/toxin, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"sko" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/yellowfull, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) -"skj" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" +"skw" = ( +/obj/vehicle/powerloader{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"skG" = ( -/turf/open/floor/prison/blue/southwest, -/area/fiorina/tumor/servers) -"slc" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"slh" = ( -/obj/structure/surface/table/reinforced/prison, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"skX" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"sly" = ( +/obj/item/stack/rods, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"sli" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"sls" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"slR" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) +"slK" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/tumor/ice_lab) "slT" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -23834,9 +23813,6 @@ /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison, /area/fiorina/station/disco) -"sms" = ( -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/civres_blue) "smv" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -23844,55 +23820,77 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"smR" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"snr" = ( -/obj/structure/platform{ +"smz" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/item/stool, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"snW" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"soj" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/park) +"smF" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/station/transit_hub) +"snz" = ( +/obj/structure/closet/secure_closet/security_empty, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"snH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"snJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"sou" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/chapel) "sov" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; opacity = 0 }, /area/fiorina/lz/near_lzI) +"soD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_container/syringe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"soJ" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "soN" = ( /obj/structure/closet/cabinet, /obj/effect/spawner/random/gun/special/lowchance, -/obj/item/clothing/suit/armor/det_suit, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"spb" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"spl" = ( -/obj/item/stack/sheet/metal, -/obj/structure/barricade/handrail{ - dir = 4 +/obj/item/clothing/suit/armor/det_suit, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"soZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft" }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"spd" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "spm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -23901,36 +23899,13 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/security) -"spA" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"spH" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 +"spW" = ( +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"spR" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) "sqx" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -23947,6 +23922,20 @@ /obj/effect/spawner/random/supply_kit, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"sqW" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"srb" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"srg" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "srp" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -23956,36 +23945,34 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"srt" = ( -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +"srA" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/station/telecomm/lz1_cargo) "srI" = ( /obj/item/tool/crowbar/red, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"srQ" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) "ssb" = ( /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"ssc" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_2" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) "sso" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/bag/plants, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"ssp" = ( +/obj/effect/spawner/random/gun/pistol/lowchance, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "ssC" = ( /obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"ssG" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "ssJ" = ( /obj/structure/lattice, /obj/structure/platform/kutjevo/smooth{ @@ -23993,18 +23980,10 @@ }, /turf/open/space, /area/fiorina/oob) -"ssM" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) "ssO" = ( /obj/item/ashtray/glass, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"ssR" = ( -/obj/item/clothing/under/shorts/black, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) "sta" = ( /obj/structure/machinery/door/airlock/almayer/marine{ icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' @@ -24015,14 +23994,10 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"stw" = ( -/obj/structure/machinery/line_nexter, -/turf/open/floor/prison/red/west, -/area/fiorina/station/security) -"stC" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) +"stl" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) "stP" = ( /obj/structure/window/reinforced{ dir = 1; @@ -24030,94 +24005,98 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"stU" = ( -/obj/structure/sign/poster{ - icon_state = "poster7"; - pixel_x = -26; +"stZ" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; pixel_y = 6 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"sue" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/tracker, -/turf/open/floor/prison/yellow/northwest, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"suE" = ( +/turf/open/floor/prison/damaged3, /area/fiorina/station/disco) -"suq" = ( -/obj/item/stool, -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/lowsec) +"suT" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "suX" = ( /turf/open/floor/prison, /area/fiorina/station/central_ring) -"suY" = ( -/obj/item/device/cassette_tape/nam, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"svc" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"sve" = ( -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/structure/surface/rack, -/obj/item/explosive/grenade/phosphorus, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "svh" = ( /obj/structure/machinery/computer/telecomms/monitor, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"svN" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 +"svs" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"svB" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/obj/structure/machinery/shower{ - dir = 4 +/obj/structure/mirror{ + pixel_y = 28 }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"svP" = ( +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"svH" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"svW" = ( -/obj/structure/surface/rack, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/area/fiorina/tumor/civres) +"svL" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" + }, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "swg" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/space, /area/fiorina/oob) -"swj" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"swJ" = ( -/obj/item/tool/shovel/snow, -/obj/item/device/flashlight, -/obj/structure/surface/rack, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"swT" = ( -/obj/structure/platform{ - dir = 1 +"swE" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"swK" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/civres_blue) +"swR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"sxc" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"sxa" = ( +/obj/item/clipboard, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "sxk" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"sxE" = ( -/turf/open/floor/prison/redcorner, +"sxq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 9 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/power_ring) "sxH" = ( /obj/structure/platform{ @@ -24128,39 +24107,34 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"syj" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"syG" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"syU" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/obj/item/ammo_casing{ +"sxL" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"sya" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "casing_6" + pixel_x = -10; + pixel_y = -3 }, -/obj/effect/spawner/random/gun/smg/midchance, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"syo" = ( +/obj/structure/surface/rack, +/obj/item/tool/plantspray/weeds, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"syz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"syE" = ( +/turf/open/floor/prison/green/northwest, +/area/fiorina/tumor/servers) "syV" = ( /obj/structure/sign/safety/fridge, /turf/closed/wall/prison, /area/fiorina/station/power_ring) -"sze" = ( -/turf/open/floor/prison/greencorner/north, -/area/fiorina/tumor/civres) -"szs" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/chapel) "szD" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -24168,32 +24142,45 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) +"szF" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/chapel) "szK" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/wood, /area/fiorina/station/park) +"szN" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "szP" = ( /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"szS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/cell/super{ + pixel_y = 12 + }, +/obj/item/cell/super, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "sAp" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"sAF" = ( -/obj/item/inflatable, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"sBf" = ( +"sAN" = ( /obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 8 }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"sBe" = ( +/obj/item/trash/used_stasis_bag, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/area/fiorina/lz/near_lzI) "sBj" = ( /obj/structure/barricade/metal{ health = 85; @@ -24208,43 +24195,57 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"sBM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/station/medbay) -"sBO" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"sBJ" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) "sBW" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"sBY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison/floor_plate, +"sBX" = ( +/turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/station/park) -"sCe" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"sCb" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"sCH" = ( -/obj/item/frame/rack, -/obj/item/clothing/under/marine/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sDn" = ( -/obj/structure/inflatable/popped/door, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"sCl" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"sCn" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"sDg" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"sDp" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"sDt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_cargo) "sDL" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -24252,47 +24253,79 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"sDR" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ +"sDW" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "human2" + pixel_y = 21 }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"sDS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison/darkyellow2, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) +"sEb" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"sEn" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"sEN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "sEO" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzII) -"sFd" = ( -/turf/open/floor/prison/greenblue/northeast, -/area/fiorina/station/botany) -"sFo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, +"sFe" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"sFm" = ( +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"sFr" = ( +/area/fiorina/tumor/civres) +"sFn" = ( /obj/structure/barricade/handrail/type_b{ - dir = 8 + dir = 4; + layer = 3.5 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"sFH" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"sFu" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 +/obj/item/paper_bin{ + pixel_y = 7 }, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"sFA" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/tool/stamp, -/turf/open/floor/prison/darkredfull2, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"sFB" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "sFY" = ( /obj/structure/barricade/metal/wired{ @@ -24301,10 +24334,9 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"sGa" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) +"sGb" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/central_ring) "sGg" = ( /obj/structure/platform_decoration{ dir = 8 @@ -24312,68 +24344,14 @@ /obj/item/stack/cable_coil, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"sGk" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/newspaper, -/obj/item/bedsheet/green, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"sGx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"sGC" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) "sGI" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/wood, /area/fiorina/station/park) -"sGX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mre_pack/meal4{ - name = "\improper prison food"; - pixel_y = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"sHe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/subspace/amplifier{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/stock_parts/subspace/analyzer{ - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"sHj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"sHL" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"sHM" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell2deval" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) +"sGQ" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "sHO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -24383,40 +24361,28 @@ }, /turf/open/space, /area/fiorina/oob) -"sIg" = ( -/obj/item/device/pinpointer, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"sIh" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sIj" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/flight_deck) -"sIk" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +"sIb" = ( +/obj/item/clothing/gloves/boxing/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/central_ring) +"sIp" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"sIs" = ( -/obj/item/weapon/gun/smg/nailgun, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"sIz" = ( -/obj/structure/machinery/computer/emails{ - pixel_y = 6 +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "sIC" = ( /turf/open/floor/prison, /area/fiorina/tumor/civres) +"sIH" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "sII" = ( /obj/structure/bookcase{ icon_state = "book-5"; @@ -24428,44 +24394,46 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzI) +"sJd" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security/wardens) "sJu" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"sJy" = ( -/obj/item/ammo_casing{ - icon_state = "casing_9_1" - }, -/turf/open/floor/prison/yellowcorner/west, -/area/fiorina/station/lowsec) +"sJz" = ( +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "sJB" = ( /obj/item/stack/folding_barricade, /turf/open/floor/prison, /area/fiorina/station/security) +"sJJ" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) "sJN" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/lz/near_lzI) -"sJP" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"sKr" = ( -/obj/item/storage/secure/briefcase{ - pixel_x = 9; - pixel_y = 18 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"sKt" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 +"sKb" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/flight_deck) +"sKd" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"sKm" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/gloves/boxing/yellow, /turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "sKu" = ( @@ -24479,16 +24447,23 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"sLu" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"sLf" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"sLp" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"sLq" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) "sLx" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -24499,60 +24474,38 @@ }, /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/civres) -"sMe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 +"sLR" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"sMX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"sMY" = ( -/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"sMH" = ( +/obj/structure/machinery/vending/hydroseeds, /turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) -"sNb" = ( -/obj/item/device/radio, +"sMI" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) -"sNg" = ( -/obj/structure/closet/firecloset/full, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"sNi" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"sNj" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"sNE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"sNF" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/station/medbay) "sNN" = ( /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"sNQ" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) -"sNU" = ( -/turf/open/floor/prison/red/north, -/area/fiorina/station/security) +"sOc" = ( +/obj/item/trash/kepler, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "sOf" = ( /obj/item/clothing/mask/cigarette/weed{ icon_state = "ucigoff" @@ -24578,10 +24531,21 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"sOs" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/almayer/plating/northeast, -/area/fiorina/tumor/ship) +"sOz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"sOC" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "sOM" = ( /obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue{ @@ -24590,14 +24554,17 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"sPh" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"sPi" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/fiorina/station/telecomm/lz1_cargo) +"sON" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"sPf" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibdown1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "sPt" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -24606,12 +24573,20 @@ /obj/structure/platform/shiva, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"sPJ" = ( -/obj/structure/bed/chair{ +"sPL" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"sPN" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"sQo" = ( +/obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +/area/fiorina/station/lowsec) "sQr" = ( /obj/structure/janitorialcart, /obj/item/clothing/head/bio_hood/janitor{ @@ -24620,41 +24595,39 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"sQy" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/gun/pistol/midchance, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sQz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"sQC" = ( -/obj/structure/surface/rack, -/obj/item/restraint/handcuffs, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"sQL" = ( -/obj/structure/platform, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) +"sRg" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "sRv" = ( /obj/item/clothing/shoes/marine/upp/knife, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"sRE" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"sRJ" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"sRw" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"sRI" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"sSr" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"sSu" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"sSv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/hardpoint/support/flare_launcher{ + pixel_x = -1; + pixel_y = 5 }, -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "sSM" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -24675,6 +24648,10 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) +"sSZ" = ( +/obj/item/tool/scythe, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "sTd" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, @@ -24695,75 +24672,49 @@ /obj/structure/blocker/invisible_wall, /turf/open/space, /area/fiorina/station/medbay) -"sTw" = ( -/obj/structure/barricade/wooden{ +"sTO" = ( +/obj/vehicle/powerloader{ dir = 8 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"sTI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"sTK" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"sTU" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/area/fiorina/station/power_ring) +"sTQ" = ( +/obj/item/stack/rods, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) "sUc" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"sUe" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) +"sUj" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "sUl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"sUr" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/bible/hefa, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) "sUt" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison, /area/fiorina/station/park) -"sUV" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/fiorina/tumor/aux_engi) -"sUX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"sUY" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) +"sUu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"sUO" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "sVd" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -24780,14 +24731,10 @@ }, /turf/open/space, /area/fiorina/oob) -"sVS" = ( -/obj/item/trash/pistachios, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"sVT" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) +"sVQ" = ( +/obj/item/newspaper, +/turf/open/floor/prison/whitepurplecorner, +/area/fiorina/station/research_cells) "sVU" = ( /obj/structure/largecrate/machine, /obj/item/reagent_container/food/drinks/cans/aspen{ @@ -24795,30 +24742,25 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"sVW" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"sVZ" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"sWb" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 +"sVY" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison/green/north, +/area/fiorina/station/transit_hub) +"sWc" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"sWe" = ( -/turf/open/floor/prison/blue/east, -/area/fiorina/station/civres_blue) +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) "sWl" = ( /obj/structure/bed/roller, /turf/open/floor/prison, @@ -24834,6 +24776,14 @@ /obj/item/storage/bag/trash, /turf/open/floor/prison, /area/fiorina/station/disco) +"sWO" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"sWR" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) "sWX" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -24848,9 +24798,12 @@ "sXe" = ( /turf/open/floor/prison, /area/fiorina/station/research_cells) -"sXi" = ( -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) +"sXs" = ( +/obj/structure/prop/dam/crane{ + icon_state = "tractor_damaged" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) "sXt" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -24858,52 +24811,61 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"sXP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/hardpoint/support/flare_launcher{ - pixel_x = -1; - pixel_y = 5 +"sXO" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"sYe" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/telecomm/lz1_tram) +"sYi" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) "sYn" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"sYy" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"sYB" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/station/telecomm/lz1_tram) +"sYE" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "sYP" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"sZl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "sZt" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"sZZ" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"tad" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"tai" = ( -/obj/structure/bed/chair, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) +"sZB" = ( +/obj/structure/surface/rack, +/obj/item/device/camera, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"sZS" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/civres_blue) "taj" = ( /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) @@ -24916,64 +24878,48 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"taI" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"taL" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"taS" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/power_ring) +"taE" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/lz/near_lzI) "taY" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/space/basic, /area/fiorina/lz/near_lzI) -"tbd" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ship) -"tbj" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"tbm" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"tbG" = ( -/obj/structure/bed{ - icon_state = "psychbed" +"tbo" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) -"tco" = ( -/obj/item/paper/crumpled/bloody/csheet, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) +"tbE" = ( +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/oob) +"tbM" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"tcB" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"tcD" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"tcL" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, +/area/fiorina/station/park) +"tcf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"tcm" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/structure/platform_decoration{ - dir = 10 + dir = 1 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/chapel) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"tcK" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) +"tcV" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/lz/near_lzI) "tcW" = ( /obj/structure/monorail{ name = "launch track" @@ -24985,94 +24931,70 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"tde" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"tdq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"tdr" = ( -/obj/structure/prop/resin_prop{ - dir = 4; - icon_state = "chair"; - pixel_y = 6 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"tea" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/gun/flaregun/full, +/obj/item/storage/belt/gun/flaregun/full, +/obj/item/storage/belt/gun/flaregun/full, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "tel" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/medbay) -"teq" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"tet" = ( +"tew" = ( /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; + dir = 8; + pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) -"teu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"teI" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"teK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"tfl" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"tfb" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"tfw" = ( +/obj/item/storage/box/flashbangs, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"tfm" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "tfx" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/floor/wood, /area/fiorina/station/park) -"tfP" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/fiberbush) -"tfX" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"tge" = ( -/obj/structure/machinery/vending/coffee, +"tfC" = ( /obj/structure/machinery/light/double/blue{ dir = 8; pixel_x = -10; pixel_y = 13 }, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"tfK" = ( +/obj/item/stack/rods, /turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"tfP" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/fiberbush) +"tfV" = ( +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) +"tfX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) "tgB" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"tgK" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) "tgL" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /obj/structure/machinery/light/double/blue{ @@ -25081,75 +25003,53 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"thz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/lockbox/vials{ - pixel_x = -4; - pixel_y = 4 +"tgN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/floor_plate, +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"tgQ" = ( +/obj/item/clothing/gloves/boxing/green, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"thH" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/tumor/servers) +"thJ" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/fiorina/tumor/servers) +"tib" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) -"thI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"thV" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) +"tih" = ( +/obj/item/clothing/head/soft/yellow, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) "tii" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"til" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/stool, -/obj/item/clothing/shoes/slippers_worn, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) "tir" = ( /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/prison, /area/fiorina/station/security) -"tis" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"tiM" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) +"tix" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "tiX" = ( /obj/item/stack/sheet/mineral/plastic, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"tiY" = ( -/turf/open/floor/prison/floorscorched2, -/area/fiorina/tumor/civres) -"tiZ" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"tja" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) "tji" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -25166,21 +25066,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"tjw" = ( -/obj/structure/platform_decoration, -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"tjR" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) "tkd" = ( /obj/structure/filingcabinet, /obj/structure/filingcabinet{ @@ -25188,13 +25073,16 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"tkg" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"tkj" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) +"tkH" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"tkN" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "tkP" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -25202,32 +25090,6 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"tkZ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"tle" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"tlj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring) "tlq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp{ @@ -25244,18 +25106,6 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"tlC" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "tlF" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -25269,12 +25119,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) -"tlJ" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) "tlQ" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, @@ -25301,18 +25145,19 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"tmF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"tmI" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"tmL" = ( -/obj/item/device/flashlight/lamp/tripod, +"tmC" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) +"tmU" = ( +/obj/structure/window/framed/prison/reinforced{ + opacity = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "tmX" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/prison, @@ -25327,14 +25172,21 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"tnw" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"tnY" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) +"tnt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"tnO" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/stool{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "tob" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -25342,21 +25194,51 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"toj" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/security) +"tom" = ( +/obj/item/storage/donut_box{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"tou" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"toz" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "toE" = ( /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"toJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "tpa" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"tpf" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" +"tpd" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/maintenance) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "tpt" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/effect/spawner/random/goggles, @@ -25372,49 +25254,43 @@ /obj/structure/largecrate/random/case, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"tpz" = ( -/obj/item/paper/carbon, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"tpE" = ( -/obj/item/tank/jetpack/carbondioxide, +"tpC" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"tpL" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/lowsec) +"tpM" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/power_ring) +"tpR" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"tpX" = ( /obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"tpF" = ( -/turf/open/floor/prison/green/east, -/area/fiorina/tumor/aux_engi) "tpY" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"tpZ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"tql" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) "tqw" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"tqx" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/obj/item/storage/toolbox, -/obj/item/storage/toolbox, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) "tqP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -25430,25 +25306,24 @@ }, /turf/open/space/basic, /area/fiorina/oob) +"tqR" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/newspaper, +/obj/item/bedsheet/green, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"tqS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flash, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "trl" = ( /obj/item/trash/buritto, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"trJ" = ( -/turf/open/floor/prison/darkpurple2, -/area/fiorina/station/central_ring) -"trN" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"trR" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/storage/fancy/cigarettes/blackpack, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) "trS" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -25456,6 +25331,10 @@ /obj/structure/barricade/wooden, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"trW" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "tsc" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ indestructible = 1; @@ -25466,46 +25345,40 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"tsf" = ( +"tsv" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"ttp" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 9 +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"tsr" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"tss" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"tst" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/oob) -"tsA" = ( -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" +/obj/item/reagent_container/food/snacks/doughslice, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"ttG" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/ice_lab) -"tsH" = ( -/obj/structure/tunnel, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"tsN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"tua" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) "tuf" = ( /obj/item/clothing/shoes/jackboots{ name = "Awesome Guy" @@ -25515,15 +25388,27 @@ }, /turf/open/space, /area/fiorina/oob) +"tuh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/phone{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "tuk" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4-8" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"tuA" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/telecomm/lz1_tram) "tuX" = ( /obj/structure/platform{ dir = 1 @@ -25536,72 +25421,78 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"tvi" = ( +"tvt" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/chapel) +"tvy" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) +/obj/item/storage/box/cups, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"tvA" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "twb" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/maintenance) -"twR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"txb" = ( -/obj/structure/window/framed/prison/reinforced{ - opacity = 1 +"twM" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 32 }, -/obj/structure/machinery/door/poddoor/shutters/almayer, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"txf" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) +/area/fiorina/station/transit_hub) "txh" = ( /obj/structure/bed/sofa/vert/grey, /turf/open/floor/prison, /area/fiorina/station/security) -"txY" = ( -/obj/structure/prop/souto_land/streamer{ +"txj" = ( +/obj/structure/stairs/perspective{ dir = 1; - pixel_y = 24 + icon_state = "p_stair_full" }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"tyj" = ( -/turf/open/floor/prison/blue/east, -/area/fiorina/station/chapel) -"tyt" = ( -/obj/item/ammo_casing{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"txv" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "cartridge_2" - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"tyC" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 + pixel_x = -10; + pixel_y = 13 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"tyJ" = ( -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/structure/closet/crate/freezer, -/turf/open/floor/prison/kitchen, +/area/fiorina/station/medbay) +"txC" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) +"txG" = ( +/obj/item/disk/data, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"tyy" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"tyz" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/bed/chair{ + dir = 1; + layer = 2.8 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) "tzy" = ( /obj/item/ammo_magazine/smg/mp5, /obj/structure/extinguisher_cabinet{ @@ -25623,14 +25514,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"tzU" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"tzW" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/tumor/aux_engi) "tAb" = ( /obj/structure/surface/rack, /obj/item/storage/backpack/general_belt{ @@ -25639,47 +25522,86 @@ /obj/item/storage/backpack/general_belt, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"tAj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"tAH" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" }, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/medbay) -"tAE" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"tAR" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar{ - pixel_x = 5; - pixel_y = -5 +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) +"tAJ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/tool/crowbar, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"tBw" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/chapel) +"tBy" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"tBz" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"tBA" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "tBP" = ( /obj/structure/machinery/shower{ dir = 1 }, /turf/open/floor/interior/plastic, /area/fiorina/station/research_cells) -"tCv" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"tCH" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +"tCf" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "tCZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 }, /turf/open/floor/almayer_hull, /area/fiorina/oob) +"tDf" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"tDi" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"tDn" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"tDs" = ( +/obj/structure/machinery/computer/emails{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "tDB" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp{ @@ -25695,10 +25617,6 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"tDC" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) "tDE" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -25714,10 +25632,18 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"tEA" = ( -/obj/item/reagent_container/glass/bucket/janibucket, +"tDS" = ( /turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) +/area/fiorina/tumor/fiberbush) +"tEh" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) "tEH" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -25727,11 +25653,7 @@ pixel_x = 9; pixel_y = -10 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"tEX" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) "tEY" = ( /obj/structure/machinery/newscaster{ @@ -25739,34 +25661,32 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"tFo" = ( -/obj/structure/reagent_dispensers/watertank{ - layer = 2.6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) +"tFm" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"tFn" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "tFA" = ( /obj/structure/platform{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"tFY" = ( +"tFK" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"tFN" = ( /obj/structure/platform, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"tGU" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/pill_bottle/tramadol/skillless, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"tGh" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/power_ring) "tGY" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -25782,21 +25702,10 @@ /obj/structure/inflatable, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"tHw" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"tHF" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"tHJ" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/maintenance) +"tHK" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/tumor/ice_lab) "tHL" = ( /obj/structure/blocker/invisible_wall, /turf/closed/shuttle/ert{ @@ -25804,14 +25713,6 @@ opacity = 0 }, /area/fiorina/station/medbay) -"tIf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) "tIn" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/prison, @@ -25825,38 +25726,22 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"tIC" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; - icon_state = "fullgrass_1"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) "tIU" = ( /obj/item/tool/candle, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) -"tIW" = ( -/turf/open/floor/prison/darkyellow2/southwest, +"tIY" = ( +/obj/item/ammo_box/magazine/M16, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) -"tJw" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"tJC" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/blue_plate/east, +"tJk" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/greenblue/west, /area/fiorina/station/botany) -"tJH" = ( -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"tJQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/tarbacks, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) +"tJI" = ( +/obj/item/frame/firstaid_arm_assembly, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "tJR" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ pixel_y = 7 @@ -25864,22 +25749,12 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"tJU" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"tKk" = ( -/obj/structure/bed{ - icon_state = "abed" +"tJV" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "tKv" = ( /obj/structure/machinery/computer/secure_data{ dir = 8 @@ -25887,31 +25762,47 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"tKN" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison/green/east, +"tKw" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"tKx" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"tKK" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"tLb" = ( +/turf/open/floor/prison/green/northeast, /area/fiorina/tumor/civres) -"tLk" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) +"tLc" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) "tLC" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"tMb" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"tMs" = ( -/obj/item/weapon/gun/smg/mp5, +"tLI" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2/east, +/turf/open/floor/prison/red, +/area/fiorina/station/security) +"tMd" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"tMe" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_1"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"tMp" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "tMS" = ( /obj/effect/alien/weeds/node, @@ -25920,36 +25811,40 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"tMU" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"tNb" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"tMV" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"tNf" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/surface/table/reinforced/prison{ + dir = 4; + flipped = 1 }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"tNh" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, /turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"tNF" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +/area/fiorina/station/medbay) +"tNH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic{ + pixel_x = 3 }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/storage/belt/marine, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/paper_bin{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) "tNV" = ( /obj/item/stack/sheet/wood, /turf/open/floor/plating/prison, @@ -25966,6 +25861,13 @@ /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"tOH" = ( +/obj/item/reagent_container/food/drinks/bottle/holywater{ + desc = "A flask of the holy HEFA grenade oil."; + name = "Flask of HEFA Oil" + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) "tOM" = ( /turf/open/floor/prison, /area/fiorina/station/power_ring) @@ -25974,134 +25876,196 @@ /obj/structure/closet/radiation, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"tOS" = ( -/obj/structure/flora/grass/tallgrass/jungle, -/obj/item/reagent_container/food/snacks/grown/eggplant{ - desc = "Eggplant. Or, wait..."; - layer = 2 +"tOU" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + layer = 2.9; + pixel_y = 17 }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"tPz" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 +"tOY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"tPA" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"tPB" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"tPC" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "tPN" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"tQk" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/floor_plate, +"tPU" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "tQm" = ( /obj/item/trash/boonie, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"tQs" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "tQB" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"tQI" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/stool, +/obj/item/clothing/shoes/slippers_worn, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"tQT" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"tRn" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"tRD" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) "tRH" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/botany) -"tSl" = ( +"tSn" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"tSy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) +"tSB" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"tSD" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, /obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/yellowfull, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"tSH" = ( +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) -"tSm" = ( -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) -"tSL" = ( +"tSK" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"tSM" = ( /obj/structure/platform{ dir = 1 }, -/obj/structure/platform{ - dir = 4 +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/structure/platform_decoration{ - dir = 9 +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/lowsec) +"tSX" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 }, -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) "tSY" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"tTm" = ( +"tTo" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/stool{ - pixel_y = 12 +/obj/structure/machinery/space_heater{ + pixel_x = -1; + pixel_y = 9 }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"tTv" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"tTq" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"tTx" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "tTA" = ( /obj/structure/prop/souto_land/pole{ dir = 1 }, /turf/open/floor/wood, /area/fiorina/station/park) -"tTB" = ( -/obj/item/clothing/gloves/boxing/green, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/central_ring) -"tTI" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, +"tUj" = ( +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"tUn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "tUs" = ( /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"tUC" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/east, +"tUv" = ( +/obj/item/bedsheet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"tUA" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) -"tUD" = ( -/obj/structure/closet, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"tUG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical/green, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) +"tUO" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "tUS" = ( /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"tVI" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/sterile_white/southwest, +"tUT" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"tVi" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"tVl" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"tVU" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "tVV" = ( /obj/effect/landmark/corpsespawner/ua_riot, @@ -26115,19 +26079,6 @@ /obj/structure/inflatable/popped, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"tWh" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"tWs" = ( -/obj/item/toy/deck, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"tWz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "tWI" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -26135,13 +26086,19 @@ }, /turf/open/space, /area/fiorina/oob) -"tXt" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"tWO" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "tXD" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -26152,102 +26109,85 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"tXT" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"tYd" = ( +"tXI" = ( +/obj/item/ammo_box/magazine/misc/flares/empty, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"tYc" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"tYm" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; - pixel_y = 13 + pixel_y = -3 }, +/obj/structure/largecrate/random/case/double, /turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) -"tYg" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"tYt" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) +"tYu" = ( +/turf/open/floor/prison/greenblue/southwest, +/area/fiorina/station/botany) "tYw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/civres) -"tYD" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring) -"tYQ" = ( -/obj/structure/bed/chair, +"tYJ" = ( /turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) -"tYU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"tZe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/yellowfull, +"tYW" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"tZy" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"tZH" = ( +/obj/item/bodybag, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) -"tZk" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/aux_engi) -"tZz" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) "tZO" = ( /obj/item/frame/rack, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"tZW" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) +"uaa" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "uap" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uaL" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"uaM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/fiorina/tumor/aux_engi) +"uaA" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/civres_blue) +"uaR" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/tumor/ice_lab) "ubc" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"ubh" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"ubo" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"ubA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ +"ubj" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"ubq" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "ubN" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; @@ -26265,41 +26205,28 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"ubX" = ( -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/tumor/ice_lab) -"uci" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, +"ubZ" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "ucj" = ( /turf/closed/shuttle/ert{ - icon_state = "stan25" - }, -/area/fiorina/station/power_ring) -"ucu" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ucN" = ( -/obj/structure/tunnel, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) + icon_state = "stan25" + }, +/area/fiorina/station/power_ring) +"uct" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "ucS" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"udj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) "udt" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -26310,19 +26237,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"udB" = ( -/obj/structure/bed/roller, -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"udE" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"uen" = ( -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"udv" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "uep" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, @@ -26335,24 +26255,36 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"ueI" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/whitegreenfull/southwest, +"uew" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"ueE" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"ueP" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ueX" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"ueT" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"ufe" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/obj/item/toy/beach_ball, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) "ufE" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/fiorina/station/lowsec) +"ufG" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "ufL" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -26363,12 +26295,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"ufN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/panelscorched, -/area/fiorina/tumor/aux_engi) -"ufR" = ( -/turf/open/floor/prison/whitepurplecorner/east, +"ufO" = ( +/obj/item/weapon/twohanded/spear, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "ugg" = ( /obj/structure/closet/crate/miningcar{ @@ -26377,21 +26306,6 @@ /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"ugk" = ( -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/tumor/aux_engi) -"ugm" = ( -/obj/structure/prop/resin_prop{ - icon_state = "coolanttank" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"ugq" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibdown1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "ugv" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -26402,6 +26316,9 @@ }, /turf/open/space/basic, /area/fiorina/oob) +"ugz" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/fiorina/station/research_cells) "ugI" = ( /obj/item/fuel_cell, /turf/open/floor/prison, @@ -26415,41 +26332,55 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"ugS" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "ugT" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"uha" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) "uhm" = ( /obj/structure/window_frame/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"uhA" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"uhX" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) -"uia" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"uhx" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"uhF" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"uiD" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/whitegreencorner/north, +/area/fiorina/tumor/ice_lab) +"uhK" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"uid" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/heavy, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/medbay) +"uiO" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "uiV" = ( /obj/structure/platform{ dir = 4 @@ -26462,48 +26393,73 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"ujb" = ( -/turf/open/floor/prison/darkyellowcorners2/north, +"uiW" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"ujt" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"ujF" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"ujo" = ( -/obj/effect/landmark/xeno_spawn, +"ujJ" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"ujs" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" +"ujY" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"ujz" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"ukg" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"ukr" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"ukd" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"ukL" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar{ + pixel_x = 5; + pixel_y = -5 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"uky" = ( -/obj/structure/platform, +/obj/item/tool/crowbar, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ukX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"ulm" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"ulu" = ( /obj/structure/platform{ - dir = 8 + dir = 4 }, -/obj/structure/platform_decoration{ - dir = 10 +/obj/item/stool, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"ulT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/tumor/ice_lab) -"ulc" = ( -/obj/item/paper, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "ume" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/coffee{ @@ -26516,13 +26472,14 @@ /obj/structure/largecrate/random/mini/chest/c, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"umg" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/blue, -/area/fiorina/station/civres_blue) -"umm" = ( -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/central_ring) +"umj" = ( +/obj/item/stock_parts/micro_laser/ultra, +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/tumor/servers) +"umq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "umy" = ( /obj/structure/prop/resin_prop{ dir = 4; @@ -26531,14 +26488,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"umz" = ( -/obj/item/trash/kepler, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"umI" = ( -/obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/central_ring) +"umH" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"umJ" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "umW" = ( /obj/structure/bed/sofa/pews, /turf/open/floor/wood, @@ -26553,29 +26509,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"unp" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) "unu" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/prison, /area/fiorina/station/security) -"unz" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"unA" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/station/civres_blue) "unF" = ( /obj/item/tool/wirecutters, /obj/structure/platform/shiva{ @@ -26583,6 +26522,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"unY" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 23 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"uom" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "uou" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -26592,40 +26542,45 @@ /obj/item/storage/toolbox/syndicate, /turf/open/floor/prison, /area/fiorina/station/disco) -"uoH" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 +"uox" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"uoK" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"uoZ" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"upf" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/maintenance) -"upr" = ( /obj/structure/platform, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"upw" = ( -/turf/open/floor/prison/red/west, -/area/fiorina/lz/near_lzII) -"upK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 +/obj/structure/platform_decoration{ + dir = 6 }, -/turf/open/floor/prison/redcorner/east, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"upL" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "upM" = ( /obj/structure/disposalpipe/broken, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"upO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"upT" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "upX" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/prison, @@ -26633,24 +26588,24 @@ "upY" = ( /turf/open/floor/prison, /area/fiorina/station/lowsec) -"uqd" = ( -/obj/item/pamphlet/skill/powerloader, -/obj/structure/surface/table/reinforced/prison, +"uqC" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 + }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"uqj" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/fiorina/station/park) -"uqV" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) +"uqO" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"urb" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) "urv" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, @@ -26659,57 +26614,69 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/almayer_hull, /area/fiorina/oob) +"use" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) "usg" = ( /obj/effect/spawner/random/attachment, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"usF" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/maintenance) +"usS" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"utl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"utq" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "uts" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical/green, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"utw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 4 +"utI" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"utL" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"utW" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) "uud" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/prison, /area/fiorina/station/disco) -"uuk" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, +"uum" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"uuG" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"uuJ" = ( -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" +/area/fiorina/tumor/aux_engi) +"uuq" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/obj/structure/barricade/handrail{ - dir = 4 +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 }, /turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) +/area/fiorina/station/civres_blue) +"uuv" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "uuL" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -26721,11 +26688,13 @@ /obj/item/prop/helmetgarb/gunoil, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uvn" = ( -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"uvu" = ( -/turf/open/floor/prison/redcorner/north, +"uve" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"uvE" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "uvF" = ( /obj/structure/prop/structure_lattice{ @@ -26738,30 +26707,23 @@ }, /turf/open/floor/prison, /area/fiorina/maintenance) -"uvS" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/oob) -"uvV" = ( -/obj/structure/coatrack, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"uvZ" = ( -/obj/structure/prop/structure_lattice{ +"uvJ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/bed/chair{ dir = 4; - health = 300 + pixel_y = 4 }, -/obj/structure/prop/structure_lattice{ +/obj/structure/bed/chair{ dir = 4; - layer = 3.1; - pixel_y = 10 + pixel_y = 8 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"uwb" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/medbay) +"uwi" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "uwk" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -26780,18 +26742,32 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"uxd" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) +"uxg" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_tram) "uxv" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"uxN" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) +"uxF" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"uyb" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "uye" = ( /obj/item/weapon/gun/rifle/m16, /obj/effect/decal/cleanable/blood/drip, @@ -26802,35 +26778,17 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"uyw" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"uyC" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) +"uys" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzII) +"uyy" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "uyM" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"uyN" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) "uza" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gibup1" @@ -26838,31 +26796,73 @@ /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"uzi" = ( -/obj/effect/landmark/monkey_spawn, +"uzm" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/tumor/ice_lab) +"uzo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) +"uzw" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"uzy" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"uAA" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"uAK" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"uBc" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"uBg" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"uzw" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"uzy" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"uBk" = ( +/obj/item/card/id/silver/clearance_badge/cl{ + desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; + name = "certified powerloader operator card"; + registered_name = "John Forklift" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"uzG" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"uAg" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/fiorina/tumor/ice_lab) -"uAX" = ( -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"uBp" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) "uBq" = ( /obj/item/stack/rods, /obj/structure/disposalpipe/broken, @@ -26871,18 +26871,46 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uBV" = ( -/obj/structure/platform_decoration{ - dir = 4 +"uBz" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"uCO" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"uBH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/area/fiorina/station/lowsec) +"uBK" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/central_ring) +"uBP" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"uCb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "uCX" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -26891,60 +26919,50 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"uDX" = ( -/obj/structure/prop/structure_lattice{ - health = 300 - }, -/obj/structure/prop/structure_lattice{ - pixel_y = 10 +"uCZ" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/tumor/servers) +"uDg" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"uDM" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"uEh" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"uDU" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/guestpass{ - dir = 4; - reason = "Visitor" - }, +/obj/structure/machinery/computer/communications/simple, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "uEj" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"uEy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/tumor/servers) -"uEM" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/turf/open/floor/prison/green/north, -/area/fiorina/station/chapel) -"uEY" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"uFd" = ( +"uEH" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"uEL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck/uno, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"uEO" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"uFg" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "birthday" + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) +"uES" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "uFs" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -26954,29 +26972,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"uFC" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"uGu" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "3" +"uFM" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"uGI" = ( -/obj/structure/monorail{ - name = "launch track" +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"uGi" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) -"uGL" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) "uGT" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -26984,37 +26991,41 @@ "uGY" = ( /turf/closed/wall/prison, /area/fiorina/station/security) +"uHi" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "uHl" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"uIg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 +"uHq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"uIB" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"uId" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"uIL" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.8 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) +"uIq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "uIS" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"uJf" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) "uJg" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -27023,36 +27034,30 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"uJi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"uJp" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"uJG" = ( -/obj/item/ammo_casing{ - icon_state = "casing_10_1" +"uJJ" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/civres) +"uJO" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" }, -/turf/open/floor/prison/sterile_white/southwest, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) -"uJQ" = ( -/obj/item/stack/cable_coil, +"uKj" = ( +/obj/structure/closet/emcloset, /turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) -"uJR" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ppflowers_2" +"uKn" = ( +/obj/structure/cargo_container/grant/right{ + density = 0; + desc = "A huge industrial shipping container. You could slip just behind it."; + health = 5000; + layer = 4; + unacidable = 1 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"uKb" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "uKx" = ( /turf/closed/shuttle/ert, /area/fiorina/lz/near_lzI) @@ -27060,26 +27065,6 @@ /obj/item/clipboard, /turf/open/floor/prison, /area/fiorina/station/park) -"uKK" = ( -/obj/structure/bed/roller, -/obj/item/bedsheet/green, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"uKX" = ( -/turf/open/floor/prison/redfull, -/area/fiorina/station/security/wardens) -"uLf" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"uLj" = ( -/obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"uLq" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/telecomm/lz1_tram) "uLr" = ( /obj/vehicle/powerloader, /obj/structure/platform{ @@ -27090,28 +27075,24 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"uLy" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/central_ring) "uLJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/station_alert, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"uLM" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"uLV" = ( -/obj/item/bedsheet, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) +"uLP" = ( +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) "uMc" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, /area/fiorina/station/security) -"uMm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) "uMq" = ( /obj/structure/machinery/light/small{ dir = 4; @@ -27124,13 +27105,10 @@ "uMw" = ( /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"uMN" = ( -/obj/item/trash/semki, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"uMT" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/medbay) +"uMU" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "uMZ" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -27151,16 +27129,6 @@ /obj/effect/spawner/random/gun/rifle/highchance, /turf/open/floor/prison, /area/fiorina/station/security) -"uNp" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"uNs" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) "uNG" = ( /obj/structure/machinery/power/apc{ dir = 1 @@ -27180,31 +27148,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"uOx" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "bee" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"uOC" = ( -/turf/open/floor/prison/blue/southeast, -/area/fiorina/tumor/servers) -"uOM" = ( -/obj/structure/curtain, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "uOP" = ( /obj/item/newspaper, /turf/open/floor/prison, /area/fiorina/station/disco) -"uPi" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"uPl" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/fiorina/station/telecomm/lz1_cargo) "uPA" = ( /obj/structure/platform{ dir = 1 @@ -27217,12 +27164,16 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"uPX" = ( -/turf/open/floor/prison/green/northeast, -/area/fiorina/tumor/civres) -"uQk" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/floor_plate, +"uPR" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"uQs" = ( +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"uQx" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "uQE" = ( /obj/item/stack/tile/plasteel{ @@ -27231,13 +27182,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"uQJ" = ( -/turf/open/floor/prison/blue/east, -/area/fiorina/tumor/servers) -"uQT" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/tumor/ice_lab) +"uQX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/green/west, +/area/fiorina/station/chapel) +"uRt" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "uRv" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -27246,36 +27202,55 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"uRF" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/fiorina/station/medbay) -"uRI" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/fiorina/maintenance) -"uRT" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"uRx" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/tumor/servers) "uRZ" = ( /obj/item/trash/barcardine, /turf/open/floor/prison, /area/fiorina/station/security) +"uSb" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"uSj" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "uSA" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/transit_hub) +"uSI" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "uSQ" = ( /obj/structure/reagent_dispensers/watertank{ layer = 2.6 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) -"uSU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 +"uSR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 11; + pixel_y = 14 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) +/area/fiorina/tumor/fiberbush) +"uSW" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) "uSX" = ( /obj/item/tool/kitchen/utensil/pknife, /turf/open/floor/prison, @@ -27290,64 +27265,39 @@ /obj/vehicle/powerloader/ft, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uTb" = ( +"uTC" = ( +/obj/structure/curtain/shower, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"uTH" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, /obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"uTr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"uTs" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"uTt" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"uTw" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"uTA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"uTR" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"uVk" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"uTY" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"uUC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"uUL" = ( +/obj/structure/machinery/bot/medbot{ + name = "Dr. O" }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "uVn" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_1" }, /area/fiorina/tumor/ship) -"uVD" = ( -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"uVH" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) "uVL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate{ @@ -27356,16 +27306,13 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"uVO" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) +"uVP" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"uVR" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/telecomm/lz1_tram) "uVX" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4; @@ -27379,26 +27326,29 @@ /obj/item/trash/candy, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"uWe" = ( -/obj/structure/bed/chair{ - dir = 4 +"uWc" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/fiorina/station/lowsec) +"uWu" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 }, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"uWA" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/double/blue{ +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"uWw" = ( +/obj/structure/barricade/handrail/type_b{ dir = 4; - pixel_x = 10; - pixel_y = -3 + layer = 3.5 }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"uWO" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "uWQ" = ( /obj/structure/platform{ dir = 8 @@ -27409,14 +27359,10 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"uXn" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_3"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) +"uWS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "uXw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/skills, @@ -27431,23 +27377,6 @@ "uXD" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ship) -"uXK" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"uXP" = ( -/obj/item/reagent_container/food/drinks/bottle/pwine, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"uXY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 32 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"uYi" = ( -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) "uYo" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -27456,144 +27385,166 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) +"uYr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/dropper, +/obj/item/attachable/bipod, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "uYx" = ( /obj/structure/prop/resin_prop{ icon_state = "coolanttank" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) +"uYy" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) "uYS" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"uZt" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"uZu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) +"uYZ" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"uZv" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "uZA" = ( /turf/closed/shuttle/ert{ icon_state = "stan2" }, /area/fiorina/tumor/ship) -"uZP" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"uZE" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"uZF" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"uZL" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "uZX" = ( /obj/structure/curtain, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uZZ" = ( +"vab" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/station/park) +"vad" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"vao" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"vas" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"vbf" = ( +/obj/item/clothing/shoes/laceup, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"vbr" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/central_ring) +"vbs" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"vbw" = ( /obj/effect/decal{ icon = 'icons/obj/items/policetape.dmi'; icon_state = "engineering_h"; layer = 2.5; pixel_y = -11 }, -/obj/item/device/flashlight/flare, +/obj/item/stack/sheet/metal{ + amount = 5 + }, /turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"vao" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"vaC" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/flight_deck) "vbV" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"vce" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/tool/stamp, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) "vcf" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/oob) -"vci" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"vcq" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"vcu" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"vcv" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) "vcC" = ( /obj/item/stack/rods, /turf/open/space, /area/fiorina/oob) -"vcN" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"vdn" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_2" +"vcM" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"vds" = ( -/turf/open/floor/prison/yellow/west, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"vcQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) -"vdH" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) -"vdJ" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison/green/west, -/area/fiorina/tumor/civres) -"vdN" = ( -/obj/effect/decal/cleanable/blood/oil, +"vda" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"vdW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"vel" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, +"vde" = ( +/turf/open/floor/prison/sterile_white/west, +/area/fiorina/station/lowsec) +"vdg" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "vem" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1" }, /area/fiorina/lz/near_lzI) +"vep" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "vev" = ( /obj/structure/monorail{ name = "launch track" @@ -27604,18 +27555,25 @@ opacity = 0 }, /area/fiorina/oob) +"veD" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"veI" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "veJ" = ( /obj/item/clothing/head/helmet/marine/specialist/hefa, /turf/open/floor/prison, /area/fiorina/station/park) -"veP" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"veR" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) +"veT" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "veW" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -27623,6 +27581,10 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) +"vfh" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) "vfz" = ( /obj/item/storage/box/donkpockets, /obj/structure/surface/table/reinforced/prison, @@ -27632,52 +27594,25 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vfL" = ( -/obj/item/storage/box/flashbangs, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "vfM" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" }, /area/fiorina/station/power_ring) -"vfO" = ( -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/station/lowsec) -"vgi" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"vgw" = ( -/obj/item/storage/toolbox/antag, -/turf/open/floor/prison/green/west, -/area/fiorina/tumor/civres) -"vgC" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/lz/near_lzI) -"vgL" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +"vgR" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/storage/pill_bottle/alkysine, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"vhd" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"vgU" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"vgX" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "vhk" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -27686,16 +27621,32 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vhy" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"vhv" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"vhw" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/civres_blue) "vhB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"vhI" = ( -/turf/open/gm/river/darkred_pool, +"vhE" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/blue, +/area/fiorina/station/civres_blue) +"vhN" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/fiorina/station/park) +"vhP" = ( +/turf/open/floor/prison/greenblue/northeast, +/area/fiorina/station/botany) +"vih" = ( +/obj/item/frame/rack, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "viL" = ( /obj/item/stock_parts/micro_laser/ultra, /turf/open/floor/prison, @@ -27714,12 +27665,18 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"vja" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +"vjf" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"vjj" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "vjl" = ( /obj/structure/closet/crate/trashcart, /obj/effect/spawner/random/tool, @@ -27731,6 +27688,10 @@ icon_state = "leftengine_1" }, /area/fiorina/station/power_ring) +"vjt" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "vjG" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, @@ -27751,19 +27712,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"vki" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) "vkt" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -27772,20 +27720,18 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"vlK" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"vlN" = ( -/obj/structure/surface/rack, -/obj/item/frame/table/almayer, -/obj/item/frame/table/almayer, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"vlO" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/central_ring) +"vkP" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"vkR" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"vlD" = ( +/obj/item/stack/cable_coil/random, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "vlS" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -27801,6 +27747,12 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"vma" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"vmh" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "vmj" = ( /obj/effect/landmark/nightmare{ insert_tag = "podholder" @@ -27815,60 +27767,44 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"vmL" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"vmN" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"vmT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"vnl" = ( /obj/structure/largecrate/random/barrel/white, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"vno" = ( +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "vnr" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz1_cargo) -"vnA" = ( -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 8 - }, +"vnz" = ( /obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"vnB" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "vnG" = ( /turf/open/floor/prison, /area/fiorina/maintenance) -"vnM" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/lz/near_lzI) -"voh" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"voi" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) +"vnP" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/central_ring) "voq" = ( /obj/structure/machinery/computer/secure_data{ dir = 1 @@ -27882,10 +27818,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"voI" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) "voK" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -27895,20 +27827,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"voO" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"voP" = ( -/obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/power_ring) -"voV" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6_1" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) "vpN" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -27917,23 +27835,41 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"vql" = ( +"vqf" = ( +/obj/structure/barricade/sandbags{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"vqo" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"vqH" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"vqK" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"vqs" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"vqW" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) +/area/fiorina/station/telecomm/lz1_tram) +"vrj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "vrp" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Corner" @@ -27941,70 +27877,46 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"vrA" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 +"vrz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"vrB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp/captain, +/obj/structure/machinery/processor{ + icon_state = "blender_jug_f_red"; + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "vrF" = ( /obj/item/toy/crayon/green, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vrH" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"vrO" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"vrR" = ( -/obj/structure/platform_decoration, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"vrS" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) +"vrG" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/lz/near_lzI) +"vrN" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/chapel) "vrT" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"vsr" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"vsL" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/tumor/servers) -"vsM" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) +"vsO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) "vsT" = ( /obj/structure/cable/heavyduty{ icon_state = "1-8" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"vtc" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) "vtk" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/item/ammo_casing/shell{ @@ -28020,29 +27932,48 @@ /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/wood, /area/fiorina/station/park) -"vtr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/beaker{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"vtm" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) "vts" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) -"vtX" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"vtT" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/yellow/northwest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"vud" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c10, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"vue" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"vuj" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/disco) +"vuI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) "vuK" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/prison, @@ -28051,15 +27982,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"vuT" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/fiorina/station/power_ring) "vuV" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -28067,12 +27989,33 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"vuX" = ( -/obj/structure/platform_decoration{ - dir = 4 +"vva" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/weed{ + icon_state = "ucigoff" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"vve" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"vvh" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"vvj" = ( +/obj/structure/closet/bodybag, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/area/fiorina/station/medbay) "vvp" = ( /obj/item/tool/candle{ pixel_x = 5; @@ -28080,24 +28023,35 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"vvM" = ( -/obj/structure/prop/structure_lattice{ +"vvv" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"vvD" = ( +/obj/item/trash/candy, +/obj/structure/machinery/light/double/blue{ dir = 8; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"vvT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "So uh yeah, about that cat..."; - icon_state = "mwbloodyo"; - pixel_y = 6 +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"vvQ" = ( +/obj/structure/reagent_dispensers/watertank{ + layer = 2.6 }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"vvZ" = ( +/obj/item/toy/crayon/mime, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"vwp" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "vwt" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, @@ -28108,76 +28062,90 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"vwD" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) +"vwJ" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) "vwM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"vwN" = ( +"vwS" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"vwX" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple, +/obj/item/paper, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"vxf" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) -"vxm" = ( -/obj/structure/platform{ - dir = 4 +"vxk" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "vxs" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_2" }, /area/fiorina/tumor/ship) -"vxu" = ( +"vxy" = ( +/obj/structure/closet/secure_closet/engineering_materials, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"vxz" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"vxE" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/oob) -"vxI" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison/darkbrownfull2, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/reagent_container/glass/bottle/robot/antitoxin, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"vxT" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/obj/item/bodybag/tarp/reactive, +/obj/item/bodybag/tarp/reactive, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"vyf" = ( +/turf/open/floor/prison/green/west, +/area/fiorina/station/transit_hub) +"vyh" = ( +/obj/structure/platform, +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" + }, +/turf/open/gm/river/red_pool, /area/fiorina/station/park) +"vyj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) "vyu" = ( /obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"vyv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"vyw" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/station/telecomm/lz1_cargo) -"vyK" = ( -/obj/structure/barricade/sandbags{ - dir = 1; - icon_state = "sandbag_0" +"vyE" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzII) +"vzb" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/floor_plate, +/area/fiorina/maintenance) "vzh" = ( /obj/structure/foamed_metal, /turf/open/floor/plating/prison, @@ -28208,45 +28176,50 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"vzT" = ( -/obj/item/frame/toolbox_tiles_sensor, +"vzI" = ( /obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 7 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"vzM" = ( +/obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) +/area/fiorina/station/transit_hub) +"vzN" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "vzU" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/fiorina/tumor/ship) -"vAU" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"vAX" = ( -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"vBa" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"vBF" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"vAs" = ( +/obj/item/storage/backpack{ + pixel_x = -11; + pixel_y = 15 }, +/obj/item/trash/syndi_cakes, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"vBH" = ( -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/area/fiorina/station/lowsec) +"vAu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"vAy" = ( +/obj/item/reagent_container/blood, +/turf/open/floor/prison/greenbluecorner/east, +/area/fiorina/station/botany) "vBP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -28254,6 +28227,11 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) +"vBW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "vBX" = ( /turf/open/floor/prison, /area/fiorina/station/transit_hub) @@ -28268,58 +28246,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"vCl" = ( -/obj/item/tool/shovel/spade, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"vCm" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"vCu" = ( -/obj/item/storage/bible/hefa, -/turf/open/floor/prison/green/north, -/area/fiorina/station/chapel) -"vCL" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vCQ" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/chapel) -"vDf" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"vCB" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) +"vCT" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"vDL" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/central_ring) +/area/fiorina/station/medbay) +"vCX" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "vDO" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vDR" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) "vEi" = ( /obj/structure/platform{ dir = 4 @@ -28329,15 +28275,6 @@ "vEK" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) -"vFc" = ( -/obj/item/tool/warning_cone, -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) "vFi" = ( /obj/structure/window_frame/prison, /obj/item/shard{ @@ -28350,14 +28287,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vFr" = ( -/obj/structure/prop/structure_lattice{ - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) "vFs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -28365,23 +28294,28 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"vFA" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"vFS" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/ice_lab) -"vFV" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/southwest, +"vFu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"vFw" = ( +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/lowsec) +"vFO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette, +/obj/item/storage/fancy/cigarettes/emeraldgreen{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "vFY" = ( /obj/item/reagent_container/glass/bucket, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"vGM" = ( +"vGg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ pixel_x = 5; @@ -28391,14 +28325,55 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) -"vHo" = ( -/turf/open/floor/prison/blue/northeast, -/area/fiorina/tumor/servers) -"vHD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt, +"vGk" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"vHj" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"vHs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_7" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"vHv" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"vHz" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/botany) +"vHG" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"vHM" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/delivery, +/area/fiorina/station/power_ring) +"vHS" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) "vHU" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin{ @@ -28407,22 +28382,13 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"vHX" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 +"vHY" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"vIG" = ( -/turf/open/floor/prison/platingdmg2, -/area/fiorina/station/security) +/obj/structure/barricade/wooden, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "vJh" = ( /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/plating/prison, @@ -28433,12 +28399,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/transit_hub) -"vJo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "vJL" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -28446,6 +28406,15 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) +"vJM" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "vJN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/electrical{ @@ -28454,67 +28423,100 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"vKz" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) +"vKq" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"vKM" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "vKP" = ( /obj/structure/surface/rack, /obj/item/weapon/sword/katana, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"vLe" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/maintenance) +"vLj" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"vLn" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"vLo" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"vLq" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "vLH" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/wood, /area/fiorina/station/park) -"vLO" = ( -/obj/structure/platform_decoration{ - dir = 8 +"vMC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = 1 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"vLX" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"vMk" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"vMs" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) +/area/fiorina/lz/near_lzII) +"vMG" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "vMK" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/power_ring) -"vMN" = ( -/obj/structure/platform_decoration{ - dir = 4 +"vMR" = ( +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe{ + pixel_y = 5 }, -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/station/park) -"vMT" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"vNd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/tool/pickaxe{ + pixel_y = 10 }, -/obj/item/toy/beach_ball, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) +/obj/structure/surface/rack, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) "vNq" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/telecomm/lz1_cargo) +"vNx" = ( +/turf/open/floor/prison/blue, +/area/fiorina/station/civres_blue) +"vNF" = ( +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"vNI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/blood/empty{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/reagent_container/blood/BMinus{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"vNP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 32 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) "vNQ" = ( /obj/item/fuel_cell, /obj/structure/platform, @@ -28525,17 +28527,54 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"vOm" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/botany) +"vOa" = ( +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/fuel_cell, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"vOx" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/bowlerhat{ + pixel_y = 15 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"vOB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "vOD" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"vOO" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/green, -/area/fiorina/station/chapel) +"vOF" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/civres) +"vOK" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/central_ring) "vOP" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -28546,159 +28585,91 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) +"vOW" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "vOZ" = ( /obj/structure/largecrate/supply/supplies/metal, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"vPF" = ( +"vPt" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/toy/prize/honk{ - anchored = 1; - layer = 2.9; - pixel_x = -1; - pixel_y = 13 - }, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) "vPM" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"vPR" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan1" - }, -/area/fiorina/tumor/ship) -"vQi" = ( -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"vQC" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/park) -"vQJ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"vRk" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring) -"vRu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison/whitepurple/southeast, +/obj/structure/lattice, +/turf/open/space/basic, /area/fiorina/oob) +"vPR" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/fiorina/tumor/ship) +"vQC" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/park) +"vQH" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "vRA" = ( /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"vRF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vRH" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) "vRP" = ( /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"vSC" = ( -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 +"vSx" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/area/fiorina/lz/near_lzII) "vSW" = ( /obj/structure/closet/crate/internals, /obj/item/tool/crew_monitor, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"vTq" = ( -/obj/structure/prop/resin_prop, -/turf/open/floor/prison/whitegreenfull/southwest, +"vTr" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "vTv" = ( /turf/closed/shuttle/elevator{ dir = 5 }, /area/fiorina/station/civres_blue) -"vTA" = ( -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/flight_deck) -"vTI" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"vTL" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"vTM" = ( -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"vTR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) "vUf" = ( /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"vUl" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) "vUv" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced, /obj/item/reagent_container/food/snacks/donut/normal, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"vUF" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison/green/southwest, -/area/fiorina/tumor/civres) -"vUP" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"vUZ" = ( -/obj/structure/platform{ - dir = 1 +"vUI" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) "vVi" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -28722,62 +28693,71 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"vWj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"vWL" = ( -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"vXk" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) "vXl" = ( /obj/structure/surface/rack, /obj/item/folder/black, /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/medbay) -"vXy" = ( -/turf/open/floor/prison/green/southeast, -/area/fiorina/tumor/civres) +"vXM" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "vXT" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"vYw" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) +"vXV" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"vYd" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"vYE" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/central_ring) +"vYL" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"vYT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/park) "vYX" = ( /obj/item/roller, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"vYY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - layer = 3.5; - pixel_y = 6 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/transit_hub) -"vZe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring) -"vZs" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) +"vZq" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"vZy" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "vZD" = ( /obj/item/storage/box/donkpockets, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"vZF" = ( +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"vZJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "vZL" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, @@ -28791,6 +28771,12 @@ "vZX" = ( /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) +"wak" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "wam" = ( /obj/item/stack/medical/bruise_pack, /turf/open/floor/prison, @@ -28807,22 +28793,31 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"waQ" = ( -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/power_ring) +"waP" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) "waU" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"wbp" = ( -/obj/item/inflatable, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"wbr" = ( +"wbt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/regular, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"wbz" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "wbB" = ( /obj/structure/computerframe, /obj/structure/machinery/light/double/blue{ @@ -28839,6 +28834,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) +"wbF" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "wbI" = ( /turf/open/floor/wood, /area/fiorina/station/park) @@ -28859,78 +28860,61 @@ /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"wcB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/pistol/midchance, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"wcC" = ( -/obj/structure/closet/basketball, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) "wcP" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"wcS" = ( +/obj/item/tool/surgery/cautery, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "wcW" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"wdl" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, +"wdn" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) -"wdo" = ( -/obj/structure/closet, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) -"wdL" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"wdr" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"wdU" = ( -/obj/structure/foamed_metal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"wdV" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) "wef" = ( /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"wet" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"weB" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"weE" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/oob) -"weM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"weV" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"wei" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"wey" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"weT" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 }, -/obj/structure/mirror{ - pixel_x = -29 +/obj/structure/machinery/m56d_hmg/mg_turret/dropship{ + dir = 4 }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/central_ring) +"weU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "weX" = ( /obj/structure/barricade/metal{ health = 250; @@ -28938,29 +28922,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"wfc" = ( -/obj/structure/machinery/disposal, -/obj/item/tool/kitchen/rollingpin{ - pixel_y = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"wfo" = ( -/obj/structure/coatrack, -/obj/item/clothing/head/bowlerhat{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) "wfu" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -28968,77 +28929,106 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"wfw" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/damaged3, -/area/fiorina/station/central_ring) -"wfV" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) "wfY" = ( /obj/item/device/flashlight/flare/on, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"wgc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"wge" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "wgi" = ( /obj/effect/landmark/nightmare{ insert_tag = "scavshipholder" }, /turf/open/space, /area/fiorina/oob) -"wgq" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"wgs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/beret/eng{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/book/manual/engineering_guide{ - pixel_x = -4 +"wgn" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"wgO" = ( +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"wgt" = ( +/obj/item/device/flashlight/flare/on, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"wgQ" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +/area/fiorina/tumor/aux_engi) "whf" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/fiorina/station/civres_blue) -"whl" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"whr" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) "whu" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/civres) -"wis" = ( -/obj/structure/platform_decoration{ - dir = 8 +"whx" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell1decal" }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"whE" = ( +/obj/item/reagent_container/food/drinks/cans/souto/cherry, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"wiR" = ( -/obj/structure/surface/rack, -/obj/item/key, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/central_ring) +"whT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"wig" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"wiv" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/fiorina/tumor/servers) +"wiG" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"wiP" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"wjC" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/tumor/aux_engi) +"wiV" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"wjk" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/oob) +"wjt" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"wjz" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "wjH" = ( /obj/item/stack/barbed_wire, /turf/open/floor/plating/prison, @@ -29059,29 +29049,25 @@ /obj/structure/machinery/status_display, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"wkg" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"wkw" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "wky" = ( /obj/structure/tunnel/maint_tunnel, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"wkA" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/power_ring) -"wkL" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/flight_deck) -"wln" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/ice_lab) -"wlv" = ( -/obj/item/trash/barcardine, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) +"wlh" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"wll" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "wly" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/lz/near_lzII) @@ -29097,18 +29083,23 @@ "wmd" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/fiberbush) -"wmm" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/blue, -/area/fiorina/station/power_ring) -"wmx" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/red/west, +"wmz" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"wmR" = ( +/turf/open/floor/prison/red/north, /area/fiorina/station/security) -"wnh" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/civres_blue) +"wmZ" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"wna" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) "wnq" = ( /obj/item/tool/match, /turf/open/floor/plating/plating_catwalk/prison, @@ -29119,105 +29110,110 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"wnD" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"wnM" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical{ - pixel_y = -3 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/maintenance) -"woh" = ( -/obj/structure/platform{ +"wnT" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"wnY" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"wol" = ( -/obj/structure/platform{ - dir = 4 - }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"woo" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wot" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/station/park) +"woV" = ( /obj/item/shard{ - icon_state = "medium"; - name = "ice shard" + icon_state = "large" }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"wou" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"wow" = ( -/obj/structure/closet/crate/medical, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"wpd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) -"woB" = ( -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/fuel_cell, -/obj/item/stack/sheet/plasteel, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"wps" = ( -/obj/structure/bed/sofa/south/grey/left, +"wpA" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"wpy" = ( -/turf/open/floor/prison/greencorner/north, -/area/fiorina/station/chapel) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "wpD" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"wpO" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - dir = 1 +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"wpO" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"wpV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"wpX" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"wqg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"wqC" = ( +/obj/item/stool, +/obj/item/reagent_container/food/drinks/bottle/bluecuracao{ + pixel_x = 15; + pixel_y = 25 }, -/turf/open/floor/plating/prison, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) -"wpW" = ( -/obj/structure/sign/kiddieplaque{ - desc = "It is a warning sign that describes the process by which fiberbush expands in humid environments, behaving similar to kudzu vines."; - name = "Fiberbush(tm) safety plaque"; - pixel_y = 29 +"wra" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"wqs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/poster, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"wqz" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"wrw" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison/whitepurple/northwest, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) -"wqY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"wrx" = ( +/turf/open/floor/prison/red/southwest, +/area/fiorina/station/power_ring) +"wrK" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, +/obj/structure/bed/roller, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) +/area/fiorina/station/medbay) "wrR" = ( /turf/closed/wall/prison, /area/fiorina/station/botany) @@ -29227,22 +29223,38 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"wsw" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"wsz" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"wsM" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 +"wrU" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"wrZ" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"wsd" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wsN" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"wsO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/telecomm/lz1_tram) +"wtg" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "wtm" = ( /obj/structure/monorail{ name = "launch track" @@ -29254,23 +29266,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"wty" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 4 +"wtu" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"wua" = ( +/obj/structure/platform, /obj/structure/platform_decoration{ - dir = 1 + dir = 10 }, -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/power_ring) -"wun" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"wtF" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/chapel) +"wub" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "wuz" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -29285,6 +29297,10 @@ /obj/item/weapon/gun/smg/nailgun, /turf/open/floor/plating/prison, /area/fiorina/station/park) +"wuB" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "wuC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/double/blue{ @@ -29300,26 +29316,39 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"wuN" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"wuW" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"wvH" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +"wuX" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -8 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"wvw" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/morgue{ + dir = 8; + layer = 2.6 + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) "wvL" = ( /obj/item/tool/wrench, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"wvU" = ( -/obj/structure/largecrate/supply/explosives/mines, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"wvR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/janitor, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) "wvY" = ( /obj/item/reagent_container/food/snacks/eat_bar, /obj/structure/machinery/light/double/blue{ @@ -29327,24 +29356,32 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"wwa" = ( -/turf/open/floor/prison/floorscorched1, +"wwh" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"wwx" = ( +/obj/item/stack/sandbags_empty, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) -"wwo" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; - name = "\improper Fiorina Engineering Canteen Vendor" +"wwV" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"wxl" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/maintenance) -"wxW" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/prison/darkredfull2, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"wxd" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"wxe" = ( +/obj/structure/grille, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) +"wxq" = ( +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "wxX" = ( /obj/structure/machinery/computer/cameras{ dir = 8; @@ -29353,10 +29390,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"wxY" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) "wxZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -29368,46 +29401,14 @@ /obj/structure/machinery/computer/cameras, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"wyd" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) "wyl" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"wyK" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/oob) -"wyQ" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) "wyT" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"wyU" = ( -/obj/effect/decal/cleanable/blood/gibs/robot/up, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) "wzd" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -29415,16 +29416,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"wzg" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) +"wzu" = ( +/obj/item/storage/belt/shotgun/full/quackers, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) "wzE" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/lowsec) -"wzH" = ( -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/chapel) "wzK" = ( /obj/structure/platform{ dir = 8 @@ -29432,6 +29431,14 @@ /obj/item/prop/almayer/flight_recorder, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"wzR" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"wzS" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) "wzT" = ( /obj/structure/platform{ dir = 8 @@ -29451,37 +29458,31 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"wAt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"wAQ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +"wAv" = ( +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"wAw" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"wAB" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6" }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"wBx" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 6; - pixel_y = 7 +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"wAS" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"wBB" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"wBE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/oob) "wBK" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, @@ -29490,112 +29491,86 @@ /obj/structure/largecrate/supply/supplies, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"wCI" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/fiorina/station/park) -"wCJ" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"wDe" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"wDw" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +"wCB" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/sterile_white/southwest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"wDk" = ( +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) +"wDl" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"wDt" = ( +/obj/item/weapon/pole/wooden_cane, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "wDz" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/fiorina/station/security) -"wDJ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"wDK" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/shower, -/obj/structure/window{ - dir = 8 +"wDC" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"wED" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"wDD" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/civres_blue) -"wEE" = ( -/obj/item/tool/crowbar/red, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"wEX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"wFd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"wFp" = ( -/obj/item/stack/cable_coil/pink, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"wFB" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"wFa" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, +/obj/structure/barricade/wooden, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"wFM" = ( -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"wFS" = ( -/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/civres_blue) +"wFq" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"wFE" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"wFL" = ( +/turf/open/floor/prison/floorscorched2, +/area/fiorina/tumor/civres) +"wFO" = ( +/obj/item/restraint/adjustable/cable/pink, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) +"wFP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "wFU" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"wGb" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) "wGf" = ( /obj/item/stack/rods, /turf/open/floor/wood, /area/fiorina/station/park) -"wGA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +"wGz" = ( +/obj/structure/inflatable/popped/door, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "wGM" = ( /obj/item/device/taperecorder{ pixel_x = 1; @@ -29604,15 +29579,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/chapel) -"wGX" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) "wHl" = ( /obj/structure/platform_decoration{ dir = 8 @@ -29623,23 +29589,19 @@ /obj/effect/landmark/static_comms/net_two, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"wHr" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison/red/west, -/area/fiorina/station/security) "wHw" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"wHC" = ( -/obj/structure/platform_decoration{ - dir = 4 +"wIc" = ( +/obj/item/trash/chips, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) "wId" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, @@ -29654,14 +29616,10 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"wIx" = ( +"wIz" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison/red/east, -/area/fiorina/station/security) -"wIy" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) "wIG" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -29688,14 +29646,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"wIL" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"wJd" = ( -/obj/structure/barricade/handrail, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) +"wJe" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"wJs" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "wJw" = ( /obj/structure/closet/crate/trashcart, /obj/item/weapon/gun/rifle/m16, @@ -29705,68 +29667,37 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"wJC" = ( +/obj/item/frame/toolbox_tiles, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"wJV" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) "wKb" = ( /obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/wood, /area/fiorina/station/park) -"wKl" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) +"wKd" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/fiorina/station/research_cells) "wKm" = ( /obj/item/stack/sheet/cardboard, /turf/open/floor/prison, /area/fiorina/station/disco) -"wKx" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) "wKE" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"wKR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) "wLA" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security) -"wLS" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/darkpurple2/west, -/area/fiorina/tumor/servers) -"wLT" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"wMe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/blood/empty{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/reagent_container/blood/BMinus{ - pixel_x = 7; - pixel_y = 4 - }, +"wLX" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/tumor/aux_engi) "wMh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer3/laptop/secure_data, @@ -29778,80 +29709,102 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"wMv" = ( -/obj/item/shard{ - icon_state = "medium" +"wMk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) +/area/fiorina/station/civres_blue) +"wMw" = ( +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) "wMz" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"wMA" = ( -/obj/item/disk/botany, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) +"wMI" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) "wNi" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"wNr" = ( -/obj/structure/barricade/wooden{ +"wNo" = ( +/obj/structure/machinery/power/apc{ dir = 8 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"wNB" = ( -/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"wNE" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_2"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"wNJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"wNS" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/disco) +"wNV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) +"wOg" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"wOs" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wOF" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"wND" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/civres_blue) -"wNG" = ( -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"wNM" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"wNX" = ( -/turf/open/floor/prison/green/west, -/area/fiorina/station/chapel) -"wOG" = ( -/obj/structure/largecrate/random, /turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) +/area/fiorina/station/flight_deck) +"wOR" = ( +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) +"wPf" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "wPz" = ( /turf/closed/shuttle/elevator, /area/fiorina/station/telecomm/lz1_cargo) -"wQb" = ( -/turf/open/floor/prison/blue/north, -/area/fiorina/station/civres_blue) -"wQg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 1 +"wPN" = ( +/obj/structure/platform, +/turf/open/gm/river/pool, +/area/fiorina/station/park) +"wPV" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"wQD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 +/obj/item/tool/crowbar/red, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) +"wQL" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "wQN" = ( /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/plating/prison, @@ -29875,10 +29828,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"wQY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) "wRg" = ( /obj/item/stack/sheet/metal, /obj/structure/cable/heavyduty{ @@ -29886,10 +29835,25 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"wRz" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/central_ring) +"wRh" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wRC" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"wRO" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "wRP" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -29897,36 +29861,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"wSb" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"wSc" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - pixel_y = 19 - }, -/obj/item/stack/sheet/wood, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "Somehow, it still functions."; - layer = 3.1; - name = "discarded camera console"; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) "wSm" = ( /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"wSo" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) +"wSn" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "wSt" = ( /obj/structure/monorail{ dir = 9; @@ -29934,56 +29877,60 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"wSC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) "wSD" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"wSN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"wSU" = ( +"wTp" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"wSX" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"wTC" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/power_ring) +"wTw" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "wTW" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"wUs" = ( -/turf/open/floor/prison/floorscorched1, -/area/fiorina/station/civres_blue) -"wUz" = ( -/obj/item/frame/toolbox_tiles, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"wVc" = ( +"wUv" = ( +/turf/open/floor/prison/platingdmg3, +/area/fiorina/station/security) +"wUw" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 11; - pixel_y = 14 +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/obj/item/tool/lighter, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"wUC" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"wVJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = 2; + pixel_y = 3 }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) +"wVO" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/civres_blue) "wWs" = ( /turf/open/floor/greengrid, /area/fiorina/station/security) +"wWT" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "wWW" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -29993,12 +29940,10 @@ }, /turf/open/floor/almayer_hull, /area/fiorina/station/medbay) -"wXe" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) +"wXh" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "wXy" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light/double/blue{ @@ -30008,70 +29953,87 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"wXN" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"wXQ" = ( -/obj/structure/surface/table/reinforced/prison, +"wXG" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"wYj" = ( +/obj/item/tool/extinguisher/mini, /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"wYJ" = ( +/obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"wYq" = ( +"wZb" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison/floor_plate, +/obj/item/folder/black_random, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"wYP" = ( -/obj/structure/platform, -/obj/item/clothing/gloves/botanic_leather, +"wZd" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"wZf" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"wZm" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"wZo" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"wYT" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring) -"wZt" = ( -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/station/research_cells) +/area/fiorina/station/park) "wZv" = ( /obj/item/stack/sheet/metal, /turf/open/floor/wood, /area/fiorina/station/park) +"wZB" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "wZH" = ( /obj/structure/filingcabinet, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"wZJ" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/storage/briefcase, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"wZK" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) "wZN" = ( /obj/item/reagent_container/food/drinks/bottle/melonliquor, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"xak" = ( -/obj/structure/closet/emcloset, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"xat" = ( -/obj/item/stool, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"xaO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/floor_plate, +"wZR" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"xba" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitegreencorner/east, /area/fiorina/station/medbay) -"xbc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/central_ring) "xbm" = ( /obj/structure/machinery/line_nexter{ id = "line2"; @@ -30080,60 +30042,47 @@ /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison, /area/fiorina/station/disco) -"xbo" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"xbp" = ( -/obj/item/card/id/silver/clearance_badge/cl{ - desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; - name = "certified powerloader operator card"; - registered_name = "John Forklift" - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"xbr" = ( -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/prison/green/north, -/area/fiorina/station/transit_hub) -"xbE" = ( +"xbx" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"xbM" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/obj/item/storage/pill_bottle/imidazoline, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"xby" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "xck" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"xcz" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"xcL" = ( +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"xcN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/prize/honk{ + anchored = 1; + layer = 2.9; + pixel_x = -1; + pixel_y = 13 }, -/obj/effect/landmark/objective_landmark/medium, +/obj/structure/barricade/handrail/type_b, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xcS" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +/area/fiorina/station/flight_deck) +"xcW" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"xcZ" = ( +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/green/southeast, +/area/fiorina/station/chapel) "xdb" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/body, @@ -30148,34 +30097,47 @@ }, /turf/open/space/basic, /area/fiorina/oob) +"xdw" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/redfull, +/area/fiorina/station/lowsec) "xdE" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"xdL" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/floor_plate, +"xdP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/servers) -"xdT" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xdZ" = ( +"xdQ" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"xem" = ( +/turf/open/floor/prison/greenbluecorner/east, +/area/fiorina/station/botany) +"xep" = ( +/obj/item/stool, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"xes" = ( +/obj/structure/bed/sofa/south/grey/left, /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"xei" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"xel" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/area/fiorina/station/security/wardens) "xew" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" @@ -30184,9 +30146,10 @@ "xeO" = ( /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"xeX" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/tumor/servers) +"xeS" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) "xfb" = ( /obj/item/inflatable, /obj/item/inflatable, @@ -30196,59 +30159,26 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"xfh" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"xgb" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"xgn" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"xgx" = ( -/obj/structure/machinery/defenses/tesla_coil{ - faction_group = list("USCM") - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"xgC" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) +"xgo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "xgF" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xgH" = ( -/obj/item/toy/handcard/uno_reverse_blue, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"xgU" = ( -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison/floorscorched1, -/area/fiorina/tumor/servers) -"xhL" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopleft" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"xhM" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison/sterile_white, +"xhO" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/structure/machinery/light/double/blue, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) -"xia" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"xig" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/tumor/servers) "xiF" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/double/blue{ @@ -30257,13 +30187,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) -"xiL" = ( -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"xiO" = ( -/obj/structure/machinery/vending/cigarette/free, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) "xja" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -30274,49 +30197,49 @@ /obj/structure/computerframe, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"xjM" = ( -/turf/open/floor/prison/redcorner/west, +"xju" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) +"xjI" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xjP" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"xke" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"xkm" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"xkq" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 +"xkt" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/area/fiorina/station/central_ring) "xkv" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz1_tram) -"xlb" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"xlk" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"xkL" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_tram) +"xlh" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "xlp" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/wood, /area/fiorina/station/research_cells) -"xlx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/tomatosoup, -/turf/open/floor/prison/blue, -/area/fiorina/station/power_ring) +"xlF" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) "xlZ" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/pillbottles, @@ -30332,14 +30255,6 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"xmC" = ( -/obj/item/device/flashlight/flare/on, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"xmV" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/telecomm/lz1_tram) "xna" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, @@ -30348,14 +30263,14 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"xnt" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +"xnA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "xnU" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/prison, @@ -30364,9 +30279,12 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xow" = ( -/turf/open/floor/prison/green/east, -/area/fiorina/station/chapel) +"xon" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) "xoK" = ( /obj/structure/closet, /obj/item/restraint/handcuffs, @@ -30374,17 +30292,6 @@ /obj/item/weapon/chainofcommand, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"xoR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"xpj" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_4" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) "xpw" = ( /obj/structure/machinery/power/apc{ dir = 8 @@ -30394,26 +30301,27 @@ "xpx" = ( /obj/item/storage/belt/marine, /turf/open/floor/prison, -/area/fiorina/station/security) -"xpM" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xpO" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"xqP" = ( -/obj/structure/surface/rack, -/obj/item/tool/plantspray/weeds, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"xqY" = ( -/obj/effect/spawner/random/tool, +/area/fiorina/station/security) +"xpB" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"xpU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, /turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/medbay) +"xqk" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/station/park) +"xqJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"xqW" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/station/medbay) "xrd" = ( /obj/structure/machinery/computer3/server/rack, /obj/structure/barricade/handrail/type_b{ @@ -30421,55 +30329,55 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"xro" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"xrz" = ( -/obj/item/clothing/head/cmcap, -/turf/open/floor/prison/green, -/area/fiorina/station/transit_hub) +"xrl" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) "xrH" = ( /obj/structure/machinery/landinglight/ds2{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"xrZ" = ( -/obj/structure/bed/chair/comfy{ +"xsj" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"xsh" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"xss" = ( +/obj/item/newspaper, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) "xst" = ( /obj/structure/platform, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"xsC" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"xsw" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"xsE" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "xsS" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"xsX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"xsV" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/oob) "xtd" = ( /obj/structure/largecrate/random/case/small, /obj/item/key/cargo_train, @@ -30479,10 +30387,19 @@ /obj/structure/platform_decoration, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"xtm" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) +"xtw" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/fancy/vials/random, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xtB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "xtP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -30497,25 +30414,66 @@ }, /turf/open/space, /area/fiorina/oob) -"xuQ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" +"xub" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"xul" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/maintenance) +"xuF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) +/obj/item/phone{ + pixel_x = 7; + pixel_y = -16 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"xvb" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_4" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"xvc" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xvl" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "xvv" = ( /turf/open/floor/prison, /area/fiorina/station/botany) +"xvw" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/floorscorched2, +/area/fiorina/station/security) "xvB" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access{ name = "greenhouse airlock" }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"xvC" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) +"xvE" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "xvI" = ( /obj/structure/disposalpipe/segment{ icon_state = "delivery_outlet"; @@ -30526,32 +30484,42 @@ /obj/item/trash/eat, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"xwo" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"xwt" = ( -/obj/structure/bed/chair/comfy, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) "xwC" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/fiberbush) +"xwK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/obj/item/coin/gold{ + desc = "Coin op, in this place, in this year, localized entirely on this table? .... I uh, yes."; + name = "arcade token"; + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"xxe" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"xxl" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) "xxD" = ( /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"xxP" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_2" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"xxU" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +"xxF" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, -/turf/open/floor/prison/whitegreen/north, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "xxX" = ( /obj/effect/decal/cleanable/blood/splatter{ @@ -30559,57 +30527,70 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xyq" = ( +"xyc" = ( +/obj/item/storage/beer_pack{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"xym" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "xyw" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/prison, /area/fiorina/station/flight_deck) +"xyy" = ( +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/chapel) +"xyD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"xyK" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) "xzj" = ( /turf/open/floor/carpet, /area/fiorina/tumor/civres) -"xzs" = ( -/obj/structure/machinery/space_heater, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"xzN" = ( -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/chapel) +"xzn" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ship) +"xzt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/gun/shotgun/highchance, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) +"xzJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"xzY" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/central_ring) "xAl" = ( /obj/structure/cargo_container/grant/right{ desc = "A huge industrial shipping container. You're not sure how it got here." }, /turf/open/space, /area/fiorina/oob) -"xAo" = ( -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"xAq" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"xAs" = ( -/obj/item/device/reagent_scanner, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"xAY" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" +"xAz" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"xBh" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison/whitegreencorner/north, -/area/fiorina/tumor/ice_lab) -"xBc" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) "xBl" = ( /obj/structure/surface/table/woodentable, /obj/item/circuitboard/apc, @@ -30631,50 +30612,70 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"xBN" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, +"xBR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "xCa" = ( /obj/item/toy/crayon/rainbow, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"xCg" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"xCh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"xCp" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"xCr" = ( -/obj/structure/curtain/shower, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) +"xCj" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/maintenance) "xCv" = ( /obj/structure/platform{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/medbay) +"xCz" = ( +/obj/item/device/t_scanner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"xCA" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xCI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"xCU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/briefcase, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) "xCV" = ( /obj/item/reagent_container/food/drinks/bottle/orangejuice, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"xDk" = ( -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/civres_blue) +"xDh" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) +"xDm" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "xDq" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" @@ -30684,82 +30685,49 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"xEi" = ( +"xEc" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"xEn" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 + icon_state = "pottedplant_22" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"xEw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xEy" = ( +/area/fiorina/tumor/aux_engi) +"xFa" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"xEH" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"xEW" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"xFe" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xEX" = ( -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/lz/near_lzI) -"xFf" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"xFg" = ( -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/central_ring) -"xFJ" = ( -/obj/item/tool/soap, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"xFL" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "xFP" = ( /turf/closed/shuttle/ert{ icon_state = "stan_rightengine" }, /area/fiorina/lz/near_lzI) -"xGc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"xGd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/weed{ - icon_state = "ucigoff" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec) -"xGi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"xGl" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xGr" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) "xGt" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, @@ -30769,10 +30737,23 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/security) -"xHi" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) +"xGL" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"xGQ" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"xHn" = ( +/obj/item/reagent_container/food/snacks/boiledegg, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "xHV" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/civres) @@ -30785,31 +30766,39 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"xIq" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) "xIx" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"xJn" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco) +"xIP" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/station/park) +"xIT" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/flight_deck) +"xJf" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "xJw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/civres_blue) -"xJQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) +"xJz" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/oob) +"xJS" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzI) +"xKg" = ( +/obj/structure/machinery/vending/coffee/simple, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "xKj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/plating/prison, @@ -30829,33 +30818,13 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"xKE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec) -"xKP" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) +"xKW" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) "xKX" = ( /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"xLd" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"xLf" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibmid1" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) "xLi" = ( /turf/closed/wall/prison, /area/fiorina/tumor/ice_lab) @@ -30863,23 +30832,28 @@ /obj/item/reagent_container/food/drinks/bottle/patron, /turf/open/floor/prison, /area/fiorina/station/civres_blue) +"xLk" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/ice_lab) "xLn" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"xLx" = ( -/obj/item/bedsheet, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"xLD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"xLq" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +/obj/item/storage/box/holobadge{ + pixel_y = 3 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) "xLQ" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -30889,10 +30863,20 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xMp" = ( -/obj/item/trash/c_tube, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +"xMg" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"xMv" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"xMN" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "xMO" = ( /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison, @@ -30911,16 +30895,9 @@ }, /turf/open/space, /area/fiorina/oob) -"xMX" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"xNg" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) +"xNk" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) "xNm" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, @@ -30934,59 +30911,75 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"xNG" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/blood, +"xNN" = ( +/obj/structure/machinery/computer3/server/rack, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"xNJ" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 +/area/fiorina/tumor/servers) +"xNT" = ( +/obj/item/device/reagent_scanner, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"xOq" = ( +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"xOC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/park) +"xPm" = ( +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"xPt" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/obj/item/frame/rack, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"xNU" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"xPx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/station/flight_deck) -"xOm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xOs" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/phone{ + pixel_x = 6; + pixel_y = -15 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"xOE" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +/obj/item/phone{ + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"xOU" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"xPk" = ( -/turf/open/floor/prison/greencorner/west, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "xPG" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"xQx" = ( +"xPK" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) +"xQa" = ( +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/civres_blue) +"xQu" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) +/area/fiorina/station/civres_blue) "xQC" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -30995,6 +30988,39 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) +"xQL" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"xQU" = ( +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/structure/surface/rack, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"xRg" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/blood, +/obj/item/attachable/bipod, +/obj/item/device/multitool, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"xRi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) "xRl" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -31002,52 +31028,42 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) +"xRn" = ( +/obj/item/tool/lighter/random, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) "xRo" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"xRw" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/power_ring) -"xRI" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"xRY" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/card/id/visa, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) +"xRx" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"xRF" = ( +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) "xSz" = ( /obj/structure/barricade/metal/wired{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"xSM" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +"xTa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/central_ring) -"xTf" = ( -/obj/item/tool/kitchen/utensil/pspoon, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"xTD" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"xTW" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) "xUi" = ( /obj/structure/surface/rack, /obj/item/device/camera, @@ -31064,70 +31080,54 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"xUr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"xVw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"xVJ" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"xVK" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 +"xUz" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"xVc" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/station/central_ring) +"xVX" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"xVW" = ( -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/station/park) +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/civres_blue) "xWc" = ( /obj/item/clothing/shoes/dress, /turf/open/space, /area/fiorina/oob) -"xWE" = ( -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 +"xWe" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"xWG" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/prison/sterile_white/southwest, +/obj/item/reagent_container/food/drinks/flask/barflask, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) -"xWV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_y = -4 - }, -/obj/item/phone{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/tool/pen, +"xWs" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"xWJ" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"xWQ" = ( +/obj/item/tool/mop, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"xXh" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +/area/fiorina/station/chapel) +"xWY" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "xXl" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -31147,10 +31147,23 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"xXY" = ( -/obj/effect/decal/cleanable/blood/oil, +"xXu" = ( +/obj/item/explosive/grenade/incendiary/molotov, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) +/area/fiorina/station/lowsec) +"xXv" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"xXN" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/civres_blue) "xYe" = ( /obj/structure/tunnel/maint_tunnel, /turf/open/floor/plating/prison, @@ -31159,38 +31172,26 @@ /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"xYo" = ( -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"xYJ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells) -"xYN" = ( -/obj/item/device/t_scanner, -/turf/open/floor/prison/floor_plate, +"xYm" = ( +/obj/item/clothing/suit/chef/classic, +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) -"xYR" = ( -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +"xYn" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"xYA" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"xZx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"xZA" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_tram) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"xYM" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "xZD" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -31200,49 +31201,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"xZI" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"xZM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/green/west, -/area/fiorina/tumor/civres) -"xZN" = ( -/obj/item/clothing/under/shorts/green, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/central_ring) +"xZH" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "xZR" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"xZU" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"xZV" = ( -/obj/item/trash/semki, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"yar" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) "yat" = ( /obj/item/inflatable/door, /obj/item/inflatable/door, @@ -31258,6 +31227,10 @@ /obj/item/stack/sheet/metal, /turf/open/space, /area/fiorina/oob) +"yaZ" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring) "ybc" = ( /obj/effect/landmark{ icon_state = "hive_spawn"; @@ -31286,35 +31259,43 @@ }, /turf/open/floor/prison, /area/fiorina/station/botany) +"ybJ" = ( +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) "ybU" = ( /obj/structure/prop/resin_prop{ icon_state = "sheater0" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"ycf" = ( -/obj/structure/closet/secure_closet/security_empty, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ycw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) +"yck" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"ycm" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"ycp" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "ycC" = ( /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"ycF" = ( +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "ycK" = ( /obj/item/storage/pouch/radio, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"ycT" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) +"ycZ" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "ydb" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -31323,80 +31304,72 @@ }, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"ydd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"ydK" = ( -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"ydQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreen, +"ydo" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"ydG" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"yet" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) +"ydZ" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "yeA" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, /area/fiorina/station/medbay) +"yeI" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"yeO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) "yeX" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"yfp" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"yfA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) +"yfD" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) "yfE" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"yfK" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/maintenance) -"yge" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/obj/effect/spawner/random/technology_scanner, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"ygk" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison/yellowcorner, -/area/fiorina/station/lowsec) -"ygr" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/west, +"yfL" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/book/manual/security_space_law, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) +"yfM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"yfY" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"ygh" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"ygo" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "ygs" = ( /obj/structure/platform{ dir = 4 @@ -31407,6 +31380,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"ygv" = ( +/obj/item/ammo_casing{ + icon_state = "casing_7_1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "ygw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -31421,39 +31400,36 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"yhs" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/pill_bottle/dexalin/skillless, -/turf/open/floor/prison/floor_plate, +"ygF" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "yhu" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"yhJ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) +"yhI" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "yhR" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) +"yie" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/tumor/servers) "yif" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"yii" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) "yio" = ( /turf/closed/shuttle/ert, /area/fiorina/tumor/aux_engi) @@ -31463,28 +31439,47 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"yiL" = ( -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"yiR" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/station/civres_blue) -"yiT" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 +"yjn" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/lz/near_lzI) -"yjW" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/floor_plate, +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) +"yjs" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/chapel) +"yjZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "ykw" = ( /obj/structure/inflatable/popped, /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"ykK" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "ykO" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Corner" @@ -31498,29 +31493,40 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) +"ylg" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "yli" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/central_ring) -"ylr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells) +"ylj" = ( +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) "ylu" = ( /obj/item/tool/wrench, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"ylW" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +"ylF" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"ylJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/sterile_white/southwest, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"ymd" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) (1,1,1) = {" @@ -32517,8 +32523,8 @@ byb wbE tAb uVn -lTp -eWV +eEB +nlZ uZA bQM bQM @@ -32701,10 +32707,10 @@ xwC xwC gwH gwH -rNc -qPb -qPb -qPb +tMe +vmh +vmh +vmh gwH gwH gwH @@ -32728,7 +32734,7 @@ bQM byb fiU imt -xOE +owB fiU aCC cEz @@ -32913,12 +32919,12 @@ xwC tfP gwH gwH -qPb +vmh kbT rHr jjM -enH -nlR +mJL +wNE gwH gwH gwH @@ -32939,7 +32945,7 @@ eVO seW oxA ihz -tZW +mPQ pGH jXk vxs @@ -33125,14 +33131,14 @@ tfP tfP gwH gwH -qPb +vmh kbT jjM kbT jjM kbT -qPb -qPb +vmh +vmh gwH gwH gwH @@ -33146,18 +33152,18 @@ xwC xwC pqO oxA -olb -qJK +eDq +tZy uVn -rMY -kTY +ofJ +cIn imt jXk -fxt -jpt +nBP +foS uVn -nlw -eIF +fcF +qpw pWp gLu vzU @@ -33323,29 +33329,29 @@ xHV xHV xHV xHV -lIt -swj -swj -swj -swj -swj +fal +gPA +gPA +gPA +gPA +gPA sUl -qPb -qPb -qPb +vmh +vmh +vmh kbT kbT -qPb -qPb +vmh +vmh kbT kbT -enH -gmT +mJL +rHv rHr ybm ybm ybm -qPb +vmh gwH gwH gwH @@ -33357,19 +33363,19 @@ xwC xwC pqO oxA -ghw +kVT ouH fiU -vYw +nBv imt fiU -nlw +fcF hWF fiU fiU hWF fiU -nlw +fcF anq ecQ aOc @@ -33529,18 +33535,18 @@ xHV xHV dXG dIo -swj +gPA dXG -gPo -vgw -eWr -gPo -oeT -gPo -eYz -gPo -eYz -iad +dgz +opR +lre +dgz +eFh +dgz +bvi +dgz +bvi +awM sUl kVg kbT @@ -33551,16 +33557,16 @@ kbT ejt kbT iGX -qPb -qPb +vmh +vmh kbT ybm xwC ybm kbT -qPb -uXn -qPb +vmh +agV +vmh kow bQM bQM @@ -33573,7 +33579,7 @@ fiU imt imt uVn -nlw +fcF vJN aar uVn @@ -33581,7 +33587,7 @@ lrE wlO jXk imt -qJK +tZy uZA xwC xwC @@ -33741,30 +33747,30 @@ xHV dXG dXG dIo -swj +gPA dXG -cFT +bHE dXG -vXy -uPX -oeT -uPX -eYz -uPX -qny -uPX +lac +tLb +eFh +tLb +bvi +tLb +cYf +tLb aEi pRH -qPb -qPb -nlR -qPb -qPb +vmh +vmh +wNE +vmh +vmh kbT kbT ybc -qPb -qPb +vmh +vmh kbT ybm xwC @@ -33772,7 +33778,7 @@ ybm kbT kbT kbT -qPb +vmh kow bQM bQM @@ -33783,17 +33789,17 @@ ifJ imt fiU fiU -nlw +fcF uVn qHG fJW -nlw +fcF pGH vxs ddA oxA imt -lCz +ccc uZA xwC xwC @@ -33953,28 +33959,28 @@ dIo dIo dXG dIo -cKb +kPM dXG -uPX +tLb dXG -eRl -swj -lIt -swj -swj -swj -swj -qMs +svH +gPA +fal +gPA +gPA +gPA +gPA +ddl sUl kbT -rNc -qPb -qPb -qPb -qPb -qPb -qPb -qPb +tMe +vmh +vmh +vmh +vmh +vmh +vmh +vmh rHr jjM rHr @@ -33984,7 +33990,7 @@ ybm kbT kbT kbT -pFA +nWO kow bQM bQM @@ -33993,19 +33999,19 @@ jhG nTq lUi oOV -nlw +fcF imt imt hWF -nlw +fcF tlq lUE -xOE +owB imt imt aAf imt -fxt +nBP uZA xwC xwC @@ -34165,16 +34171,16 @@ dXG dIo dXG dIo -swj -swj +gPA +gPA qXM -eYz -swj +bvi +gPA naW sLx xHV clu -swj +gPA xHV xHV dHd @@ -34184,19 +34190,19 @@ kow tfP tfP tfP -rXt -wnD -wnD -gmT +sZB +tDS +tDS +rHv jyM jjM -qPb +vmh kbT kbT kbT kbT -qPb -uyN +vmh +nSp tfP xwC xwC @@ -34205,13 +34211,13 @@ xwC xwC jhG lUi -jCt +vmN fiU fiU uVn -jMH +tUT kXR -nKG +qhB uVn uMq aFp @@ -34372,22 +34378,22 @@ xHV xHV xHV xHV -nsD -nsD +aGD +aGD dIo dIo dIo -jsp -swj +wXh +gPA dXG -eYz -swj +bvi +gPA naW xHV -xCr -jQy -jQy -jQy +uTC +keL +keL +keL xHV naW bQM @@ -34396,19 +34402,19 @@ bQM bQM tfP tfP -ycT -wnD -wnD -enH -gmT -enH -qPb +esn +tDS +tDS +mJL +rHv +mJL +vmh kbT kbT kbT kbT kbT -qPb +vmh xwC xwC xwC @@ -34418,18 +34424,18 @@ xwC xwC jhG lUi -oFk +gMW anq bso -sOs +nrp nTq -sOs +nrp bso lUi -nlw -nlw -nlw -nlw +fcF +fcF +fcF +fcF anq ecQ aOc @@ -34589,17 +34595,17 @@ dXG clu dXG dXG -swj -swj +gPA +gPA dXG -eYz +bvi xHV naW xHV naW -sfn -jQy -bMz +uYy +keL +xRn naW xHV xHV @@ -34609,19 +34615,19 @@ kPz kPz tfP tfP -eyi -uPi -qPb -qPb -qPb +iPl +sRI +vmh +vmh +vmh kbT kbT -qPb -qPb +vmh +vmh kbT kbT kbT -qPb +vmh gwH gwH gwH @@ -34632,16 +34638,16 @@ xwC jhG nTq gUj -tbd +qoa uXD -mYG +xzn uXD -tbd +qoa jhG -kIo -msn -fUd -prh +kJH +nZM +bXU +rwq gUj xwC xwC @@ -34802,18 +34808,18 @@ clu dXG dXG uVZ -swj +gPA dXG -eYz +bvi xHV xHV -mlU -xCr -jQy +kAf +uTC +keL lLe -jQy -jQy -dyY +keL +keL +eAa xHV bQM bQM @@ -34823,18 +34829,18 @@ tfP tfP tfP tfP -qPb -qPb -rNc +vmh +vmh +tMe kbT -xzs +rIU gwH gwH -cwB -qPb +cte +vmh kbT -qPb -qPb +vmh +vmh gwH gwH gwH @@ -34843,18 +34849,18 @@ xwC xwC xwC xwC -gBx -tbd +vLn +qoa kNN -mYG +xzn uXD -tbd -gBx +qoa +vLn cTr kbT kbT kbT -gBx +vLn xwC xwC xwC @@ -35005,7 +35011,7 @@ xHV xHV xHV xHV -swj +gPA dXG dXG dXG @@ -35014,16 +35020,16 @@ dIo dIo dIo dXG -swj +gPA lLe -eYz +bvi xHV xHV naW naW -jQy +keL lLe -jQy +keL naW xHV xHV @@ -35036,30 +35042,30 @@ kPz tfP tfP kbT -qPb -qPb -qPb +vmh +vmh +vmh gwH gwH gwH gwH gwH -qPb -qPb -qPb -qPb -qPb -nlR +vmh +vmh +vmh +vmh +vmh +wNE xwC -qPb -dnK -qPb -wnD -wnD +vmh +nTt +vmh +tDS +tDS hLM -uQk +lsi tfP -uQk +lsi hLM pBq kbT @@ -35218,25 +35224,25 @@ xHV xHV xHV xHV -eYz +bvi clu clu dIo xHV xHV -gPo -eYz -gPo -eYz +dgz +bvi +dgz +bvi dXG -swj +gPA dXG -bFL -bFL -jQy -jQy -jQy -ihn +lLN +lLN +keL +keL +keL +btM xHV xHV xHV @@ -35248,39 +35254,39 @@ bQM bQM tfP kbT -qPb -qPb -qPb +vmh +vmh +vmh tfP xwC xwC xwC gwH gwH -qPb -qPb +vmh +vmh kbT kbT -qPb -ieJ -wnD -wnD -wnD -qPb -qPb +vmh +duj +tDS +tDS +tDS +vmh +vmh kbT kbT kbT -wnD -wnD +tDS +tDS kbT -wnD +tDS kbT kbT kbT rUA -qPb -olo +vmh +ndV gwH gwH xwC @@ -35428,25 +35434,25 @@ xHV xHV xHV dIo -swj -swj +gPA +gPA dXG clu dXG dIo xHV -eYz -uPX -eYz -uPX -eYz -eYz -swj +bvi +tLb +bvi +tLb +bvi +bvi +gPA dXG -jQy -jQy -jQy -jQy +keL +keL +keL +keL xHV xHV xHV @@ -35460,7 +35466,7 @@ bQM bQM kow kbT -qPb +vmh kbT kbT kow @@ -35470,29 +35476,29 @@ xwC xwC gwH gwH -qPb -wnD +vmh +tDS kbT kbT -ieJ -wnD -wnD -wnD -qPb -qPb -qPb -qPb -qPb -qPb -qPb +duj +tDS +tDS +tDS +vmh +vmh +vmh +vmh +vmh +vmh +vmh kbT xwC xwC xwC xwC kbT -qPb -uXn +vmh +agV gwH gwH gwH @@ -35640,20 +35646,20 @@ xHV xHV xHV dIo -eYz -eYz -eYz +bvi +bvi +bvi dIo dXG -nsD -swj +aGD +gPA whu whu whu -swj -eYz -eYz -qss +gPA +bvi +bvi +umJ naW naW naW @@ -35672,7 +35678,7 @@ kPz kPz kow kbT -qPb +vmh kbT kbT kow @@ -35683,29 +35689,29 @@ xwC xwC gwH gwH -xzs +rIU kbT -qPb +vmh xwC ogM ogM xwC -qPb -tIC -qPb -qPb -syG -qPb -qPb -qPb -nlR -qPb +vmh +dLB +vmh +vmh +hMW +vmh +vmh +vmh +wNE +vmh kbT kbT kbT kbT kbT -xzs +rIU gwH gwH xwC @@ -35852,26 +35858,26 @@ xHV xHV xHV dIo -cKb -swj -swj +kPM +gPA +gPA pwL oKq -swj -gPo -eYz -gPo -eYz -gPo -eYz -eYz -swj +gPA +dgz +bvi +dgz +bvi +dgz +bvi +bvi +gPA naW xHV xHV -jQy -ifc -oyo +keL +qiL +lIs xHV xHV bQM @@ -35895,25 +35901,25 @@ bQM xwC gwH gwH -qPb +vmh kbT kbT ogM kbT kbT -wnD -qPb -qPb -wnD +tDS +vmh +vmh +tDS kbT kbT -wnD -wnD +tDS +tDS kbT -wbp -qPb -qPb -gBx +bNb +vmh +vmh +vLn kbT kbT kbT @@ -36060,30 +36066,30 @@ xHV xHV dXG xHV -eYz +bvi xHV xHV dIo -eYz -eYz -eYz +bvi +bvi +bvi dXG dXG -swj -uPX -eYz -uPX -eYz -uPX +gPA +tLb +bvi +tLb +bvi +tLb dXG -eYz -swj +bvi +gPA xHV xHV xHV -ihn -jQy -jQy +btM +keL +keL naW naW xHV @@ -36107,29 +36113,29 @@ bQM xwC xwC xwC -wDJ -qPb +bEj +vmh kbT ogM kbT kbT -wnD -qPb -qPb -wnD -gBx +tDS +vmh +vmh +tDS +vLn xwC xwC -wnD +tDS xwC -qPb -qPb -qPb -qPb -qPb +vmh +vmh +vmh +vmh +vmh gwH gwH -qPb +vmh gwH gwH xwC @@ -36145,9 +36151,9 @@ lHx lHx jlk jlk -tDC -hvL -tDC +utl +pap +utl jlk baC baC @@ -36271,33 +36277,33 @@ xHV xHV xHV lLe -swj -eYz +gPA +bvi xHV xHV dIo -swj -swj -swj +gPA +gPA +gPA dXG dXG dXG -swj +gPA xHV dIo xHV -swj +gPA dXG -eYz +bvi xHV naW naW naW -uXY +vNP jSD -jQy -rjy -dyY +keL +vdg +eAa xHV xHV kPz @@ -36307,10 +36313,10 @@ kPz kPz tfP tfP -wpW -qPb -qPb -qPb +cpR +vmh +vmh +vmh tfP tfP xwC @@ -36320,25 +36326,25 @@ bQM xwC xwC xwC -uXn -qPb -ieJ -wnD +agV +vmh +duj +tDS kbT kbT -qPb -qPb +vmh +vmh tfP xwC xwC xwC xwC xwC -xwt -wVc -qPb -wfV -qPb +edL +uSR +vmh +hJh +vmh gwH gwH kbT @@ -36353,13 +36359,13 @@ jlk vZV vZV mkI -lCl -uTR +vrB +ygh jlk jlk -hAI -hvL -hAI +oFN +pap +oFN jlk jlk rZP @@ -36481,16 +36487,16 @@ tYw tYw tYw dIo -eYz -eYz -eYz +bvi +bvi +bvi dXG -eYz -eYz -swj -eYz -eYz -eYz +bvi +bvi +gPA +bvi +bvi +bvi dXG dXG xHV @@ -36498,16 +36504,16 @@ xHV xHV xHV xHV -swj -eYz -eYz +gPA +bvi +bvi xHV naW -lWn -xCr -jQy +rCS +uTC +keL jSD -sdE +gpf naW xHV xHV @@ -36518,12 +36524,12 @@ bQM tfP tfP tfP -gBx -qPb -qPb -qPb -qPb -gBx +vLn +vmh +vmh +vmh +vmh +vLn gwH gwH xwC @@ -36535,45 +36541,45 @@ xwC gwH gwH xwC -qPb -wnD -wnD +vmh +tDS +tDS kbT -qPb +vmh xwC gwH gwH tfP tfP tfP -xwt -lrI -qPb -gBx +edL +wVJ +vmh +vLn kbT kbT -wnD -wnD -wnD -wnD -uyN +tDS +tDS +tDS +tDS +nSp xwC -cJY -qxP -uDX +nbo +hOs +nyo jlk vZV -jmp -svP -cyb -hAI +scN +xAz +bUD +oFN jlk -lLS -svP -hvL -svP -hAI -tDC +iKt +xAz +pap +xAz +oFN +utl lHx bQM bQM @@ -36693,16 +36699,16 @@ tYw xHV xHV dIo -cKb +kPM lLe dXG -eYz +bvi lLe dXG dXG -swj -swj -swj +gPA +gPA +gPA xHV xHV xHV @@ -36710,17 +36716,17 @@ xHV xHV xHV xHV -swj +gPA dXG -eYz +bvi xHV naW naW naW -sfn -jQy -jQy -lFV +uYy +keL +keL +pKs xHV kPz kPz @@ -36731,11 +36737,11 @@ tfP kPY gwH gwH -qPb -qPb -qPb -qPb -qPb +vmh +vmh +vmh +vmh +vmh gwH gwH gwH @@ -36748,44 +36754,44 @@ xwC xwC tfP tfP -aaq +sMI kbT kbT -qPb -sNb +vmh +atI gwH gwH gwH gwH tfP -xwt +edL xwC -qPb -wnD -wnD -qPb -qPb -wnD +vmh +tDS +tDS +vmh +vmh +tDS kbT kbT kbT -ieJ -uzG -nMm -sia +duj +sjt +ejm +ctP rGq taj lzq rGq -fAt +pQa taj knh -hvL -hvL -hvL -uzi -hvL -hvL +pap +pap +pap +hne +pap +pap lHx bQM bQM @@ -36905,10 +36911,10 @@ tYw xHV xHV dIo -rAU -swj +ulT +gPA dXG -eYz +bvi dXG dXG dXG @@ -36924,14 +36930,14 @@ xHV doD doD doD -eYz +bvi xHV naW -lWn -xCr -jQy -jQy -jQy +rCS +uTC +keL +keL +keL xHV naW bQM @@ -36943,12 +36949,12 @@ gwH gwH gwH gwH -qPb -qPb -qPb -qPb -qPb -itW +vmh +vmh +vmh +vmh +vmh +eXJ gwH gwH gwH @@ -36963,28 +36969,28 @@ gwH fsk kbT kbT -qPb -qPb -xAs -qPb +vmh +vmh +xNT +vmh gwH gwH tfP dwQ dwQ -wnD +tDS dwQ dwQ -wnD +tDS dwQ dwQ kbT dwQ dwQ ogM -uzG +sjt lyf -svP +xAz rOI taj taj @@ -36992,12 +36998,12 @@ taj taj taj knh -svP -svP -hvL -svP -hAI -myK +xAz +xAz +pap +xAz +oFN +wLX lHx bQM bQM @@ -37118,32 +37124,32 @@ xHV xHV dIo dIo -rAU -swj -eYz -swj -swj +ulT +gPA +bvi +gPA +gPA dXG -oev -eYz -eYz +vZq +bvi +bvi dIo -nsD +aGD qgB qoG dIo dXG dXG dXG -eYz +bvi ame -swj +gPA naW naW xHV -swj +gPA dXG -swj +gPA xHV dHd kow @@ -37154,15 +37160,15 @@ gwH tfP gwH gwH -gBx -qPb -rNc -qPb -qPb -gBx -qPb -qPb -gBx +vLn +vmh +tMe +vmh +vmh +vLn +vmh +vmh +vLn gwH tfP kow @@ -37172,30 +37178,30 @@ tfP tfP gwH gwH -qPb +vmh kbT kbT -qPb -qPb +vmh +vmh vFY ycK -qPb -qPb -qPb -wnD -wnD -qPb -wnD -wnD -wnD -uXn -wnD -wnD -wnD -wnD +vmh +vmh +vmh +tDS +tDS +vmh +tDS +tDS +tDS +agV +tDS +tDS +tDS +tDS ogM -uzG -nMm +sjt +ejm uNM taj rGq @@ -37205,9 +37211,9 @@ jlk taj knh rGq -svP -hvL -svP +xAz +pap +xAz taj nvK rZP @@ -37335,69 +37341,69 @@ dIo dIo xHV xHV -swj +gPA dXG -swj -swj +gPA +gPA dIo dIo xHV avY dIo dXG -nsD +aGD dXG -gPo -eWr -swj -ftb -swj -swj -swj -swj -swj -swj +dgz +lre +gPA +xMN +gPA +gPA +gPA +gPA +gPA +gPA sUl -qPb -dnK -dnK -qPb +vmh +nTt +nTt +vmh gwH -gBx +vLn gwH -gBx -xzs -qPb -qPb +vLn +rIU +vmh +vmh kbT -qPb -wfV -qPb -qPb -qPb -dnK -qPb -qPb -qPb +vmh +hJh +vmh +vmh +vmh +nTt +vmh +vmh +vmh kbT -qPb -qPb -qPb -qPb +vmh +vmh +vmh +vmh kbT -qPb -qPb -qPb -uXn -qPb -qPb +vmh +vmh +vmh +agV +vmh +vmh fpB kbT kbT -wnD -lZo -wnD -wnD +tDS +pTg +tDS +tDS xwC xwC xwC @@ -37406,8 +37412,8 @@ ogM ogM ogM xwC -uzG -nMm +sjt +ejm uNM yhu yhu @@ -37417,9 +37423,9 @@ uNM jlk jlk rZP -ble -hvL -svP +dOU +pap +xAz taj dpH jlk @@ -37548,10 +37554,10 @@ xHV xHV xHV dIo -eYz -eYz -eYz -nsD +bvi +bvi +bvi +aGD xHV xHV xHV @@ -37559,53 +37565,53 @@ xHV dXG dXG dXG -cFT -xPk -eWr -gPo -eYz -gPo -eYz -gPo -eYz -gPo +bHE +brn +lre +dgz +bvi +dgz +bvi +dgz +bvi +dgz sUl -qPb -qPb -rNc -qPb -qPb -qPb -qPb -qPb -qPb -qPb -tsH +vmh +vmh +tMe +vmh +vmh +vmh +vmh +vmh +vmh +vmh +aoe kbT -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb +vmh +vmh +vmh +vmh +vmh +vmh +vmh +vmh +vmh kbT kbT kbT kbT kbT kbT -qPb -qPb -qPb +vmh +vmh +vmh kbT kbT kbT -qPb -uXn -qPb +vmh +agV +vmh tfP tfP wmd @@ -37614,24 +37620,24 @@ xwC xwC xwC xwC -wnD -wnD -wnD +tDS +tDS +tDS ogM -uzG -dMt -wsz -wsz -wsz -wsz -wsz -wsz +sjt +aGN +eRB +eRB +eRB +eRB +eRB +eRB jlk jlk rZP -ble -hvL -svP +dOU +pap +xAz taj hNU jlk @@ -37760,9 +37766,9 @@ xHV xHV xHV dIo -swj -swj -swj +gPA +gPA +gPA dXG xHV xHV @@ -37771,51 +37777,51 @@ xHV xHV xHV xHV -uPX -ntc -vXy -uPX -eYz -uPX -eYz -uPX -eYz -uPX +tLb +mIx +lac +tLb +bvi +tLb +bvi +tLb +bvi +tLb sUl -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb +vmh +vmh +vmh +vmh +vmh +vmh +vmh +vmh +vmh +vmh kbT -qPb -qPb -nlR -qPb -qPb -qPb -qPb -qPb -qPb -nlR -qPb +vmh +vmh +wNE +vmh +vmh +vmh +vmh +vmh +vmh +wNE +vmh kbT kbT kbT kbT -qPb -qPb +vmh +vmh kbT kbT kbT kbT -qPb -rNc +vmh +tMe gwH gwH tfP @@ -37823,27 +37829,27 @@ xwC xwC xwC xwC -qPb -qPb -qPb +vmh +vmh +vmh kbT kbT kbT ogM -oHm -mLY +kBN +pxA qbd -mLY -mLY -mLY -mLY -mLY -bZD -nMm +pxA +pxA +pxA +pxA +pxA +gxi +ejm rZP -ble -hvL -svP +dOU +pap +xAz taj dxE jlk @@ -37955,9 +37961,9 @@ xHV xHV xHV dXG -xGi -swj -xGi +rYs +gPA +rYs xHV xHV xHV @@ -37974,7 +37980,7 @@ xHV dIo dXG qXM -swj +gPA xHV gCE xHV @@ -37986,47 +37992,47 @@ xHV sIC dXG qXM -swj -eYz -eYz -eYz -swj -swj -swj +gPA +bvi +bvi +bvi +gPA +gPA +gPA sUl -qPb -cwB -cwB -qPb -cJz -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -olo -tJU -qPb -qPb -qPb -lic +vmh +cte +cte +vmh +oaW +vmh +vmh +vmh +vmh +vmh +vmh +vmh +vmh +vmh +vmh +vmh +vmh +ndV +qju +vmh +vmh +vmh +bwA xwC xwC xwC -vMk -qPb -qPb +uQx +vmh +vmh kbT kbT kbT -xzs +rIU gwH gwH gwH @@ -38035,27 +38041,27 @@ xwC xwC xwC xwC -uyN -qPb -qPb +nSp +vmh +vmh kbT kbT -qPb -jCA -svP +vmh +cDg +xAz fpn fpn -svP +xAz fpn fpn -svP +xAz lyf -uzG -ddY +sjt +oda rZP jlk -hvL -svP +pap +xAz bfF rGq rZP @@ -38166,10 +38172,10 @@ xHV xHV xHV xHV -nsD -rqC -swj -rqC +aGD +dSC +gPA +dSC xHV xHV xHV @@ -38186,25 +38192,25 @@ xHV dIo dXG dXG -swj +gPA xHV xHV xHV xHV xHV dXG -swj -swj +gPA +gPA sIC dXG dXG -swj -eYz +gPA +bvi xHV xHV xHV xHV -swj +gPA dHd kow kow @@ -38212,17 +38218,17 @@ kow tfP tfP tfP -sig -sig -qPb -qPb -qPb -qPb -qPb -qPb -xzs +sPL +sPL +vmh +vmh +vmh +vmh +vmh +vmh +rIU gwH -gBx +vLn tfP tfP kow @@ -38233,26 +38239,26 @@ tfP xwC xwC xwC -qPb -qPb +vmh +vmh kbT kbT -qPb -qPb +vmh +vmh gwH gwH gwH wmd xwC xwC -qPb -qPb -qPb -wnD -qPb +vmh +vmh +vmh +tDS +vmh kbT kbT -qPb +vmh xwC jlk jlk @@ -38261,13 +38267,13 @@ jlk jlk jlk jlk -svP -uzG -nMm +xAz +sjt +ejm rZP jlk jlk -svP +xAz bfF rGq rZP @@ -38374,14 +38380,14 @@ xHV xHV xHV xHV -eYz -eYz -eYz -eYz -swj -xGi -swj -rqC +bvi +bvi +bvi +bvi +gPA +rYs +gPA +dSC xHV xHV xHV @@ -38395,10 +38401,10 @@ dIo dIo dIo dIo -swj +gPA dXG -eYz -swj +bvi +gPA xHV xHV xHV @@ -38410,9 +38416,9 @@ dXG dXG dXG dXG -swj -eYz -stC +gPA +bvi +jqz xHV xHV xHV @@ -38425,13 +38431,13 @@ bQM tfP tfP kPY -jkw -rNc -qPb -qPb -qPb -qPb -gBx +mHP +tMe +vmh +vmh +vmh +vmh +vLn gwH gwH gwH @@ -38445,24 +38451,24 @@ tfP tfP xwC xwC -xwt -tIC +edL +dLB kbT kbT kbT kbT -qPb -qPb +vmh +vmh gwH gwH xwC -qPb -qPb -wnD +vmh +vmh +tDS kbT kbT kbT -wnD +tDS kbT gwH gwH @@ -38473,25 +38479,25 @@ rZP rZP jlk jlk -mJc -jFz -aik +nXT +lil +eDa rZP jlk jlk -svP +xAz bfF rGq lHx bQM bTo -afk -afk -afk +bCM +bCM +bCM hkh -afk -afk -afk +bCM +bCM +bCM iWq bQM bQM @@ -38585,46 +38591,46 @@ jXz xHV xHV xHV -eYz -swj -swj -swj -eYz +bvi +gPA +gPA +gPA +bvi dXG -rqC +dSC dXG -rqC -nsD -swj -swj +dSC +aGD +gPA +gPA nIc cmP dIo xHV xHV xHV -swj -swj -swj -swj -swj +gPA +gPA +gPA +gPA +gPA dXG dXG -swj +gPA xHV xHV xHV xHV dXG dXG -swj +gPA sIC sIC -swj +gPA dXG -swj -eYz -eYz +gPA +bvi +bvi xHV xHV xHV @@ -38637,12 +38643,12 @@ bQM bQM tfP kPY -sig -xzs -qPb -qPb -qPb -qPb +sPL +rIU +vmh +vmh +vmh +vmh gwH gwH gwH @@ -38657,25 +38663,25 @@ tfP xwC xwC xwC -qPb -qPb +vmh +vmh kbT kbT kbT kbT -tIC -qPb -qPb +dLB +vmh +vmh gwH gwH -qPb -wnD +vmh +tDS kbT kbT kbT kbT qJr -qPb +vmh gwH gwH jlk @@ -38685,9 +38691,9 @@ xKj jlk jlk jlk -svP -uzG -nMm +xAz +sjt +ejm rZP jlk jlk @@ -38697,13 +38703,13 @@ rGq lHx bQM bTo -afk -afk -afk +bCM +bCM +bCM pcu -afk -afk -afk +bCM +bCM +bCM iWq bQM bQM @@ -38788,56 +38794,56 @@ agi aWV agi jXz -tbG -ach +bxl +ezJ jXz -peA -tbG +dJO +bxl jXz -cPs +ogV xHV xHV -pXt -swj -swj -swj -eYz +krv +gPA +gPA +gPA +bvi dXG -rqC +dSC dXG dXG dXG dXG vwt -bxE +hhj yis dIo -swj -swj -swj -eYz -eYz +gPA +gPA +gPA +bvi +bvi dXG -eYz -eYz -eYz -eYz +bvi +bvi +bvi +bvi dXG xHV xHV xHV -nsD +aGD dXG dXG dXG xHV -nsD +aGD xHV -nsD -swj -eYz -eYz -eYz +aGD +gPA +bvi +bvi +bvi xHV xHV xHV @@ -38851,10 +38857,10 @@ tfP tfP kPY mnr -hSG -hSG -hSG -hSG +nbl +nbl +nbl +nbl mnr uNM uNM @@ -38879,15 +38885,15 @@ kPY kbT kbT kbT -wnD -wnD +tDS +tDS kbT kbT kbT kbT -qPb -qPb -qPb +vmh +vmh +vmh gwH rZP jlk @@ -38895,11 +38901,11 @@ xKj jlk xKj rGq -kXs +eqn rGq -svP -uzG -ddY +xAz +sjt +oda rZP jlk jlk @@ -38909,13 +38915,13 @@ rGq lHx bQM bTo -afk -afk -afk +bCM +bCM +bCM hkh -afk -afk -afk +bCM +bCM +bCM iWq bQM bQM @@ -39000,33 +39006,33 @@ agi agi agi jXz -oiF -ach +oXr +ezJ jXz -dyh -gve +bet +pYI jXz -cPs +ogV xHV xHV -eYz -swj -swj -swj -eYz +bvi +gPA +gPA +gPA +bvi dXG lLe dXG dXG dXG dXG -swj +gPA lbt dXG -nsD +aGD dXG dXG -eYz +bvi dXG qXM dXG @@ -39035,10 +39041,10 @@ dXG dXG dXG lLe -eYz -swj +bvi +gPA xHV -swj +gPA dXG lLe dXG @@ -39046,11 +39052,11 @@ clu dXG clu dXG -swj -oev -eYz -eYz -rki +gPA +vZq +bvi +bvi +wmZ xHV xHV pqC @@ -39063,10 +39069,10 @@ dIo uNM uNM uNM -hvL -hvL -hvL -hvL +pap +pap +pap +pap uNM uNM uNM @@ -39082,22 +39088,22 @@ taj pLj taj iQJ -tZk -tZk -tZk -tZk +leC +leC +leC +leC iQJ uNM qJr kbT qJr kbT -wnD +tDS kbT kbT -qPb +vmh kbT -qPb +vmh gwH gwH xwC @@ -39109,12 +39115,12 @@ xKj rGq rGq bDU -svP -mYy -nMm +xAz +iXi +ejm rZP jlk -kXs +eqn rGq osX rGq @@ -39213,24 +39219,24 @@ agi agi jXz jXz -jPY +dRj jXz -jPY +dRj jXz jXz -jHz +jNn xHV xHV -eYz -eYz -eYz -eYz +bvi +bvi +bvi +bvi dXG -swj -rqC -swj -rqC -nsD +gPA +dSC +gPA +dSC +aGD dXG dXG lbt @@ -39240,16 +39246,16 @@ dXG dXG dXG dXG -rAU -swj -eYz -swj +ulT +gPA +bvi +gPA dXG eHD dXG dXG dXG -eYz +bvi sIC qXM dXG @@ -39257,13 +39263,13 @@ dXG xHV dXG xHV -nsD -swj -eYz -eYz -eYz -swj -rki +aGD +gPA +bvi +bvi +bvi +gPA +wmZ xHV naW naW @@ -39275,15 +39281,15 @@ xHV jlk uNM uNM -uzG +sjt rGq rOI -dMt -wsz -wsz -iRn -wsz -qxP +aGN +eRB +eRB +tew +eRB +hOs rGq rGq rGq @@ -39293,12 +39299,12 @@ rZP xKj xKj xKj -svP -svP -svP -svP -svP -svP +xAz +xAz +xAz +xAz +xAz +xAz jlk tfP kbT @@ -39307,7 +39313,7 @@ kbT kbT kbT kbT -qPb +vmh xwC xwC gwH @@ -39321,9 +39327,9 @@ xKj rGq rGq rGq -svP -uzG -nMm +xAz +sjt +ejm jlk jlk rGq @@ -39417,31 +39423,31 @@ agi aWV agi agi -lvD +ivn agi agi agi agi mjx -dDT -pjg -gir -pjg -gir -pjg -dDT -pjg -gir +xdP +syE +hIY +syE +hIY +syE +xdP +syE +hIY dXG -swj -swj -swj +gPA +gPA +gPA dXG xHV -swj -rqC -swj -rqC +gPA +dSC +gPA +dSC dXG wKE dXG @@ -39450,33 +39456,33 @@ dXG dXG dXG dXG -swj -rAU +gPA +ulT dIo -rqC -rqC +dSC +dSC dIo dIo dIo obI dxP dXG -eYz +bvi dXG dXG sIC -swj -nsD +gPA +aGD dXG dXG dXG -swj -eYz -eYz -eYz -swj -swj -swj +gPA +bvi +bvi +bvi +gPA +gPA +gPA xHV xHV xHV @@ -39487,7 +39493,7 @@ xHV jlk uNM uNM -uzG +sjt fpn fpn taj @@ -39495,22 +39501,22 @@ fpn taj fpn fpn -nMm -uDX +ejm +nyo rGq rGq -svP -svP -svP -jWg +xAz +xAz +xAz +fqc jlk -jWg -svP -svP -svP -svP -uDX -svP +fqc +xAz +xAz +xAz +xAz +nyo +xAz jlk jlk jlk @@ -39533,9 +39539,9 @@ xKj rGq rGq gJu -heA -tmI -nMm +qbB +gpI +ejm rGq knh rGq @@ -39629,21 +39635,21 @@ agi agi agi agi -rbv -aeb -otg -dLL +mXO +wiv +mWT +cGz hoZ mjx -gir -mDn -gir -mDn -gir -mDn -gir -mDn -gir +hIY +uRx +hIY +uRx +hIY +uRx +hIY +uRx +hIY dXG dXG dXG @@ -39651,9 +39657,9 @@ dXG xHV xHV xHV -rqC -swj -rqC +dSC +gPA +dSC dXG dXG dXG @@ -39663,15 +39669,15 @@ lLe dXG dXG dXG -eYz -rqC -rqC -iYJ +bvi +dSC +dSC +iRZ dIo -kKt -rqC +prf +dSC dCu -eYz +bvi dXG dXG dXG @@ -39679,18 +39685,18 @@ dXG sIC dIo dIo -nsD +aGD dIo dIo -swj -eYz -eYz -eYz -gPo -eYz -gPo -byJ -eWr +gPA +bvi +bvi +bvi +dgz +bvi +dgz +eEY +lre xHV dIo naW @@ -39699,32 +39705,32 @@ xHV jlk uNM uNM -oHm -mLY -arG -mLY -mLY -mLY -mLY -bZD -nMm -svP -svP -svP -svP -svP -svP -jWg -jWg -dZj -tcB -xtm -tcB -hvL -svP -svP -svP -svP +kBN +pxA +lcB +pxA +pxA +pxA +pxA +gxi +ejm +xAz +xAz +xAz +xAz +xAz +xAz +fqc +fqc +lRc +skX +fBb +skX +pap +xAz +xAz +xAz +xAz jlk rGq rGq @@ -39745,9 +39751,9 @@ rGq rGq rGq jFl -svP -fAr -nMm +xAz +jld +ejm rGq knh taj @@ -39841,74 +39847,74 @@ agi agi agi hoZ -igc -jnU -nUS -oiV -lvD -jHz -gNJ +dNu +hUN +xNN +jcE +ivn +jNn +vrj mjx mjx -gNJ +vrj mjx mjx -gNJ +vrj mjx mjx -rAU -swj -swj -swj +ulT +gPA +gPA +gPA xHV xHV xHV -hgh -swj -rqC -nsD -swj -swj -bxE +kJp +gPA +dSC +aGD +gPA +gPA +hhj dXG dXG dXG dXG -eYz +bvi lLe -rqC -nKo -jri +dSC +owx +uTH dIo -fCF -wfo +szS +vOx dIo -swj -eYz +gPA +bvi dXG -swj -swj +gPA +gPA xHV dIo -vzT -rPd -vlN +dDG +nhf +rlL dIo -iNk -eYz -eYz -eYz -uPX -eYz -uPX -sze -lgH -swj +gsf +bvi +bvi +bvi +tLb +bvi +tLb +eRX +cXs +gPA dIo naW xHV xHV -iaE +aqN amF amF amF @@ -39917,26 +39923,26 @@ amF amF amF amF -iaE -uzG -nMm -uDX -svP -uDX -svP -svP -uDX -jWg +aqN +sjt +ejm +nyo +xAz +nyo +xAz +xAz +nyo +fqc jlk -dZj -wjC -wsz -tzW -hvL -uDX -svP -uDX -svP +lRc +oqs +eRB +dMy +pap +nyo +xAz +nyo +xAz rGq rGq rGq @@ -39952,15 +39958,15 @@ rZP jlk jlk rGq -nYE +quU rGq rGq rGq gJu -heA -tmI -nMm -svP +qbB +gpI +ejm +xAz knh rGq hlT @@ -40053,40 +40059,40 @@ agi agi agi hoZ -rbv -jCe -hrw -ddN -lvD +mXO +thJ +lGF +ahO +ivn mjx -gir -pjg -gir -pjg -gir -pjg -gir -pjg -gir +hIY +syE +hIY +syE +hIY +syE +hIY +syE +hIY doD doD doD xHV xHV -rqC -rqC -rqC -swj -rqC -swj +dSC +dSC +dSC +gPA +dSC +gPA xHV xHV nIc dXG -nsD +aGD dXG dXG -eYz +bvi nib dIo dIo @@ -40095,32 +40101,32 @@ dIo dIo dIo dIo -bbU -eYz +cms +bvi dXG -swj +gPA xHV xHV dIo -ojW -rqC -eGO +vad +dSC +sFm dIo dIo dIo dIo dIo dIo -swj -swj -uPX -vXy -byJ -byJ -byJ -eWr -xHV -iaE +gPA +gPA +tLb +lac +eEY +eEY +eEY +lre +xHV +aqN amF fjX jXZ @@ -40129,26 +40135,26 @@ jXZ jXZ lZf amF -iaE -uzG -nMm -hvL -hvL -hvL -hvL -hvL -hvL -dZj -dZj -dZj -tmI +aqN +sjt +ejm +pap +pap +pap +pap +pap +pap +lRc +lRc +lRc +gpI pnx -mSZ -hvL -hvL -hvL -svP -svP +kfy +pap +pap +pap +xAz +xAz rGq taj rGq @@ -40158,21 +40164,21 @@ bfF rGq rGq rGq -svP +xAz jlk rZP daK rGq rGq -svP +xAz rGq rGq rGq wcP -svP -uzG -nMm -svP +xAz +sjt +ejm +xAz jlk jlk rZP @@ -40265,30 +40271,30 @@ agi agi agi hoZ -lvD -lvD -lvD -dSM -lvD +ivn +ivn +ivn +noo +ivn mjx -qph -mDn -gir -mDn -gir -mDn -iZm -mDn -gir +dNf +uRx +hIY +uRx +hIY +uRx +wIc +uRx +hIY hoZ -jHz -swj +jNn +gPA xHV xHV -swj -swj -swj -swj +gPA +gPA +gPA +gPA xHV xHV xHV @@ -40298,25 +40304,25 @@ cmP dIo dXG dXG -eYz -eYz +bvi +bvi dCu -rqC -wgs +dSC +ksz dIo -tle -rqC +qOA +dSC dCu -eYz +bvi dXG dXG dXG dXG dXG dXG -rqC -hbn -swj +dSC +rpq +gPA dIo xHV xHV @@ -40324,43 +40330,43 @@ xHV xHV dIo dIo -qoc -eYz -eYz -swj +wFq +bvi +bvi +gPA whu -srt -lgH -pIw +cTM +cXs +iTa amF amF hiO -ask -mzy -sXi -kZS +tgN +rQU +wMw +gTl hiO amF amF -uZu -dMt -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -tnw +jgR +aGN +eRB +eRB +eRB +eRB +eRB +eRB +eRB +eRB +eRB +nXn taj -nMm -wsz -qxP -hvL -svP -svP +ejm +eRB +hOs +pap +xAz +xAz rGq rGq rGq @@ -40370,21 +40376,21 @@ bfF rGq rGq rGq -svP +xAz rZP rZP rGq rGq rGq -svP -svP +xAz +xAz fpn fpn -ace -svP -uzG -nMm -svP +rNz +xAz +sjt +ejm +xAz jlk jlk rZP @@ -40475,32 +40481,32 @@ agi agi agi agi -nub +fBC pCX -lvD -aeb -otg -dLL -lvD +ivn +wiv +mWT +cGz +ivn jXz jXz -nub +fBC gLv jXz -jPY +dRj jXz jXz -aDc +xYM hoZ lLQ -jHz +jNn sIC xHV -rqC -swj -rqC -rqC -rqC +dSC +gPA +dSC +dSC +dSC xHV xHV xHV @@ -40508,27 +40514,27 @@ xHV nIc yis dIo -ody +wCB dXG dXG dXG dIo -rqC -uWA +dSC +mdv dIo -bbp -iQj +aPF +jQI dIo -kVW -swj -eYz +wDt +gPA +bvi dXG -swj +gPA xHV dIo -rZM -sHL -swj +diH +azM +gPA dIo dXG dXG @@ -40536,25 +40542,25 @@ xHV xHV xHV dIo -qoc -gPo -eWr -swj -swj -ifm -vXy -swj -pyK -sXi -pyK +wFq +dgz +lre +gPA +gPA +nrm +lac +gPA +qjy +wMw +qjy rGq rGq rGq rGq -pyK -sXi -pyK -uzG +qjy +wMw +qjy +sjt taj fpn fpn @@ -40565,14 +40571,14 @@ taj fpn fpn taj -ajZ +cSl taj -nMm +ejm nOy -nMm -hvL -svP -svP +ejm +pap +xAz +xAz rGq rGq jlk @@ -40582,21 +40588,21 @@ vsT rGq rGq rGq -svP -hlk -xiO +xAz +vFO +geS rGq bDU rGq -wsz -wsz -wsz -wsz -cBG -sVW -hgD -nMm -svP +eRB +eRB +eRB +eRB +gBq +deC +pns +ejm +xAz okT jlk rZP @@ -40689,28 +40695,28 @@ aWV hoZ hoZ hoZ -kCS -jnU -nUS -oiV -lvD -jHz +tpX +hUN +xNN +jcE +ivn +jNn erl hoZ hoZ jXz -ach +ezJ agi jXz agi lLQ lLQ -jHz -swj +jNn +gPA xHV -rqC -swj -rqC +dSC +gPA +dSC dIo dIo dIo @@ -40720,7 +40726,7 @@ xHV nIc dIo dIo -qoc +wFq dXG dXG dxP @@ -40733,14 +40739,14 @@ dIo dIo cbE dXG -eYz +bvi dXG -swj +gPA xHV dIo -rAU -tCv -teI +ulT +arg +eZK dIo xHV mfe @@ -40748,43 +40754,43 @@ xHV xHV xHV dIo -qoc -eYz -eYz -ntc -ntc -vXy -eYz -eYz -sXi +wFq +bvi +bvi +mIx +mIx +lac +bvi +bvi +wMw fpn -sXi +wMw rGq bDU rGq rGq -sXi +wMw fpn -sXi -uzG -ugk -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -uzG +wMw +sjt +feY +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +sjt taj -nMm -mLY -aJv -hvL -svP -svP +ejm +pxA +hqR +pap +xAz +xAz rGq rGq knh @@ -40795,20 +40801,20 @@ oDe rGq rGq rGq -svP -hvL +xAz +pap rGq rGq rGq -mLY -mLY -mLY -mLY -oIE -uaM -hzL -aJv -svP +pxA +pxA +pxA +pxA +kVH +ohf +hyx +hqR +xAz rGq jlk rZP @@ -40899,14 +40905,14 @@ bQM bQM aWV cVQ -nub +fBC hoZ -lvD -jCe -hrw -ddN -lvD -jHz +ivn +thJ +lGF +ahO +ivn +jNn hoZ hoZ agi @@ -40917,12 +40923,12 @@ agi agi lLQ lLQ -jHz -jHz -jHz -rqC -swj -rqC +jNn +jNn +jNn +dSC +gPA +dSC dIo tYw tYw @@ -40932,9 +40938,9 @@ xHV qgi xHV xHV -fBr +oDp dXG -eYz +bvi dXG xHV xHV @@ -40945,10 +40951,10 @@ dXG dXG dXG egL -eYz +bvi qXM dXG -swj +gPA dIo dIo dXG @@ -40960,42 +40966,42 @@ xHV xHV dIo dIo -qoc -gPo -eWr -vdJ -byJ -eWr -eYz -eYz -sXi +wFq +dgz +lre +iMW +eEY +lre +bvi +bvi +wMw fpn -sXi +wMw rGq rGq rGq rGq -sXi +wMw fpn -sXi -uzG -nMm -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -tmI +wMw +sjt +ejm +pap +pap +pap +pap +pap +pap +pap +pap +pap +gpI pnx -mSZ -hvL -hvL -hvL -svP +kfy +pap +pap +pap +xAz rGq taj boe @@ -41007,20 +41013,20 @@ rGq rGq rGq rGq -svP -hvL +xAz +pap rGq rGq rGq -svP +xAz rZP -svP -svP -jtM -fAr -mSZ -svP -svP +xAz +xAz +lTJ +jld +kfy +xAz +xAz rGq jlk rZP @@ -41113,11 +41119,11 @@ aWV pCX hoZ hoZ -dSM -lvD -hbt -lvD -lvD +noo +ivn +tpC +ivn +ivn hoZ hoZ hoZ @@ -41128,13 +41134,13 @@ gQK agi aWV aWV -jHz +jNn hoZ hoZ hoZ -rqC -swj -rqC +dSC +gPA +dSC dIo tYw tYw @@ -41144,70 +41150,70 @@ xHV qgi xHV xHV -fBr +oDp dXG -eYz +bvi dXG -swj +gPA xHV -swj -eYz -eYz -eYz -eYz +gPA +bvi +bvi +bvi +bvi dXG dXG dXG dXG -eYz -swj +bvi +gPA dXG -swj -eYz -rAU +gPA +bvi +ulT dIo dIo dIo dIo dIo dIo -swj -dUf -eYz -eYz -swj +gPA +nNd +bvi +bvi +gPA whu -xPk -eWr -swj -sXi -sXi -sXi +brn +lre +gPA +wMw +wMw +wMw rGq rGq rGq rGq -sXi -sXi -sXi -uzG -nMm -uDX -svP -uDX -svP -svP -uDX -svP -uDX -hvL -fAr +wMw +wMw +wMw +sjt +ejm +nyo +xAz +nyo +xAz +xAz +nyo +xAz +nyo +pap +jld rsU -lIA -hvL -uDX -svP -uDX +lya +pap +nyo +xAz +nyo rGq rGq jlk @@ -41218,20 +41224,20 @@ knh knh jlk jlk -svP -svP -hvL +xAz +xAz +pap rGq rGq rGq -htD +cuz rZP jDR rGq -svP -uzG -nMm -svP +xAz +sjt +ejm +xAz rGq rGq rGq @@ -41323,13 +41329,13 @@ bQM bQM aWV hoZ -nub +fBC hoZ -lvD -aeb -otg -dLL -lvD +ivn +wiv +mWT +cGz +ivn jXz oED hoZ @@ -41340,13 +41346,13 @@ gQK agi agi lLQ -jHz +jNn hoZ pCX hoZ -rqC -bdE -rqC +dSC +qiJ +dSC dIo dIo dIo @@ -41359,66 +41365,66 @@ xHV xHV dXG dXG -eYz +bvi dXG -eYz +bvi dXG dXG lLe dXG dXG -vLX -eYz -eYz -eYz -eYz +vbs +bvi +bvi +bvi +bvi dXG dXG dXG -eYz -swj +bvi +gPA qdC -swj +gPA whu -swj +gPA whu -swj -dUf -swj -gPo -vUF -swj -swj -swj -lgH -pIw +gPA +nNd +gPA +dgz +hkQ +gPA +gPA +gPA +cXs +iTa amF amF hiO -tYd -oxK -lev -nPA +kss +nBp +eTG +tYm hiO amF amF -uZu -nMm -svP -fAS -svP -svP -svP -svP -svP -svP -hvL -tmI +jgR +ejm +xAz +uum +xAz +xAz +xAz +xAz +xAz +xAz +pap +gpI pnx -mSZ -hvL -svP -svP +kfy +pap +xAz +xAz rGq rGq jlk @@ -41428,22 +41434,22 @@ jlk bfF rGq rGq -mMk +ygo rZP rZP -msF -sMX -svP -svP -dZo -dae +wgQ +daM +xAz +xAz +vxy +jJj rZP rGq rGq -svP -uzG -nMm -svP +xAz +sjt +ejm +xAz rGq oyd rGq @@ -41537,31 +41543,31 @@ aWV cVQ hoZ pCX -lvD -jnU -nUS -oiV -lvD +ivn +hUN +xNN +jcE +ivn jXz hoZ -jHz -nub +jNn +fBC gVx hro jor jXz hoZ lLQ -jHz +jNn oED hoZ hoZ -rqC -swj -rqC -rqC -rqC -rqC +dSC +gPA +dSC +dSC +dSC +dSC pqC bQM bQM @@ -41569,8 +41575,8 @@ bQM pqC xHV xHV -swj -swj +gPA +gPA dXG dXG dXG @@ -41582,29 +41588,29 @@ dXG dXG dXG xHV -eYz -eYz -gPo -eYz -gPo -eYz -gPo -eYz -gPo -eYz -gPo -eYz -gPo -eYz -gPo -bhW -lgH -gPo -cPC -eWr -oJY -swj -wLT +bvi +bvi +dgz +bvi +dgz +bvi +dgz +bvi +dgz +bvi +dgz +bvi +dgz +bvi +dgz +eNU +cXs +dgz +wwx +lre +cbX +gPA +gDj amF aXn jXZ @@ -41613,22 +41619,22 @@ jXZ jXZ qCW amF -iaE -oHm -aJv -svP -svP -dVR -svP -svP -svP -svP -uDX -hvL -uzG +aqN +kBN +hqR +xAz +xAz +vue +xAz +xAz +xAz +xAz +nyo +pap +sjt taj -nMm -hvL +ejm +pap uNM yhu uNM @@ -41636,11 +41642,11 @@ jlk jlk jlk jlk -uEY +jHq kpp rGq rGq -snW +jOA rZP rZP rZP @@ -41653,8 +41659,8 @@ rZP rGq rGq rGq -uzG -nMm +sjt +ejm rGq lzJ lzJ @@ -41747,33 +41753,33 @@ agi agi aWV hoZ -nub +fBC hoZ -lvD -jCe -hrw -ddN -lvD -nub -jHz -jHz +ivn +thJ +lGF +ahO +ivn +fBC +jNn +jNn jXz hhL hro jqs -nub +fBC hoZ lLQ -jHz -jHz -jHz -jHz -rqC -swj -swj -swj -swj -rqC +jNn +jNn +jNn +jNn +dSC +gPA +gPA +gPA +gPA +dSC pqC bQM bQM @@ -41781,42 +41787,42 @@ bQM pqC xHV xHV -swj +gPA dXG -swj -xEy -swj -swj -xgb -rqC -rqC -swj -swj -xHV -xHV -xHV -eYz -uPX -eYz -uPX -eYz -uPX -eYz -uPX -eYz -uPX -eYz -uPX -eYz -uPX -sze -lgH -uPX -gLV -enx -eWr +gPA +siz +gPA +gPA +gnR +dSC +dSC +gPA +gPA +xHV +xHV +xHV +bvi +tLb +bvi +tLb +bvi +tLb +bvi +tLb +bvi +tLb +bvi +tLb +bvi +tLb +eRX +cXs +tLb +aBl +gdu +lre apw -wLT +gDj amF amF amF @@ -41825,22 +41831,22 @@ amF amF amF amF -iaE +aqN jlk jlk jlk -svP -svP -svP -svP -bcz -svP +xAz +xAz +xAz +xAz +keZ +xAz jlk -hvL -uzG +pap +sjt taj -nMm -hvL +ejm +pap yhu tMS jlk @@ -41848,11 +41854,11 @@ jlk jlk jlk jlk -uEY +jHq vsT rGq rGq -uha +pxg rZP jlk jlk @@ -41961,14 +41967,14 @@ aWV jXz jXz hoZ -lvD -lvD -lvD -lvD -lvD +ivn +ivn +ivn +ivn +ivn jXz jXz -jHz +jNn agi gQK agi @@ -41981,11 +41987,11 @@ aWV aWV aWV aWV -rqC -rqC -wgq -swj -rqC +dSC +dSC +weU +gPA +dSC pqC bQM bQM @@ -41999,33 +42005,33 @@ dIo dIo dIo dIo -rAU -eYz -eYz -rAU +ulT +bvi +bvi +ulT sIC xHV xHV xHV xHV xHV -tiY +wFL dXG -eYz -swj +bvi +gPA qdC -swj +gPA whu -swj +gPA whu -swj -dUf -swj -uPX -vXy -udj -swj -cRx +gPA +nNd +gPA +tLb +lac +ukX +gPA +aDE vts apw apw @@ -42041,18 +42047,18 @@ amF rZP rZP rZP -uDX -oTy -oTy +nyo +aKg +aKg rZP rZP jlk jlk -hvL -uzG +pap +sjt taj -nMm -hvL +ejm +pap uNM jlk jlk @@ -42064,7 +42070,7 @@ rZP jDR rGq rGq -ugm +bUM jlk jlk jlk @@ -42076,7 +42082,7 @@ rGq rGq rGq rGq -kXs +eqn jlk jlk jlk @@ -42172,14 +42178,14 @@ rmu aWV vOP aWV -jHz -jHz -jHz -oxv -wxY -oxv -jHz -jHz +jNn +jNn +jNn +bao +trW +bao +jNn +jNn hoZ hoZ mJq @@ -42194,10 +42200,10 @@ pab pnS aWV agi -swj -rqC -swj -rqC +gPA +dSC +gPA +dSC tYw xHV xHV @@ -42211,33 +42217,33 @@ dIo dIo dIo dIo -swj -rqC -rqC -swj +gPA +dSC +dSC +gPA xHV xHV xHV xHV xHV xHV -swj -odC -iGw -rAU +gPA +pal +xyK +ulT dIo dIo dIo kUj kUj kUj -swj -dUf -eYz -eYz -swj +gPA +nNd +bvi +bvi +gPA whu -swj +gPA orV mZo apw @@ -42260,11 +42266,11 @@ lhJ jlk rZP jlk -kZl -uzG +vgX +sjt taj -nMm -dkz +ejm +jNs jlk jlk jlk @@ -42288,7 +42294,7 @@ rGq oyd rGq rGq -kXs +eqn jlk jlk jlk @@ -42299,7 +42305,7 @@ fyO lzJ lzJ lzJ -tkj +ppN irB irB baC @@ -42385,7 +42391,7 @@ jXz pPG jXz hoZ -jHz +jNn hoZ gFg hoZ @@ -42395,38 +42401,38 @@ hoZ hoZ hoZ hoZ -nub -qxy -gir -nub -gir -qxy -nub -gir -gir -nub +fBC +bcx +hIY +fBC +hIY +bcx +fBC +hIY +hIY +fBC pCX -swj -rqC -eRl -rqC -swj -gyA +gPA +dSC +svH +dSC +gPA +sdO xHV xHV xHV -nsD -swj -swj +aGD +gPA +gPA dIo -swj -tMU -swj +gPA +rMZ +gPA tYw xHV -eYz -eYz -swj +bvi +bvi +gPA xHV xHV xHV @@ -42435,24 +42441,24 @@ xHV xHV dIo dIo -dOk -wwa +mnc +dKn dIo -krb -krb -swj -swj +bzp +bzp +gPA +gPA kUj kUj xHV -uPX -vXy -kzs -ntc -tKN -vXy +tLb +lac +uJJ +mIx +vOF +lac apw -wLT +gDj amF amF amF @@ -42461,7 +42467,7 @@ amF amF amF amF -iaE +aqN jlk mHR olk @@ -42472,11 +42478,11 @@ pdP jlk rZP jlk -kZl -uzG +vgX +sjt taj -nMm -aHJ +ejm +fJb jlk jlk ugI @@ -42507,11 +42513,11 @@ jlk lzJ lzJ lzJ -eVK +pZv lzJ lzJ lzJ -tkj +ppN lzJ irB irB @@ -42593,9 +42599,9 @@ lLQ lLQ lLQ lLQ -lvD +ivn efI -lvD +ivn hoZ hoZ hoZ @@ -42618,26 +42624,26 @@ hoZ pCX hoZ hoZ -nub -rqC -swj -rqC -swj -sPJ -swj -nsD -nsD -swj +fBC +dSC +gPA +dSC +gPA +cpM +gPA +aGD +aGD +gPA qXM -swj -iwZ +gPA +pIV lLe -eYz -eYz +bvi +bvi fJj -swj -rqC -rqC +gPA +dSC +dSC qXM xHV xHV @@ -42646,25 +42652,25 @@ tYw tYw tYw dIo -tss -rqC -rqC -rqC -eYz -rqC -rqC -rqC -eYz +gjU +dSC +dSC +dSC +bvi +dSC +dSC +dSC +bvi kUj kUj -eYz -vLX -byJ -byJ -xZM +bvi +vbs +eEY +eEY +tSy apw -swj -wLT +gPA +gDj amF fjX jXZ @@ -42673,23 +42679,23 @@ jXZ jXZ lZf amF -iaE -xFf +aqN +hHZ rZP rZP -oTy -oTy -oTy +aKg +aKg +aKg rZP rZP rZP jlk jlk -uzG +sjt taj -nMm -hvL -kXs +ejm +pap +eqn gQL taj taj @@ -42724,7 +42730,7 @@ irB uYx lzJ lzJ -oer +wAv plu lzJ irB @@ -42805,9 +42811,9 @@ lLQ lLQ lLQ lLQ -lvD +ivn bez -lvD +ivn hoZ hoZ gGx @@ -42831,26 +42837,26 @@ hoZ hoZ hoZ hoZ -loj -swj -rqC +aXX +gPA +dSC jRk -fcg -swj -swj -eRl +eic +gPA +gPA +svH dXG lLe dXG qXM dXG -eYz -eYz +bvi +bvi dXG -swj -eYz -eYz -swj +gPA +bvi +bvi +gPA xHV xHV tYw @@ -42858,35 +42864,35 @@ tYw tYw tYw dIo -rNV +jeH xzj kdK xzj -rqC +dSC xzj xzj xzj -rqC +dSC xHV kUj -uPX -vXy -swj -swj -swj -lgH -pIw +tLb +lac +gPA +gPA +gPA +cXs +iTa amF amF hiO -wEX -sXi -sXi -kZS +eVQ +wMw +wMw +gTl hiO amF amF -bDx +wYj jlk jlk taj @@ -42899,14 +42905,14 @@ rZP jlk jlk stf -nMm -hvL -svP -svP -svP -svP -svP -mJc +ejm +pap +xAz +xAz +xAz +xAz +xAz +nXT rGq rGq rGq @@ -42936,7 +42942,7 @@ irB irB lzJ lzJ -oer +wAv lzJ lzJ lzJ @@ -43017,9 +43023,9 @@ lLQ lLQ lLQ lLQ -lvD +ivn uMZ -lvD +ivn hoZ hoZ fqF @@ -43043,26 +43049,26 @@ hoZ hoZ hoZ pCX -rqC -swj -rqC -rqC -rqC -rqC -gxR +dSC +gPA +dSC +dSC +dSC +dSC +uSI dXG -swj +gPA dXG -nsD +aGD dIo -eWA -eYz -eWA +jEq +bvi +jEq dIo -swj -rqC -rqC -swj +gPA +dSC +dSC +gPA guU xHV tYw @@ -43070,55 +43076,55 @@ tYw tYw tYw dIo -xZx +qyN xzj xzj xzj -rqC +dSC xzj xzj xzj xHV xHV kUj -eYz -eYz -swj +bvi +bvi +gPA whu -ifm -vXy -swj -pyK -sXi -pyK +nrm +lac +gPA +qjy +wMw +qjy rGq rGq rGq rGq -pyK -sXi -pyK -kCH -qxP -hvL -hvL -hvL -veP +qjy +wMw +qjy +hJM +hOs +pap +pap +pap +deK fmY -xYo -hvL +eit +pap jlk jlk jlk taj -nMm -hvL -hvL -hvL -uxd -hvL -svP -mJc +ejm +pap +pap +pap +mzQ +pap +xAz +nXT rGq bDU rGq @@ -43129,16 +43135,16 @@ rZP rZP jlk jlk -rur +ceX oPU oPU -voi +eEl fjr jgu jgu jgu irB -oer +wAv lzJ lzJ oPU @@ -43147,7 +43153,7 @@ irB irB irB irB -tkj +ppN lzJ lzJ lzJ @@ -43228,12 +43234,12 @@ lLQ lLQ lLQ lLQ -odl +kiY jXz pPG jXz -jHz -jHz +jNn +jNn hoZ vjT gFg @@ -43256,25 +43262,25 @@ hoZ hoZ hoZ lLe -swj -swj -swj -swj -swj -rqC +gPA +gPA +gPA +gPA +gPA +dSC xHV -nsD +aGD xHV xHV dIo -eWA -eYz -eWA +jEq +bvi +jEq dIo -cKb -eYz -eYz -pIw +kPM +bvi +bvi +iTa tYw tYw tYw @@ -43282,54 +43288,54 @@ tYw tYw tYw dIo -cTx +eLE xzj xzj xzj -rqC +dSC xzj xzj dXG xHV xHV dIo -uPX -vXy -ntc -ntc -vXy -eYz -eYz -sXi +tLb +lac +mIx +mIx +lac +bvi +bvi +wMw fpn -sXi +wMw rGq rGq rGq rGq -sXi +wMw fpn -sXi -uzG -dMt -wsz -uMm -wsz +wMw +sjt +aGN +eRB +aYT +eRB ddM iQK ddM -wsz -wsz -ruu -wsz +eRB +eRB +pro +eRB taj -dMt -wsz -wsz -wsz -qxP -hvL -svP +aGN +eRB +eRB +eRB +hOs +pap +xAz jlk jlk jlk @@ -43341,16 +43347,16 @@ dxE rZP jlk jlk -vxI +aUV oPU oPU -voi -bBB +eEl +kGw jgu jgu jgu -pvz -oer +qaY +wAv oPU lzJ lzJ @@ -43359,8 +43365,8 @@ irB irB irB irB -tkj -oer +ppN +wAv pIA lzJ lzJ @@ -43370,7 +43376,7 @@ irB irB irB irB -gOd +dZJ wbI itN baC @@ -43435,9 +43441,9 @@ agi agi aWV jXz -lvD -lvD -lvD +ivn +ivn +ivn jXz aWV aWV @@ -43455,97 +43461,97 @@ hoZ hoZ hoZ hoZ -nub -qxy -gir -nub -qxy -gir -nub -qxy -gir -nub +fBC +bcx +hIY +fBC +bcx +hIY +fBC +bcx +hIY +fBC agi hoZ dXG -jEz -swj -swj -swj -swj -rqC +hWB +gPA +gPA +gPA +gPA +dSC dIo tYw xHV xHV dIo -eWA -ycw -eWA +jEq +mmQ +jEq dIo -bnM -rqC -rqC -swj +ugS +dSC +dSC +gPA tYw -vel -lAQ +uyb +wZB tYw tYw tYw dIo -tss -rqC -rqC -rqC -eYz +gjU +dSC +dSC +dSC +bvi xHV -rqC +dSC xHV xHV xHV -swj -eYz -eYz -byJ -byJ -eWr -eYz -eYz -sXi +gPA +bvi +bvi +eEY +eEY +lre +bvi +bvi +wMw fpn -sXi +wMw rGq ugT rGq rGq -sXi +wMw fpn -sXi -uzG -ugk -mLY -inO -mLY -mEY +wMw +sjt +feY +pxA +vkR +pxA +cXA nWh -ugk -mLY -mLY -oGg -mLY -mLY -mLY -mLY -bZD -svP -nMm -hvL -svP +feY +pxA +pxA +sYi +pxA +pxA +pxA +pxA +gxi +xAz +ejm +pap +xAz iXV jlk jlk -kXs +eqn rGq rGq rGq @@ -43553,16 +43559,16 @@ rGq rZP jlk jlk -xUr +jng oPU oPU -wgO -wgO -wgO +vKq +vKq +vKq vhB -wgO -tkj -oer +vKq +ppN +wAv lzJ lzJ irB @@ -43571,8 +43577,8 @@ irB irB irB irB -tkj -oer +ppN +wAv irB irB lzJ @@ -43581,8 +43587,8 @@ oPU irB irB irB -hub -uiD +msh +vcM wbI itN baC @@ -43681,11 +43687,11 @@ agi agi xHV xHV -rqC -rqC -rqC -rqC -rqC +dSC +dSC +dSC +dSC +dSC dIo xHV xHV @@ -43695,14 +43701,14 @@ dIo dIo dIo dIo -rqG -kLz -kLz -bNE -bNE -bNE -bNE -rqG +ePT +wVO +wVO +fMj +fMj +fMj +fMj +ePT xJw xJw rja @@ -43715,45 +43721,45 @@ egv egv egv egv -bNE +fMj apf -uPX -vXy -swj -uXP -xPk -eWr -swj -sXi -sXi -sXi +tLb +lac +gPA +lPU +brn +lre +gPA +wMw +wMw +wMw rGq rGq rGq rGq -sXi -sXi -sXi -oHm -aJv +wMw +wMw +wMw +kBN +hqR jlk jlk -gmN -uzG +bfE +sjt taj -nMm -hvL +ejm +pap jlk jlk jlk -veP -hvL -hvL -uzG +deK +pap +pap +sjt taj -nMm -hvL -svP +ejm +pap +xAz yif jlk jlk @@ -43765,16 +43771,16 @@ cye jlk jlk jlk -xUr +jng oPU oPU -wgO -wgO -wgO +vKq +vKq +vKq vhB -wgO -tkj -oer +vKq +ppN +wAv oPU lzJ irB @@ -43783,8 +43789,8 @@ irB irB irB irB -tkj -oer +ppN +wAv oPU oPU oPU @@ -43793,8 +43799,8 @@ oPU oPU oPU oPU -tkj -gOd +ppN +dZJ qkg itN baC @@ -43859,9 +43865,9 @@ agi agi aWV jXz -lvD -lvD -lvD +ivn +ivn +ivn jXz jXz jXz @@ -43870,14 +43876,14 @@ kME kME imN jXz -lvD +ivn lLQ hoZ hoZ hoZ hoZ -jHz -jHz +jNn +jNn hoZ aWV aWV @@ -43900,76 +43906,76 @@ bvY apf gAh egv -rqG -bNE -bNE -bNE -bNE +ePT +fMj +fMj +fMj +fMj pQs pQs pQs pQs -bNE -bNE -raL -rty -iXJ -raL -rqG +fMj +fMj +nuR +mov +xXN +nuR +ePT xJw rja -uvZ +nKu apf apf -uvZ +nKu egv egv egv egv egv -bNE +fMj xna -eYz -eYz -swj -swj -swj -lgH +bvi +bvi +gPA +gPA +gPA +cXs rZP amF amF hiO -tYd -hRs -qLN -emm +kss +hfv +pDi +cFr hiO amF amF -duw +mgP jlk jlk jlk jlk -uzG +sjt taj -nMm -cHK +ejm +srg jlk jlk jlk jlk -aKN -hvL -uzG +bYG +pap +sjt taj -nMm -hvL +ejm +pap jlk jlk jlk jlk -kXs +eqn rGq rGq rGq @@ -43977,16 +43983,16 @@ rGq jlk jlk jlk -vxI +aUV oPU oPU -voi -vcN +eEl +xrl jgu jgu jgu -bxm -oer +nIi +wAv oPU vQC oPU @@ -43995,8 +44001,8 @@ irB irB irB irB -tkj -uWO +ppN +eNM gSX gSX oTT @@ -44005,8 +44011,8 @@ oPU oPU gAn oPU -tkj -oer +ppN +wAv jFO itN itN @@ -44070,33 +44076,33 @@ agi agi agi aWV -rqY +drP hFC lLQ lLQ -lvD +ivn lLQ lLQ lLQ -lvD +ivn fuw lLQ lLQ -lvD +ivn lLQ hoZ hoZ hoZ hoZ hoZ -jHz -jHz +jNn +jNn agi agi agi agi hoZ -jHz +jNn qFs agi agi @@ -44105,13 +44111,13 @@ aWV aWV xJw gAh -oEi -kyF -kyF -xDk +uaA +use +use +vhw apf -bNE -bNE +fMj +fMj pQs pQs pQs @@ -44123,32 +44129,32 @@ pQs pQs pQs pQs -rKA -qCk -cvd -rRz -cjG +dFZ +gHk +oEW +kYy +xRx xJw rja -bNE -yiR +fMj +amO xna -bNE +fMj egv egv egv egv apf apf -wUs -odC -vXy -ntc -ntc -ntc -vXy +sZS +pal +lac +mIx +mIx +mIx +lac rZP -iaE +aqN amF aXn jXZ @@ -44157,53 +44163,53 @@ jXZ jXZ qCW amF -iaE -lev +aqN +eTG jlk jlk oOp -xpO -uzG +qIN +sjt taj -nMm +ejm jlk jlk jlk jlk jlk jlk -hvL -uzG +pap +sjt taj -khd -hvL +cjb +pap jlk jlk jlk rZP -mWO -svP +bYZ +xAz rGq rGq rGq jlk jlk rZP -lwA +qmN oPU oPU -voi +eEl xck jgu oCe jgu -tkj -oer +ppN +wAv oPU uKE oPU rsg -kDa +vgR irB jgu jgu @@ -44211,14 +44217,14 @@ cPL uCX jgu jgu -hcY -wgO -gqM +sjK +vKq +cAK gSX gSX oTT -tkj -oer +ppN +wAv vLH itN aju @@ -44282,33 +44288,33 @@ agi agi agi aWV -rRg +mQd lLQ lLQ lLQ -lvD +ivn lLQ lLQ lLQ -lvD +ivn lLQ lLQ lLQ -lvD -otg -dLL +ivn +mWT +cGz agi -nub +fBC hoZ hoZ -jHz -jHz +jNn +jNn agi agi agi agi agi -jHz +jNn qFs agi jXz @@ -44317,10 +44323,10 @@ aWV aWV xJw xJw -nhM -mMH -aBs -cOj +sfE +kiV +gJG +vNx pQs apf pQs @@ -44335,30 +44341,30 @@ pQs pQs pQs pQs -raL -wND -imp -raL -bNE +nuR +kys +rQL +nuR +fMj rja rja -bNE +fMj apf apf -wUs -uvZ +sZS +nKu egv -uvZ +nKu apf -yiR +amO apf -bNE -eYz -eYz +fMj +bvi +bvi tYw -swj -swj -swj +gPA +gPA +gPA uNM uNM uNM @@ -44374,53 +44380,53 @@ uNM uNM taj oOp -xpO -hBf +qIN +jeE taj -nMm +ejm jlk jlk jlk jlk jlk jlk -wuN -jFz +lcy +lil jlk -aik -wuN +eDa +lcy jlk jlk jlk rZP -uci -svP +vep +xAz rGq rGq rGq -bjR -mvY +omG +deT glG -voi +eEl oPU oPU -voi +eEl oPZ jgu oCe jgu -tkj -oer +ppN +wAv oPU rsg -kDa -sTU +vgR +rIV jgu kXD jgu qOW -mWs -dCK +ubq +kln chT jgu cPL @@ -44428,14 +44434,14 @@ sTm uCX jgu jgu -hcY -tkj -oer -xVW -oyT -oyT -oyT -uaL +sjK +ppN +wAv +sBX +pZV +pZV +pZV +jLq qNv sUt jgu @@ -44494,21 +44500,21 @@ agi agi agi aWV -oLK +dvh lLQ lLQ lLQ -lvD +ivn lLQ lLQ lLQ -lvD +ivn lLQ lLQ lLQ -lvD +ivn lLQ -oiV +jcE jXz hoZ hoZ @@ -44529,10 +44535,10 @@ xJw xJw xJw rja -nhM -dGx -kLI -cOj +sfE +utI +qZK +vNx pQs pQs qGP @@ -44551,28 +44557,28 @@ pQs pQs pQs pQs -bNE +fMj apf apf -yiR -bNE +amO +fMj apf apf apf apf apf apf -bNE -bNE +fMj +fMj apf -gPo +dgz qXM -rAU +ulT tYw tYw dXG uNM -qjR +iQA uNM eUo wXy @@ -44585,54 +44591,54 @@ uNM uNM uNM taj -vaC -hvL -uzG +iwg +pap +sjt taj -hpn -hvL +djG +pap jlk jlk jlk jlk -svP -hvL -uzG +xAz +pap +sjt wIp -nMm -hvL -svP +ejm +pap +xAz jlk jlk rZP -mJg -svP +iBI +xAz rGq rGq rGq -svP -nTV +xAz +sSr glG -voi +eEl oPU oPU -voi -ktq +eEl +krM jgu jgu jgu -bxm -oer +nIi +wAv oPU -uLf +hmk jgu kXD jgu wbI wbI wbI -tkj -oer +ppN +wAv wbI eVf wnu @@ -44640,14 +44646,14 @@ wnu dqE tNV kXD -hcY -tkj -oer +sjK +ppN +wAv lzJ -mtG -tiZ -tiZ -tiZ +exH +oPO +oPO +oPO qNv cbA jgu @@ -44706,21 +44712,21 @@ agi agi agi aWV -rqY +drP lLQ lLQ lLQ -lvD +ivn lLQ lLQ lLQ -lvD +ivn lLQ lLQ lLQ -lvD -hrw -ddN +ivn +lGF +ahO jXz agi agi @@ -44732,8 +44738,8 @@ hoZ agi agi hoZ -jHz -jHz +jNn +jNn egv xJw xJw @@ -44741,119 +44747,119 @@ xJw xJw xJw rja -lge -sWe -sWe -lRr +oOS +qvz +qvz +swK apf pQs pQs pQs pQs pQs -bNE -aPO -bNE -bNE -bNE -aPO -bNE +fMj +bkZ +fMj +fMj +fMj +bkZ +fMj pQs pQs pQs pQs pQs pQs -wUs +sZS hSH apf -wUs -unA +sZS +oyv apf apf apf -bNE -bNE +fMj +fMj apf egv egv -nwT -pLS -fTd +nit +qnL +jTn taj taj taj taj -svP -svP -svP -svP -svP -svP -svP -svP -svP -hvL +xAz +xAz +xAz +xAz +xAz +xAz +xAz +xAz +xAz +pap bUt taj taj -hvL -uxd -uzG +pap +mzQ +sjt cDb -nMm -hvL +ejm +pap jlk jlk jlk -svP -svP -hvL -uzG +xAz +xAz +pap +sjt wIp -nMm -hvL -svP +ejm +pap +xAz jlk jlk jlk -kXs +eqn rGq rGq rGq rGq -svP -siE +xAz +tYc glG -xUr +jng oPU oPU -wgO -wgO -wgO +vKq +vKq +vKq vhB -wgO -tkj -oer +vKq +ppN +wAv rsg -sTU +rIV kXD oRR dLq -xVW -oyT -oyT -oWw -exI -oyT -oyT -ijt +sBX +pZV +pZV +dqC +wot +pZV +pZV +fPs wbI wbI lzJ kXD -hcY -tkj +sjK +ppN lzJ irB lzJ @@ -44931,12 +44937,12 @@ cYV fUz mIf jXz -otg -dLL +mWT +cGz jXz agi agi -jHz +jNn hoZ hoZ idi @@ -44944,25 +44950,25 @@ hoZ agi agi hoZ -jHz -jHz +jNn +jNn rja rja rja rja rja rja -rqG +ePT pQs pQs apf pQs pQs -bNE -bNE -bNE -bNE -bNE +fMj +fMj +fMj +fMj +fMj rja rja rja @@ -44970,15 +44976,15 @@ rja rja rja rja -rqG -bNE +ePT +fMj pQs pQs pQs pQs pQs -qwK -unA +dBS +oyv rja rja xJw @@ -44989,43 +44995,43 @@ apf egv egv egv -cYI -tpF -gFW +mvU +pgp +lDY taj taj taj -svP -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL +xAz +pap +pap +pap +pap +pap +pap +pap +pap +pap +pap +pap +pap +pap +pap uNM -jFz +lil wIp -aik +eDa uNM -whl -vmT -fxL -svP -svP -hvL -uzG +xEw +kfS +rKZ +xAz +xAz +pap +sjt wIp -nMm -hvL -svP +ejm +pap +xAz jlk jlk jlk @@ -45037,36 +45043,36 @@ rGq jlk jlk rZP -aIB +gNG bFC oPU -wgO -wgO -wgO +vKq +vKq +vKq vhB -wgO -tkj -oer -uLf +vKq +ppN +wAv +hmk jgu jgu wbI wbI -tkj -gZM -tiZ -oJd -tiZ -tiZ -wCI -oer +ppN +diX +oPO +tnt +oPO +oPO +vab +wAv wbI wbI wbI kXD -hcY -mPX -tiZ +sjK +oRB +oPO irB irB wbI @@ -45131,30 +45137,30 @@ aWV aWV jXz jXz -eim +mUc lLQ -orB +ljA jXz -pgx -pgx -pgx +aiz +aiz +aiz jXz -eim +mUc lLQ -orB +ljA gKi lLQ -oiV +jcE jXz agi agi agi -jHz +jNn hoZ -jNw -rqA -rqA -skG +dge +eQV +eQV +nQe hoZ cto hoZ @@ -45164,12 +45170,12 @@ rja rja rja rja -fLX +cMG pQs pQs pQs pQs -bNE +fMj rja rja vVi @@ -45184,15 +45190,15 @@ xUi rja rja rja -aPO -bNE +bkZ +fMj pQs pQs pQs pQs apf -bNE -rqG +fMj +ePT rja xJw xJw @@ -45204,11 +45210,11 @@ egv jlk jlk jlk -svP +xAz taj taj -svP -hvL +xAz +pap uNM sgw vFi @@ -45222,26 +45228,26 @@ sgw vFi yhu uNM -hvL -uzG +pap +sjt taj -hpn -hvL -hvL -hvL -hvL -hvL -hvL -hvL +djG +pap +pap +pap +pap +pap +pap +pap jlk jlk -nMm -hvL -svP +ejm +pap +xAz jlk jlk jlk -kXs +eqn rGq rGq rGq @@ -45252,31 +45258,31 @@ jlk irB irB irB -lwA -ktq +qmN +krM jgu jgu jgu -bxm -uWO -sTU +nIi +eNM +rIV kXD wbI jcv djf -tkj -oer +ppN +wAv hPi jUG jUG oKf -lxT -alP +riR +nzx wbI jcv wbI kXD -oCn +iRY wHl wbI irB @@ -45341,53 +45347,53 @@ agi agi aWV aWV -pbv -pbv -lvD +fhV +fhV +ivn lLQ -oiV -pbv -jHz +jcE +fhV +jNn rWt -jHz -pbv -lvD +jNn +fhV +ivn lLQ -oiV +jcE gKi -hrw -ddN +lGF +ahO jXz agi agi agi agi hoZ -iuN -krn -kJS -mcH +oag +kph +oRO +kVY hoZ -jHz -jHz +jNn +jNn egv xJw xJw xJw xJw rja -wKl +giq pQs pQs xCV pQs -cjG +xRx rja -wfc -jYK -jYK -jYK -jYK +gqA +rzL +rzL +rzL +rzL mDz toE mDz @@ -45398,16 +45404,16 @@ eTC rja rja rja -bNE +fMj pQs pQs pQs pQs pQs pQs -bNE -bNE -cjG +fMj +fMj +xRx rja xJw xJw @@ -45416,41 +45422,41 @@ egv jlk bQM lHx -dRs -jrN -ltA -riP -hvL -kCH -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -nwv -nVR -sUV +cgr +qdM +hrQ +fqt +pap +hJM +eRB +eRB +eRB +eRB +eRB +eRB +eRB +eRB +eRB +eRB +eRB +ahl +hIs +isX taj -dMt -uMm -wsz -wsz -wsz -wsz +aGN +aYT +eRB +eRB +eRB +eRB jlk jlk jlk jlk -nMm -hvL -svP -svP +ejm +pap +xAz +xAz jlk jlk rGq @@ -45464,35 +45470,35 @@ jlk irB itN irB -xUr +jng xck jgu itN jgu -tkj -bcT +ppN +xWJ jgu jgu jBQ bvK dLq -tkj -oer -pGK -jfd -hRX -mjB -tkj -oer +ppN +wAv +jRK +poe +uLP +wPN +ppN +wAv jBQ oRR dLq jgu jgu -hcY +sjK wbI -tkj -oer +ppN +wAv lzJ wbI irB @@ -45553,19 +45559,19 @@ agi aWV aWV jXz -pbv -pbv -lvD +fhV +fhV +ivn hoZ -lvD -pbv -vwD -jHz -lvD -pbv -lvD -lvD -lvD +ivn +fhV +cDz +jNn +ivn +fhV +ivn +ivn +ivn gKi gKi gKi @@ -45575,13 +45581,13 @@ agi agi agi hoZ -iuN -ksV -kNW -mcH +oag +xDh +rDP +kVY hoZ -jHz -jHz +jNn +jNn rja xJw xJw @@ -45589,17 +45595,17 @@ xJw xJw rja rja -bNE -bNE +fMj +fMj pQs pQs -bNE +fMj rja rja -kAc -mIQ -hDb -jYK +kqH +elG +dHe +rzL xxD xxD xxD @@ -45611,15 +45617,15 @@ xxD hHq rja rja -bNE +fMj pQs pQs pQs -oEi -kyF -kyF -xDk -bNE +uaA +use +use +vhw +fMj rja rja rja @@ -45628,12 +45634,12 @@ egv bQM bQM lHx -qjh +xHn taj dlA -svP -hvL -uzG +xAz +pap +sjt taj taj taj @@ -45645,7 +45651,7 @@ taj taj taj taj -mJc +nXT taj taj taj @@ -45660,13 +45666,13 @@ jlk jlk jlk jlk -hvL -svP -svP +pap +xAz +xAz rGq knh -hvL -svP +pap +xAz rGq rGq jlk @@ -45681,30 +45687,30 @@ irB jgu itN jgu -tkj -sRE +ppN +jgB jgu anu wbI rBz wbI -tkj -oer -pGK -hRX -pzh -sQL -nez -oer +ppN +wAv +jRK +uLP +qyx +kkC +ngK +wAv wbI rBz wbI qkg jgu -sBf +hVY wbI -tkj -oer +ppN +wAv wbI vtl irB @@ -45765,35 +45771,35 @@ agi jXz jXz jXz -otg +mWT lLQ lLQ -otg -otg -otg +mWT +mWT +mWT gzb -otg -otg -otg +mWT +mWT +mWT wRg -otg -otg -otg +mWT +mWT +mWT gzb wRg gzb -otg -otg -otg -otg +mWT +mWT +mWT +mWT hoZ -vHo -lIj -uQJ -uOC -jHz -jHz -bNE +lxs +qLp +oBx +lVU +jNn +jNn +fMj ydb pQs xJw @@ -45802,11 +45808,11 @@ egv egv rja rja -bNE +fMj pQs pQs pQs -bNE +fMj rja vVi vVi @@ -45824,16 +45830,16 @@ xxD xxD rja rja -bNE +fMj pQs pQs -nhM -mMH -aBs -cOj -bNE -bNE -cjG +sfE +kiV +gJG +vNx +fMj +fMj +xRx rja xJw egv @@ -45843,29 +45849,29 @@ rZP lHx rZP taj -svP -ftU -uzG +xAz +ifQ +sjt taj -ugk -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -oGg -lFD -mLY -mLY -mLY -mLY -bZD -ugk -adE +feY +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +sYi +dHH +pxA +pxA +pxA +pxA +gxi +feY +mhv rZP rZP rZP @@ -45873,12 +45879,12 @@ rZP jlk jlk jlk -svP +xAz rGq rGq knh -hvL -svP +pap +xAz rGq rGq jlk @@ -45893,30 +45899,30 @@ irB jgu jgu jgu -tkj -osv -iyk -oyT -oyT -oyT -oyT -oWw -oer -pGK -mxs -vhI -fgM -tkj -lzP -oyT -oyT -oyT -eNn -uqj -bFi -oyT -oWw -oer +ppN +vhN +eYI +pZV +pZV +pZV +pZV +dqC +wAv +jRK +eoM +xRF +vyh +ppN +xIP +pZV +pZV +pZV +oMY +jJd +gbe +pZV +dqC +wAv fyO oyC wbI @@ -45967,34 +45973,34 @@ cAW agi agi aPD -tpE -rUf -jHz -jHz -jHz +nWA +pRs +jNn +jNn +jNn hoZ hoZ hoZ mjx lLQ lLQ -jHz -jHz -jHz -haJ -jHz +jNn +jNn +jNn +lfT +jNn lLQ lLQ lLQ -jHz -jHz -jHz -jHz -jHz -jHz -jHz -jHz -jHz +jNn +jNn +jNn +jNn +jNn +jNn +jNn +jNn +jNn hoZ hoZ pCX @@ -46003,10 +46009,10 @@ hoZ hoZ hoZ qSm -jNw -kyF -kyF -xDk +dge +use +use +vhw pQs rja egv @@ -46014,21 +46020,21 @@ pQs pQs egv ccH -bNE +fMj gAh pQs pQs pQs pQs -bNE -bNE -bNE -bNE -bNE +fMj +fMj +fMj +fMj +fMj rja kze rja -lzE +hTl rja rja tDQ @@ -46037,15 +46043,15 @@ xxD xxD rja rja -rqG +ePT pQs -nhM -dGx -kLI -cOj +sfE +utI +qZK +vNx pQs pQs -bNE +fMj rja xJw egv @@ -46054,20 +46060,20 @@ bQM bQM bQM lHx -svP -svP -hvL -hBf +xAz +xAz +pap +jeE taj -nMm -hvL -hvL -hvL -hvL -hvL -gsU -iON -vrO +ejm +pap +pap +pap +pap +pap +uBg +kxE +fnB jlk jlk jlk @@ -46075,8 +46081,8 @@ jlk jlk jlk jlk -uzG -nMm +sjt +ejm jlk jlk jlk @@ -46085,12 +46091,12 @@ jlk jlk jlk jlk -svP +xAz rGq rGq knh -hvL -svP +pap +xAz rGq rGq rGq @@ -46105,30 +46111,30 @@ irB itN itN oPU -tkj -fdR -spA -tiZ -tiZ -tiZ -tiZ -wCI -lAn -dqa -sbf -vhI -sQL -oWG -mtG -tiZ -tiZ -tiZ -uVO +ppN +eAJ +lBZ +oPO +oPO +oPO +oPO +vab +jqa +bim +rTY +xRF +kkC +kaG +exH +oPO +oPO +oPO +gTk tXD -wSo -tiZ -tiZ -qhk +xBh +oPO +oPO +xqk wbI wbI wbI @@ -46179,8 +46185,8 @@ cAW agi agi aPD -tpE -gXF +nWA +thH bPK clN clN @@ -46189,44 +46195,44 @@ clN clN crM uYS -mlu -hrw -hrw -hrw -hrw -hrw -lvD +rUX +lGF +lGF +lGF +lGF +lGF +ivn lLQ -lvD -hrw -hrw -hrw -hrw -hrw -lvD -hrw -hrw -hrw -jHz +ivn +lGF +lGF +lGF +lGF +lGF +ivn +lGF +lGF +lGF +jNn hoZ hoZ -hrw -hrw -hrw -hrw -jHz -nhM -mQG -oEs -cOj -bNE -bNE +lGF +lGF +lGF +lGF +jNn +sfE +oka +pFB +vNx +fMj +fMj apf -bNE -bNE +fMj +fMj lag -bNE -bNE +fMj +fMj pQs pQs pQs @@ -46237,27 +46243,27 @@ pQs apf gHy pQs -unA -bNE -bNE +oyv +fMj +fMj pQs -ioE +aFr rja jta jta rja -xhM +agb rja rja rja -bNE -lge -sWe -sWe -lRr -bNE -bNE -bNE +fMj +oOS +qvz +qvz +swK +fMj +fMj +fMj rja xJw egv @@ -46268,17 +46274,17 @@ bQM rZP lHx rZP -hvL -uzG +pap +sjt taj -nMm -hvL -oTy -oTy -oTy -oTy -oTy -oTy +ejm +pap +aKg +aKg +aKg +aKg +aKg +aKg jlk jlk jlk @@ -46287,15 +46293,15 @@ jlk jlk jlk jlk -jFz -aik +lil +eDa jlk jlk jlk jlk jlk jlk -svP +xAz rGq rGq rGq @@ -46317,21 +46323,21 @@ irB itN itN oPU -tkj -sRE +ppN +jgB jgu anu wbI jcv wbI -tkj -oer -pGK -uxN -gTc -sQL -nWk -oer +ppN +wAv +jRK +rMs +wzu +kkC +nFt +wAv wbI jcv wbI @@ -46391,8 +46397,8 @@ cAW agi agi aPD -uOx -gXF +ibI +thH bQh hoZ hoZ @@ -46400,42 +46406,42 @@ hoZ hoZ jXz jXz -jcG -hsl +cbp +jYx jXz -pgx -pgx -pgx +aiz +aiz +aiz jXz -wFd -jHz -hsl +ncE +jNn +jYx aWV -pgx -pgx -pgx +aiz +aiz +aiz aWV -wFd +ncE hoZ hoZ hoZ hoZ -jHz +jNn hoZ hoZ -jHz -jHz -jHz -bNE -nhM -npx -oTz -cOj -bNE -bNE -bNE +jNn +jNn +jNn +fMj +sfE +sFn +uuq +vNx +fMj +fMj +fMj apf -bNE +fMj lag apf apf @@ -46452,21 +46458,21 @@ pQs pQs pQs pQs -bNE +fMj gAh rja rja rja rja -hKN -hKN -weV +fkK +fkK +fJl rja -paF +fxQ pQs apf aHH -bNE +fMj rja vVi vVi @@ -46480,36 +46486,36 @@ bQM bQM bQM lHx -hvL -uzG +pap +sjt taj -nMm -hvL -hvL -bHR -bHR -bHR -hvL -hvL -bHR -bHR +ejm +pap +pap +noC +noC +noC +pap +pap +noC +noC jlk jlk jlk jlk -svP -ing -uzG -nMm -svP -svP +xAz +uCb +sjt +ejm +xAz +xAz jlk jlk -svP -svP -svP -svP -svP +xAz +xAz +xAz +xAz +xAz dYI yio yio @@ -46527,23 +46533,23 @@ irB irB itN itN -sIz +tDs oPU -tkj -bcT +ppN +xWJ jgu jgu jBQ nAf dLq -tkj -oer -pGK -hRX -sbf -sQL -tkj -oer +ppN +wAv +jRK +uLP +rTY +kkC +ppN +wAv jBQ oRR dLq @@ -46604,45 +46610,45 @@ aWV aWV aWV aPD -caA +cEf bQh hoZ hoZ -lun +ofd jXz jXz xrd -jHz -oiV -nmh -aeb -wLS -dLL -cRK -jnU -jHz -oiV -nmh -aeb -otg -dLL -cRK -jnU +jNn +jcE +czH +wiv +kRM +cGz +enD +hUN +jNn +jcE +czH +wiv +mWT +cGz +enD +hUN hoZ -vZs +rtx qFs qFs hoZ -jHz +jNn qFs qFs jXz jXz pQs -lge -sWe -sWe -lRr +oOS +qvz +qvz +swK pQs rja egv @@ -46650,31 +46656,31 @@ pQs pQs egv egv -bNE +fMj dbi pQs pQs gAh -bNE -bNE -bNE -bNE +fMj +fMj +fMj +fMj pQs pQs -wUs +sZS pQs gHy pQs -bNE -bNE -bNE +fMj +fMj +fMj rja rja -scH -hyo -laX +joO +ein +luo rja -irQ +wpA lyY apf iTm @@ -46692,36 +46698,36 @@ bQM bQM bQM lHx -qzM -uzG +hMm +sjt taj -dMt -wsz -wsz -wsz -wsz -wsz -nVR -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -sUV -nMm -svP -svP -svP -svP -svP -hSA -svP +aGN +eRB +eRB +eRB +eRB +eRB +hIs +eRB +eRB +eRB +eRB +eRB +eRB +eRB +eRB +eRB +isX +ejm +xAz +xAz +xAz +xAz +xAz +gqL +xAz rGq -svP +xAz nLV wIJ iyS @@ -46739,23 +46745,23 @@ uGT itN itN itN -kMC +hQL oPU -tkj -eEX -aBD +ppN +qNr +qvK kXD wbI rBz wbI -qUC -oer +jMb +wAv sSM sTm sTm uCX -tkj -oer +ppN +wAv wbI rBz wbI @@ -46816,30 +46822,30 @@ aPD aPD aPD aPD -jHz +jNn bQh hoZ hoZ hoZ jXz -maY +wkw fUC -jHz -oiV -lvD -jnU +jNn +jcE +ivn +hUN lLQ -oiV -lvD -jnU -jHz -nkM -lvD -jnU +jcE +ivn +hUN +jNn +oTF +ivn +hUN lLQ -oiV -lvD -jnU +jcE +ivn +hUN eSH qFs agi @@ -46852,8 +46858,8 @@ agi aWV pQs pQs -bNE -bNE +fMj +fMj pQs pQs xJw @@ -46861,18 +46867,18 @@ egv egv egv rja -rqG +ePT pQs pQs pQs -rqG +ePT rja vVi vVi vVi rja -bNE -bNE +fMj +fMj pQs kds pQs @@ -46880,17 +46886,17 @@ pQs pQs pQs pQs -bNE +fMj rja rja rja rja rja -bNE +fMj aHH iTm iTm -lRW +cYH vVi toE mDz @@ -46904,8 +46910,8 @@ bQM bQM bQM lHx -hvL -uzG +pap +sjt taj stf taj @@ -46924,16 +46930,16 @@ taj taj nOy taj -nMm -svP -svP +ejm +xAz +xAz rGq -svP +xAz taj taj taj -svP -svP +xAz +xAz bAc hgS hgS @@ -46945,29 +46951,29 @@ sfI dNx siK jlk -aIB -bSS -wgO -dDn -wgO -slc -wgO +gNG +tbM +vKq +jXJ +vKq +qME +vKq oPU -tkj -oer -uLf +ppN +wAv +hmk kXD wbI wbI wbI -tkj -exI -oyT -oyT -nOi -oyT -oWw -oer +ppN +wot +pZV +pZV +hZY +pZV +dqC +wAv wbI wbI tNV @@ -47023,35 +47029,35 @@ bTo pcu pcu agi -hCp -wSc -gvZ -ivD -lkM +bqe +eYA +cwu +rXf +fnU hoZ bQh hoZ -jHz +jNn jXz aWV jXz eEJ -jHz -oiV -nmh -jCe -hrw -cnH -cRK -jnU -jHz -oiV -nmh -jCe -hrw -ddN -cRK -jnU +jNn +jcE +czH +thJ +lGF +dZU +enD +hUN +jNn +jcE +czH +thJ +lGF +ahO +enD +hUN agi aWV aWV @@ -47064,8 +47070,8 @@ egv egv egv egv -bNE -bNE +fMj +fMj apf xJw xJw @@ -47073,31 +47079,31 @@ xJw xJw xJw rja -fLX +cMG pQs pQs -bNE +fMj rja rja -bya +axW xxD vkh rja vVi rja -bNE +fMj pQs -bNE -bNE +fMj +fMj apf pQs pQs qfg -bNE -bNE -dfh -bNE -bNE +fMj +fMj +lbh +fMj +fMj pQs apf pQs @@ -47116,70 +47122,70 @@ xJw bQM bQM rZP -lvf -uzG +eZv +sjt taj -ugk -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -tHw -mLY -mLY -mLY -aJv +feY +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +mWM +pxA +pxA +pxA +hqR rGq uNM uNM -svP +xAz taj -svP +xAz fpn -svP +xAz fpn -svP +xAz fpn -svP +xAz fpn -kIg +nhE fpn -svP +xAz fpn -svP +xAz fpn vwM vhB -wgO +vKq vhB -wgO +vKq vhB -wgO +vKq vhB oPU -gyt -oer +igv +wAv ckZ kXD aBJ wKb wbI -mPX -tiZ -tiZ -wCI -mtG -tiZ -tiZ -qhk +oRB +oPO +oPO +vab +exH +oPO +oPO +xqk wbI wZv lzJ @@ -47243,27 +47249,27 @@ aPD hoZ bQh hoZ -jHz +jNn jXz aWV jXz jXz -jcG -hsl +cbp +jYx jXz -kPf -kPf -kPf +meL +meL +meL jXz -wFd -jHz -hsl +ncE +jNn +jYx aWV -kPf -kPf -kPf +meL +meL +meL aWV -wFd +ncE agi aWV aWV @@ -47277,21 +47283,21 @@ egv egv egv apf -bNE -bNE +fMj +fMj rja xJw xJw xJw xJw rja -wKl +giq pQs pQs -bNE +fMj rja -sGC -jYK +rzH +rzL xxD xxD sII @@ -47301,7 +47307,7 @@ vVi kze vVi rja -rqG +ePT pQs pQs pQs @@ -47313,7 +47319,7 @@ pQs pQs pQs pQs -bNE +fMj vVi xxD xxD @@ -47322,17 +47328,17 @@ vyu xxD xxD xxD -jYK -mIQ +rzL +elG wFU bQM bQM rZP -sGx -uzG +mBy +sjt taj -nMm -gxQ +ejm +sEn rZP lHx lHx @@ -47344,41 +47350,41 @@ lHx jlk jlk jlk -hvL -gbV -uTs -hvL -ufN -hvL +pap +rdO +lrb +pap +bHr +pap jlk uNM ubN taj ubN fpn -svP +xAz fpn -svP +xAz fpn -svP +xAz fpn -svP +xAz fpn -mGX +iwS fpn -svP +xAz fpn vwM vhB -wgO +vKq vhB -wgO +vKq vhB -wgO +vKq vhB oPU -tkj -oer +ppN +wAv ckZ kXD lvt @@ -47387,8 +47393,8 @@ tas tTA wbI wbI -tkj -ydd +ppN +ebC wbI wbI wbI @@ -47452,30 +47458,30 @@ aWV aWV aWV aPD -iGx +nTh bQh hoZ -jHz +jNn jXz aWV jXz xrd -jHz -oiV -nmh -aeb -otg -dLL -cRK -jnU -jHz -oiV -nmh -aeb -otg -dLL -cRK -jnU +jNn +jcE +czH +wiv +mWT +cGz +enD +hUN +jNn +jcE +czH +wiv +mWT +cGz +enD +hUN agi aWV aWV @@ -47488,22 +47494,22 @@ egv apf apf lag -bNE -bNE +fMj +fMj apf -bNE +fMj egv egv rja rja ccH -rqG +ePT pQs pQs -cjG +xRx rja -hzi -jYK +mDy +rzL xxD xxD xxD @@ -47514,13 +47520,13 @@ xxD dsW rja rja -bNE +fMj pQs pQs -oEi -kyF -kyF -xDk +uaA +use +use +vhw pQs pQs pQs @@ -47534,17 +47540,17 @@ xxD xxD xxD xxD -jYK -kAc +rzL +kqH wFU bQM bQM lHx -jkj -uzG +jfD +sjt taj -nMm -hvL +ejm +pap lHx bQM bQM @@ -47564,33 +47570,33 @@ rGq jlk jlk uNM -iFC -svP -cBm +lxL +xAz +uct fpn -svP +xAz fpn -svP +xAz fpn -svP +xAz fpn -svP +xAz fpn -svP +xAz fpn -svP +xAz fpn vwM vhB -wgO +vKq vhB -wgO +vKq vhB -wgO +vKq vhB oPU -tkj -oer +ppN +wAv ckZ jgu jgu @@ -47599,8 +47605,8 @@ jUG oKf jgu wuC -roi -tMb +khO +fPa xIh itN wbI @@ -47663,31 +47669,31 @@ agi agi agi aPD -gkE -jHz +bTL +jNn bQh hoZ -teu +lxH jXz aWV -cje +pTG fUC -jHz -oiV -lvD -jnU +jNn +jcE +ivn +hUN lLQ -oiV -lvD -jnU -jHz -oiV -lvD -jnU +jcE +ivn +hUN +jNn +jcE +ivn +hUN lLQ -oiV -qJR -jnU +jcE +txG +hUN agi aWV aWV @@ -47702,20 +47708,20 @@ apf lag egv apf -bNE -bNE +fMj +fMj egv egv -ioE -fCw -rqG +aFr +eNy +ePT pQs pQs pQs -bNE +fMj rja -lMq -jYK +eFJ +rzL xxD xxD xxD @@ -47726,18 +47732,18 @@ xxD xxD jta vVi -bNE +fMj pQs pQs -nhM -mMH -aBs -cOj +sfE +kiV +gJG +vNx gAh pQs gAh pQs -bNE +fMj rja rja rja @@ -47746,17 +47752,17 @@ rja tDQ xxD xxD -jYK -hDb +rzL +dHe wFU bQM bQM lHx -hvL -uzG +pap +sjt taj -nMm -hvL +ejm +pap lHx bQM bQM @@ -47770,16 +47776,16 @@ jlk jlk sgw sgw -bvr +gkJ rGq sgw sgw jlk uNM ubN -svP +xAz ubN -kIg +nhE taj taj taj @@ -47793,26 +47799,26 @@ taj taj taj rZP -wgO -wgO -wgO -wgO -wgO -wgO -wgO +vKq +vKq +vKq +vKq +vKq +vKq +vKq dmT -tkj -oer +ppN +wAv ove dJe dJe -vuX -wgO -uLf +vHG +vKq +hmk jgu jgu hPi -gtf +wWT jgu itN jBQ @@ -47875,8 +47881,8 @@ agi agi agi aPD -eYs -jHz +rsN +jNn bQk hoZ hoZ @@ -47884,22 +47890,22 @@ jXz aWV jXz eEJ -jHz -oiV -nmh -jCe -dXi -hPL -cRK -jnU -haJ -oiV -nmh -jCe -mpN -ddN -cRK -jnU +jNn +jcE +czH +thJ +tua +nNw +enD +hUN +lfT +jcE +czH +thJ +rEx +ahO +enD +hUN agi aWV aWV @@ -47913,18 +47919,18 @@ apf egv egv egv -bNE -bNE -bNE +fMj +fMj +fMj pQs gAh -bNE +fMj pQs pQs pQs pQs pQs -bNE +fMj rja rja vVi @@ -47939,36 +47945,36 @@ xxD jta rja rja -bNE +fMj pQs -nhM -dGx -kLI -cOj -oEi -kyF -kyF -xDk +sfE +utI +qZK +vNx +uaA +use +use +vhw pQs -bNE +fMj rja -hSk -weV -xhM +qpQ +fJl +agb xxD xxD xxD -jYK -whr +rzL +wrU xJw bQM bQM lHx -hvL -uzG +pap +sjt taj -nMm -hvL +ejm +pap lHx bQM bQM @@ -47988,14 +47994,14 @@ fmg jlk jlk uNM -fhB -svP -oIz +bNf +xAz +nGD taj -qAQ -qAQ -qAQ -qAQ +plU +plU +plU +plU taj ohY eTb @@ -48005,27 +48011,27 @@ pdP amF rZP rZP -lgx -lgx -lgx -lgx -mLL -cOC -wgO +iLY +iLY +iLY +iLY +pMz +vas +vKq oPU -mPX -qhk +oRB +xqk oPU oPU oPU gAn oPU ove -dbr -dbr -vMN -fGi -dbr +rXS +rXS +qZz +aGX +rXS itN wbI qJL @@ -48087,31 +48093,31 @@ agi agi agi aPD -auj +qTf hoZ bQh hoZ -jHz +jNn hoZ jXz jXz jXz -jcG -hsl +cbp +jYx jXz -kue -xgU -kue +faS +pKW +faS jXz -wFd -jHz -hsl +ncE +jNn +jYx aWV -kue -kue -kue +faS +faS +faS aWV -iIZ +odg agi agi dxS @@ -48125,11 +48131,11 @@ egv egv eXp eXp -bNE -bNE -bNE -bNE -bNE +fMj +fMj +fMj +fMj +fMj pQs pQs pQs @@ -48137,11 +48143,11 @@ pQs pQs pQs pQs -rqG +ePT rja -bNE +fMj pQs -bNE +fMj rja vVi rja @@ -48151,18 +48157,18 @@ xxD xxD soN rja -bNE +fMj pQs -lge -sWe -sWe -lRr -nhM -mMH -aBs -cOj +oOS +qvz +qvz +swK +sfE +kiV +gJG +vNx pQs -bNE +fMj rja rja rja @@ -48176,11 +48182,11 @@ xJw xJw xJw xJw -guz -guz -guz -guz -guz +veI +veI +veI +veI +veI cEw cEw cEw @@ -48190,13 +48196,13 @@ cEw cEw cEw cEw -guz -guz -brY +veI +veI +lFr okv -guz -brY -guz +veI +lFr +veI aTo aTo rZP @@ -48217,26 +48223,26 @@ rZP rZP rZP rZP -juX -juX -juX -juX +icv +icv +icv +icv itN itN itN itN -dGA -lgx +jgW +iLY vhB vhB -lgx +iLY vhB vhB -lgx +iLY vhB vhB -lgx -lgx +iLY +iLY vhB itN itN @@ -48303,28 +48309,28 @@ hoZ hoZ bUw hoZ -jHz +jNn hoZ jXz jXz xrd lLQ -lvD -otg -otg -otg -otg -otg -lvD +ivn +mWT +mWT +mWT +mWT +mWT +ivn lLQ -lvD -otg -otg -otg -otg -otg -lvD -jnU +ivn +mWT +mWT +mWT +mWT +mWT +ivn +hUN agi agi agi @@ -48335,13 +48341,13 @@ qlf egv egv eXp -jnm +oxB kiR -wNM -bNE +mGq +fMj gAh -bNE -bNE +fMj +fMj pQs pQs pQs @@ -48350,34 +48356,34 @@ sAp pQs pQs pQs -bNE +fMj pQs pQs pQs -bNE -bNE +fMj +fMj vVi bQy rja -xhM +agb rja rja rja -irQ +wpA wbP -oEi -kyF -kyF -xDk -nhM -dGx -kLI -cOj +uaA +use +use +vhw +sfE +utI +qZK +vNx pQs pQs -bNE -bNE -bNE +fMj +fMj +fMj nip apf apf @@ -48388,21 +48394,21 @@ ojv apf apf nip -guz -jhp -wSU -wSU -guz +veI +hsM +qTo +qTo +veI bnA -mTl +jrn vBX vBX -frM +xub bnA -wSU -wSU -nJq -guz +qTo +qTo +dHQ +veI iiw awL awL @@ -48416,10 +48422,10 @@ tsc hQk tsc awL -uNp -uNp -uNp -uNp +nRe +nRe +nRe +nRe awL tcW awL @@ -48429,10 +48435,10 @@ awL awL tcW awL -uNp -uNp -uNp -uNp +nRe +nRe +nRe +nRe awL tsc bEk @@ -48515,51 +48521,51 @@ hoZ bNP hoZ hoZ -jHz +jNn hoZ jXz -ddU +nSo fUC -jHz +jNn lLQ -jHz -jHz -jHz -jHz -jHz +jNn +jNn +jNn +jNn +jNn lLQ -qpX +lYE viL -jHz -tQk -jHz -jHz -jHz +jNn +kLW +jNn +jNn +jNn lLQ -jnU -jHz +hUN +jNn agi agi bGY -vFr -aVU -aVU -bel +qWf +aCi +aCi +bHx hTs eXp -bNE +fMj pQs apf -wdU +kkq pQs pQs gnQ pQs pQs -bNE -bNE -bNE -bNE +fMj +fMj +fMj +fMj pQs pQs pQs @@ -48567,29 +48573,29 @@ qfg pQs pQs pQs -bNE +fMj rja rja rja -hKN -hKN -fZT +fkK +fkK +cGI rja -bNE +fMj pQs -nhM -mMH -aBs -cOj -lge -sWe -sWe -lRr -qwK +sfE +kiV +gJG +vNx +oOS +qvz +qvz +swK +dBS pQs tpY pQs -bNE +fMj nip apf apf @@ -48600,21 +48606,21 @@ apf apf apf nip -guz -wSU +veI +qTo vBX -wSU -guz +qTo +veI uLJ sUc vBX -kxU +crh vBX wAn -wSU -wSU -nJq -guz +qTo +qTo +dHQ +veI gcx okv okv @@ -48724,7 +48730,7 @@ agi agi agi hoZ -jHz +jNn hoZ hoZ hoZ @@ -48733,46 +48739,46 @@ jXz jXz eEJ lLQ -lvD +ivn agi agi agi agi agi -lvD +ivn lLQ -lvD -hrw -hrw -hrw -hrw -hrw -lvD -nzw -jHz +ivn +lGF +lGF +lGF +lGF +lGF +ivn +tih +jNn agi agi whf -lUu -rBs -rBs -nxl +mTF +aop +aop +uhK whf apf -bNE +fMj oDh vzh -wdU +kkq pma oJm pQs oDh -bNE +fMj rja rja rja rja -bNE +fMj gAh pQs pQs @@ -48780,19 +48786,19 @@ pQs kds pQs gAh -rqG +ePT rja rja -scH -laX +joO +luo rja rja -bNE +fMj pQs -nhM -dGx -kLI -cOj +sfE +utI +qZK +vNx gAh pQs gAh @@ -48800,8 +48806,8 @@ pQs pQs pQs pQs -wUs -bNE +sZS +fMj rja rja gAh @@ -48812,21 +48818,21 @@ gAh gAh rja rja -guz -wSU -wSU -wSU -guz +veI +qTo +qTo +qTo +veI uXw vBX -qqQ +smF vBX vBX bnA -wSU -wSU -nJq -guz +qTo +qTo +dHQ +veI gcx okv iiw @@ -48840,10 +48846,10 @@ tsc wtm tsc awL -uNp -uNp -uNp -uNp +nRe +nRe +nRe +nRe awL exW awL @@ -48853,10 +48859,10 @@ awL awL exW awL -uNp -uNp -uNp -uNp +nRe +nRe +nRe +nRe awL tsc bEk @@ -48949,27 +48955,27 @@ lLQ jXz agi agi -kPf +meL jXz -jnU -jHz +hUN +jNn agi aWV -pgx -lvD -mgO +aiz +ivn +xby aWV hoZ -jnU -jHz -oiV -lvD -oKV -rBs -aVU -bOK -rBs -khu +hUN +jNn +jcE +ivn +aPg +aop +aCi +yfD +aop +kQx apf pQs apf @@ -48979,13 +48985,13 @@ pQs pma pQs qfg -cjG +xRx rja -pKf -vtc +llM +aXi rja -rqG -bNE +ePT +fMj pQs pQs pQs @@ -48993,26 +48999,26 @@ pQs pQs pQs mTs -nYB +xXv rja rja rja rja -rqG +ePT pQs pQs -lge -sWe -sWe -lRr +oOS +qvz +qvz +swK pQs apf -wUs +sZS apf pQs apf pQs -bNE +fMj rja rja rja @@ -49025,28 +49031,28 @@ rja rja rja bnA -tXt -guz -guz -cYe +vOB +veI +veI +qdH bnA -tXt +vOB rnl vBX -guz +veI bnA -vDf -wSU -nJq -guz +nUf +qTo +dHQ +veI gcx pLQ gcx -guz -guz -guz -guz -gTW +veI +veI +veI +veI +fdg cEw cEw cEw @@ -49065,26 +49071,26 @@ tRH tRH tRH tRH -juX -juX -juX -juX +icv +icv +icv +icv itN itN itN itN -iVo -nkF +aul +fRm vhB vhB -nkF +fRm vhB vhB -nkF +fRm vhB vhB -nkF -nkF +fRm +fRm vhB itN itN @@ -49146,42 +49152,42 @@ agi agi agi agi -jHz -jHz -jHz -vZs -jHz +jNn +jNn +jNn +rtx +jNn hoZ hoZ hoZ -jHz +jNn moW lLQ lLQ -nmh -agi -otg -dLL -cRK -jnU -jHz -agi -nmh -aeb -otg -njN -cRK +czH +agi +mWT +cGz +enD +hUN +jNn +agi +czH +wiv +mWT +umj +enD rPZ -jnU -jHz -oiV -lvD -aVU -aVU -aVU -aVU -aVU -gec +hUN +jNn +jcE +ivn +aCi +aCi +aCi +aCi +aCi +gxK apf nre pQs @@ -49191,39 +49197,39 @@ pQs pQs pQs pQs -bNE +fMj rja -lYj -hKN +svB +fkK rja rja rja -bNE -tmL -bNE -bNE +fMj +pbs +fMj +fMj pQs pQs pQs pQs -raL -rty -kwZ -raL +nuR +mov +xVX +nuR pQs pQs pQs pQs pQs -bNE -bNE -nOg -bNE -bNE +fMj +fMj +wMk +fMj +fMj apf pQs pQs -qwK +dBS apf rja rja @@ -49237,56 +49243,56 @@ rja rja rja bnA -iKF +kog ykw -alC -iKF +tBy +kog bnA jbU xZD bnA bgc bnA -wSU -kok -nJq -guz +qTo +mdg +dHQ +veI gcx okv gcx -guz -wSU +veI +qTo uSA uSA -pRp +tKx bnA -wps -guz -jHp +etV +veI +tFn wrR -mpE -vOm -vOm -psx +shp +vHz +vHz +eGR ipd -soj -iTJ -kbo -tSm -tSm +emz +lAD +tJk +mMF +mMF iTs -bqC -art -fvr -nkF -nkF -nkF -wgO -wgO -wgO -wgO -xVW -ijt +pqo +ljN +smz +fRm +fRm +fRm +vKq +vKq +vKq +vKq +sBX +fPs oPU oPU mpb @@ -49295,8 +49301,8 @@ oPU oPU oPU oPU -xVW -ijt +sBX +fPs oPU oPU oPU @@ -49361,39 +49367,39 @@ agi hoZ vjT gFg -oxv -jHz +bao +jNn hoZ hoZ hoZ -jHz +jNn hoZ lLQ lLQ -lvD -jnU +ivn +hUN lLQ -fKn -lvD -jnU -lDU -oiV -lvD -jnU +nqI +ivn +hUN +gdc +jcE +ivn +hUN hoZ -oiV -kHI +jcE +vCX hoZ -jnU -jHz -oiV -lvD -aVU -aVU -imz -aVU -aVU -khu +hUN +jNn +jcE +ivn +aCi +aCi +xqJ +aCi +aCi +kQx tfX vuS vuS @@ -49403,10 +49409,10 @@ gAh oDh pQs pQs -bNE +fMj rja rja -xhM +agb rja jta rja @@ -49414,19 +49420,19 @@ vVi vVi vVi rja -bNE +fMj mTs pQs pQs -rKA -qCk -cvd -rRz +dFZ +gHk +oEW +kYy pQs pQs pQs -bNE -bNE +fMj +fMj bis bis bis @@ -49435,8 +49441,8 @@ bis dBy mNh ycC -idb -eQQ +kaB +wtF dBy bis bis @@ -49444,61 +49450,61 @@ bis bis bis bis -jsf -heo -rJF -akp +jKj +qKV +rpR +qjw xvB -guz -aAA +veI +jwx vBX -fXI -guz -aAA +lGq +veI +jwx vBX -fXI -guz +lGq +veI xvB -aAA +jwx xNn -eBr -guz +wlh +veI gcx pLQ gcx -guz -wSU +veI +qTo yeX -pen +egp byT bnA -mSo -guz -mSo +bWe +veI +bWe wrR xvv xvv xvv rLA ipd -soj -rKy -xiL -xiL -xiL +emz +wOR +aKH +aKH +aKH iQz -xiL -rft -wgO +aKH +pSX +vKq vhB vhB -wgO +vKq vhB vhB -wgO +vKq vhB -tkj -oer +ppN +wAv jgu jgu oPU @@ -49507,8 +49513,8 @@ fZD wbI wbI agG -vFc -htO +kcs +rHA nKX wbI wbI @@ -49574,38 +49580,38 @@ hoZ gFg hoZ gFg -nub +fBC gzb gzb gzb -nub +fBC hoZ lLQ lLQ -nmh -jCe -hrw -ddN -qAk -jnU -jHz -vWL -lvD -jCe -xgU -ddN -cRK +czH +thJ +lGF +ahO +sbB +hUN +jNn +goU +ivn +thJ +pKW +ahO +enD hoZ -jnU -jHz -oiV -lvD -rBs -rBs -aVU -aVU -vDR -sUY +hUN +jNn +jcE +ivn +aop +aop +aCi +aCi +vrz +lPi apf pQs umZ @@ -49616,27 +49622,27 @@ pQs pQs sAp pQs -bNE +fMj vVi xxD pVc xxD -whr -dwJ -gnL -vvT +wrU +gyO +lEt +pNa rja -dhL +wFa pQs -bNE -bNE -raL -wND -imp -raL -bNE -bNE -bNE +fMj +fMj +nuR +kys +rQL +nuR +fMj +fMj +fMj bis bis bis @@ -49646,88 +49652,88 @@ bis bis wGM ycC -eQQ +wtF ycC mNh dDU -rkv +dXu bis bis bis -tEA -bQL -rJF -rJF -rJF -akp +kgU +xWQ +rpR +rpR +rpR +qjw okv -guz -aAA +veI +jwx vBX -fXI -guz -aAA +lGq +veI +jwx vBX -fXI -guz +lGq +veI okv -aAA +jwx ojk uSA -guz +veI gcx okv gcx -guz -wSU +veI +qTo uSA uSA giw noz nSh vBX -guz +veI eMG xvv xvv xvv rLA ipd -spb -rKy -xiL -mAt -nMp +yii +wOR +aKH +qMw +jyt jFh -vxm -heT -aZW -wgO -wgO -wgO -wgO -wgO -wgO -bRs -tkj -oer +mtT +aca +mYR +vKq +vKq +vKq +vKq +vKq +vKq +riD +ppN +wAv kXD -fnY +cib vhB bED wbI -qUo -fAv +erW +iwH vtl -tkj -oLF +ppN +jrw ivz -jot -fAv +dpF +iwH wbI bNT -jot -fAv +dpF +iwH vtl oPU lgS @@ -49786,46 +49792,46 @@ hoZ vjT gFg vjT -jHz +jNn lrA lrA lrA -jHz +jNn hoZ lLQ lLQ jXz -kPf -kPf -kPf +meL +meL +meL jXz -jnU -jHz -oiV +hUN +jNn +jcE eSH -eEx -kHI -kHI +saw +vCX +vCX aWV -jHz -jnU -jHz +jNn +hUN +jNn mbC dxS whf -hvg -sdY -rBs -qLI -gec -wdU +ilT +jlR +aop +kRr +gxK +kkq uHl nWC -dtR +fYV gAh -wdU +kkq gAh -bNE +fMj vuS pQs pQs @@ -49833,113 +49839,113 @@ tob xxD xxD xxD -jYK -jYK -fbF -bFg +rzL +rzL +xYm +xhO rja -irQ -bNE -oEi -kyF -kyF -kyF -kyF -kyF -kyF -kyF -xDk +wpA +fMj +uaA +use +use +use +use +use +use +use +vhw bis bis tpt -clP -clP -bEP +xOq +xOq +kED eTc eED ycC lqq ycC lqq -pJP +mJE ycC ycC -anW -wNX -wNX -wNX -ort -htX -rJF -akp +uQX +hpi +hpi +hpi +gpH +jOS +rpR +qjw okv -guz -aAA +veI +jwx ppQ -fXI -guz -aAA +lGq +veI +jwx iHu -fXI -guz +lGq +veI okv -aAA +jwx ojk uSA -guz +veI gcx pLQ gcx -guz -wSU +veI +qTo vBX vBX vBX uSA kfY vBX -guz +veI bPG xvv xvv xvv rLA ipd -spb -rKy -gIs -rft +yii +wOR +odR +pSX wrR ipd ipd nvD -hcY +sjK vhB vhB -wgO +vKq vhB vhB -wgO +vKq vhB -tkj -oer +ppN +wAv kXD -cRg +xKg vhB oPU aRT -kjT -qun +pEr +kwX oyC -tkj -oer +ppN +wAv aRT -kjT -qun +pEr +kwX tfx qaO -azs -auQ +uSj +rkE oyC oPU oPU @@ -49998,49 +50004,49 @@ hoZ gGx hoZ hoZ -jHz +jNn lrA agi lrA -jHz +jNn hoZ lLQ lLQ -nmh -aeb -otg -dLL -cRK -jnU -jHz -bRQ -lvD -aeb -aOm -dLL -cRK -jHz -jnU -jHz +czH +wiv +mWT +cGz +enD +hUN +jNn +bAg +ivn +wiv +gaw +cGz +enD +jNn +hUN +jNn gAh eXp vTv heO -vFr -aVU -bel +qWf +aCi +bHx bIZ eXp -wdU -bNE -vgi -wdU -bNE -mMi -bNE +kkq +fMj +tfK +kkq +fMj +oJg +fMj pQs pQs -bNE +fMj rja rja mfR @@ -50050,104 +50056,104 @@ xxD xxD xxD vVi -oEi -kyF -hoo -bNE -bNE -bNE -bNE -bNE -bNE -bNE -cOj +uaA +use +xQa +fMj +fMj +fMj +fMj +fMj +fMj +fMj +vNx bis bis -sfs +wFE lqq mxR lqq -jjW +qPZ pYc lqq lqq geL -rJF +rpR ycC -bPQ -rHh -wNX -rJF -rJF +ede +nxd +hpi +rpR +rpR ycC -rJF -akp -rJF -akp +rpR +qjw +rpR +qjw okv -guz -aAA +veI +jwx yeX -pen +egp ofw -ppS +sVY hGn -fXI -guz +lGq +veI okv -aAA +jwx ojk -wSU -guz +qTo +veI gcx aVd gcx -guz -wSU +veI +qTo vBX vBX vBX uSA kfY vBX -guz +veI bPG xvv xvv xvv rLA ipd -kdq -rKy -xiL -mdS -tSm +nZn +wOR +aKH +agt +mMF iTs -bqC -art -vuX -wgO -wgO -bRs -wgO -wgO -wgO -wgO -tkj -oer +pqo +ljN +vHG +vKq +vKq +riD +vKq +vKq +vKq +vKq +ppN +wAv jgu -qcX +iiL oPU oPU bNT -kjT -qun +pEr +kwX oRR -lEL -oer +prr +wAv aRT -kjT -qun +pEr +kwX fQB wbI cCt @@ -50155,8 +50161,8 @@ wbI wbI oPU oPU -voi -cEY +eEl +cHE jgu itN itN @@ -50210,30 +50216,30 @@ hoZ fqF hoZ hoZ -jHz +jNn lrA agi lrA -jHz +jNn hoZ lLQ lLQ -lvD -jnU +ivn +hUN lLQ -oiV -lvD -jnU -jHz -oiV +jcE +ivn +hUN +jNn +jcE hoZ hoZ lLQ -oiV -qJR -jHz -jnU -jHz +jcE +txG +jNn +hUN +jNn gAh nga eXp @@ -50243,17 +50249,17 @@ apf apf apf eXp -bNE -bNE -bNE +fMj +fMj +fMj rja -oOw +qKZ ccH -bNE +fMj gAh pQs pQs -rqG +ePT rja rja toE @@ -50262,113 +50268,113 @@ hqc xxD xxD tob -wQb -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -umg +jHF +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +vhE bis bis -tPz +xCI lqq lqq lqq -jjW +qPZ ycC lqq lqq ycC lqq sBA -kzB -pBe -xow -xow -xow -wpy -rJF -akp -qif +dhq +oBe +hZs +hZs +hZs +eYY +rpR +qjw +bQr bis bnA wQR -wSU -wSU -wSU +qTo +qTo +qTo hjR -wSU -wSU -wSU +qTo +qTo +qTo tSY bnA -vDf +nUf ojk -wSU -guz +qTo +veI gcx okv gcx -guz -wSU +veI +qTo uSA uSA qLv gyy dpn vBX -guz +veI bPG xvv xvv xvv rLA ipd -vMs -sFd -nMp -rdo -xiL +cst +vhP +jyt +lNL +aKH iQz -xiL -rft -wgO +aKH +pSX +vKq hCc vhB -wgO +vKq vhB vhB -slc +qME vhB -gyt -oer +igv +wAv kXD -bmw +wig vhB oPU bNT -kjT -aPd +pEr +uBP vtl -tkj -bdb +ppN +ubj lls -kjT -qun +pEr +kwX wbI bNT -jot -fAv +dpF +iwH vtl oPU oPU oPU -voi +eEl jgu jgu jgu @@ -50422,51 +50428,51 @@ hoZ vjT gFg vjT -jHz +jNn lrA lrA lrA -jHz +jNn hoZ -xeX +yie lLQ -nmh -jCe -hrw -ddN -dRk -jnU -jHz -oiV +czH +thJ +lGF +ahO +woV +hUN +jNn +jcE hoZ -xeX -ihv -ddN -cRK +yie +fOR +ahO +enD agi -jnU -jHz +hUN +jNn egv nga nga nga -kOB +sJJ apf huD nga nga apf apf -ioE +aFr rja rja -jzN -bNE -bNE +hHT +fMj +fMj pQs pQs mCH -bNE +fMj vVi fyy toE @@ -50474,24 +50480,24 @@ toE pxk bJb rja -wQb -qpk -sWe -sWe -sWe -mGf -sWe -sWe -sms -bNE -cOj +jHF +cNQ +qvz +qvz +qvz +vkP +qvz +qvz +mKK +fMj +vNx bis bis -nHm +uUC puw lqq rle -oph +nrr bis bis wMi @@ -50499,90 +50505,90 @@ wMi wMi bis bis -rJF -rJF -rJF +rpR +rpR +rpR uXB -bPQ -rJF -vOO -qif +ede +rpR +agM +bQr bis bnA wQR -wSU -wSU -wSU +qTo +qTo +qTo vBX -wSU -wSU -wSU +qTo +qTo +qTo tSY bnA -vDf +nUf ojk -cQe -guz +vzM +veI gcx okv gcx -guz -wSU +veI +qTo yeX -pen +egp byT bnA -jHp -myH -jHp +tFn +kga +tFn wrR tkP -pYL -pYL -jHD +sjO +sjO +qMC wrR wrR wrR wrR -rKy -mAt +wOR +qMw jFh -vxm -heT -aZW -wgO -lAN -wgO -wgO -wgO -wgO -wgO -tkj -oer +mtT +aca +mYR +vKq +hmL +vKq +vKq +vKq +vKq +vKq +ppN +wAv kXD -sBY +ofZ itd oPU bNT -azs -bJp +uSj +kmb oyC -utL -uZt +uMU +stZ pIt -azs -auQ +uSj +rkE hFH bNT -azs -auQ +uSj +rkE oyC oPU oPU oPU oPU -voi -cEY +eEl +cHE jgu itN itN @@ -50634,51 +50640,51 @@ hoZ gFg iKg gFg -nub +fBC gzb gzb gzb -nub +fBC hoZ lLQ lLQ jXz -kue -kue -kue +faS +faS +faS jXz -tbm -jHz -oiV +fXZ +jNn +jcE eSH -kHI -mUK -kue +vCX +bsT +faS aWV agi -jCe -hrw +thJ +lGF qdJ apf -kOB +sJJ apf apf -kOB -kOB -kOB -xxP -kOB +sJJ +sJJ +sJJ +mMN +sJJ eYT eXp eXp eXp rja -bNE +fMj gAh pQs pQs pQs -bNE +fMj vVi sha pNj @@ -50686,91 +50692,91 @@ tDB rja rja rja -wQb -cOj -bNE -bNE -bNE -bNE -bNE -bNE -wQb -bNE -cOj +jHF +vNx +fMj +fMj +fMj +fMj +fMj +fMj +jHF +fMj +vNx bis ycC fAZ -clP -clP -rFu +xOq +xOq +fcs gSP bis bis -aBb -clP -clP +giZ +xOq +xOq bis bis -rJF -mnJ +rpR +ngx ycC -rJF -bPQ -rJF -akp -rJF -akp +rpR +ede +rpR +qjw +rpR +qjw xvB -guz -aAA +veI +jwx yeX -pen -vYY -ppS +egp +gUb +sVY hGn -fXI -guz +lGq +veI xvB -aAA +jwx ojk -wSU -guz +qTo +veI gcx okv gcx -guz -eQY +veI +ryC vJn vJn asE bnA -kzL -guz -mSo +qZa +veI +bWe wrR -uia -teq -teq -teq -teq -kdq +aJQ +eTE +eTE +eTE +eTE +nZn ipd -lzB -rKy -rft -iOX -iOX -eyO +rNk +wOR +pSX +tYJ +tYJ +qVg itN itN itN itN jgu -wgO -wgO -wgO -tkj -oer +vKq +vKq +vKq +ppN +wAv jgu jgu oPU @@ -50779,8 +50785,8 @@ agv rPI qJf gfL -eRq -tai +rND +hhy doq wbI tmx @@ -50794,7 +50800,7 @@ oPU oPU gAn oPU -pAr +rLK jgu jgu jgu @@ -50846,112 +50852,112 @@ hoZ vjT gFg vjT -jHz +jNn hoZ hoZ hoZ hoZ hoZ lLQ -xeX +yie hoZ -otg -otg -otg -otg -lvD -jHz -lvD -otg -otg -otg -otg +mWT +mWT +mWT +mWT +ivn +jNn +ivn +mWT +mWT +mWT +mWT aWV jXz -jHz -jHz +jNn +jNn qdJ apf ybg -muD -gyB -kOB -kOB -kOB -kOB -kOB +nzY +sgv +sJJ +sJJ +sJJ +sJJ +sJJ eXp eXp eXp gAh rja -bNE -bNE +fMj +fMj pQs pQs pQs -bNE +fMj rja vVi rja rja rja -oEi -kyF -hoo -cOj -bNE -raL -rty -iXJ -raL -bNE -wQb -bNE -wUs +uaA +use +xQa +vNx +fMj +nuR +mov +xXN +nuR +fMj +jHF +fMj +sZS ycC -rJF +rpR ycC lqq lqq bis bis bis -hHc +dCr geL -wNr +ycZ cCF -tPz +xCI bis bis dje -rJF -rJF -bPQ -qJP -akp -rJF -akp +rpR +rpR +ede +avQ +qjw +rpR +qjw okv -guz -aAA +veI +jwx vBX -fXI -guz -aAA +lGq +veI +jwx ppQ -fXI -guz +lGq +veI okv -aAA +jwx ojk uSA -guz +veI gcx okv gcx -guz -jYn +veI +dmp wrR ipd ipd @@ -50960,39 +50966,39 @@ wrR wrR wrR wrR -teq -teq -teq -teq -teq -orC +eTE +eTE +eTE +eTE +eTE +aGU ipd -xZU -rKy -rft -iOX -iOX -xqP +xsw +wOR +pSX +tYJ +tYJ +syo tRH bQM bQM itN -cIQ +xOC oPU oPU -wgO -tkj -exI -hHr -oyT -oyT -oyT -yar -wBx -nOi -txY -oWw -mdG +vKq +ppN +wot +gKt +pZV +pZV +pZV +dDH +aiH +hZY +eqI +dqC +kxI wjO oPU eFR @@ -51007,8 +51013,8 @@ oPU oPU oPU oPU -voi -cUA +eEl +hiF jgu itN bQM @@ -51049,44 +51055,44 @@ bQM bQM agi agi -jHz -jHz -jHz +jNn +jNn +jNn aPD hoZ hoZ hoZ -jHz +jNn itv -jHz +jNn hoZ hoZ hoZ hoZ hoZ lLQ -xeX -jHz -jHz -jHz -jHz -jHz -jnU -jHz +yie +jNn +jNn +jNn +jNn +jNn +hUN +jNn hoZ -jHz -jHz -jHz -jHz -jHz -jHz -jHz -jHz +jNn +jNn +jNn +jNn +jNn +jNn +jNn +jNn egv nga -kOB -kOB -kOB +sJJ +sJJ +sJJ qdJ qdJ qdJ @@ -51096,115 +51102,115 @@ rja rja rja gAh -oEi -qug -kyF -kyF -gZG -kyF -kyF -kyF -kyF -kyF -thI -kyF -hoo -bNE -bNE -cOj -bNE -rKA -qCk -cvd -rRz -bNE -wQb -bNE -cOj -eQQ +uaA +bMy +use +use +alG +use +use +use +use +use +whT +use +xQa +fMj +fMj +vNx +fMj +dFZ +gHk +oEW +kYy +fMj +jHF +fMj +vNx +wtF mNh lqq mxR nzI bis bis -dbq -qQA -uAX -clP +aLo +tOH +oPy +xOq efk -aXk -dbq +pfA +aLo dje ycC hNY ycC -bPQ -rJF -akp -rJF -bDX +ede +rpR +qjw +rpR +eoX okv -guz -aAA +veI +jwx vBX -xrz -guz -aAA +scO +veI +jwx vBX -fXI -guz +lGq +veI okv -aAA +jwx ojk uSA -guz +veI gcx okv gcx -guz +veI byT -pVD -mKx -iTJ -rwQ -tSm -tSm -tSm -tSm -tSm -tSm -tSm -tSm -plh -vMs +vjt +ybJ +lAD +wJV +mMF +mMF +mMF +mMF +mMF +mMF +mMF +mMF +tYu +cst ipd -xwo -rKy -rft -iOX -iOX -hil +hqH +wOR +pSX +tYJ +tYJ +aUd tRH bQM bQM itN -qeR +vYT oPU oPU -wgO -mPX -tiZ -tiZ -kJd -tiZ -tiZ -gkC -tiZ -tiZ -hHC -hgP -ecD +vKq +oRB +oPO +oPO +jRy +oPO +oPO +xcW +oPO +oPO +opg +dGi +jlK exa oPU dkl @@ -51220,7 +51226,7 @@ oPU oPU oPU tmX -xUr +jng jgu itN bQM @@ -51261,150 +51267,150 @@ bQM bQM agi agi -jHz +jNn aWV agi agi hoZ hoZ -jHz +jNn hoZ hoZ hoZ -jHz +jNn hoZ agi agi aWV agi jXz -hrw -hrw -hrw -hrw -lvD +lGF +lGF +lGF +lGF +ivn hoZ -jHz -oiV -lvD -hrw -hrw -hrw -hrw -lvD -jHz -jHz +jNn +jcE +ivn +lGF +lGF +lGF +lGF +ivn +jNn +jNn egv nga apf -kOB -kOB +sJJ +sJJ qdJ -ekF +aqW apf -fZe -raL -oEi -kyF -kyF -kyF -hoo -bNE +rzQ +nuR +uaA +use +use +use +xQa +fMj apf -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -cOj -bNE -raL -wND -imp -raL -bNE -wQb -cOj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +vNx +fMj +nuR +kys +rQL +nuR +fMj +jHF +vNx dWB -rJF -eQQ +rpR +wtF ycC lqq geL sBA -dXv +iKm lqq -kNs +pfD ane vvp amd -uGu +lgz puw -gPS +mIO dyB mNh dDU -bPQ +ede ycC -akp -rJF -akp +qjw +rpR +qjw okv -guz -aAA +veI +jwx yeX -pen -vYY -ppS +egp +gUb +sVY hGn -fXI -guz +lGq +veI okv -aAA +jwx aje -vTI -guz +gSE +veI gcx okv gcx -ffA -jYn -pVD -mKx -iBM -nMp -nMp -nMp -iHW -nMp -nMp -nMp -nMp -rdo -rft -aId +bbF +dmp +vjt +ybJ +cjd +jyt +jyt +jyt +iVU +jyt +jyt +jyt +jyt +lNL +pSX +cLR ipd -cSh -rKy -rft -iOX -iOX -iOX +bpk +wOR +pSX +tYJ +tYJ +tYJ tRH tRH bQM itN jgu -bGA -wgO -wgO +gRI +vKq +vKq wbI wbI wbI @@ -51415,8 +51421,8 @@ hbo jJS occ qBB -vxu -onb +qGL +iHh rwu wbI uep @@ -51473,8 +51479,8 @@ bQM bQM agi aWV -tYg -clv +blT +lwI dxS agi hoZ @@ -51482,8 +51488,8 @@ hoZ hoZ hoZ hoZ -oiV -jHz +jcE +jNn kAO agi agi @@ -51494,147 +51500,147 @@ aWV jXz jXz jXz -nub +fBC hoZ -jHz +jNn hoZ -nub +fBC jXz jXz jXz cvL -lvD +ivn hoZ -jHz -jsU +jNn +xQu apf -kOB -kOB -kOB +sJJ +sJJ +sJJ qdJ apf iTm -jWE -kyF -hoo -bNE -bNE -bNE -bNE +xPt +use +xQa +fMj +fMj +fMj +fMj apf -qpk -sWe -sWe -sWe -sWe -sWe -sWe -sWe -sWe -sWe -sWe -sWe -sWe -lRr +cNQ +qvz +qvz +qvz +qvz +qvz +qvz +qvz +qvz +qvz +qvz +qvz +qvz +swK rja rja rja rja rja rja -wQb -bNE -cOj +jHF +fMj +vNx bis ycC nzI ycC lqq sBA -clP -clP -jjW +xOq +xOq +qPZ rgg bxV hMf ycC ycC -clP +xOq dje ddG ddG -uEM -rJF -eqS +dgo +rpR +dPu bis bis bnA -vDf -wSU -wSU -wSU +nUf +qTo +qTo +qTo vBX -wSU -wSU -wSU +qTo +qTo +qTo tSY bnA -vDf -kok -nJq -guz +nUf +mdg +dHQ +veI gcx okv gcx -vrS -jYn +bBX +dmp wrR wrR -tql -xiL -iOX +fkJ +aKH +tYJ pGy eYN eYN ybx -jqM -xiL -rKy -fzp -aTO +sRw +aKH +wOR +xlF +uEL ipd -tWh -rKy -rft -tYQ -iOX -uWe -uWe +lJc +wOR +pSX +qLg +tYJ +kUq +kUq gEx bQM uGT -wgO +vKq oPU oPU -wgO +vKq bNT -yge -kvh +nyP +crY wbI oPU oPU bNT -jot -nec +dpF +bFt vtl -tkj -oer +ppN +wAv bNT -jot -pIs -kDN -pIs -fAv +dpF +nJA +iom +nJA +iwH wbI mpb oPU @@ -51685,17 +51691,17 @@ bQM agi agi aWV -bPy -jyY +hYU +bqJ dxS dxS hoZ bmV hoZ -jnU +hUN hoZ -oiV -jHz +jcE +jNn hoZ agi agi @@ -51703,46 +51709,46 @@ agi agi jXz jXz -oXk -oXk -lvD -lvD -pKu -lvD -lvD -bXe -iDO -oYW -qjb -qov -lvD +tPU +tPU +ivn +ivn +fzo +ivn +ivn +fGx +exm +jDB +wpV +sNE +ivn hoZ pCX -bNE +fMj iPx apf -gNY +oDQ egv qdJ -fZe +rzQ iTm iTm -jsU -bNE -bNE -qpk -sWe -sWe -wED -lRr +xQu +fMj +fMj +cNQ +qvz +qvz +xFa +swK eXp -xat -cBJ -raL -raL -raL -bNE -xat +xep +vbf +nuR +nuR +nuR +fMj +xep eXp dTx eXp @@ -51754,107 +51760,107 @@ gVs lex lex rja -wQb +jHF kMq -cOj +vNx bis bis hPY lqq lqq sBA -jjW +qPZ jpc -lNv +wFO lqq qbW dOE -kNs +pfD lqq -agT +rJn eFD -bPQ -rJF +ede +rpR hNY -rJF -akp -rJF -rJF +rpR +qjw +rpR +rpR bnA -fLY -wSU -wSU -wSU +twM +qTo +qTo +qTo vBX -bnh -wSU -wSU +tyy +qTo +qTo vBX bnA vBX -wSU -nJq -guz +qTo +dHQ +veI gcx okv gcx -ffA -jYn +bbF +dmp wrR -nhX -anT -vcq -kle -wHC -kat -jVM -omN -nrd -vAX -rKy -rft -jgL +ppy +hQu +aNN +pYv +lxX +eAd +kSK +nFi +wtu +djE +wOR +pSX +dhv ipd -kdq -rKy -rft -iOX -aTY -rcc -rcc +nZn +wOR +pSX +tYJ +rjn +dPp +dPp gEx bQM uGT -sFo -hnK -oqG +mCb +wZo +vBW jgu bNT -azs -auQ +uSj +rkE wbI oPU oPU wbI -pKJ -qun +tOU +kwX oyC -hsf -sUe +uDM +gYk wbI -ukr -fOg -fOg -fOg -rGK +tpR +rpp +rpp +rpp +cga wbI oPU oPU eLu -dFK -kTs -kTs -yet +ccQ +brF +brF +ord eLu twb twb @@ -51897,17 +51903,17 @@ bQM agi aWV aak -pnh -pKO -gpY +kgr +pAn +qDH dxS hoZ hoZ -jHz +jNn hoZ hoZ hoZ -jHz +jNn hoZ agi agi @@ -51915,46 +51921,46 @@ agi agi aWV jXz -lBS +mGz lLQ -lvD -hrw -lvD +ivn +lGF +ivn lLQ -lvD -otK -otK -lvD -otK -vsL -jHz +ivn +jhW +jhW +ivn +jhW +uCZ +jNn hoZ hoZ -bNE +fMj nga esS apf egv qdJ -raL -wQb +nuR +jHF apf -qpk -sWe -wED -lRr +cNQ +qvz +xFa +swK rja rja rja rja eXp -mdD -bNE -raL -raL -raL -bNE -aqw +pUW +fMj +nuR +nuR +nuR +fMj +lon eXp pTR apf @@ -51966,9 +51972,9 @@ apf apf apf rja -wQb +jHF kMq -umg +vhE bis bis bis @@ -51976,64 +51982,64 @@ wlG bis bis bis -dbq -wvH -xNg -rFu -daA -clP -dbq +aLo +cJh +fvY +fcs +cLf +xOq +aLo bis bis -wMv -rJF -bPQ -rJF -akp +wak +rpR +ede +rpR +qjw dje -rJF +rpR bnA -guz -aAA +veI +jwx yeX -pen +egp ofw -ppS +sVY hGn -fXI -guz +lGq +veI vBX vBX -kok +mdg bem -guz +veI gcx okv gcx -guz +veI byT wrR -nzf -dpZ -vAX -hWz +sal +bDQ +djE +xYA bSM bSM bSM bSM -vCm -pAl -rKy -rft -xZU +rAJ +jHP +wOR +pSX +xsw ipd -orC -rKy -rft -iOX -rcc -bma -rcc +aGU +wOR +pSX +tYJ +dPp +dhg +dPp gEx bQM uGT @@ -52045,27 +52051,27 @@ wbI mtj wbI wbI -lgx -lgx +iLY +iLY bNT -kjT -dqG +pEr +bFb nFB -rNK -oer +ssp +wAv vLH -nCX -dQW -nCX -nCX -rwj +fLC +prF +fLC +fLC +qxn wbI oPU oPU eLu -bSq -kTs -kTs +rJX +brF +brF vnG eLu twb @@ -52110,15 +52116,15 @@ agi agi aWV agi -tqx -qvN +qdq +aXy dxS -jHz +jNn hoZ -jHz +jNn hoZ hoZ -oiV +jcE hoZ hoZ agi @@ -52127,32 +52133,32 @@ agi agi aWV jXz -lvD -lvD -aeb +ivn +ivn +wiv lLQ -dLL -lvD -fuO -otK -otK -lvD -otK -otK -jHz -jHz -jHz +cGz +ivn +sxa +jhW +jhW +ivn +jhW +jhW +jNn +jNn +jNn apf uQE -bNE +fMj apf rja rja -oEi -hoo -bNE -cOj -myi +uaA +xQa +fMj +vNx +aTG rja rja eXp @@ -52160,13 +52166,13 @@ eXp eXp eXp eXp -xat -bNE -raL -raL -raL -cBJ -xat +xep +fMj +nuR +nuR +nuR +vbf +xep eXp eXp eXp @@ -52178,9 +52184,9 @@ apf apf wvY rja -wQb -bNE -cOj +jHF +fMj +vNx bis ewE ewE @@ -52189,63 +52195,63 @@ xIx bis bis bis -orr +pmX mxR -alX +iBO lqq -tPz +xCI bis bis bis bis bis -bPQ -rJF -akp -rJF -rJF +ede +rpR +qjw +rpR +rpR bht hTM okv -qhZ -fXI -guz -aAA +ikD +lGq +veI +jwx ppQ -fXI -guz +lGq +veI vBX vBX -wSU +qTo bem -rdi +rcP gcx tER gcx -guz +veI byT wrR -eQz -ixK -rKG -wyd -oby -oby -oby -oby -ftd -vAX -rKy -oEX -sVZ +bES +nhz +pGm +fky +hyZ +hyZ +hyZ +hyZ +wsN +djE +wOR +gqn +sON ipd -vMs -rKy -rft -iOX -iOX -xyq -xyq +cst +wOR +pSX +tYJ +tYJ +ouC +ouC gEx bQM bQM @@ -52257,29 +52263,29 @@ itN jgu jgu jgu -tkg -tkg +jDq +jDq jgu -noe -qun +rFZ +kwX vtl -tkj -oer +ppN +wAv bNT -jot -kDN -kDN -kDN -fAv +dpF +iom +iom +iom +iwH vtl oPU oPU eLu -xVJ -kTs -kTs +dwM +brF +brF vnG -tUG +dXA twb twb kPz @@ -52325,74 +52331,74 @@ azZ lAh aMg dxS -jHz -jHz -jHz -jnU +jNn +jNn +jNn +hUN hoZ -oiV +jcE hoZ hoZ aWV aWV agi -jHz +jNn aWV jXz -lvD -qaA +ivn +fmf jlb -jHz +jNn ifw -vWj -lvD -aZi -aZi -lvD -aZi -uEy +fZK +ivn +xig +xig +ivn +xig +cdr egv gAh -bNE +fMj apf apf apf uQE apf lag -wQb -xYN -bNE -cOj -ssM +jHF +xCz +fMj +vNx +maW rja eXp -raL -rty -cui -mzn +nuR +mov +hDA +tJI eXp -til -ljx -raL -raL -raL -bpe -snr +tQI +tmC +nuR +nuR +nuR +fTS +ulu eXp -raL -rty -iXJ -raL -xlb +nuR +mov +xXN +nuR +usS apf apf apf apf -xlb -wQb -bNE -cOj +usS +jHF +fMj +vNx wpD lpr ycC @@ -52402,61 +52408,61 @@ bis pcK bis bis -rFu -clP -fzO -clP -eHk -bZn -txb -rJF -eHk -bPQ -rJF -akp -wFS +fcs +xOq +ekG +xOq +ahR +cho +tmU +rpR +ahR +ede +rpR +qjw +szF hNY omI -guz -aAA +veI +jwx vBX -fXI -guz -aAA +lGq +veI +jwx vBX -fXI -guz +lGq +veI vBX vBX -wSU -nJq -rhh +qTo +dHQ +hgQ kJf okv gcx -guz -jYn +veI +dmp wrR wrR -iFg -bFJ -iOX -iDK -iDK -iOX -iOX -wMA -xiL -rKy -rft +wJe +iAk +tYJ +soJ +soJ +tYJ +tYJ +mWo +aKH +wOR +pSX wrR wrR wrR -mhS -rft -xyq -iOX -hPq +xju +pSX +ouC +tYJ +nmb nvD tRH tRH @@ -52472,27 +52478,27 @@ pBb jJb cME eLu -noe -qun +rFZ +kwX oyC -tkj -oer +ppN +wAv bNT -azs -fOg -fOg -syU -auQ +uSj +rpp +rpp +qPT +rkE oyC oPU vhB ayX -qbn +vzb gfo qPr -yet +ord vnG -kRO +xQU twb kPz bQM @@ -52539,72 +52545,72 @@ azZ agi qRg aWV -nub +fBC hoZ hoZ hoZ -nub +fBC agi agi agi hoZ -ifL -jHz +fDT +jNn jXz -lvD -eME +ivn +mDl wMh -kQG +jTf lEk -wcB -lvD -aeb -dLL +vPt +ivn +wiv +cGz lLQ -aeb -dLL +wiv +cGz egv -bNE -bNE +fMj +fMj apf apf apf apf apf lag -wQb -bNE -bNE -cOj -seh +jHF +fMj +fMj +vNx +vQH rja eXp -rKA -bff -bxg -jlB -xrZ -xGc +dFZ +nQx +wll +saQ +szN +roz uws uzy uzy uzy iAq -xGc -bNE -rKA -qCk -cvd -rRz +roz +fMj +dFZ +gHk +oEW +kYy rja apf esS apf xYe rja -wQb -bNE -cOj +jHF +fMj +vNx bis xIx ycC @@ -52619,58 +52625,58 @@ wMi wMi bis bis -kzB -eHk -eFq +dhq +ahR +xcZ bis -bPQ -rJF -akp -rJF +ede +rpR +qjw +rpR dje -lcn +aPY okv -xbr +bgO vBX -fXI -guz -aAA +lGq +veI +jwx ppQ -fXI -wSX +lGq +kjv iuz vBX -wSU -nJq -rhh +qTo +dHQ +hgQ uEj okv gcx -guz -jYn -pVD -mKx -iTJ -tSm -opP -tSm -tSm -tSm -tSm -rwQ -tSm -sjX -mdS -tSm -tSm -tSm -sbW -mdS -tSm -tSm -tSm -tSm -gLK +veI +dmp +vjt +ybJ +lAD +mMF +nSD +mMF +mMF +mMF +mMF +wJV +mMF +vAy +agt +mMF +mMF +mMF +xem +agt +mMF +mMF +mMF +mMF +dUb gEx bQM bQM @@ -52678,33 +52684,33 @@ bQM bQM bQM tPN -luy -doY +cGA +kUL pBb cME jJb eLu -tOS -qun +cle +kwX oyJ -tkj -nju +ppN +oQw wbI -nCX -nCX -xgx -nCX -pBT +fLC +fLC +hgt +fLC +rgG wbI oPU vhB ayX -kTs +brF gfo gfo -yet +ord vnG -vnA +jky twb kPz bQM @@ -52751,30 +52757,30 @@ bQM agi aWV agi -lvD -jnU +ivn +hUN hoZ -oiV -lvD +jcE +ivn agi -nub -jHz +fBC +jNn hoZ hoZ -jHz +jNn hoZ -tfw -oiV +uZL +jcE lLQ -jHz +jNn lLQ -jnU -lvD -jnU -oiV +hUN +ivn +hUN +jcE lLQ -jnU -oiV +hUN +jcE egv apf apf @@ -52784,39 +52790,39 @@ pKY qlf hcv hds -wnh -fth -bNE -cOj +wIz +dLd +fMj +vNx eXp eXp eXp -raL -wND -xDk -xWE -bNE -bNE -bNE -raL -raL -raL -bNE -bNE -bNE -raL -wND -imp -raL +nuR +kys +vhw +grj +fMj +fMj +fMj +nuR +nuR +nuR +fMj +fMj +fMj +nuR +kys +rQL +nuR rja rja rja rja rja rja -wQb +jHF kMq -cOj +vNx bis ewE ycC @@ -52835,9 +52841,9 @@ bis bis bis bis -bPQ -rJF -akp +ede +rpR +qjw bis bis bnA @@ -52846,43 +52852,43 @@ cEw bnA bnA bnA -vql -wSU -wSU -wSU -oVk +lBg +qTo +qTo +qTo +jny vBX -wSU +qTo bem -rhh +hgQ jji vjG gcx -guz +veI byT -pVD -mKx -dBt -nMp -nMp -nMp -nMp -nMp -nMp -nMp -mDq -rdo -mAt -nMp -nMp -rdo -xiL -xiL -mAt -nMp -nMp -rdo -rft +vjt +ybJ +mqr +jyt +jyt +jyt +jyt +jyt +jyt +jyt +kOQ +lNL +qMw +jyt +jyt +lNL +aKH +aKH +qMw +jyt +jyt +lNL +pSX gEx bQM bQM @@ -52890,8 +52896,8 @@ bQM bQM bQM twb -qDn -hUO +gcj +vma pBb cME cME @@ -52899,24 +52905,24 @@ eLu jgu iSu vtl -tkj -oer +ppN +wAv bNT -esZ -kDN -kDN -kDN -exO +bkO +iom +iom +iom +pbC wbI oPU oPU eLu -dFK -kTs -kTs -yet +ccQ +brF +brF +ord gSC -vnA +jky twb kPz bQM @@ -52963,93 +52969,93 @@ bQM agi agi agi -lvD -jnU +ivn +hUN pCX -oiV -lvD +jcE +ivn agi -nub -ifL +fBC +fDT hoZ hoZ hoZ -nub -qYZ -oiV +fBC +dWv +jcE neT -xdL +iMp lLQ -jnU -lvD -pPo -oiV +hUN +ivn +rZr +jcE lLQ -jnU -vFA -bNE +hUN +jpy +fMj apf iLJ apf -bNE -bNE -bNE -bNE +fMj +fMj +fMj +fMj rja -wQb -bNE -bNE -pQz -kyF -kyF -kyF -kyF -xYR -ceB -frc -nEh -kyF -bpo -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -hoo +jHF +fMj +fMj +qWl +use +use +use +use +niM +rlW +wgc +ueT +use +ott +use +use +use +use +use +use +use +use +use +use +use +use +use +use +use +use +xQa kMq -umg +vhE bis ewE ycC kCI bis -xzN -bDM -bTc +geO +bfZ +wDC lqq mxR lqq lqq lqq -ilM -bDM -pgQ +mLc +bfZ +jEg bis bFr -hIX -rJF -akp +rtA +rpR +qjw bHt bFr cEw @@ -53057,44 +53063,44 @@ cEw cEw cEw bnA -aQR -wSU -wSU +oJz +qTo +qTo uSA -wSU -oVk +qTo +jny vBX -kok +mdg bem -guz +veI gcx okv gcx -guz +veI byT wrR -vdH -eyv +aBc +aBX wrR wrR -oJl -iOX -vXk +wqg +tYJ +jLQ wrR ipd wrR -qjX -wDe -xiL -iOX +hVP +vsO +aKH +tYJ pGy eYN eYN ybx -iOX -xiL -rKy -rft +tYJ +aKH +wOR +pSX tRH tRH tRH @@ -53111,24 +53117,24 @@ eLu jgu jgu fic -tkj -oer +ppN +wAv bNT -azs -deB -sjR -deB -auQ +uSj +mKh +oHA +mKh +rkE wbI oPU oPU eLu -sIs -kTs -kTs -hgA +ejE +brF +brF +bqU vnG -kRO +xQU twb kPz bQM @@ -53175,93 +53181,93 @@ bQM aWV fXL fXL -sjT -pmv +oqH +uxF iDq iDq -sjT +oqH fXL agi -jHz +jNn hoZ hoZ hoZ -nub -qYZ -lvD -jCe +fBC +dWv +ivn +thJ sxk -ddN -lvD -lvD -jnU -xvC +ahO +ivn +ivn +hUN +ylg lLQ -jnU -oiV +hUN +jcE uQE apf apf -bNE +fMj gAh egv egv rja rja -wQb -bNE -bNE -vgi -bNE -bNE -bNE -bNE -bNE -vSC -eJK -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE +jHF +fMj +fMj +tfK +fMj +fMj +fMj +fMj +fMj +hHx +kfq +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj +fMj kMq kMq -bNE -bNE -bNE +fMj +fMj +fMj kMq kMq -bNE -cOj +fMj +vNx bis kCI ycC bis bis -gKG -gjY -lKP +yjs +tvt +qqU lqq lqq lqq epV lqq -oYG -bXh -lpd +qZJ +bWD +ewD bis bis -kCj -rJF -eqS +lMz +rpR +dPu bis bFr cEw @@ -53269,48 +53275,48 @@ cEw cEw cEw bnA -tEX +jQV uSA uSA -wSU -wSU +qTo +qTo eys vBX -wSU -nJq -guz +qTo +dHQ +veI gcx kEj gcx -guz -jYn -pVD -iQH -mKx +veI +dmp +vjt +bFl +ybJ ipd -ncs -mKx -xiL -mKx -xiL -gvr +kYI +ybJ +aKH +ybJ +aKH +pQk ipd -rKy -rft -vAX -kle -mLm -kat -jVM -omN -nrd -vAX -rKy -rft +wOR +pSX +djE +pYv +pYE +eAd +kSK +nFi +wtu +djE +wOR +pSX wrR -iOX -iOX -jqM +tYJ +tYJ +sRw wrR eLu eLu @@ -53320,11 +53326,11 @@ eLu rIE usg eLu -noe -qun +rFZ +kwX msu -lte -hdA +jHI +tsv fbo wbI fZD @@ -53335,11 +53341,11 @@ wbI oPU oPU eLu -kon -kTs -kTs +fxY +brF +brF vnG -uIg +fyH twb twb kPz @@ -53387,79 +53393,79 @@ bQM agi agi agi -lvD -jnU +ivn +hUN hoZ -oiV -lvD +jcE +ivn agi -jHz -jHz +jNn +jNn hoZ hoZ hoZ jXz -rHV +tpd lLQ -lvD -otg -lvD +ivn +mWT +ivn lLQ -cNe -jCe -ddN +fFy +thJ +ahO agi -jCe -ddN +thJ +ahO apf esS -bNE +fMj egv egv egv egv eXp rja -oEi -xDk -sWe -kzx -sWe -wED -sWe -oEi -kyF -kyF -xDk -sWe -wED -sWe -sWe -sWe -sWe -sWe -wED -sWe -oEi -kyF -kyF -xDk -sWe -sWe -wED -sWe -sWe -sWe -sWe -sWe -lRr +uaA +vhw +qvz +gLT +qvz +xFa +qvz +uaA +use +use +vhw +qvz +xFa +qvz +qvz +qvz +qvz +qvz +xFa +qvz +uaA +use +use +vhw +qvz +qvz +xFa +qvz +qvz +qvz +qvz +qvz +swK bis tgB tgB bis nOz -mCp -gTi +sou +jmE xst lqq lqq @@ -53467,13 +53473,13 @@ lqq lqq lqq vrT -mCp -gTi +sou +jmE nOz bis -bPQ -qGh -akp +ede +jKu +qjw bHt bFr cEw @@ -53481,48 +53487,48 @@ cEw cEw cEw bnA -dCt -wSU -wSU +ryw +qTo +qTo uSA -wSU -wSU +qTo +qTo vBX -kok -nJq -guz +mdg +dHQ +veI gcx okv gcx -guz -jYn -pVD -mKx -mKx +veI +dmp +vjt +ybJ +ybJ ipd -drt -mKx -xiL -mKx -xiL -ltz +sMH +ybJ +aKH +ybJ +aKH +kFa ipd -rKy -iEA -vAX -hWz +wOR +cpK +djE +xYA bSM bSM bSM bSM -vCm -vAX -rKy -rft +rAJ +djE +wOR +pSX wrR -oJl -iOX -tJC +wqg +tYJ +cCv wrR qzo neE @@ -53532,11 +53538,11 @@ eLu cME cME eLu -fOg -xVK +rpp +sKd fZD -tkj -oer +ppN +wAv oPU oPU oPU @@ -53547,11 +53553,11 @@ oPU mpb vhB ayX -kTs +brF gfo gfo -kTs -kSB +brF +oPi twb twb kPz @@ -53599,11 +53605,11 @@ azZ agi agi hoZ -lvD -jnU +ivn +hUN hoZ -oiV -lvD +jcE +ivn hoZ hoZ hsc @@ -53611,13 +53617,13 @@ hoZ bmV aWV jXz -afX -cNe -lvD -lvD -kvg -lvD -lvD +oWH +fFy +ivn +ivn +qza +ivn +ivn agi agi agi @@ -53625,7 +53631,7 @@ agi agi apf apf -bNE +fMj egv egv tel @@ -53661,8 +53667,8 @@ ioM hVI hVI hVI -jMh -jMh +elr +elr hVI hVI hVI @@ -53670,22 +53676,22 @@ nXj nXj sJu lqq -mCp -gTi -kHf -tcL +sou +jmE +vqo +tBw nOz pVR nOz -jeL -fKm -mCp -gTi +dto +ezA +sou +jmE lqq wpD -bPQ -rJF -akp +ede +rpR +qjw bis bFr cEw @@ -53694,61 +53700,61 @@ cEw cEw cEw bnA -rPf -wSU -wSU -wSU -wSU +nHl +qTo +qTo +qTo +qTo vBX xNn -eBr -guz +wlh +veI gcx okv gcx -guz -jYn -pVD -mKx -mKx +veI +dmp +vjt +ybJ +ybJ ipd -kFd -mKx -sMY -mKx -xiL -vwN +sRg +ybJ +cey +ybJ +aKH +cvt ipd -rKy -rft -vAX -wyd -oby -oby -oby -oby -ftd -vAX -rKy -mdS +wOR +pSX +djE +fky +hyZ +hyZ +hyZ +hyZ +wsN +djE +wOR +agt aMM -tSm -tSm -tSm +mMF +mMF +mMF aMM -gag +gxF ubP ubP -ejs +cVJ liA cME cME liA -nCX -nCX +fLC +fLC wbI -tkj -oer +ppN +wAv oPU mpb oPU @@ -53759,11 +53765,11 @@ oPU oPU vhB ayX -kTs +brF gfo gfo -kTs -pYz +brF +ebN twb twb kPz @@ -53811,11 +53817,11 @@ azZ agi agi agi -lvD -jnU +ivn +hUN pCX -oiV -lvD +jcE +ivn hoZ hoZ hsc @@ -53824,9 +53830,9 @@ hoZ aWV aWV aWV -wIy -wIy -wIy +xMg +xMg +xMg jXz aWV agi @@ -53844,18 +53850,18 @@ tel ioM ioM ioM -dOO -oTi +mTU +xcL ioM hVI hVI -slh -vfL -dAg -jbq -jbq -brC -gQz +dJi +pxM +iUA +lAz +lAz +tfV +wwh hVI hVI hVI @@ -53863,15 +53869,15 @@ hVI hVI hVI hVI -bLM -dAg -jbq -jbq -brC -uMT +paN +iUA +lAz +lAz +tfV +lNx sJu -vBF -qrn +aZj +wDk hVI bmE bmE @@ -53882,73 +53888,73 @@ mEO mEO hVI nOz -mCp -gTi +sou +jmE eTc -sfi -mWX -mWX -mWX -ifk +bow +kHT +kHT +kHT +jcO eTc -mCp -gTi +sou +jmE nOz bis -bPQ -rJF -rkv -fVs +ede +rpR +dXu +mmD cvn bQM bQM bQM kPz wyT -wSU -dXK -guz -aAA -wSU -wSU +qTo +iXu +veI +jwx +qTo +qTo vBX ojk vBX -guz +veI gcx okv gcx -guz -jYn +veI +dmp wrR -vdH -eyv +aBc +aBX wrR wrR -oJl -iOX -vXk +wqg +tYJ +jLQ wrR ipd wrR -qjX -rft -xiL -iOX -qGf -iOX -vQi -iOX -iOX -xiL -rKy -mAt +hVP +pSX +aKH +tYJ +sSZ +tYJ +kMt +tYJ +tYJ +aKH +wOR +qMw aMM -nMp -nMp -nMp +jyt +jyt +jyt aMM -gag +gxF ubP ubP ubP @@ -53956,11 +53962,11 @@ phe uJg cME eLu -kDN -exO +iom +pbC wbI -tkj -oer +ppN +wAv oPU eLu eLu @@ -53971,10 +53977,10 @@ eLu eLu eLu eLu -cmE -kTs -kTs -lJI +icJ +brF +brF +fjL eLu twb twb @@ -54024,26 +54030,26 @@ agi agi agi aWV -wIy -wIy -wIy +xMg +xMg +xMg jXz -nub -nub +fBC +fBC agi agi -jHz -jHz +jNn +jNn jXz -pgb -pgb -pgb -pgb -pgb +epA +epA +epA +epA +epA jXz xLi -sQz -iFz +gxU +nbU azZ xLi rja @@ -54060,31 +54066,31 @@ sKu iXs ioM hVI -fCr -bLM -bLM -bLM -bLM -bLM -bLM -bLM -fCr +owH +paN +paN +paN +paN +paN +paN +paN +owH hVI hVI hVI hVI hVI -fCr -bLM -eRZ -trN -bLM -bLM -uMT +owH +paN +sly +agW +paN +paN +lNx sJu cyV cyV -qrn +wDk cyV cyV sJu @@ -54094,71 +54100,71 @@ mJk svh hVI bis -mCp -iYa -bDM -bDM -bDM -bDM -bDM -bDM -bDM -szs -gTi +sou +xyy +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +kdQ +jmE bis bis -bPQ -rJF -rJF -akp +ede +rpR +rpR +qjw cvn kPz kPz kPz cEw wyT -wSU -fXI -guz -aAA -wSU -wSU +qTo +lGq +veI +jwx +qTo +qTo vBX ojk vBX -guz +veI gcx okv gcx -guz -bxA +veI +rUu cKU -xiL -iTJ -tSm -tSm -tSm -tSm -tSm -tSm -tSm -tSm -sbW -mdS -tSm -tSm -tSm -tSm -tSm -tSm -tSm -tSm -sbW -rft +aKH +lAD +mMF +mMF +mMF +mMF +mMF +mMF +mMF +mMF +xem +agt +mMF +mMF +mMF +mMF +mMF +mMF +mMF +mMF +xem +pSX wrR -iOX -iOX -iOX +tYJ +tYJ +tYJ wrR ubP ubP @@ -54168,11 +54174,11 @@ eLu cME cME eLu -deB -auQ +mKh +rkE wbI -tkj -oer +ppN +wAv lgS eLu eLu @@ -54235,68 +54241,68 @@ azZ azZ azZ azZ -pgb -pgb -pgb -pgb -pgb -mvp -cJL +epA +epA +epA +epA +epA +aDe +ujJ azZ xLi ddL ddL xLi -mvp -mvp -mvp -rYw -mvp -luZ -mvp -mvp -mvp -azZ -azZ -bLM -bLM -bLM +aDe +aDe +aDe +lgY +aDe +kmC +aDe +aDe +aDe +azZ +azZ +paN +paN +paN mEO -bLM -xsC +paN +vKM hVI -bPV -aJo -ayB -dAg -brC -bLM -aKb -jQs -xEH -iNt -bLM -bLM -ddB -jQs -veR -fYa -fYa -gbv -gBN -jpQ -xEH -bLM -bLM -oQk -hOG -xMX -veR +uDg +ljM +qey +iUA +tfV +paN +fhk +uQs +nlD +jeU +paN +paN +hUY +uQs +yfY +ycp +ycp +cPI +wra +ftI +nlD +paN +paN +oUo +aam +jaG +yfY ioM hVI cyV cyV -qrn +wDk cyV mbg ioM @@ -54306,74 +54312,74 @@ mrX mrX pkM bis -wzH -tyj -tyj -tyj -bXh -rJF -nTv -tyj -tyj -tyj -dtS +kGV +vhv +vhv +vhv +bWD +rpR +eyY +vhv +vhv +vhv +vrN bis -byB -etj -wpy -cCO -akp +mkq +eyD +eYY +pFF +qjw cvn bQM bQM bQM wyT -wSU +qTo yeX -pen +egp ofw -ppS +sVY hGn -lit +rhc vBX aje -vTI -guz +gSE +veI gcx okv gcx -guz +veI vBX evT -xiL -rKy -xiL -xiL -xiL -vCl -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -fXD +aKH +wOR +aKH +aKH +aKH +oYK +aKH +aKH +aKH +aKH +aKH +aKH +aKH +aKH +aKH +aKH +aKH +aKH +aKH +aKH +aKH +adt wrR wrR jRh wrR wrR rfQ -qMI +aZs ubP neE eLu @@ -54383,8 +54389,8 @@ eLu sGI szK wbI -mPX -qhk +oRB +xqk oPU eLu mTM @@ -54399,8 +54405,8 @@ gyJ cME cME eLu -tHJ -lQJ +oEV +lDs twb twb twb @@ -54444,73 +54450,73 @@ lAh lAh azZ azZ -hae -hae -ceJ -mJH -hAX -tsA -oZk -mvp -lkr -hae -hae -ncF -hae -hae -hae -hae -hae -hae -hae -hae -hae -hae -hae -hae -azZ -azZ -azZ -kpe -jQs -jQs +biz +biz +uzm +esd +gHe +qAI +iBy +aDe +hvT +biz +biz +gWE +biz +biz +biz +biz +biz +biz +biz +biz +biz +biz +biz +biz +azZ +azZ +azZ +tfm +uQs +uQs mEO -jQs +uQs mEO mEO -bLM -oTi -ddB -jQs -xEH -dOO -asI -oTi -ddB -jQs -xEH -dOO -bLM -dVD -ddB -jQs -xEH -dOO -bLM -oTi -ddB -nmK -xEH -xfh -bLM -ftS +paN +xcL +hUY +uQs +nlD +mTU +pyR +xcL +hUY +uQs +nlD +mTU +paN +sPN +hUY +uQs +nlD +mTU +paN +xcL +hUY +nky +nlD +bYs +paN +mEL ioM hVI -qrn -qrn +wDk +wDk hVI -qrn -qrn +wDk +wDk ioM ioM bmE @@ -54519,85 +54525,85 @@ aFZ aFZ bFr jUs -clP -oxS +xOq +wiG eTc -gdQ -rJF -gTi +fnQ +rpR +jmE eTc -clP -oxS +xOq +wiG iwf bFr cvn cvn -bPQ -rJF -akp +ede +rpR +qjw cvn bFr cvn cvn cEw -wSU -wSU -fXI -guz -aAA -wSU -wSU +qTo +qTo +lGq +veI +jwx +qTo +qTo vBX -kok -nJq -guz +mdg +dHQ +veI gcx okv gcx -guz -eQY +veI +ryC sVd -xiL -sFd -nMp -nMp -nMp -nMp -nMp -nMp -nMp -nMp -rdo -mAt -nMp -nMp -nMp -nMp -nMp -nMp -nMp -nMp -rdo -rft +aKH +vhP +jyt +jyt +jyt +jyt +jyt +jyt +jyt +jyt +lNL +qMw +jyt +jyt +jyt +jyt +jyt +jyt +jyt +jyt +lNL +pSX wrR -iOX -iOX -iOX +tYJ +tYJ +tYJ wrR ubP ubP ubP ubP fXB -voi -voi +eEl +eEl vhB oPU oPU oPU oPU oPU -lRq +hwv liA cME cME @@ -54611,10 +54617,10 @@ xno cME cME ayX -qsF -dYV -upf -nWB +idJ +xul +gRO +qDG twb kPz kPz @@ -54655,154 +54661,154 @@ bQM azZ azZ azZ -eqU -eqU -uAg -kpq -mvp -pgb -dqX -jFD -mvp -cer -pvF -eqU -eHn -eqU -eqU -eqU -eqU -eqU -hmE -eqU -hvp -uAg -pvF -eqU -qSA -eqU +dSg +dSg +jFn +vno +aDe +epA +bYL +ils +aDe +fQp +eaX +dSg +ink +dSg +dSg +dSg +dSg +dSg +mSC +dSg +wRC +jFn +eaX +dSg +nbR +dSg azZ azZ azZ -jbq -jbq -jbq -jbq +lAz +lAz +lAz +lAz mEO -dAg -jbq -brC -dOO -bLM -oTi -dAg -jbq -brC -dOO -bLM -oTi -dAg -jbq -rcE -dOO -ekz -ftS -dAg -jbq -brC -kQr -bLM -oTi -dAg -jbq -evk -uMT +iUA +lAz +tfV +mTU +paN +xcL +iUA +lAz +tfV +mTU +paN +xcL +iUA +lAz +ddj +mTU +enj +mEL +iUA +lAz +tfV +lRy +paN +xcL +iUA +lAz +waP +lNx sJu cyV cyV -qrn +wDk cyV cyV -qrn -qrn +wDk +wDk cyV tQB bQM bQM cvn -jjW +qPZ tna umW -jjW -mCp -rJF -gTi -jjW +qPZ +sou +rpR +jmE +qPZ tna umW -jjW +qPZ cvn bQM cvn iKs iKs iKs -kpR -uLM -cxc -ldd -nIb -gSK -wSU -fXI -guz -aAA -wSU -wSU +ujY +bNF +rwg +kKB +gpd +yhI +qTo +lGq +veI +jwx +qTo +qTo vBX bnA bem -guz +veI pCH awL wSt -guz -jYn +veI +dmp wrR -mKx -rft -xiL -iOX +ybJ +pSX +aKH +tYJ pGy eYN eYN ybx -iOX -xiL -gmx -rft -kgY -mxm +tYJ +aKH +cDe +pSX +cnq +neo pGy eYN eYN ybx -jqM -xiL -rKy -mdS +sRw +aKH +wOR +agt aMM -tSm -tSm -tSm +mMF +mMF +mMF aMM -gag +gxF ubP ubP ubP fXB -voi -voi +eEl +eEl vhB oPU oPU @@ -54823,10 +54829,10 @@ cPq cME cME ayX -qsF +idJ mHC gfo -ivK +dVQ twb twb kPz @@ -54869,154 +54875,154 @@ azZ azZ azZ azZ -nQE -kpq -mvp -gTN -wln -rot -mvp -xmC -kpq +tSK +vno +aDe +qna +oQB +xLk +aDe +wgt +vno azZ azZ -mvp -mvp -mvp -mvp -mvp -mvp -mvp -mvp -cer -kpq -jVt -mvp -mvp +aDe +aDe +aDe +aDe +aDe +aDe +aDe +aDe +fQp +vno +gxl +aDe +aDe erj azZ azZ azZ azZ -eLw -xsC +qOI +vKM hVI -xsC -bLM -bLM -dAg -jbq -brC -bLM -bLM -bLM -dAg -jbq -brC -bLM -bLM -oQk -iKO -jbq -uJQ -bLM -raP -bLM -fqh -aSm -brC -bLM -bLM -bLM -omO +vKM +paN +paN +iUA +lAz +tfV +paN +paN +paN +iUA +lAz +tfV +paN +paN +oUo +xon +lAz +miG +paN +gKW +paN +ral +sFA +tfV +paN +paN +paN +pWt sJu cyV cyV -qrn +wDk kvx cyV -qrn -qrn +wDk +wDk cyV tQB bQM bQM cvn -jjW +qPZ tna umW -ovM -mCp -rJF -gTi -alX +hRT +sou +rpR +jmE +iBO tna umW -jjW +qPZ cvn bQM cvn -vCu -rJF -qGh -wNX -wNX -wNX -wNX -lri -wSU +bUd +rpR +jKu +hpi +hpi +hpi +hpi +vyf +qTo yeX -pen +egp ofw -ppS +sVY hGn -lit +rhc tSY bnA -nJq -guz -guz -guz -guz -guz -jYn +dHQ +veI +veI +veI +veI +veI +dmp wrR -mKx -rft -aYf -kle -mLm -kat -jVM -omN -nrd -vAX -rKy -rft -oeV -kle -mLm -kat -jVM -omN -nrd -vAX -rKy -mAt +ybJ +pSX +ryV +pYv +pYE +eAd +kSK +nFi +wtu +djE +wOR +pSX +rwY +pYv +pYE +eAd +kSK +nFi +wtu +djE +wOR +qMw aMM -nMp -nMp -nMp +jyt +jyt +jyt aMM -gag +gxF ubP iwu ubP fXB -voi -voi +eEl +eEl vhB -lgx +iLY oPU oPU oPU @@ -55035,11 +55041,11 @@ eLu cME cME eLu -wxl -hZN +iqb +usF gfo -dYV -dxv +xul +aRL twb kPz bQM @@ -55082,29 +55088,29 @@ azZ azZ azZ azZ -kpq -pgb -vFS -pgb -pgb -pgb -nQE -kpq +vno +epA +eiB +epA +epA +epA +tSK +vno azZ xLi xLi xLi -rHX -rHX -esR +oxn +oxn +rdg xLi -hrA -mvp -cer -kpq -jdn -mvp -mvp +umq +aDe +fQp +vno +aHQ +aDe +aDe erj azZ azZ @@ -55129,96 +55135,96 @@ tQB tQB aFZ aFZ -bLM -bLM -bLM +paN +paN +paN hVI hVI hVI hVI hVI -luf -hDV -luf +pNh +rdF +pNh ioM hVI -qrn -qrn -qrn -qrn -hIO +wDk +wDk +wDk +wDk +qqR hVI -fDi -cqX +qYI +jhF tQB bQM bQM cvn -jjW +qPZ tna umW -jjW -mCp -rJF -gTi -jjW +qPZ +sou +rpR +jmE +qPZ tna umW -jjW +qPZ cvn bQM cvn iKs iKs iKs -rJF +rpR iKs iKs iKs -wSU -wSU -wSU -fXI -guz -aAA -wSU -wSU +qTo +qTo +qTo +lGq +veI +jwx +qTo +qTo vBX bnA -mOm -cZP +aAZ +pLg vov vBX qLv -cZP -jRC +pLg +uoZ wrR -vdH -rft -vAX -hWz +aBc +pSX +djE +xYA bSM bSM bSM bSM -wYP -vAX -rKy -rft -lIH -hWz +tFN +djE +wOR +pSX +oMl +xYA bSM bSM bSM bSM -vCm -vAX -rKy -rft +rAJ +djE +wOR +pSX wrR -oJl -iOX -tJC +wqg +tYJ +cCv wrR ubP ubP @@ -55248,10 +55254,10 @@ tPN twb twb twb -vQJ -kTs -kTs -hej +ikG +brF +brF +sWR twb kPz kPz @@ -55294,29 +55300,29 @@ azZ azZ azZ azZ -kpq +vno azZ azZ azZ azZ azZ -cer +fQp azZ azZ xLi -oZf -rHX -lkr -hae -ceJ -sbL -mvp -mvp -cer -kpq -fKP -mvp -vRH +hEP +oxn +hvT +biz +uzm +aOa +aDe +aDe +fQp +vno +aNh +aDe +ydG azZ azZ azZ @@ -55327,11 +55333,11 @@ aFZ ioM ioM ioM -qrn +wDk byY byY byY -eRF +vCT aFZ bQM bQM @@ -55345,92 +55351,92 @@ hVI jjs hVI hVI -jvm -tja +pqW +jxA aif -xuQ -tja -tja -tja +hlc +jxA +jxA +jxA ioM -iUc -nEB -qrn -qrn -qrn -bwj +bbg +pru +wDk +wDk +wDk +hvA hVI -fDi -cqX +qYI +jhF tQB bQM bQM cvn -jjW +qPZ tna umW -alX -mCp -rJF -gTi -jjW +iBO +sou +rpR +jmE +qPZ tna umW -jjW +qPZ cvn bQM cvn -bPQ -rJF -rJF -xow -pBe -xow -xow -caC -wSU -wSU -fXI -guz -aAA -wSU -wSU +ede +rpR +rpR +hZs +oBe +hZs +hZs +pKX +qTo +qTo +lGq +veI +jwx +qTo +qTo lNP bnA bnA -eOI +mJm aqj fpN bQj -oxU +tUj wrR wrR -mKx -rft -vAX -wyd -oby -oby -oby -oby -ftd -vAX -rKy -rft -iiz -wyd -oby -oby -oby -hKP -ftd -vAX -rKy -rft +ybJ +pSX +djE +fky +hyZ +hyZ +hyZ +hyZ +wsN +djE +wOR +pSX +puY +fky +hyZ +hyZ +hyZ +fmm +wsN +djE +wOR +pSX wrR -iOX -iOX -iOX +tYJ +tYJ +tYJ wrR axA ubP @@ -55443,9 +55449,9 @@ nUJ cME cME eLu -voi -voi -xUr +eEl +eEl +jng itN swg fQV @@ -55460,10 +55466,10 @@ fQV fQV erT twb -chE +jfM kMU gfo -ivK +dVQ twb twb kPz @@ -55516,19 +55522,19 @@ phz azZ azZ xLi -tYU -lkr -hae -ceJ -bGH -kWS -mvp -mvp -cer -kpq -mvp -mvp -mvp +fyQ +hvT +biz +uzm +cIv +inC +aDe +aDe +fQp +vno +aDe +aDe +aDe azZ azZ azZ @@ -55553,92 +55559,92 @@ hay vmj bQM aFZ -cdY -tja -tja +wrK +jxA +jxA hVI -iJF -nuN +dFS +ivt hVI -nQl -tja -tja -cgx +pwJ +jxA +jxA +jwS ioM -qrn +wDk cyV ndZ -qrn +wDk cyV cyV -qrn -qrn +wDk +wDk cyV tQB bQM bQM cvn -jjW +qPZ tna umW -jjW -mCp -rJF -gTi -jjW +qPZ +sou +rpR +jmE +qPZ tna umW -jjW +qPZ cvn bQM cvn iKs iKs iKs -kpR -iDQ -sUr -iyY -nIb -lQo +ujY +eQK +sOz +cFA +gpd +ozM cEw wyT wyT wyT -wSU -wSU +qTo +qTo vBX vBX -guz +veI vBX vBX vBX vBX bXA -teq -xiL -mKx -rft -xiL -iOX -iOX -iOX -jqM -jqM -iOX -xiL -rKy -rft -xiL -iOX -iOX -iOX -iOX -iOX -iOX -xiL -rKy -rft +eTE +aKH +ybJ +pSX +aKH +tYJ +tYJ +tYJ +sRw +sRw +tYJ +aKH +wOR +pSX +aKH +tYJ +tYJ +tYJ +tYJ +tYJ +tYJ +aKH +wOR +pSX wrR wrR jRh @@ -55647,7 +55653,7 @@ wrR xiF ubP ubP -ejs +cVJ liA cME nqL @@ -55655,28 +55661,28 @@ cME cME cME eLu -voi -voi -lwA +eEl +eEl +qmN uGT bTo -afk -afk -afk +bCM +bCM +bCM hkh -afk -afk +bCM +bCM hkh -afk -afk -afk +bCM +bCM +bCM iWq tPN -rMo -kTs -kTs -ape -exy +pyx +brF +brF +giB +ntt twb kPz bQM @@ -55728,17 +55734,17 @@ kBE azZ azZ xLi -aJk -muX -mvp -kpq -iOY -tYU -mvp -mvp -cer -gpA -luZ +xRi +egm +aDe +vno +flA +fyQ +aDe +aDe +fQp +njk +kmC lAh lAh azZ @@ -55748,14 +55754,14 @@ bQM bmT bQM bQM -vxz -iSR -vxz -mPe -esw -esw -esw -esw +bMU +wjk +bMU +hjG +siH +siH +siH +siH bTI bQM bFA @@ -55765,48 +55771,48 @@ hXZ aLp aLp aFZ -gnG -tja -tja +iCd +jxA +jxA hVI -xgn -tja +idt +jxA hVI -tpZ -xhL -tja -tja +hSz +soZ +jxA +jxA sJu -qrn +wDk lwd ndZ -qrn +wDk cyV cyV -qrn -qrn +wDk +wDk cyV aFZ aFZ aFZ bFr jUs -clP -clP +xOq +xOq eTc -mCp -rJc -gTi +sou +jSR +jmE eTc -clP -clP +xOq +xOq iwf bFr cvn cvn -bPQ -wIL -akp +ede +rGn +qjw cvn bFr cvn @@ -55817,40 +55823,40 @@ cEw bQM bQM wyT -wSU -wSU +qTo +qTo vBX nJu -guz +veI vBX vBX vBX vBX vBX -teq -xiL -xiL -iTJ -tSm -tSm -tSm -tSm -tSm -tSm -tSm -tSm -sbW -mdS -tSm -tSm -tSm -gbF -tSm -tSm -tSm -tSm -sbW -rft +eTE +aKH +aKH +lAD +mMF +mMF +mMF +mMF +mMF +mMF +mMF +mMF +xem +agt +mMF +mMF +mMF +sfK +mMF +mMF +mMF +mMF +xem +pSX wrR qQt cME @@ -55872,23 +55878,23 @@ fXB fXB dCM bTo -afk -afk -afk +bCM +bCM +bCM pcu -afk -afk +bCM +bCM pcu -afk -afk -afk +bCM +bCM +bCM iWq tPN -fmE +fKf dKX gfo -rQu -fzC +clJ +xzt twb kPz bQM @@ -55940,17 +55946,17 @@ azZ azZ azZ xLi -mvp -ubX -wAQ -iOY -rHX -sbL -mvp -mvp -cer -kpq -mvp +aDe +dpp +mOM +flA +oxn +aOa +aDe +aDe +fQp +vno +aDe jKR lAh azZ @@ -55960,14 +55966,14 @@ bQM bmT bQM bQM -knY -fvH -knY -jMh -jMh -jMh -cMb -jMh +emn +moj +emn +elr +elr +elr +kjV +elr bTI bQM bFA @@ -55976,18 +55982,18 @@ ePq mzS lEp wWW -xXh -xuQ -gjz -tja +tSX +hlc +eCQ +jxA tEH -tja -tja +jxA +jxA hVI -qEl -qEl -tja -tja +vvj +vvj +jxA +jxA ioM hVI hVI @@ -56002,23 +56008,23 @@ hVI hVI ioM bis -xzN -bDM -bDM -qLa -dZK -rJF -iYa -bDM -opN -bDM -pgQ +geO +bfZ +bfZ +oBD +cCJ +rpR +xyy +bfZ +tDi +bfZ +jEg bis -byB -lpH -hUD -wIL -akp +mkq +dyl +fIX +rGn +qjw cvn kPz kPz @@ -56029,40 +56035,40 @@ kPz kPz kPz wyT -iSw -wSU -wSU -wSU -weB -wSU -wSU -wSU -wSU -wSU -teq -cdV -xiL -sFd -nMp -oFU -nMp -nMp -nMp -nMp -oFU -rdo -xiL -xiL -mAt -igu -nMp -nMp -nMp -nMp -nMp -nMp -nMp -eSn +rlE +qTo +qTo +qTo +nvz +qTo +qTo +qTo +qTo +qTo +eTE +aQQ +aKH +vhP +jyt +rQC +jyt +jyt +jyt +jyt +rQC +lNL +aKH +aKH +qMw +kRQ +jyt +jyt +jyt +jyt +jyt +jyt +jyt +eGT wrR bcf cME @@ -56076,7 +56082,7 @@ ubP vnG vnG vnG -fRq +mft ubP ubP ubP @@ -56084,23 +56090,23 @@ ubP ubP dCM bTo -afk -afk -afk +bCM +bCM +bCM hkh -afk -afk +bCM +bCM hkh -afk -afk -afk +bCM +bCM +bCM iWq tPN -mKo -kTs -kTs -bYY -dwf +pBm +brF +brF +cOr +jUX twb kPz bQM @@ -56153,16 +56159,16 @@ azZ azZ xLi xLi -oZf -tYU -knW -fop +hEP +fyQ +sbm +oXX xLi -esR -mvp -cer -kpq -mvp +rdg +aDe +fQp +vno +aDe efT lAh azZ @@ -56189,24 +56195,24 @@ nHZ tHL sTu aFZ -xuQ -tja -tja +hlc +jxA +jxA hVI -ieu -ieu +wvw +wvw hVI hVI -qEl -tja -tja -qrn -hGg -tge -pFc -stU +vvj +jxA +jxA +wDk +gXO +txv +pvU +iGz ioM -esw +siH ioM hVI byY @@ -56214,23 +56220,23 @@ nfZ qmj ioM bis -mCp -nTv -tyj -tyj -nvn -rJF -nTv -tyj -tyj -bXh -gTi +sou +eyY +vhv +vhv +jEI +rpR +eyY +vhv +vhv +bWD +jmE bis bis -bPQ -rJF -rJF -akp +ede +rpR +rpR +qjw cvn bQM bQM @@ -56280,9 +56286,9 @@ eLu cME cME ggk -iTj +hnA ubP -qMI +aZs ubP ubP ubP @@ -56308,10 +56314,10 @@ jlH jlH bUB twb -ifP +hTk gfo gfo -ivK +dVQ twb twb kPz @@ -56370,10 +56376,10 @@ lAh lAh lAh lAh -mvp -mvp -cer -kpq +aDe +aDe +fQp +vno xLi xLi azZ @@ -56387,11 +56393,11 @@ aFZ aFZ aFZ aSS -qrn +wDk byY duW byY -qrn +wDk aFZ bQM bQM @@ -56401,24 +56407,24 @@ bQM bQM bQM aFZ -mdz -xhL -tja +cTU +soZ +jxA tEH -gOJ -rQK -uVD +pFU +fQH +ylj aif -eVN -ddB -rie -jQs -jQs -jQs -qhC -jQs -umz -xEH +rUo +hUY +bcg +uQs +uQs +uQs +udv +uQs +sOc +nlD ioM dTX mEO @@ -56426,23 +56432,23 @@ mEO mEO ioM nOz -mCp -gTi +sou +jmE eTc -clP -wzH -fIL -dtS -clP +xOq +kGV +onI +vrN +xOq eTc -mCp -gTi +sou +jmE nOz bis -bPQ -rJF -kKd -akp +ede +rpR +mQt +qjw cvn bQM bQM @@ -56457,14 +56463,14 @@ bQM bQM bQM dCM -fDb -ihB -ihB -ihB -ihB -ihB -ihB -ihB +qlV +fJp +fJp +fJp +fJp +fJp +fJp +fJp dCM bQM kPz @@ -56473,12 +56479,12 @@ bQM kPz bQM dCM -dUu -sNU -dHU +xke +wmR +toj ubP -vIG -gag +kPr +gxF dCM bQM kPz @@ -56490,7 +56496,7 @@ pJK eLu kNY cME -itK +pVv uGY ubP ubP @@ -56520,10 +56526,10 @@ pRG aWk twb twb -vQJ -kTs -kTs -wnM +ikG +brF +brF +olX twb kPz kPz @@ -56581,11 +56587,11 @@ xLi xLi xLi xLi -pSs -mBJ -mvp -cer -kpq +eMd +tXI +aDe +fQp +vno lAh lAh lAh @@ -56613,24 +56619,24 @@ tQB tQB aFZ aFZ -wDw -ylW -ylW +kFC +wtg +wtg tEH -gtH -uVD -ppX +iOu +ylj +pmt hVI -ceq -dAg -iea -mzK -jbq -jbq -qDZ -jbq -iea -oTi +awl +iUA +fkp +jzF +lAz +lAz +jmR +lAz +fkp +xcL ioM ihp mEO @@ -56638,23 +56644,23 @@ mEO mEO sJu lqq -mCp -gTi -jjW +sou +jmE +qPZ nOz dnz kNB bPl nOz -jjW -mCp -gTi +qPZ +sou +jmE lqq wpD -bPQ -qGh -rJF -akp +ede +jKu +rpR +qjw bFr bFr kPz @@ -56669,14 +56675,14 @@ kPz kPz kPz dCM -bBt -ihB -mWS -sNU -gag -pbX -igV -ihB +sEb +fJp +hYH +wmR +gxF +rYP +ekH +fJp dCM bQM kPz @@ -56685,12 +56691,12 @@ kPz kPz bQM dCM -gag -sNU +gxF +wmR ubP -nyC -pbX -gag +xvw +rYP +gxF dCM bQM kPz @@ -56704,20 +56710,20 @@ cME cME uzw uGY -gag -cHl +gxF +wRh nqN nqN nqN -aME -gag -cHl +mkA +gxF +wRh nqN nqN nqN -aME -gag -cHl +mkA +gxF +wRh uGY vZX vZX @@ -56730,12 +56736,12 @@ oly vZX vZX jwc -pEt -cxb -uRI +aYN +jTw +kjY gfo -hyc -qwG +qBM +qoj twb kPz bQM @@ -56785,24 +56791,24 @@ lAh xLi xLi xLi -jdn -jVt +aHQ +gxl xLi xLi -sNg -xak +mZF +iVj xLi xLi xLi xLi -mvp -cer -kpq +aDe +fQp +vno xLi -cyk -mAS +xyD +lCc xLi -sWb +eie azZ tel tel @@ -56811,23 +56817,23 @@ hVI xLS mEO ioM -qrn -bLM -tja -bLM -qrn +wDk +paN +jxA +paN +wDk tQB pcu pcu pcu tQB -prC -rbp -hyq -qrn -tja -tja -tja +nNC +dib +hWH +wDk +jxA +jxA +jxA hVI tEH tEH @@ -56835,14 +56841,14 @@ hVI hVI tEH hVI -dOO -oTi -ikt -jQs -jQs -xEH -wFp -pzE +mTU +xcL +xeS +uQs +uQs +nlD +htW +qKj ioM pNG mEO @@ -56850,23 +56856,23 @@ mEO byY ioM nOz -mCp -gTi +sou +jmE eTc -clP -xzN -bDM -pgQ -clP +xOq +geO +bfZ +jEg +xOq eTc -mCp -gTi +sou +jmE nOz bFr -bPQ +ede iKs iKs -akp +qjw bFr bFr bQM @@ -56881,14 +56887,14 @@ bQM bQM bQM dCM -bBt -ihB -gag -sNU -gag -pbX -gag -ihB +sEb +fJp +gxF +wmR +gxF +rYP +gxF +fJp dCM bQM kPz @@ -56897,12 +56903,12 @@ bQM kPz bQM dCM -gag -sNU -bSs -dHU -pbX -cDE +gxF +wmR +hzU +toj +rYP +phF dCM bQM kPz @@ -56916,20 +56922,20 @@ cME cME cME gIB -lld -lld +faZ +faZ dCM bQM dCM -lld -lld -lld +faZ +faZ +faZ dCM bQM dCM -lld -lld -lld +faZ +faZ +faZ ovr vZX vZX @@ -56942,11 +56948,11 @@ vZX vZX vZX jwc -qsF -kTs +idJ +brF gfo gfo -ivK +dVQ twb twb kPz @@ -56996,65 +57002,65 @@ azZ azZ xLi xLi -fKP -mvp -mvp -mvp -oih -mvp -mvp -hrA -wou +aNh +aDe +aDe +aDe +wJs +aDe +aDe +umq +xvl xLi xLi -cGa -cer -kpq -fMc -qkt -nEW +xtB +fQp +vno +agk +kDv +krN ddL ejw ejw ejw rBr -cXp +rrM hVI xLS mEO sJu -jMh -bLM -tja -bLM -jMh +elr +paN +jxA +paN +elr tQB jlH jlH jlH tQB -qrn -qrn -jxm -qrn -tja -bOR -tja -ddB -jQs -jQs -jQs -iWe -jQs -lBR -afq -oTi -dOO -wXN -bJG -eOp -qqW -tja +wDk +wDk +jyC +wDk +jxA +fTe +jxA +hUY +uQs +uQs +uQs +vvD +uQs +gZp +sNF +xcL +mTU +ncd +mea +whx +wzR +jxA sJu mEO mEO @@ -57062,45 +57068,45 @@ mEO vXl ioM bis -gKG -iYa -bDM -bDM -dZK -rJF -iYa -bDM -bDM -dZK -lpd +yjs +xyy +bfZ +bfZ +cCJ +rpR +xyy +bfZ +bfZ +cCJ +ewD bFr bFr -kCj -rJF -rJF -akp +lMz +rpR +rpR +qjw bFr bFr bFr bFr bFr bFr -gBY -gBY -gBY +nyG +nyG +nyG bFr -gBY -gBY -gBY +nyG +nyG +nyG dCM -fDb -ihB -gag -sNU -gag -pbX -gag -ihB +qlV +fJp +gxF +wmR +gxF +rYP +gxF +fJp nqN nqN nqN @@ -57113,7 +57119,7 @@ ceC dCn dCn dCn -llJ +opU ceC nqN nqN @@ -57128,20 +57134,20 @@ cME cME cME gIB -ihB -ihB +fJp +fJp dCM bQM dCM -ihB -ihB -ihB +fJp +fJp +fJp dCM bQM dCM -ihB -ihB -oXb +fJp +fJp +pqe nqN aWk aWk @@ -57154,11 +57160,11 @@ qkN vZX vZX aWk -nrn -pxL -ddv -vLe -rVp +xCj +nUV +gwy +gyo +hcb twb kPz kPz @@ -57207,66 +57213,66 @@ azZ azZ azZ xLi -wQY -mvp -lkr -hae -hae -hae -hae -hae -hae -hae +bTY +aDe +hvT +biz +biz +biz +biz +biz +biz +biz xZR -hae -hae -iRI -kpq -oxp -rHX -tvi +biz +biz +uaR +vno +jnC +oxn +rPN ddL -mvp -rHX -mvp -sWb +aDe +oxn +aDe +eie phz hVI qeX mEO hVI rsH -rZI -tja -bLM +xZH +jxA +paN byY aFZ tQB tQB tQB aFZ -qrn -kYz -bAE -vci -tja -tja -tja -dOO -tja -tja -tja -tja -tja -tja -tja -oTi -dOO -tsr -pSr -oTi -hiP -tcD +wDk +gOI +wSn +nVD +jxA +jxA +jxA +mTU +jxA +jxA +jxA +jxA +jxA +jxA +jxA +xcL +mTU +dut +gJO +xcL +gOM +ymd aFZ hVI hVI @@ -57274,17 +57280,17 @@ bmE hVI aFZ bFr -wzH -tyj -tyj -tyj -bXh -rJF -nTv -tyj -tyj -tyj -dtS +kGV +vhv +vhv +vhv +bWD +rpR +eyY +vhv +vhv +vhv +vrN bFr bis fTn @@ -57306,13 +57312,13 @@ iKs iKs uGY uGY -ihB -gag -sNU -gag -pbX -gag -ihB +fJp +gxF +wmR +gxF +rYP +gxF +fJp hVG ubP ubP @@ -57323,8 +57329,8 @@ nEI ubP fYo fou -alY -cqT +ntm +rrt fou aNk ubP @@ -57419,112 +57425,112 @@ azZ azZ azZ xLi -geT -mvp -cer -pvF -eqU -hmE -eqU -eqU -eqU -eqU +eTd +aDe +fQp +eaX +dSg +mSC +dSg +dSg +dSg +dSg xZR -eqU -eqU -uAg -kpq +dSg +dSg +jFn +vno xLi -cZe -bKF +lBk +xbx ddL -mvp -rHX -mvp +aDe +oxn +aDe wfY -sWb +eie hVI hVI mEO hVI -qrn -oJN -tja -bLM -qrn +wDk +rsk +jxA +paN +wDk hVI -wow -boF -xaO +fkN +syz +wNJ hVI hVI hVI -lOm -rjP -qrn -tja -qrn -dAg -tlJ -qnb -jbq -jbq -qDZ -jbq -iea +kql +mjW +wDk +jxA +wDk +iUA +icz +aBH +lAz +lAz +jmR +lAz +fkp mEO -dOO -sls +mTU +khA lfo -oTi -dOO -oTi +xcL +mTU +xcL hVI -nmL -ixn -dOO -oTi -ubA +xpU +vHj +mTU +xcL +gRS bFr bFr uIS uIS bis -mCp -rJF -gTi +sou +rpR +jmE bis uIS uIS bis bFr -fQA -mCp +aBN +sou dBy dBy -gTi -rJF -bDM -bDM -rJF +jmE +rpR +bfZ +bfZ +rpR dBy dBy -gTi -xzN -bDM -bDM -bDM -bDM -pgQ -mCp +jmE +geO +bfZ +bfZ +bfZ +bfZ +jEg +sou ggk -ihB -gag -sNU -gag -pbX -hnM -ihB +fJp +gxF +wmR +gxF +rYP +tvA +fJp hVG ubP ubP @@ -57532,14 +57538,14 @@ rAY ubP ubP ubP -ngn +vOW sYP -ihB -ktC -kHZ -lRk -ihB -ihB +fJp +dLu +qZO +qyH +fJp +fJp ubP ubP uGY @@ -57632,20 +57638,20 @@ azZ azZ xLi xLi -mvp -cer -kpq -mvp -mvp -mvp -mvp -mvp -wou +aDe +fQp +vno +aDe +aDe +aDe +aDe +aDe +xvl xLi xLi -cGa -cer -kpq +xtB +fQp +vno xLi ddL ddL @@ -57659,66 +57665,66 @@ hVI hVI mEO hVI -tAj -dOt -tja -bLM -ckt +osz +bJZ +jxA +paN +hrV hVI -tMV -bLM -bLM -bLM -bLM +nai +paN +paN +paN +paN hVI hVI hVI -qrn -jiA -qrn +wDk +jUR +wDk hVI -aqo -sdR -jci -nsm -cGU +oum +nkV +eIZ +fKT +tSD mEO -dOO -dVD -dOO -hhD -kpv -oTi -dOO -oTi +mTU +sPN +mTU +ped +fEb +xcL +mTU +xcL hVI -xOs -bLM -bLM -bLM -kYd -bpx +bLn +paN +paN +paN +bzT +kca hVI -pdN -fQA +mrZ +aBN bis wMi wMi wMi bis -tJQ -mnR +iQc +jaj bis bFr -fQA -mCp +aBN +sou iKs iKs -kvT -rJF +jKs +rpR iKs iKs -rJF +rpR clb dBy dBy @@ -57730,30 +57736,30 @@ dFh dBy dBy ggk -ihB -gag -sNU -gag -pbX -gag -ihB +fJp +gxF +wmR +gxF +rYP +gxF +fJp hVG bLE ubP ubP ubP -nDq +mYd ubP -ngn +vOW wWs wWs -gag -aej +gxF +plT wWs wWs -ihB -qrI -ejs +fJp +jLn +cVJ ggk cME cME @@ -57764,20 +57770,20 @@ tPN bQM bQM dCM -ihB -ihB +fJp +fJp dCM bQM dCM -ihB -ihB -ihB +fJp +fJp +fJp dCM bQM dCM -ihB -ihB -ihB +fJp +fJp +fJp dCM bQM bQM @@ -57844,10 +57850,10 @@ azZ azZ xLi xLi -mvp -phC -kpq -mvp +aDe +xss +vno +aDe xLi xLi ddL @@ -57855,15 +57861,15 @@ ddL ddL xLi xLi -mvp -cer -kpq -vtr -epD -mvp -mvp -mvp -mvp +aDe +fQp +vno +pLb +oQF +aDe +aDe +aDe +aDe phz phz phz @@ -57872,100 +57878,100 @@ mEO mEO hVI byY -bLM -tja -bLM +paN +jxA +paN byY hVI -jhl -tja -tja -tja -tja -tja +aPS +jxA +jxA +jxA +jxA +jxA aif -tja -tja -tja -yhs +jxA +jxA +jxA +ceI hVI -kYi -aFQ +dWo +mZm xxX iAA aRt nUb -lzd -oTi -dOO -wXN -oFO -sHM -dOO -tja +uve +xcL +mTU +ncd +uBc +uJO +mTU +jxA aif -bLM -oga -dOO -oTi -brC -pjE +paN +dyd +mTU +xcL +tfV +wuX hVI -rJF -rJF -rJF -mCp +rpR +rpR +rpR +sou dBy -gTi -rJF -rJF -bQv -rJF -rJF -rJF -mCp +jmE +rpR +rpR +jNb +rpR +rpR +rpR +sou dBy dBy -gTi -rJF -vCQ -tyj -rJF +jmE +rpR +qoM +vhv +rpR dBy dBy -gTi -wzH -tyj -tyj -tyj -tyj -dtS -mCp +jmE +kGV +vhv +vhv +vhv +vhv +vrN +sou ggk -ihB -gag -sNU -gag -pbX -mWS -oXb +fJp +gxF +wmR +gxF +rYP +hYH +pqe ceC xGt xGt ceC ubP -iwy +wsd ubP -ihB +fJp wWs wWs -gag -gag +gxF +gxF wWs wWs -ihB -ncY -ejs +fJp +meJ +cVJ ggk cME cME @@ -57976,20 +57982,20 @@ tPN bQM bQM dCM -ldZ -sbF +jRc +pwT dCM bQM dCM -sbF -sbF -sbF +pwT +pwT +pwT dCM bQM dCM -sbF -sbF -sbF +pwT +pwT +pwT dCM bQM bQM @@ -58055,44 +58061,44 @@ azZ azZ azZ xLi -hrA -mvp -cer -kpq -wou +umq +aDe +fQp +vno +xvl xLi -hqG -lQL -qsE -qMi -uky -nmy -luZ -cer -kpq -mvp -mvp -mvp -luZ -mvp -mvp -mvp -mvp +iMJ +cpw +uAA +iep +pWD +koE +kmC +fQp +vno +aDe +aDe +aDe +kmC +aDe +aDe +aDe +aDe phz ecu mEO hVI hVI -jMh -bLM -tja -bLM -jMh +elr +paN +jxA +paN +elr vWe hVI -tja -bLM -sBO +jxA +paN +pZS hVI hVI hVI @@ -58110,11 +58116,11 @@ azv nUb mEO uza -ipA -jbq -brC -dOO -pzE +awg +lAz +tfV +mTU +qKj hVI hVI hVI @@ -58125,21 +58131,21 @@ hVI hVI dBy dBy -rJF -mCp +rpR +sou iKs -gTi -rJF -xzN -bDM -bDM -bDM -bDM -dZK +jmE +rpR +geO +bfZ +bfZ +bfZ +bfZ +cCJ iKs -nTv -dtS -fQA +eyY +vrN +aBN bis bis bis @@ -58154,28 +58160,28 @@ bFr dBy dBy uGY -any -ihB -ihB -ihB -ihB -ihB -ihB +vlD +fJp +fJp +fJp +fJp +fJp +fJp buz -ycf -hek +snz +lCJ dCM ubP ubP ubP -ihB +fJp wWs wWs -dHU +toj ubP wWs wWs -ihB +fJp ubP ubP uGY @@ -58188,20 +58194,20 @@ nqN nqN nqN nqN -gag +gxF fCD nqN nqN nqN -aME -gag -cHl +mkA +gxF +wRh nqN nqN nqN -aME -gag -cHl +mkA +gxF +wRh nqN nqN nqN @@ -58266,91 +58272,91 @@ azZ azZ azZ azZ -sWb -mvp -mvp -cer -kpq -mvp +eie +aDe +aDe +fQp +vno +aDe ddL lXO nId ykO pCc -pxW -ioV -mvp -cer -wun -hae -hae -hae -hae -hae -hae -ceJ -mvp +oww +aTH +aDe +fQp +oLH +biz +biz +biz +biz +biz +biz +uzm +aDe phz mEO mEO hVI -xsC -bLM -ioS -tja -bLM -bLM -bLM -jTD -tja -bLM -tGU -rGe -fCr -bLM -gbv -bLM -fYa +vKM +paN +cES +jxA +paN +paN +paN +uHi +jxA +paN +alI +bYV +owH +paN +cPI +paN +ycp voK -koY -bLM -hOG -jQs +gZI +paN +aam +uQs mEO -jQs -oDV -sBM -bQn -nJT -jQs -jQs -jQs -afq -oTi -bLM -bLM -bLM -bLM -bLM -bLM -bLM +uQs +jxQ +xba +jkL +dvy +uQs +uQs +uQs +sNF +xcL +paN +paN +paN +paN +paN +paN +paN sJu -fie +qWU dBy -rJF -mCp +rpR +sou iKs -gTi -rJF -mCp +jmE +rpR +sou iKs iKs dBy dBy iKs -nTv -dtS -fQA +eyY +vrN +aBN bis bis cME @@ -58374,20 +58380,20 @@ nqN ksL eip gpG -ihB -ohx +fJp +lEf ceC cxy ubP ubP -ihB +fJp wWs wWs -xNG +woo ubP wWs wWs -ihB +fJp ubP aTx nqN @@ -58403,17 +58409,17 @@ nXu ubP ubP ubP -mVY -mqB +aWi +tLI ubP -qMI +aZs ubP ubP ubP ubP ubP ubP -qMI +aZs ubP fYo ubP @@ -58479,89 +58485,89 @@ azZ azZ azZ xLi -sWb -esR -cer -kpq -mvp +eie +rdg +fQp +vno +aDe ddL ntH nMZ oHX pFP -iUr -tNf -mvp -cer -pvF -eqU -eqU -eqU -eqU -eqU -uAg -kpq -mvp +hbU +txj +aDe +fQp +eaX +dSg +dSg +dSg +dSg +dSg +jFn +vno +aDe phz mEO hVI hVI -suY -tja -tja -tja -tja -tja -tja -tja -tja -bLM -gQz -ntM -bLM -tja -tja -tja -gFp +hzX +jxA +jxA +jxA +jxA +jxA +jxA +jxA +jxA +paN +wwh +oIS +paN +jxA +jxA +jxA +lZc ikL -bLM -bLM +paN +paN mEO -mzK -jbq +jzF +lAz mEO -jbq -jbq -jbq -bXc -jbq -jbq -jbq -iea -oTi -bLM -bLM -bLM -bLM -bLM -bLM -bLM +lAz +lAz +lAz +fqA +lAz +lAz +lAz +fkp +xcL +paN +paN +paN +paN +paN +paN +paN sJu -fie +qWU sWl -rJF -mCp +rpR +sou iKs -gTi -rJF -wzH -tyj -tyj -tyj -tyj -tyj -dtS -fQA +jmE +rpR +kGV +vhv +vhv +vhv +vhv +vhv +vrN +aBN bis bis cME @@ -58586,28 +58592,28 @@ twb oZy nfA gpG -lkP -ihB +wDl +fJp hVG fZz -nDq +mYd uRZ -ihB +fJp wWs wWs -gag -gag +gxF +gxF wWs wWs -ihB -nDq -rxg -lld -lld -lld -lld -wmx -bCe +fJp +mYd +dnu +faZ +faZ +faZ +faZ +bDN +aAM ubP ubP ubP @@ -58615,8 +58621,8 @@ ubP ubP ubP ubP -sNU -pbX +wmR +rYP sYP ubP ubP @@ -58628,7 +58634,7 @@ ubP ubP sYP ubP -ejs +cVJ ggk vZX vZX @@ -58691,66 +58697,66 @@ azZ xLi xLi xLi -sWb -mvp -cer -kpq -aUA +eie +aDe +fQp +vno +gqO ddL oIq nOw oXR pHh -oEu -cKB -mvp -cer -kpq -mvp -mvp -mvp -mvp -mvp -cer -kpq -mvp +iPH +cTY +aDe +fQp +vno +aDe +aDe +aDe +aDe +aDe +fQp +vno +aDe hVI hVI hVI gbT -bLM -tja -ctC +paN +jxA +ayV vWe -gbh -tja -bLM -kZV -tja -bLM -gAC +qHQ +jxA +paN +kFV +jxA +paN +qAD hVI -lpw -tja -tja -tja -gFp +xCA +jxA +jxA +jxA +lZc ikL -xMp +qHY jyP -dOO -sDn +mTU +wGz hVI -mtP -mtP -mtP -cqP +hPw +hPw +hPw +tCf hVI tEH tEH hVI -njY -xCp +lli +dqt hVI tEH tEH @@ -58759,18 +58765,18 @@ hVI hVI hVI hVI -rJF -lGL -rJF -wzH -tyj -dtS -rJF -sCe -rJF -rJF -rJF -fmb +rpR +byy +rpR +kGV +vhv +vrN +rpR +mOV +rpR +rpR +rpR +sjY dBy dBy dBy @@ -58781,14 +58787,14 @@ cME bis bis gXd -qIT -xzN -bDM -hwr -bDM -bDM -pgQ -mCp +cDr +geO +bfZ +iwM +bfZ +bfZ +jEg +sou rHu bnL cME @@ -58798,49 +58804,49 @@ liA nyS scZ ceC -bQW -fiG +ftf +vHs ceC ubP -iwy +wsd ubP -ihB +fJp wWs wWs -gag -gag +gxF +gxF wWs wWs -ihB -iwy -xjM -sbF -sbF -sbF -wIx -sbF -qhN +fJp +wsd +oMv +pwT +pwT +pwT +oKT +pwT +cXK ubP ubP ubP ubP ubP daY -hEZ -sNU -pbX +wUv +wmR +rYP ubP ubP -gag -lld -lld -lld -lld -gag +gxF +faZ +faZ +faZ +faZ +gxF ubP ubP ubP -ejs +cVJ ggk vZX vZX @@ -58905,67 +58911,67 @@ xLi phz phz phz -cer -kpq -wou +fQp +vno +xvl xLi -lIl -cEG -mvV -fno -byF -swJ -mvp -cer -ojc -ujo -kii -hae -ceJ -tdr -cer -kpq -wou +dBL +kPk +kcp +qNV +jzl +faF +aDe +fQp +cLK +ilt +aei +biz +uzm +icd +fQp +vno +xvl hVI hVI hVI eUZ -wEE -tja -dTg -vRF -ewI -tja -sYy -ntM -tja -bLM -mRA -lIk -vJo -bLM -tja -bLM -fYa +cPV +jxA +pin +lVb +uHq +jxA +tQT +oIS +jxA +paN +mOt +sZl +obV +paN +jxA +paN +ycp cbF -eOy -bLM -dOO -uRF +jpg +paN +mTU +pvP aif -bLM -bLM -bLM -loP +paN +paN +paN +fZs hVI -rMq -bLM +eMA +paN hVI -dOO -tja +mTU +jxA aif ovJ -bLM +paN sJu nCt yeA @@ -59016,14 +59022,14 @@ ceC ubP ubP ubP -ihB -ihB -ihB -ihB -ihB -ihB -ihB -ihB +fJp +fJp +fJp +fJp +fJp +fJp +fJp +fJp ubP xGD nqN @@ -59039,16 +59045,16 @@ hPN ubP pTj ubP -sNU -pbX -hEZ +wmR +rYP +wUv ubP -jtK +cBY gmF txh txh afO -jtK +cBY ubP ubP ubP @@ -59111,73 +59117,73 @@ azZ azZ azZ xLi -dqX -dqX +bYL +bYL phz phz fEn kEZ -cer -kpq -mvp +fQp +vno +aDe xLi ddL ddL ddL xLi xLi -nrU -mvp -cer -cvH -mvp -qrt +vMR +aDe +fQp +igp +aDe +qaD xLi -ydQ -mvp -cer -kpq -mvp +rMU +aDe +fQp +vno +aDe hVI hVI hVI dvq -bLM -tja -fCr -hDl -ugq -xLf -gQz -mOf -tja -bLM -scp -rGe -jSU -ajP -tja -bLM -fYa -kCN -oXI -hko -eUN -pae +paN +jxA +owH +oeH +sPf +aXb +wwh +dHW +jxA +paN +snJ +bYV +jPg +fQd +jxA +paN +ycp +cKc +wdr +qCT +pDt +yjZ hVI -wKR -nxY -bLM -iSW +nDN +rYL +paN +hOV hVI -psL +eQM ovJ hWi -tja -oTi +jxA +xcL hVI -jBn -rHf +gmP +sCn hVI fIq mEO @@ -59199,31 +59205,31 @@ ecL cME cME tIU -tpf +hbu tIU cME eLu cbd dBy -gTi -wzH -tyj -tyj -tyj -tyj -dtS -mCp +jmE +kGV +vhv +vhv +vhv +vhv +vrN +sou rHu rJu uzw kqC -rzp -vds -vds -elO +vwJ +nno +nno +iYl abJ -ioc -ioc +evN +evN abJ ubP ubP @@ -59255,20 +59261,20 @@ gIB uGY lkQ ubP -gag -sbF -sbF -sbF -sbF -gag +gxF +pwT +pwT +pwT +pwT +gxF ubP ubP wxZ qeC bLA -xQx -aEB -xQx +gfr +sJd +gfr plK vZX vZX @@ -59323,59 +59329,59 @@ azZ azZ xLi xLi -sWb +eie phz ctD phz phz -mvp -cer -kpq -mvp -mvp -mvp -mvp -mvp +aDe +fQp +vno +aDe +aDe +aDe +aDe +aDe xLi rfd -mvp -mvp -cer -ojc -ujo -aMu -eqU -iOY -mvp -cer -kpq -mvp +aDe +aDe +fQp +cLK +ilt +nzh +dSg +flA +aDe +fQp +vno +aDe uno ciA lsn uno -bLM -tja -qGO +paN +jxA +lmr hVI -xOs -nCV -aeF -ntM -uIB -bLM -eLw -hDl -ewI -bLM -tja -dTg -qCE -eYr -lbZ -bLM -dOO -oTi +bLn +ygv +hEo +oIS +sej +paN +qOI +oeH +uHq +paN +jxA +pin +fxk +yeI +ufG +paN +mTU +xcL nQq hVI hVI @@ -59385,8 +59391,8 @@ hVI hVI hVI mrI -dOO -pzE +mTU +qKj vWe hVI hVI @@ -59396,32 +59402,32 @@ nBt kwT tQB tqP -afk -afk -afk +bCM +bCM +bCM xdt tzN -afk -afk -afk +bCM +bCM +bCM rxL fQV tPN ecL cME cME -oOi +xKW pJc -qws +cjB cME eLu eLu eLu eLu twb -eBO -eBO -eBO +loQ +loQ +loQ eLu eLu eLu @@ -59429,13 +59435,13 @@ eLu kfW cME kqC -dHD +gxB lkb upY -fHo +tSH vRA -ioc -ioc +evN +evN vRA ubP nXX @@ -59460,27 +59466,27 @@ ubP fou ePM gIB -lrV -onh -sQy -adq +ePD +iwD +ovA +mAM hjE ubP ubP ubP -gag -gag -gag -gag +gxF +gxF +gxF +gxF ubP ubP ubP kjP otC dkn -uKX -uKX -rZe +lRz +lRz +oCa plK vZX waU @@ -59535,87 +59541,87 @@ azZ lAh xLi xLi -dqX +bYL phz phz phz xLi azZ -cer -wun -hae -hae -hae -hae -hae -hae +fQp +oLH +biz +biz +biz +biz +biz +biz xZR -hae -hae -lcJ -kpq -mvp -mvp -mvp -mvp -mvp -cer -kpq -mvp +biz +biz +tHK +vno +aDe +aDe +aDe +aDe +aDe +fQp +vno +aDe cyV -bLM -bLM +paN +paN cyV -bLM -tja -bLM -wbr -bLM -kid -ezU -eLw -tja -bLM -boI -vTR -oAf -tja -tja -dTg -slh -eYr -lbZ -bLM -dOO -oTi +paN +jxA +paN +iWh +paN +tNb +cmq +qOI +jxA +paN +wiP +feB +ueE +jxA +jxA +pin +dJi +yeI +ufG +paN +mTU +xcL hVI -dEj -bLM -bLM -bLM +sWc +paN +paN +paN hVI -khY -oAj +goY +uUL hVI -dOO -oTi -ueI -khY +mTU +xcL +pHv +goY hVI -rlP +dyL mEO lLE xoi tQB urJ -afk +bCM hkh -afk +bCM tCZ urJ -afk +bCM hkh -afk +bCM tCZ pcu tPN @@ -59623,7 +59629,7 @@ jSE cME cME tIU -gZc +adT tIU cME cME @@ -59631,9 +59637,9 @@ cME qIq eLu uvF -rzp -vds -elO +vwJ +nno +iYl cME wQT eLu @@ -59641,13 +59647,13 @@ cME cME cME oFI -dHD +gxB qRa upY -voO +cGZ kqC -pGS -kgN +ylJ +cyn kqC sOj uye @@ -59672,27 +59678,27 @@ fou ubP kWv gIB -mdH +dSA rVV -gag -ihB +gxF +fJp hsC ubP ubP ubP -gag -gag -gag -gag +gxF +gxF +gxF +gxF ubP ubP ubP lAY dkn dkn -uKX -uKX -uKX +lRz +lRz +lRz plK vZX vZX @@ -59747,87 +59753,87 @@ azZ lAh xLi xLi -dqX +bYL phz phz -dqX +bYL azZ azZ -cer -bLO -eqU -eqU -eqU -eqU -eqU -eqU +fQp +axw +dSg +dSg +dSg +dSg +dSg +dSg xZR -eqU -eqU -xAY -kpq -mvp -mvp -mvp -mvp -mvp -cer -kpq -mvp +dSg +dSg +uhF +vno +aDe +aDe +aDe +aDe +aDe +fQp +vno +aDe cyV -bLM -bLM +paN +paN cyV -bLM -tja -dTg -gbh -leZ -mAs -teK -bLM -aHK -tja -tja -tja -tja -bLM -bLM -dTg -slh -eYr -lbZ -oeN -dOO -oTi +paN +jxA +pin +qHQ +fYi +gfK +jxj +paN +dOf +jxA +jxA +jxA +jxA +paN +paN +pin +dJi +yeI +ufG +eaI +mTU +xcL hVI -iSW -ptH -bLM -bLM +hOV +aIq +paN +paN hVI -psL +eQM ovJ hWi -tja -oTi -bLM -bLM +jxA +xcL +paN +paN sJu -bxQ +aPQ mNB byY fUX tQB mpB -afk -afk -afk +bCM +bCM +bCM eze bHU -afk -afk -afk +bCM +bCM +bCM hxG jlH twb @@ -59843,9 +59849,9 @@ cME cME cME liA -oXg -xbM -fHo +ass +eMK +tSH xno dTf uvF @@ -59853,13 +59859,13 @@ cME ljd cME oFI -dHD +gxB upY upY -ger +uFM abJ -ioc -ioc +evN +evN abJ aUg ubP @@ -59873,38 +59879,38 @@ cns cns wzd ubP -rxg -lld -lld -lld -lld -lld -bCe +dnu +faZ +faZ +faZ +faZ +faZ +aAM nWv ubP iIE gIB ubP -gKg +kcy ubP -iPz +jXK vUv ubP ubP -gag -lld -lld -lld -lld -gag +gxF +faZ +faZ +faZ +faZ +gxF ubP ubP cri hfc tGY -qBj -cZy -aGF +xCU +pzQ +cGo plK wHw plK @@ -59958,73 +59964,73 @@ lAh lAh lAh xLi -sWb +eie phz phz phz azZ xLi azZ -cer -kpq -luZ -mvp -mvp -mvp -mvp +fQp +vno +kmC +aDe +aDe +aDe +aDe xLi rfd -mvp -mvp -cer -ojc -ujo -kii -hae -ceJ -mvp -cer -kpq -mvp +aDe +aDe +fQp +cLK +ilt +aei +biz +uzm +aDe +fQp +vno +aDe cyV -bLM -bLM +paN +paN cyV -bLM -tja -bLM -oTa -kZV -tja -bLM -bLM -img -bLM -bLM -tja -tja -ueX -ueX -qjM -qjM -tis -eca -xlk -nfu -kpH +paN +jxA +paN +sEN +kFV +jxA +paN +paN +kwg +paN +paN +jxA +jxA +hym +hym +rEX +rEX +evg +dhO +qic +sUO +cbn hVI tEH tEH -hzv +rGC nDr hVI tEH tEH hVI -rqq -hMA -bLM -fgY +wpd +jxO +paN +ake vWe hVI hVI @@ -60055,9 +60061,9 @@ cME cME cME kaO -qPa -xbM -weM +ora +eMK +pXM daS cME cME @@ -60065,60 +60071,60 @@ cME cME eLu kqC -dHD +gxB upY -eNa -efW +jax +lKf vRA -ioc -ioc +evN +evN vRA ubP ubP ubP ubP qqd -ihB -ihB -ihB -ihB -ihB +fJp +fJp +fJp +fJp +fJp unu ubP -xjM -sbF -sbF -sbF -sbF -sbF -qhN +oMv +pwT +pwT +pwT +pwT +pwT +cXK ubP ubP mNc gIB -gag +gxF aTx uGY gIB uGY lHE ubP -jtK +cBY gmF txh txh afO -jtK +cBY ubP ubP ubP plK -kyd +uSb dkn -uKX -fuJ +lRz +tNH plK -hwS +kcN gRT vHU eki @@ -60170,77 +60176,77 @@ azZ azZ lAh xLi -dqX +bYL phz irD phz azZ azZ azZ -cer -kpq -mvp +fQp +vno +aDe xLi ddL ddL ddL xLi xLi -nrU -luZ -cer -cvH -rFF -qrt +vMR +kmC +fQp +igp +ags +qaD xLi -ydQ -mvp -cer -kpq -mvp +rMU +aDe +fQp +vno +aDe tji azK nWx uno -atw -tja -koH -qTx -gRf -tja -rGe -dCv -bLM -bLM -bLM -tja -ltd -ueX +eRH +jxA +toJ +vnz +hNG +jxA +bYV +pSo +paN +paN +paN +jxA +wTw +hym aSS -gNx -tHF -tHF -gbO -jQs -afq -uRF -qqc -jQs -jQs -jQs -tja -jQs -jQs -jQs -jQs -afq -oTi -bLM -svW +qjz +neu +neu +kuy +uQs +sNF +pvP +dmM +uQs +uQs +uQs +jxA +uQs +uQs +uQs +uQs +sNF +xcL +paN +aKZ hVI hVI hVI -hSo +wPV hVI aFZ sKY @@ -60267,9 +60273,9 @@ cME rJh eLu eLu -dHD -xbM -fHo +gxB +eMK +tSH cME vZD cME @@ -60277,9 +60283,9 @@ cME cME eLu kqC -dHD -upY -skj +gxB +eTQ +kFk uGY ceC xGt @@ -60290,11 +60296,11 @@ ubP kJU ubP ibz -ihB -gag -gag -gag -ihB +fJp +gxF +gxF +gxF +fJp dVx gaQ spm @@ -60311,26 +60317,26 @@ uGY uxv uGY uGY -ihB -ihB +fJp +fJp ubP qHi -gag -sbF -sbF -sbF -sbF -gag +gxF +pwT +pwT +pwT +pwT +gxF ubP ubP ozC plK -kmn +cpg dkn -uKX -nuo +lRz +muq dkn -xQx +gfr pSU dKo rJO @@ -60382,73 +60388,73 @@ azZ azZ lAh xLi -dqX +bYL phz phz phz phz -bMT +mPa azZ -cer -kpq -wou +fQp +vno +xvl xLi -hqG -qMi -phQ -tiM -uky -bzU -mvp -cer -ojc -ujo -aMu -eqU -iOY -mvp -cer -kpq -mvp +iMJ +iep +sAN +ieB +pWD +qNX +aDe +fQp +cLK +ilt +nzh +dSg +flA +aDe +fQp +vno +aDe hVI rIS hVI dvq -bLM -tja -tAR -bLM -cvi -tja -ewI -gCH -vJo -bLM -otz -tja -tja -fYa +paN +jxA +ukL +paN +tNh +jxA +uHq +vwS +obV +paN +xtw +jxA +jxA +ycp voK -fQI -bLM -hkM -dOO -mzK -jbq -jbq -xTD -jbq -jbq -jbq -tpz -jbq -jbq -tja -eOM -jbq -brC -bLM -slh +sIp +paN +diP +mTU +jzF +lAz +lAz +euJ +lAz +lAz +lAz +ahc +lAz +lAz +jxA +cgb +lAz +tfV +paN +dJi hVI bLJ bLJ @@ -60457,11 +60463,11 @@ bLJ ofQ hCh suX -nQu +ikS iUB hCh hCh -nQu +ikS jcF hCh hCh @@ -60479,9 +60485,9 @@ mrk cME jkg cME -dHD -xbM -fHo +gxB +eMK +tSH xno cME uvF @@ -60489,60 +60495,60 @@ cME cME cME kqC -dHD +gxB upY -fHo +tSH uGY -jIw -cRl -sQC +cia +yfL +jlV ceC ubP ubP ubP ubP ceC -kVN +sSu tpa tpa tpa -kVN +sSu ceC ceC ceC ceC -mXS -mQy -jQS +rUH +qIz +cgt ceC ceC hYx -hEZ +wUv pTj -mVY +aWi uNm nEI ubP -sNU -pbX +wmR +rYP ubP ubP ubP -gag -gag -gag -gag +gxF +gxF +gxF +gxF ubP ubP ubP ubP vFs -uKX -uKX -uKX -lkA +lRz +lRz +lRz +kRv dkn -xQx +gfr gPs iMo rJO @@ -60599,55 +60605,55 @@ phz phz phz phz -dqX -mvp -cer -kpq -mvp +bYL +aDe +fQp +vno +aDe ddL lXO nId ykO pCc -msd -ioV -mvp -cer -kpq -mvp -mvp -mvp -mvp -mvp -cer -kpq -wou +oWx +aTH +aDe +fQp +vno +aDe +aDe +aDe +aDe +aDe +fQp +vno +xvl hVI hVI hVI -fpq -bLM -tja -sve -bLM -iie -tja -bLM -gbh -rGe -bsR -hDl -tja -mMh -gFp +uvJ +paN +jxA +sis +paN +mLU +jxA +paN +qHQ +bYV +bNB +oeH +jxA +mZh +lZc ikL -fwt -vBH -bLM -dOO -oTi -bNo -aEG +aib +cRw +paN +mTU +xcL +xjI +akF hVI hVI hVI @@ -60658,25 +60664,25 @@ hVI nDr hVI vWe -nor -nor -tTI +iza +iza +lgq vWe eqZ iVT -fqg +jKM suX -nQu -nQu -nQu -nQu -nQu -nQu -nQu -nQu -nQu -nQu -nQu +ikS +ikS +ikS +ikS +ikS +ikS +ikS +ikS +ikS +ikS +ikS suX iYw yli @@ -60691,9 +60697,9 @@ cME cME eLu jkg -dHD -xbM -fHo +gxB +eMK +tSH cME wQT eLu @@ -60701,67 +60707,67 @@ cYP qso gsN kqC -dHD +gxB upY -fHo +tSH hVG -yiL +dOj cZV -wNG +hms hVG ubP ubP ubP ubP ceC -dZu -gag -gag -gag -lgG +gIv +gxF +gxF +gxF +mmX ceC -tCH -ohc -taL -ohc -pjf -mSp -mHY +gXM +spd +sUj +spd +gsJ +mxj +vih ceC wDz pTj ubP pTj sJB -qMI +aZs ubP -sNU -pbX +wmR +rYP ubP ubP ubP -gag -gag -gag -gag +gxF +gxF +gxF +gxF ubP ubP ubP ubP vFs -uKX -uKX -uKX -oMf +lRz +lRz +lRz +lXb dkn -xQx +gfr bWg tKv wxX rJO plK -xZI -xZI +bnW +bnW aPH nGy rJO @@ -60812,85 +60818,85 @@ phz phz irD phz -mvp -cer -kpq -mvp +aDe +fQp +vno +aDe ddL ntH nUr oHX pFP -blA -tNf -mvp -cer -wun -hae -hae -hae -hae -hae -iRI -kpq -mvp +xxF +txj +aDe +fQp +oLH +biz +biz +biz +biz +biz +uaR +vno +aDe hVI hVI hVI -euz -bLM -tja -bLM -bLM -bLM -tja -bLM -fCr -eCy -bLM -xsX -vdn -tja -rbZ +pBY +paN +jxA +paN +paN +paN +jxA +paN +owH +kmX +paN +mSn +nXa +jxA +fVj ikL -kke -bLM -wkg -dOO -oTi -bLM -eSO +kxZ +paN +dBT +mTU +xcL +paN +eWl hVI -aXR -bLM -bLM -bLM -bLM +nPq +paN +paN +paN +paN hVI -ddB -wiR +hUY +aiA xLn -hYX -bLM -bLM +qtt +paN +paN eHt suX -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu -nQu -nQu -aeI -aeI -aeI -aeI -nQu -nQu +pET +pET +pET +pET +pET +pET +pET +ikS +ikS +ikS +pET +pET +pET +pET +ikS +ikS suX egk iYw @@ -60903,9 +60909,9 @@ cME cME cME liA -dHD -xbM -fJV +gxB +eMK +dRh kqC kqC kqC @@ -60913,60 +60919,60 @@ kqC kqC kqC kqC -oSn -hwN -eJy +wzS +njq +oCg uGY -lEF -tsN -tsN +swR +iKu +iKu ceC qbI rVV rVV qbI ceC -ihO +qNQ ubP ubP ubP -gag +gxF hVG oZi bcq -vgL -dHb -ezO +kTf +raB +cDV xpx -eIB +hqZ ceC fxi ubP -pwC +qRZ ubP -dHU +toj sYP fGA -sNU -pbX +wmR +rYP ubP ubP -gag -lld -lld -lld -lld -gag +gxF +faZ +faZ +faZ +faZ +gxF ubP ubP ozC plK upX dkn -uKX -nuo +lRz +muq dkn -xQx +gfr uMw rJO rJO @@ -61019,91 +61025,91 @@ azZ azZ xLi phz -dqX +bYL phz phz phz -sWb -mvp -cer -kpq -ajw +eie +aDe +fQp +vno +roR ddL oIq nOw oXR pHh -apO -cKB -mvp -cer -pvF -eqU -eqU -eqU -eqU -eqU -eqU -iOY -mvp +pSf +cTY +aDe +fQp +eaX +dSg +dSg +dSg +dSg +dSg +dSg +flA +aDe mEO mEO hVI hVI -gYM -tja -tja -tja -tja -tja -tja -lzd -tja -uJG -tja -tja -tja -caX +ovO +jxA +jxA +jxA +jxA +jxA +jxA +uve +jxA +dbU +jxA +jxA +jxA +iUD ikL -fjo -bLM -bLM -dOO -oTi -gYM -hgc +cXx +paN +paN +mTU +xcL +ovO +bxN hVI -fMn -kOu -bLM -bLM -bLM +qku +wbF +paN +paN +paN hWi -dAg -nRU +iUA +uKj dhZ -bLM -bLM -bLM +paN +paN +paN stP suX -aeI -ucN -aeI -aeI -aeI -aeI -aeI -nQu -nQu -nQu -aeI -aeI -aeI -aeI -aeI -aeI -nQu +pET +jKP +pET +pET +pET +pET +pET +ikS +ikS +ikS +pET +pET +pET +pET +pET +pET +ikS shH iYw iYw @@ -61115,19 +61121,19 @@ srI dTf cME eLu -dHD -xbM -fHo -ioc -bjt -bjt +gxB +eMK +tSH +evN +pls +pls kqC -sfu -jyF +uWu +sFe kqC -ioc -ioc -ioc +evN +evN +evN uGY xGt xGt @@ -61138,19 +61144,19 @@ ceC ceC ceC ceC -kOV +rqp ubP ubP ubP -gag +gxF hVG ljV oZi qHX jbu -cKJ +vxE tir -sCH +mLk ceC kIA psm @@ -61159,26 +61165,26 @@ pTj ubP nEI ubP -sNU -pbX +wmR +rYP ubP ubP -jtK +cBY gmF txh txh afO -jtK +cBY ubP ubP aTx plK -qEk +xes dkn -uKX -lkA +lRz +kRv dkn -xQx +gfr uMw rJO rJO @@ -61230,60 +61236,60 @@ azZ azZ xLi xLi -sWb +eie phz -jFP +cAl phz -sWb +eie xLi -mvp -cer -kpq +aDe +fQp +vno azZ xLi -lIl -wol -mvV -fno -byF -nmy -luZ -cer -kpq -mvp -mvp -mvp -mvp -mvp -mvp -mvp -mvp +dBL +ykK +kcp +qNV +jzl +koE +kmC +fQp +vno +aDe +aDe +aDe +aDe +aDe +aDe +aDe +aDe mEO mEO mEO hVI -gYM -bLM -rfe -tja -bLM -bLM -bLM -dCs -bLM -bLM -eCy -cTE -njm -fYa +ovO +paN +nxQ +jxA +paN +paN +paN +hFl +paN +paN +kmX +cIl +wDD +ycp cbF -nvs -bLM -ddB -rcI -uRF -xEH -cBX +jMe +paN +hUY +xqW +pvP +nlD +ePY hVI mei oZz @@ -61294,73 +61300,73 @@ hVI hVI hVI hVI -bLM -bLM -iUa +paN +paN +mjq bLJ xXl -aeI -aeI -aeI -aeI -ssc -aeI -aeI -nQu -nQu -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu +pET +pET +pET +pET +wdV +pET +pET +ikS +ikS +ikS +pET +pET +pET +pET +pET +pET +pET +ikS suX -neY +vYE liA -yfK +gvK tmo gfo cME wQT cME kqC -dHD -xbM -fHo -ioc -ioc -bjt +gxB +eMK +tSH +evN +evN +pls kqC -qNF -ctW +lvW +fny kqC -rzp -vds -vds -vds -car -gOU -gOU -gOU -vFV +vwJ +nno +nno +nno +hXi +tZH +tZH +tZH +rcB xGt -ucu -ihB -ucu -ihB -gag -gag -gag -ihB +dPQ +fJp +dPQ +fJp +gxF +gxF +gxF +fJp ceC obh obh ceC bxc -jbF +bcV bBK ceC ceC @@ -61375,22 +61381,22 @@ uGY uGY uGY uGY -gag -sbF -sbF -sbF -sbF -gag +gxF +pwT +pwT +pwT +pwT +gxF ubP ubP ubP plK -lkA +kRv dkn -uKX -oMf +lRz +lXb dkn -xQx +gfr uMw rJO rJO @@ -61442,15 +61448,15 @@ azZ azZ xLi xLi -sWb +eie phz phz phz phz xLi -mvp -cer -kpq +aDe +fQp +vno azZ xLi xLi @@ -61459,15 +61465,15 @@ ddL ddL xLi xLi -uRT -cer -kpq -mvp -icg -uTr -myQ -sWb -dqX +uZE +fQp +vno +aDe +hvM +vAu +cwD +eie +bYL lAh lAh aFZ @@ -61475,81 +61481,81 @@ aFZ bmE hVI hVI -kXm -ipM -tja -bLM -esw +uid +rbm +jxA +paN +siH aFZ hVI hVI -tja -tja +jxA +jxA hVI hVI hVI yhR -qiK -jQs -afq -tja -tja -uRF -cZp -aWI -jQs -jQs -jQs -nRT -qNj +ipK +uQs +sNF +jxA +jxA +pvP +gcl +qhb +uQs +uQs +uQs +adP +kXc hVI -vlK -oWY -ddB -xEH -bLM -kke -xSM +kIl +edU +hUY +nlD +paN +kxZ +aNd tWf -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu +pET +pET +pET +pET +pET +pET +pET +ikS hCh -nQu -aQH -aeI -uJR -aeI -aeI -ssc -aeI -nQu +ikS +mWt +pET +oGv +pET +pET +wdV +pET +ikS suX -neY +vYE liA -yfK +gvK tmo gfo cME cME eLu kqC -fCJ -xbM -fHo -ioc -ioc -kgN +etg +eMK +tSH +evN +evN +cyn kqC ryJ end kqC -dHD +gxB wbW upY ufE @@ -61557,59 +61563,59 @@ ugg upY upY gmG -ksE +cZg xGt -roF -xWV -roF -ihB -gag -gag -gag -ihB -wQD -aye -yjW +qKf +nwH +qKf +fJp +gxF +gxF +gxF +fJp +oTM +lID +xsE hVG oZi ubP ubP hVG -gag +gxF aUg -ntf +pRF uGY -aMS -ihB -ihB +rMC +fJp +fJp xGt -klh -mld -hjM +scW +mWV +wOs uGY ubP ubP ubP ubP ubP -gag -gag -gag -gag +gxF +gxF +gxF +gxF plK -oMf +lXb dkn -uKX -uKX -uKX -xQx +lRz +lRz +lRz +gfr uMw rJO rJO rJO plK -xZI -xZI +bnW +bnW eYV lvi rJO @@ -61655,93 +61661,93 @@ azZ azZ xLi xLi -sWb +eie phz phz phz phz -mvp -cer -kpq +aDe +fQp +vno azZ azZ -mvp -mvp -mvp -wou +aDe +aDe +aDe +xvl xLi xLi -cGa -cer -kpq -mvp -tmF +xtB +fQp +vno +aDe +wiV xLi -mgh +hup azZ azZ azZ ohF pcu tQB -kZu -mAK +lbY +nso hVI wfu -bLM -tja -bLM +paN +jxA +paN byY tEH -bLM -bLM -bLM -kZV -kZV -bLM +paN +paN +paN +kFV +kFV +paN hVI hVI -woh -tja -tja -wCJ -tja -tja -frR -gjz -tja -tja -tja -tnY -ciy +toz +jxA +jxA +jnI +jxA +jxA +esg +eCQ +jxA +jxA +jxA +fCI +pQm hVI -wNB -oTi -dOO -oTi -bLM -kke -lwq +oOY +xcL +mTU +xcL +paN +kxZ +mXK hGy -aeI -pdX -aeI -aeI -aeI -aeI -lqJ -nQu +pET +cSY +pET +pET +pET +pET +hcU +ikS hCh -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu +ikS +pET +pET +pET +pET +pET +pET +pET +pET +ikS bLJ iYw wzE @@ -61751,70 +61757,70 @@ hZR wzE wzE kqC -fCJ -bPn -fHo -ioc -rzp -vds -vds -vds -elO -nAs -dHD +etg +bNt +tSH +evN +vwJ +nno +nno +nno +iYl +oJj +gxB upY upY hMj upY dQe upY -ygk -rnE +dmI +wmz xGt -cLC -pjR -jOY -wXe -gag +hpp +xuF +kBP +xGQ +gxF udt -wHr -stw -wQg -qet -mKp +wwV +nZX +mmx +kbq +vNF ceC -qJv -bqF -tNF +rPr +yjn +vzN ceC -qNu +nwk ubP -wty +rsn uGY -giA +uTY ubP -gag +gxF hVG -ihB -rZO -ihB +fJp +lzH +fJp hVG -gag -gag -gag -gag -gag -gag -gag -gag -cHl +gxF +gxF +gxF +gxF +gxF +gxF +gxF +gxF +wRh plK -mVd +lRF dkn dkn dkn -uKX -xQx +lRz +gfr gHz aJX uMw @@ -61872,88 +61878,88 @@ phz phz phz phz -mvp -cer -wun -hae -hae -hae -hae -hae -hae +aDe +fQp +oLH +biz +biz +biz +biz +biz +biz xZR -hae -hae -ovk -kpq -mvp -mlb -byG -uQT +biz +biz +slK +vno +aDe +eeU +vTr +pUa azZ azZ azZ bTo pcu aFZ -hUL -tja +ltN +jxA hVI -esw -bLM -tja -rnM -esw +siH +paN +jxA +ojh +siH tEH -bLM -uqd -eUy -bsR -hGu -bLM +paN +ceM +tUn +bNB +gmq +paN aif rKa -rTV -pWX -bDJ -rtP -tja -tja -frR -tja -tja -nMi -tja -upr +iho +uBz +pec +gGM +jxA +jxA +esg +jxA +jxA +lZB +jxA +lqT hVI hVI -mMa -brC -uhX -tJw -kGD -gyh -buG +lsY +tfV +geI +lcg +cot +pna +hIR tWf -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu +pET +pET +pET +pET +pET +pET +pET +ikS suX -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu +ikS +pET +pET +pET +pET +pET +pET +pET +pET +ikS hCh sKY bQM @@ -61963,32 +61969,32 @@ bQM bQM wzE kqC -dHD -xbM -fHo -ioc -qNF -xRI -xRI -xRI -efW -nAs -fcB +gxB +eMK +tSH +evN +lvW +eYk +eYk +eYk +lKf +oJj +hJR upY hlB upY upY vYX ugg -ksE +cZg ceC ceC -sIh -ihB -kjX -ueP -gag -hQj +aDl +fJp +qIX +uZv +gxF +hrr uGY uGY uGY @@ -61999,17 +62005,17 @@ ceC ceC ceC ceC -unz -gag -gYH +tfb +gxF +iwL uGY -pDQ +rfI ubP -ihB +fJp xGt -fZW -cki -huB +oxF +jas +cwk uGY sEO sEO @@ -62029,8 +62035,8 @@ dwT dwT plK plK -nzu -mBZ +lYk +fcy aPH kPz kPz @@ -62083,60 +62089,60 @@ xLi xLi xLi phz -sWb -mvp -ubX -eqU -eqU -eqU -eqU -eqU -eqU -eqU +eie +aDe +dpp +dSg +dSg +dSg +dSg +dSg +dSg +dSg xZR -eqU -eqU -uAg -kpq -mvp -mvp -mvp -mvp +dSg +dSg +jFn +vno +aDe +aDe +aDe +aDe azZ bQM bQM bTo pcu aFZ -wDK -tja +gxg +jxA aif byY -bLM -tja -bLM +paN +jxA +paN byY tEH -njm -eLw -eLw -bLM -bLM -njm +wDD +qOI +qOI +paN +paN +wDD hVI hVI -woh -hYl -tja -tja -tja -cCs -frR -ltd -tja -set -tja -nyq +toz +ygF +jxA +jxA +jxA +tQs +esg +wTw +jxA +dlM +jxA +ylF bLJ bLJ bLJ @@ -62147,25 +62153,25 @@ bLJ bLJ bLJ xXl -aeI -fyt -aeI -aeI -aeI -rOL -aeI -nQu +pET +fnA +pET +pET +pET +efh +pET +ikS hCh -nQu -aeI -rOL -aeI -aeI -aeI -evl -aeI -aeI -nQu +ikS +pET +efh +pET +pET +pET +puW +pET +pET +ikS shH iYw iYw @@ -62174,10 +62180,10 @@ sKY sKY iYw iYw -izh -dHD -xbM -voO +tSM +gxB +eMK +cGZ kqC ryJ end @@ -62185,39 +62191,39 @@ kqC ryJ end kqC -lNf +rBR upY upY elc upY upY eNr -ksE +cZg xGt -ucu -ihB -ucu -ihB -ihB +dPQ +fJp +dPQ +fJp +fJp ubP ubP pTj -gag -hCk -tCH +gxF +cKR +gXM wBK -kGB +lZU ceC -dBO -dBO +adR +adR uGY uGY uxv uGY uGY -nFb +wUw ubP -ihB +fJp uGY xGt xGt @@ -62226,20 +62232,20 @@ uGY jwK jnd jwK -nZB +kdX fAf -nZB -nZB +kdX +kdX fAf -nZB +kdX okg jnd mpf hLz -nZB +kdX fAf fAf -nZB +kdX aPH aPH aPH @@ -62296,23 +62302,23 @@ xLi xLi xLi xLi -mvp -mvp -mvp -mvp -mvp -mvp -mvp -mvp -wou +aDe +aDe +aDe +aDe +aDe +aDe +aDe +aDe +xvl xLi xLi -cGa -cer -kpq -mvp -mvp -mvp +xtB +fQp +vno +aDe +aDe +aDe azZ azZ bQM @@ -62324,9 +62330,9 @@ hVI hVI hVI qSy -bLM -tja -bLM +paN +jxA +paN byY aFZ hVI @@ -62337,99 +62343,99 @@ hVI hVI hVI hVI -woh -tja -tja -tja -tja -jHU -oza -cgx -tja -tja -tja -vyv -nMz -nQu -wRz -fqg -fqg -eLX -edy -nQu -nQu +toz +jxA +jxA +jxA +jxA +uWS +uId +jwS +jxA +jxA +jxA +rZh +vOK +ikS +poo +jKM +jKM +fDh +sXO +ikS +ikS suX -aeI -aeI -aeI -aeI -aeI -aeI -fyt -nQu +pET +pET +pET +pET +pET +pET +fnA +ikS hCh -kob -aeI -aeI -evl -aeI -hTy -aeI -aeI -aeI -nQu -nQu +xJf +pET +pET +puW +pET +mjv +pET +pET +pET +ikS +ikS srp -hOQ -fqg -fqg -fqg -nQu +qUA +jKM +jKM +jKM +ikS srp -bqD -cAJ -xbM -hTN +sQo +qfZ +eMK +haU kqC -rzp -tKk +vwJ +abi kqC -rzp -osQ +vwJ +rhD kqC -dHD +gxB upY upY upY ufE wbW fxS -ksE +cZg xGt -roF -oDg -roF -ihB -ihB +qKf +xPx +qKf +fJp +fJp ubP ubP pTj -gKg +kcy dFB hrB sYP -kGB +lZU uGY -xLd -ihB -syj -ihB -gag -aOL +lGZ +fJp +knS +fJp +gxF +tWO uGY -ppq +vqH ubP -ihB +fJp uGY lJx fAf @@ -62440,18 +62446,18 @@ mxc fAf fAf jwK -nZB -nZB +kdX +kdX jwK fAf gsd fAf -lJf +jiv hLz -nQH +csU jwK jwK -lEg +dzh wly kPz kPz @@ -62511,19 +62517,19 @@ xLi xLi xLi xLi -vHX -dqX -dqX -dqX -kQy -kQy +uWw +bYL +bYL +bYL +rtI +rtI xLi xLi phz -cer -kpq +fQp +vno rBr -mvp +aDe azZ azZ azZ @@ -62532,13 +62538,13 @@ bQM bTo pcu aFZ -chZ -tja +ifn +jxA aif byY -bLM -tja -bLM +paN +jxA +paN qtP aFZ fIT @@ -62548,20 +62554,20 @@ mEO ddD hVI lmn -fkH -roE -tpZ -jAF -tpZ -crm +dPz +qSk +hSz +emN +hSz +qDj nQq nQq -nMi -tja -tja -tja -bze -iWP +lZB +jxA +jxA +jxA +bvu +ews suX jyQ hCh @@ -62569,27 +62575,27 @@ hCh suX fNA hCh -ctY -ctY -iAB -nQu -nQu -nQu -nQu -nQu -nQu -nQu +ouW +ouW +gjg +ikS +ikS +ikS +ikS +ikS +ikS +ikS suX -nQu -nQu -nQu -nQu -nQu -nQu -nQu -xFg -asz -asz +ikS +ikS +ikS +ikS +ikS +ikS +ikS +iNm +mBn +mBn hCh mGr suX @@ -62599,71 +62605,71 @@ hCh suX mGr upY -dHD -xbM -hTN +gxB +eMK +haU kqC -qLi -dpe +tcK +ekt kqC -qLi -dpe +tcK +ekt kqC -dHD +gxB upY sRv upY wam upY -mom -rnE +ocI +wmz xGt -cLC -mwK -cLC -ihB -ihB +hpp +tuh +hpp +fJp +fJp ubP ubP pTj -aIm -aIm -gag -gag -kGB +dRP +dRP +gxF +gxF +lZU cCB -ihB +fJp ubP ubP eLQ ubP -ihB +fJp cCB -ihB +fJp ubP -ihB +fJp uGY hLz -ndD -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB +wey +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX fAf -tFo +vvQ xUo -nZB +kdX jwK jwK -nZB +kdX ckm kPz bQM @@ -62722,18 +62728,18 @@ xLi xLi xLi xLi -rGc -mvp -rHX -dqX -rHX -mvp -mvp -mvp +nsw +aDe +oxn +bYL +oxn +aDe +aDe +aDe phz phz -cer -kpq +fQp +vno azZ azZ azZ @@ -62744,13 +62750,13 @@ bQM bTo pcu aFZ -bRo -tja +rsE +jxA hVI byY -bLM -tja -bLM +paN +jxA +paN byY sJu mEO @@ -62760,20 +62766,20 @@ mEO akW hVI gZf -bLM -dOO -cgx -tja -tja -sTI +paN +mTU +jwS +jxA +jxA +mEp hVI hVI -kgT -nMi -tja -tja -gFp -mZH +igI +lZB +jxA +jxA +lZc +uBK suX suX suX @@ -62781,10 +62787,10 @@ bEA suX fNA hCh -ohl -qQa -trJ -nQu +rgA +xVc +fUy +ikS hCh hCh bkU @@ -62798,10 +62804,10 @@ jXV suX hCh hCh -nQu -umm -aDx -aDx +ikS +xzY +cdo +cdo hCh mGr suX @@ -62811,9 +62817,9 @@ suX suX mGr upY -dHD -xbM -voO +gxB +eMK +cGZ kqC kqC kqC @@ -62821,61 +62827,61 @@ kqC kqC kqC mCF -sAF +hkV upY upY vRA upY upY -ksE +cZg ceC ceC -sIh -ihB -sIh -ihB -ihB -gag -qdE +aDl +fJp +aDl +fJp +fJp +gxF +njz uGY -ltQ -ltQ +xPK +xPK uGY -ltQ -ayo +xPK +hic uGY -eZQ +pmg kyZ -ihB -ihB +fJp +fJp ubP -gag +gxF hVG -gag +gxF ubP -ihB +fJp uGY jEr -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX +kdX fAf -nZB +kdX xUo -nZB +kdX jwK jwK -nZB +kdX ckm kPz bQM @@ -62935,17 +62941,17 @@ xLi xLi xLi xLi -spH -rHX -dqX -rHX -mvp -mvp -mvp +fZG +oxn +bYL +oxn +aDe +aDe +aDe phz phz -cer -kpq +fQp +vno pPd azZ azZ @@ -62956,13 +62962,13 @@ tuf bTo pcu tQB -kSd -tja +jiJ +jxA hVI ncj -sdr -tja -bLM +bKR +jxA +paN egT aFZ hVI @@ -62972,20 +62978,20 @@ mEO bWy hVI gZf -bLM -dOO -tja -tja -fSa -lJS +paN +mTU +jxA +jxA +iTk +apk nQq nQq -qAl -tja -tja -tja -lVQ -qZv +sxL +jxA +jxA +jxA +ljS +qrr suX lFQ aCZ @@ -62993,27 +62999,27 @@ hCh suX fNA hCh -mRS -mRS -qRK -nQu -dcO -nQu -nQu -nQu -nQu -dcO +aZI +aZI +gsv +ikS +hOE +ikS +ikS +ikS +ikS +hOE suX -nQu -wGb -nQu -nQu -nQu -nQu -nQu -mjm -jfO -jfO +ikS +hPj +ikS +ikS +ikS +ikS +ikS +uLy +pky +pky hCh mGr suX @@ -63023,71 +63029,71 @@ hCh suX mGr upY -dHD -xbM -fHo -ioc -ioc -ioc +gxB +eMK +tSH +evN +evN +evN kqC -sfu -iEG +uWu +gkN kqC -dHD +gxB upY upY vRA cKH joJ -ksE +cZg xGt bjo -ihB -ihB -ihB -ihB -ihB +fJp +fJp +fJp +fJp +fJp kfL uGY uGY -fRq -fRq +mft +mft uGY -fRq -ygr +mft +asl xGt -ihB +fJp ubP -lwp -dlr +pfx +bdA ljV -gag +gxF hVG -gag +gxF ubP -ihB +fJp uGY lMh -nZB -nZB -nZB -nZB -tco -nZB -nZB -nZB -nZB -nZB -nZB -nZB -tFo +kdX +kdX +kdX +kdX +neO +kdX +kdX +kdX +kdX +kdX +kdX +kdX +vvQ fAf -nZB +kdX xUo -nZB +kdX jwK jwK -nZB +kdX ckm kPz kPz @@ -63145,22 +63151,22 @@ xLi xLi fEn fEn -kqy -kqy -mvp -sVT -dqX -rHX -mvp -mvp -mvp +vtT +vtT +aDe +tFm +bYL +oxn +aDe +aDe +aDe rBr phz -cer -kpq -mvp -dqX -sWb +fQp +vno +aDe +bYL +eie azZ azZ azZ @@ -63172,9 +63178,9 @@ hVI hVI hVI byY -bLM -tja -bLM +paN +jxA +paN byY aFZ hVI @@ -63184,122 +63190,122 @@ mEO hVI hVI gZf -bLM -dOO -cgx -tja -xAo -tja -nkJ -vTR -cgx -tja -tja -tja -tjw -cYS -nQu -pzL -vDL -eWf -qre -diL -nQu -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu +paN +mTU +jwS +jxA +oaX +jxA +wxd +feB +jwS +jxA +jxA +jxA +jeZ +vnP +ikS +ocr +ics +mcg +fSX +pKR +ikS +ikS +pET +pET +pET +pET +pET +pET +pET +pET +ikS hCh -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu -nQu +ikS +pET +pET +pET +pET +pET +pET +pET +pET +ikS +ikS oTS -vLO -eWf -eWf -eWf -nQu +vjj +mcg +mcg +mcg +ikS oTS -iox -dHD -xbM -fHo -ioc -ioc -ioc +bVq +gxB +eMK +tSH +evN +evN +evN kqC -qNF -mDO +lvW +mZf kqC -dHD +gxB upY vRA vZL upY upY -ksE +cZg xGt mEJ -ihB -ihB -ihB -ihB -ihB +fJp +fJp +fJp +fJp +fJp tkd cCB -gag -gag -gag -gag -gag -kGB +gxF +gxF +gxF +gxF +gxF +lZU xGt -ihB +fJp ubP -eWz -pxr +tqS +kSc ubP -ihB +fJp uGY -ihB -ihB -tXT +fJp +fJp +pGz uGY hLz -nZB -nZB +kdX +kdX fAf fAf aXx fAf fAf jwK -nZB -nZB +kdX +kdX jwK fAf gsd fAf -czJ +bzg hLz -nQH +csU fAf fAf -lEg +dzh wly ckm ckm @@ -63344,7 +63350,7 @@ bQM azZ azZ ejw -sWb +eie etL phz phz @@ -63354,26 +63360,26 @@ gDx xLi xLi xLi -dqX +bYL fEn fEn -oGy -oGy -cLy -rHX -dqX -rHX -esR +isa +isa +cpc +oxn +bYL +oxn +rdg xLi xLi -dqX +bYL phz -cer -kpq +fQp +vno irD trl phz -dqX +bYL azZ azZ lAh @@ -63384,9 +63390,9 @@ byY byY uno byY -bLM -fSa -bLM +paN +iTk +paN byY eVm hVI @@ -63394,21 +63400,21 @@ tgL mEO xgF hVI -oPn -jEy -bLM -dOO -tja -tja -iMq -tja -hYl -tja -tja -hYl -tja -tja -mCR +rcz +uES +paN +mTU +jxA +jxA +xDm +jxA +ygF +jxA +jxA +ygF +jxA +jxA +nuh iYw egk sKY @@ -63417,27 +63423,27 @@ sKY iYw iYw sOM -nQu -aeI -eBa -aeI -aeI -aeI -aeI -rOL -aeI -nQu +ikS +pET +eDY +pET +pET +pET +pET +efh +pET +ikS hCh -nQu -aeI -rOL -aeI -pdX -aeI -xei -xpj -aeI -nQu +ikS +pET +efh +pET +cSY +pET +swE +anK +pET +ikS shH iYw iYw @@ -63446,46 +63452,46 @@ sKY sKY iYw iYw -izh -dHD -xbM -fHo -ioc -ioc -kgN +tSM +gxB +eMK +tSH +evN +evN +cyn kqC ryJ end kqC -nBb +jVH upY vRA upY upY ejf -ksE +cZg xGt izN -mDS -ihB -htq -lNc -ihB +sIH +fJp +aSk +xUz +fJp vuK uGY -gag -gag -gag -gag -gag -kGB +gxF +gxF +gxF +gxF +gxF +lZU xGt -gwm +ieK ubP -ggA -ihB +ajL +fJp ubP -ihB +fJp uGY ceC uGY @@ -63502,8 +63508,8 @@ fAf fAf jwK jwK -nZB -nZB +kdX +kdX okg liZ uSQ @@ -63513,9 +63519,9 @@ xja xja hLz hLz -eCK -eCK -eCK +clV +clV +clV wly wly kPz @@ -63567,38 +63573,38 @@ xLi xLi xLi phz -dqX -dqX +bYL +bYL xLi xLi -idP -rHX -dqX -rHX -mvp +dPg +oxn +bYL +oxn +aDe azZ azZ azZ -vTq -cer -kpq +dwa +fQp +vno phz -sWb +eie phz -dqX +bYL fEn -mvp -mvp +aDe +aDe fEn byY byY hVI -rUQ -bLM -bLM -bLM -tja -bLM +ati +paN +paN +paN +jxA +paN byY aFZ hVI @@ -63606,21 +63612,21 @@ fQY mEO mEO sJu -bLM -bLM -bLM -abG -tja -tja -tja -tLk -tja -tja -tja -tja -tja -tja -oOk +paN +paN +paN +qMJ +jxA +jxA +jxA +kES +jxA +jxA +jxA +jxA +jxA +jxA +nFQ aFZ aFZ fPB @@ -63629,27 +63635,27 @@ bQM bQM sKY hCh -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -eBa -nQu +ikS +pET +pET +pET +pET +pET +pET +pET +eDY +ikS suX -nQu -aeI -aeI -eBa -aeI -fyt -aeI -xpj -aeI -nQu +ikS +pET +pET +eDY +pET +fnA +pET +anK +pET +ikS hCh sKY cAW @@ -63659,23 +63665,23 @@ cAW cAW wzE kqC -fPl -xbM -fHo -ioc -rzp -vds -vds -msH -elO -nAs -fcB +bDr +eMK +tSH +evN +vwJ +nno +nno +wcS +iYl +oJj +hJR gQc upY upY upY upY -ksE +cZg ceC ceC nqN @@ -63689,16 +63695,16 @@ uxv ceC ceC aPr -jyv -kaw +nIf +hZQ uGY -ilr +gzs ubP ubP ubP ubP -ihB -rKm +fJp +wFP ceC hLz byE @@ -63777,40 +63783,40 @@ azZ phz xZR phz -mvp +aDe phz -mvp +aDe irD -iMN -oNu -aQY -rHX -dqX -rHX -xqY +mop +hOp +nxu +oxn +bYL +oxn +dta azZ xLi xLi -mvp -cer -kpq +aDe +fQp +vno phz phz phz kEZ fEn -mvp -mvp +aDe +aDe fEn byY byY hVI -vCL -bLM -bLM -bLM -tja -bLM +uqC +paN +paN +paN +jxA +paN byY aFZ hVI @@ -63818,21 +63824,21 @@ fQY mEO mEO hVI -aEG -bLM -bLM -dAg -vki -jbq -sGk -jbq -xsh -jbq -fCf -jTo -jbq -tja -tFY +akF +paN +paN +iUA +kSL +lAz +tqR +lAz +elH +lAz +bwl +pLL +lAz +jxA +bnI aFZ aFZ fPB @@ -63841,27 +63847,27 @@ bQM bQM sKY lqa -nQu -aeI -aeI -aeI -jJZ -cEW -aeI -aeI -aeI -nQu +ikS +pET +pET +pET +hYb +xvb +pET +pET +pET +ikS hCh -nQu -aeI -eBa -aeI -aeI -aeI -aeI -aeI -aeI -nQu +ikS +pET +eDY +pET +pET +pET +pET +pET +pET +ikS hCh sKY cAW @@ -63871,75 +63877,75 @@ wzE wzE wzE kqC -nBb -xbM -fHo -ioc -iWp -xRI -xRI -xRI -efW -nAs -fcB +jVH +eMK +tSH +evN +tAH +eYk +eYk +eYk +lKf +oJj +hJR upY upY vRA osN xdb -pZn -kIb -vFV +jyK +tBA +rcB hZR kPz kPz kPz dCM -svc -wNG -wNG -hWb +tSB +hms +hms +oRQ xGt -lVA -lVA -lVA +vyE +vyE +vyE gIB -sjM -fIn -ihB -gag -ihB -ucu -fkG +byh +sGQ +fJp +gxF +fJp +dPQ +sUu ceC ikF -ndD +wey fAf fAf -nZB -nZB +kdX +kdX fAf -nZB -kEx +kdX +qmk fAf -nZB -nZB +kdX +kdX fAf -nZB -nZB +kdX +kdX fAf fAf nyO fAf -uuk -nZB +nXe +kdX wSm pBV qKT qbl wSm -nZB -ndD +kdX +wey fAf wly wly @@ -63989,30 +63995,30 @@ xLi xLi xLi xLi -cGa +xtB phz -mvp -sVS -dwZ -wsM -aQY -rHX -dqX -rHX +aDe +mkv +lGc +hwj +nxu +oxn +bYL +oxn phz xLi xLi azZ -mvp -cer +aDe +fQp phz -mvp -sWb +aDe +eie wNi -dqX +bYL fEn -mvp -mvp +aDe +aDe dvB mpY xCv @@ -64020,9 +64026,9 @@ xCv xCv gHC kHc -fbc -bLM -bLM +jHy +paN +paN lDo aFZ aFZ @@ -64055,24 +64061,24 @@ jmG cKa cKa rMT -aeI -aeI -aeI -aeI -aeI -aeI -pdX -nQu +pET +pET +pET +pET +pET +pET +cSY +ikS hCh -nQu -nQu -nQu -nQu -hox -hox -hox -nQu -nQu +ikS +ikS +ikS +ikS +rPK +rPK +rPK +ikS +ikS bVE iYw iYw @@ -64080,20 +64086,20 @@ cAW cAW wzE wzE -cQf -xbM -dxl -dHD -xbM -fHo -ioc -ioc -kgN +aOK +eMK +dQv +gxB +eMK +tSH +evN +evN +cyn kqC ryJ end kqC -nBb +jVH upY upY upY @@ -64101,57 +64107,57 @@ upY siW bEm upY -ksE +cZg hZR kPz bQM kPz dCM -nIw -wNG +hRQ +hms cZV -sjJ +lps xGt -kWL -kWL -kWL +hyh +hyh +hyh gIB -mEn -psP +iTW +dZk uGY -dBs +kqS uGY -oOh -ppq +shf +vqH ceC gjs fAf fAf fAf -nZB -nZB +kdX +kdX fAf -xTW -aAJ +veT +tKK dUi -nZB -nZB +kdX +kdX fAf -nZB -nZB +kdX +kdX fAf aSA cvv dUi -ndD -nZB +wey +kdX ppG qbl qbl wSm jxc -nZB -nZB +kdX +kdX fAf wly wly @@ -64201,30 +64207,30 @@ xLi xLi xLi xLi -jVt +gxl phz -mvp -mvp -bgD -wsM -aQY -pjW -dqX -rHX +aDe +aDe +fEK +hwj +nxu +ulm +bYL +oxn phz lAh lAh lAh -mvp -cer -kpq -mvp +aDe +fQp +vno +aDe lAh lAh beW fEn -maA -mvp +mEb +aDe ckA jmG mvl @@ -64237,96 +64243,96 @@ byY byY byY tOp -ezd -jjp -hVA -lFB +edW +jWA +uox +xQL tOp -jWI -amZ -bsO +ayr +kez +lWe cKa cKa -vUP -dVA -vUP -dVA -vUP +oWM +mrc +oWM +mrc +oWM hqD -jWI -eow -lFB -aLX +ayr +vZF +xQL +tUO cKa -bqu -rwm +jUc +euy cKa -fZc -dVA -rhf +pgS +mrc +aRp nss jYs -cMD -aeI -aeI -aeI -xpj -aeI -aeI -aeI -nQu -ele -nQu -evl -aeI -kMm -umI -moK -asz -eMI -nQu +dpf +pET +pET +pET +anK +pET +pET +pET +ikS +oaS +ikS +puW +pET +kPN +sIb +nNu +mBn +xkt +ikS bVE iYw cAW cAW cAW wzE -bki -xbM -xbM -dxl -cPh -xbM -fHo -ioc -ioc -ioc +vnB +eMK +eMK +dQv +wAB +eMK +tSH +evN +evN +evN kqC -rzp -ldz +vwJ +qMH kqC -qNF -xRI -xRI -xRI -xRI -xRI -xRI -xRI -rnE +lvW +eYk +eYk +eYk +eYk +eYk +eYk +eYk +wmz hZR kPz kPz kPz dCM -bsc -rIy -paO -sMe +bDu +rGN +qrG +fUk xGt -hqO -hqO -hqO +uys +uys +uys uGY njK cHF @@ -64340,30 +64346,30 @@ uNG fAf fAf fAf -nZB -nZB +kdX +kdX fAf -nZB -nZB +kdX +kdX fAf -nZB -nZB +kdX +kdX fAf -nZB -nZB +kdX +kdX fAf -nZB -nZB +kdX +kdX avJ -nZB -nZB +kdX +kdX fAf wSm wSm fAf jxc -nZB -nZB +kdX +kdX fAf wly tan @@ -64403,7 +64409,7 @@ vcC bQM bQM bQM -wyK +wAS azZ azZ eVq @@ -64413,35 +64419,35 @@ xLi xLi xLi xLi -ppZ -dqX -mvp -mvp -twR -oNu -aQY -rHX -nDI -rHX -mvp +itb +bYL +aDe +aDe +tOY +hOp +nxu +oxn +rLd +oxn +aDe lAh lAh lAh -mvp -cer -kpq +aDe +fQp +vno lAh lAh lAh -dqX +bYL fEn -mvp -mvp +aDe +aDe ckA lIG -spR -kzR -qBI +pZJ +geU +cOs mvl eqJ byY @@ -64449,53 +64455,53 @@ iEl gBR gBR jmG -wUz -jWI -lFB -lFB +wJC +ayr +xQL +xQL tOp -uqV -tVI -hBc +vYL +ycm +oIu cKa bRc -dVA -fZc -dVA -akM -dVA +mrc +pgS +mrc +vxf +mrc hqD -uKK -mgz -rLG -aLX +ipj +osw +fmh +tUO hqD -kXk -gnY +vLj +fUF cKa -ejM -dVA -rhf +iHI +mrc +aRp sWX jYs -cMD -jpW -aeI -aeI -aeI -aeI -aeI -aeI -xFg -dYi -asz -aeI -aeI -kMm -bvs -nQu -bvs -eMI +dpf +whE +pET +pET +pET +pET +pET +pET +iNm +vbr +mBn +pET +pET +kPN +sGb +ikS +sGb +xkt suX aPv iYw @@ -64503,28 +64509,28 @@ iYw iYw cAW wzE -xbM -xbM -xbM -ioc -dHD -xbM -fHo -ioc -ioc -ioc +eMK +eMK +eMK +evN +gxB +eMK +tSH +evN +evN +evN kqC -qLi -dpe +tcK +ekt kqC -okG -ioc -okG +ofL +evN +ofL kqC kqC -dbI -dbI -dbI +dVY +dVY +dVY kqC wzE hZR @@ -64536,48 +64542,48 @@ xGt ceC xGt ceC -nZB -nZB -nZB -uSU +kdX +kdX +kdX +pkL fAf fAf -uSU +pkL fAf -uSU +pkL fAf fAf -uSU -nZB +pkL +kdX fAf uNI fAf -lcm -tyC +vSx +kps grA -aOT -lcm -tyC -cRZ -aOT -lcm -tyC -cRZ -aOT -lcm -tyC -cRZ -aOT -lcm -tyC +ppo +vSx +kps +qzL +ppo +vSx +kps +qzL +ppo +vSx +kps +qzL +ppo +vSx +kps grA -aOT -lcm +ppo +vSx fAf -nZB -nZB -nZB -nZB +kdX +kdX +kdX +kdX vzB fiq vzB @@ -64616,7 +64622,7 @@ bQM bQM bQM enY -wyK +wAS azZ azZ azZ @@ -64628,32 +64634,32 @@ xLi xLi phz xLi -dqX +bYL xLi xLi -idP -rHX -dqX -rHX -mvp +dPg +oxn +bYL +oxn +aDe lAh lAh jZc -mvp -mvp -mvp +aDe +aDe +aDe uOu uOu uOu -dqX -dqX -mvp -mvp -gkv +bYL +bYL +aDe +aDe +liT cKa -lUZ +vyj xlp -poC +gwA mvl sKu chx @@ -64661,53 +64667,53 @@ rDu dCg hXN jmG -xVw -bwk -rLG -dlj +lvn +vZy +fmh +rEh tOp -kXk -amn -pxX +vLj +kun +oMb cKa bRc -dVA -cYi -dVA -wqs -dVA +mrc +cVo +mrc +maZ +mrc cKa -awU -mgz -rLG -aLX +eFo +osw +fmh +tUO cKa kzh tOp cKa -sGX -dVA -rhf +jAD +mrc +aRp avc cKa -xbc +hrU suX -nQu -nQu -aeI -aeI -aeI -aeI -qBf -dYC -jfO -aeI -fyt -kMm -qBf -bvs -tTB -eMI +ikS +ikS +pET +pET +pET +pET +kFi +jdv +pky +pET +fnA +kPN +kFi +sGb +eSm +xkt shH cmy wId @@ -64715,55 +64721,55 @@ vOZ iYw sKY wzE -xbM -xbM -xbM -ioc -dHD -jpx -fHo -ioc -ioc -ioc +eMK +eMK +eMK +evN +gxB +aUH +tSH +evN +evN +evN kqC kqC kqC mCF -uJp -kIb -vFV +kia +tBA +rcB kqC -lsR -lZp -lZp -lZp -svN +auu +kvp +kvp +kvp +sOC kqC -rzp -vds -elO +vwJ +nno +iYl abJ -ioc -ioc +evN +evN abJ -goo -goo -goo +qUZ +qUZ +qUZ fAf -hRb -upw -upw -upw -upw -nZB -upw -upw -upw -upw -nZB -nZB -nZB -iTt +qlP +qnX +qnX +qnX +qnX +kdX +qnX +qnX +qnX +qnX +kdX +kdX +kdX +mbN wQN xnU wSm @@ -64828,10 +64834,10 @@ bQM bQM bQM fiq -dfc +hJF ePv ePv -dfc +hJF azZ lAh xLi @@ -64843,29 +64849,29 @@ phz kEZ phz xLi -jUa -rHX -dqX -rHX -mvp +xGL +oxn +bYL +oxn +aDe lAh -aeS -mvp -lkr -rTd -hae +nUB +aDe +hvT +oPE +biz tqw kQH tqw -mvp -mvp -mvp -hDm -mvp +aDe +aDe +aDe +fQr +aDe rSr -cOF -cOF -cOF +cHj +cHj +cHj mvl byY byY @@ -64873,109 +64879,109 @@ byY byY nFc jmG -kjt -kjt -rLG -djF +nWc +nWc +fmh +jEn jmG sta sta sta jmG cKa -vUP -dVA -vUP -dVA -vUP +oWM +mrc +oWM +mrc +oWM cKa -uKK -hjB -rLG -vUP -lEd -eow -ulc -eow -eow -lFB -vUP -vUP +ipj +aTQ +fmh +oWM +rxo +vZF +bcG +vZF +vZF +xQL +oWM +oWM jmG egk iYw suX suX -nQu -nQu -nQu -fDE -qBf -dYC -jfO -nQu -ele -nQu -pst -pst -pst -nQu -neY +ikS +ikS +ikS +jxD +kFi +jdv +pky +ikS +oaS +ikS +fRe +fRe +fRe +ikS +vYE dNk -cMD +dpf hCh ufL hCh oFI -mCe -xbM -sJP -ioc -dHD -xbM -fHo -ioc -ioc -ioc +vFw +eMK +tKw +evN +gxB +eMK +tSH +evN +evN +evN kqC -sfu -jyF +uWu +sFe kqC -dHD -xLx -voO +gxB +tUv +cGZ kqC -ubh -xFJ -eao -lZp -qXj +sko +hYA +eyd +kvp +jAc kqC -nBb -xbM -fHo +jVH +eMK +tSH vRA -ioc -ioc +evN +evN vRA fAf fAf -nZB -lEg +kdX +dzh sEO cCy cvv cvv dUi -nZB +kdX aSA cvv cvv dUi -nZB -nZB -nZB -gBe +kdX +kdX +kdX +kwm wSm wSm wSm @@ -65044,8 +65050,8 @@ fiq fiq fiq fiq -dfc -dqX +hJF +bYL lAh lAh lAh @@ -65055,25 +65061,25 @@ phz phz phz xLi -nDI -dqX -dqX -dqX -dqX +rLd +bYL +bYL +bYL +bYL lAh lAh jZc -cer -pvF -tfl +fQp +eaX +nnL tqw tqw tqw -mvp -mvp -mvp -mvp -mvp +aDe +aDe +aDe +aDe +aDe jmG mvl mvl @@ -65085,34 +65091,34 @@ byY byY hVI jmG -kjt -kjt -rLG -gYD +nWc +nWc +fmh +suT fSq -jWI -eow -lFB +ayr +vZF +xQL fSq -vUP -jWI -eow -eow -eow -lFB -oNC -kjt -mgz -rLG -vUP -lcE -amn -amn -amn -amn -tPB -vUP -vUP +oWM +ayr +vZF +vZF +vZF +xQL +duh +nWc +osw +fmh +oWM +oio +kun +kun +kun +kun +xNk +oWM +oWM jmG bQM iYw @@ -65121,73 +65127,73 @@ iYw hCh hCh lBb -dEh +cgJ hCh hCh hCh -aXO +rwv pOU -ssR -nQu -aXO -nQu -nQu -neY +nYl +ikS +rwv +ikS +ikS +vYE dNk -cMD +dpf hCh efR hCh oFI -mCe -xbM -xbM -ioc -dHD -xbM -fHo -ioc -ioc -ioc +vFw +eMK +eMK +evN +gxB +eMK +tSH +evN +evN +evN kqC -qNF -eub +lvW +xLq kqC -dHD -xbM -fHo +gxB +eMK +tSH kqC -sIk -dzE +kQJ +xvE kqC -sIk -dzE +kQJ +xvE kqC -dHD -xbM -fHo +gxB +eMK +tSH kqC -ioc -ioc +evN +evN kqC -nAm -nAm +gIG +gIG fAf -nZB -fWr -fWr -fWr -fWr -fWr -nZB -fWr -fWr -fWr -fWr -hMH -nZB -nZB -bne +kdX +oEa +oEa +oEa +oEa +oEa +kdX +oEa +oEa +oEa +oEa +fVq +kdX +kdX +aQd wSm wSm wSm @@ -65254,9 +65260,9 @@ kPz bQM bQM kPz -gEq -eIX -eIX +dXr +ezq +ezq azZ azZ azZ @@ -65265,31 +65271,31 @@ azZ azZ kny phz -mvp -mvp -mvp -mvp -pUO -mvp -mvp -mvp -mvp -mvp -xxU -kpq -jNi +aDe +aDe +aDe +aDe +pzl +aDe +aDe +aDe +aDe +aDe +ldt +vno +spW ygs ygs kBX -dqX -loE -eIx -mvp -mvp +bYL +pRc +wbt +aDe +aDe lZA -vUP -vUP -vUP +oWM +oWM +oWM lZA byY byY @@ -65297,25 +65303,25 @@ byY byY byY lZA -kjt -kjt -rLG -rLG +nWc +nWc +fmh +fmh fSq -kjt -oZU -rLG +nWc +dBc +fmh fSq -vUP -hFW -mgz -mgz -mgz -rLG -jHV -kjt -lpZ -rLG +oWM +fef +osw +osw +osw +fmh +mNk +nWc +jGO +fmh cKa kzh tOp @@ -65323,8 +65329,8 @@ cKa kzh tOp cKa -jWI -lFB +ayr +xQL jmG kPz eHa @@ -65340,63 +65346,63 @@ oEH vkt bLJ rcg -xZN -eWf +rMh +mcg uRv -eWf -vlO +mcg +jFT iYw iYw sKY sKY sKY wzE -gSf -xbM -xbM -ioc -nbP -xbM -fHo -ioc -ioc -kgN +oEJ +eMK +eMK +evN +jwD +eMK +tSH +evN +evN +cyn kqC ryJ end kqC -rgc -xbM -fHo -vfO -lZp -lZp -jmv -uLV -lZp -vfO -dHD -xbM -fHo +jLX +eMK +tSH +cuo +kvp +kvp +odm +kSZ +kvp +cuo +gxB +eMK +tSH abJ -ioc -ioc +evN +evN abJ fAf fAf -nZB -nZB -nZB -owp +kdX +kdX +kdX +jRD uPA uWQ -nZB +kdX ghz -nZB +kdX uPA uWQ -nZB -nZB +kdX +kdX fAf fAf eZr @@ -65467,8 +65473,8 @@ bQM bQM kPz bQM -weE -qkq +bwZ +sjr azZ azZ azZ @@ -65478,30 +65484,30 @@ azZ azZ phz azZ -hae -hae -hae -hae -hae -hae -hae -hae -hae -iRI -kpq -mvp -lIC -kxl -swT +biz +biz +biz +biz +biz +biz +biz +biz +biz +uaR +vno +aDe +emP +giF +wpX fEn gDI -agh -mvp -mvp +qIZ +aDe +aDe wef -vUP -vUP -vUP +oWM +oWM +oWM wef byY byY @@ -65509,34 +65515,34 @@ byY byY byY wef -kXk -kXk -tPB -tPB +vLj +vLj +xNk +xNk fSq -kXk -amn -tPB +vLj +kun +xNk fSq -vUP -kXk -amn -amn -amn -tPB -oNC -kjt -mgz -rLG +oWM +vLj +kun +kun +kun +xNk +duh +nWc +osw +fmh cKa -jWI -oyy +ayr +mWp cKa -drZ -oyy +ihK +mWp cKa -kjt -rLG +nWc +fmh uwk swg fyC @@ -65546,10 +65552,10 @@ erT kPz iYw hre -wfw +llp jRF -bvp -iiY +hOx +uoK bLJ bLJ frv @@ -65564,54 +65570,54 @@ bce bce wzE kqC -ioc -ioc +evN +evN kqC -oFp -xbM -sJy -vds -vds -lvV -vds -vds -elO -ioc -dHD -xbM -fHo -vfO -lZp -lZp -eao -lZp -lZp -vfO -dHD -xbM -fHo +sFB +eMK +rnB +nno +nno +jsB +nno +nno +iYl +evN +gxB +eMK +tSH +cuo +kvp +kvp +eyd +kvp +kvp +cuo +gxB +eMK +tSH vRA -ioc -ioc +evN +evN vRA fAf fAf -nZB -nZB -nZB -nZB +kdX +kdX +kdX +kdX nKl qfc -nZB +kdX fAf -nZB +kdX nKl qfc -nZB -nZB -nZB -nZB -iTt +kdX +kdX +kdX +kdX +mbN wSm wSm wSm @@ -65679,8 +65685,8 @@ bQM bQM kPz bQM -gEq -arW +dXr +xJz azZ azZ azZ @@ -65690,30 +65696,30 @@ azZ azZ azZ azZ -rHX -rHX -rHX +oxn +oxn +oxn bou -rHX -rHX -rHX -sVT -rHX -rHX -kpq -mvp -mMP -wsM -swT +oxn +oxn +oxn +tFm +oxn +oxn +vno +aDe +cuG +hwj +wpX fEn fEn -ciM -mvp -mvp +soD +aDe +aDe cKa -mgz -mgz -mgz +osw +osw +osw cKa tOp tOp @@ -65721,10 +65727,10 @@ cKa tOp cKa cKa -kXk -kXk -tPB -tPB +vLj +vLj +xNk +xNk jmG jmG jmG @@ -65737,23 +65743,23 @@ cKa kzh tOp cKa -cIJ -lfX -rLG +vZJ +cQP +fmh cKa -iFB -dUx +wZK +iKj cKa -iFB -trR +wZK +pxV cKa -kjt -rLG +nWc +fmh uwk daD -afk -afk -afk +bCM +bCM +bCM ghg gef sKY @@ -65775,55 +65781,55 @@ bce cAW cAW wzE -xJQ -mYl -vds -vds -qEs -rPD -xbM -xbM -kTW -eNa -xRI -xRI -efW -ioc -dHD -xbM -fHo +ksH +jjV +nno +nno +uWc +mnt +eMK +eMK +isI +jax +eYk +eYk +lKf +evN +gxB +eMK +tSH kqC -hAP -dzE +qNG +xvE kqC -sIk -dzE +kQJ +xvE kqC -dHD -xbM -fHo +gxB +eMK +tSH kqC -ioc -ioc +evN +evN kqC -goo -goo +qUZ +qUZ fAf -nZB -upw -upw -upw -upw -upw -nZB -upw -upw -upw -upw -upw -nZB -nZB -gBe +kdX +qnX +qnX +qnX +qnX +qnX +kdX +qnX +qnX +qnX +qnX +qnX +kdX +kdX +kwm wSm wSm wSm @@ -65890,9 +65896,9 @@ bQM bQM vcC kPz -eIX +ezq fiq -bxd +tbE azZ azZ azZ @@ -65903,55 +65909,55 @@ azZ azZ azZ azZ -eqU -eqU -eqU -eqU -eqU -eqU -eqU -eqU -uAg -kpq -hjp -dsS -dXN -swT +dSg +dSg +dSg +dSg +dSg +dSg +dSg +dSg +jFn +vno +uPR +dVL +xEn +wpX fEn gDI -agh -mvp -mvp +qIZ +aDe +aDe lZA -vUP -vUP -vUP +oWM +oWM +oWM lZA -jWI -eow -eow -eow -eow -owS -eow -eow -eow -eow -vqW -eow -owS -eow -lFB +ayr +vZF +vZF +vZF +vZF +tfC +vZF +vZF +vZF +vZF +eib +vZF +tfC +vZF +xQL cKa -jWI -oyy +ayr +mWp cKa -siB -jSc +knR +fvS cKa -qya -mgz -rLG +iBp +osw +fmh hEs cKa cKa @@ -65959,13 +65965,13 @@ cKa cKa cKa cKa -kjt -rLG +nWc +fmh uwk urJ -afk +bCM hkh -afk +bCM tCZ pcu sKY @@ -65987,55 +65993,55 @@ bce cAW cAW wzE -dHD -voV -sxc -cxA -xbM -xbM -xbM -oFf -xbM -jlq +gxB +iAK +mil +nqR +eMK +eMK +eMK +wxq +eMK +kiM kqC ryJ end kqC -nBb -xbM -voO +jVH +eMK +cGZ kqC -ubh -lZp -jmv -lZp -qXj +sko +kvp +odm +kvp +jAc kqC -nBb -xbM -fHo +jVH +eMK +tSH abJ -ioc -ioc +evN +evN abJ fAf fAf -nZB -lEg +kdX +dzh sEO cCy cvv cvv dUi -nZB +kdX aSA cvv cvv dUi -nZB -nZB -nZB -bne +kdX +kdX +kdX +aQd wSm wSm wSm @@ -66104,7 +66110,7 @@ bQM kPz vcC bQM -eIX +ezq azZ azZ azZ @@ -66115,77 +66121,77 @@ azZ azZ azZ azZ -mvp -mvp +aDe +aDe azZ -mvp +aDe azZ -mvp -mvp -mvp -cer -kpq -mvp +aDe +aDe +aDe +fQp +vno +aDe sxH sxH aaR -dqX -pHi -eFX -mvp -mvp +bYL +qoA +iHr +aDe +aDe wef -vUP -vUP -vUP +oWM +oWM +oWM wef -kjt -mgz -mgz -xAq -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -xAq -rLG +nWc +osw +osw +fFI +osw +osw +osw +osw +osw +osw +osw +osw +osw +fFI +fmh cKa -iFB -dUx +wZK +iKj cKa -iFB -dUx +wZK +iKj cKa -xnt -mgz -rLG +sCl +osw +fmh cKa -bqu -rwm +jUc +euy cKa -bqu -rwm +jUc +euy cKa -kjt -rLG +nWc +fmh uwk mdJ -afk -afk -afk +bCM +bCM +bCM xMW ssJ sKY -cvc +weT gPk rmZ sFY -neY +vYE rtc fOi fac @@ -66199,52 +66205,52 @@ bce bce bce wzE -oXD -xbM -dJd -dBl -xbM -cZh -xbM -xbM -xbM -rzp +rpm +eMK +ihl +wYJ +eMK +mqq +eMK +eMK +eMK +vwJ kqC -rzp -jln +vwJ +lrg kqC -eQb -xbM -kgp +tgQ +eMK +pDF kqC -erU -lZp -lZp -xFJ -hrL +vJM +kvp +kvp +hYA +ttG kqC -dHD -xbM -fHo +gxB +eMK +tSH vRA -ioc -ioc +evN +evN vRA -nAm -nAm -nAm +gIG +gIG +gIG fAf -lFo -fWr -fWr -hMH -fWr -nZB -fWr -fWr -fWr -fWr -nZB +vMC +oEa +oEa +fVq +oEa +kdX +oEa +oEa +oEa +oEa +kdX fAf fAf klB @@ -66335,37 +66341,37 @@ lAh lAh lAh xvI -cer -beh -hae +fQp +qKa +biz tqw tqw tqw -mvp -mvp -mvp -mvp -mvp +aDe +aDe +aDe +aDe +aDe cKa mvl mvl mvl cKa -kXk -amn -amn -rTZ -mgz -cCe -amn -amn -amn -amn -amn -amn -rTZ -mgz -bOx +vLj +kun +kun +ugz +osw +fkV +kun +kun +kun +kun +kun +kun +ugz +osw +upT cKa cKa cKa @@ -66373,18 +66379,18 @@ cKa cKa cKa cKa -nGV -amn -tPB +hhz +kun +xNk cKa -jnX -rhH +rIl +jmu cKa -kXk -rhH +vLj +jmu cKa -kXk -tPB +vLj +xNk uwk aKA tWI @@ -66393,11 +66399,11 @@ eOF bUB kPz iYw -nQu +ikS jRF nzi suX -tde +eeo bLJ izZ wTW @@ -66411,33 +66417,33 @@ bce cAW cAW wzE -gtN -elO -xbM -xbM -xbM -lBI -cxA -xbM -rzp -dHD +xyc +iYl +eMK +eMK +eMK +pzf +nqR +eMK +vwJ +gxB kqC -qLi -jhN +tcK +nDp kqC -rYy -xbM -fHo +isy +eMK +tSH kqC kqC -vfO -vfO -vfO +cuo +cuo +cuo kqC kqC -dHD -xbM -fHo +gxB +eMK +tSH vMK goG goG @@ -66447,19 +66453,19 @@ vMK gjs fAf fAf -uSU +pkL fAf fAf -uSU +pkL fAf -uSU +pkL fAf fAf -uSU -nZB -nZB -nZB -iTt +pkL +kdX +kdX +kdX +mbN wSm wSm wSm @@ -66545,49 +66551,49 @@ azZ azZ azZ lAh -aeS -mvp -ubX -eqU -eqU +nUB +aDe +dpp +dSg +dSg tqw tqw tqw -mvp -mvp -mvp -mvp -mvp +aDe +aDe +aDe +aDe +aDe mvl -wSN -kzR -wSC +keE +geU +ooo mvl -knb -vUP -vUP -kjt -mgz -bOx +qpZ +oWM +oWM +nWc +osw +upT aSz uwk uwk uwk uwk aSz -xVw -mgz -rLG +lvn +osw +fmh cKa -bqu -hJo +jUc +xWe cKa -bqu -rwm +jUc +euy cKa -jGz -vUP -vUP +lPe +oWM +oWM cKa kzh tOp @@ -66595,8 +66601,8 @@ cKa kzh tOp cKa -vUP -vUP +oWM +oWM jmG jmG mlC @@ -66612,49 +66618,49 @@ oEH vkt bLJ xKX -iaa -iaa +oad +oad tZO -iaa -iaa +oad +oad ecM mlC wzE wzE wzE wzE -rzF -fHo -xbM -xbM -xel -xbM -xbM -xbM -dHD -jbg +qTl +tSH +eMK +eMK +jph +eMK +eMK +eMK +gxB +vvv kqC kqC kqC kqC -rKd -xbM -pZn -atY -atY -vds -vds -vds -qJl -atY -qEs -xbM -fHo +lVa +eMK +jyK +lPL +lPL +nno +nno +nno +svL +lPL +uWc +eMK +tSH goG -dYq -chg -uEh -gZx +lhB +cxX +emb +ndP goG fAf fAf @@ -66663,15 +66669,15 @@ fAf fAf fAf mxQ -lVA +vyE mxQ fAf fAf fAf fAf -nZB -nZB -gBe +kdX +kdX +kwm wSm wSm wSm @@ -66759,114 +66765,114 @@ azZ lAh lAh jZc -mvp -mvp -mvp +aDe +aDe +aDe cYd cYd cYd -dqX -dqX -rYw -mvp -dqX +bYL +bYL +lgY +aDe +bYL mvl -fqI +hdy xlp -cOF +cHj cKa cKa cKa cKa -kjt -mgz -qrU +nWc +osw +ggu uwk bQM bQM bQM bQM uwk -kXk -amn -tPB +vLj +kun +xNk cKa -kXk -rhH +vLj +jmu cKa -kXk -rhH +vLj +jmu cKa -wqz -eow -eow -eow -eow -eow -tkZ -eow -eow -eow -eow -eow -rIr -nmi -scS -scS -oPR -oPR -oPR -gbR -oPR -oPR -oPR -oPR -oPR -jnQ -oPR -oPR -oPR -oPR -oPR -oPR -jnQ -oPR +veD +vZF +vZF +vZF +vZF +vZF +sya +vZF +vZF +vZF +vZF +vZF +cGV +kiL +nth +nth +wdn +wdn +wdn +ctr +wdn +wdn +wdn +wdn +wdn +jpm +wdn +wdn +wdn +wdn +wdn +wdn +jpm +wdn kqC -ioc -ioc -ioc -ioc -ioc -xbM -xbM -xbM -xbM -bkQ -xbM -qNF -dHD +evN +evN +evN +evN +evN +eMK +eMK +eMK +eMK +mBE +eMK +lvW +gxB kqC -rkp -iKy +jDA +loS kqC -dHD -xbM -jbm -xbM -xLx -xbM -jbm -xbM -xbM -xbM -xbM -xbM -fHo +gxB +eMK +dyF +eMK +tUv +eMK +dyF +eMK +eMK +eMK +eMK +eMK +tSH goG -xoR -ioW -opM -fAU +nxp +tAJ +bfq +sFu goG fAf rpL @@ -66881,9 +66887,9 @@ gjs fAf fAf fAf -nZB -nZB -bne +kdX +kdX +aQd wQN xnU wSm @@ -66979,29 +66985,29 @@ lAh lAh fEn fEn -mvp -mvp +aDe +aDe fEn cKa -oOU +qAw fyi -cOF +cHj mvl -vUP -vUP -vUP -kjt -mgz -bOx +oWM +oWM +oWM +nWc +osw +upT aSz uwk uwk uwk uwk aSz -cIt -vUP -vUP +rCY +oWM +oWM cKa kzh tOp @@ -67009,29 +67015,29 @@ cKa kzh tOp cKa -xVw -mgz -mgz -xAq -mgz -mgz -mgz -mgz -mgz -mgz -mgz -lFg -rLG +lvn +osw +osw +fFI +osw +osw +osw +osw +osw +osw +osw +dUe +fmh fSq -oPR +wdn qBe -exl -oPR +dHG +wdn jqE qBe qBe miU -qOu +suE xKX eXz qBe @@ -67042,43 +67048,43 @@ qBe qBe qBe qBe -eFQ +rlx wpO -ioc -ioc -ioc -efW -xbM -cxA -cZh -xbM -oFf -voV -xbM -xbM -qNF +evN +evN +evN +lKf +eMK +nqR +mqq +eMK +wxq +iAK +eMK +eMK +lvW kqC -qNF -efW +lvW +lKf kqC -qNF -xRI -iXq -xRI -xRI -xRI -xRI -xRI -mKd -xRI -xRI -xRI -efW +lvW +eYk +nHp +eYk +eYk +eYk +eYk +eYk +sLf +eYk +eYk +eYk +lKf goG -egd -pYB -pYB -bMI +mMl +sJz +sJz +wZb goG fAf fAf @@ -67096,32 +67102,32 @@ mxQ vMK fAf fAf -nfh -bxe -cFg -gAQ -nfh +pMb +jwd +ggg +cSU +pMb bIz -cFg -gAQ -nfh -bxe -cFg -gAQ -nfh -bxe -cFg -gAQ -nfh -bxe -cFg -gAQ -nfh -nZB -nZB -nZB -nZB -nZB +ggg +cSU +pMb +jwd +ggg +cSU +pMb +jwd +ggg +cSU +pMb +jwd +ggg +cSU +pMb +kdX +kdX +kdX +kdX +kdX vzB fiq vzB @@ -67191,59 +67197,59 @@ lAh lAh nMI fEn -mvp -mvp +aDe +aDe fEn rSr -cOF -cOF -cOF +cHj +cHj +cHj rSr -jWI -eow -eow -ufR -mgz -rLG -vUP -jWI -eow -eow -eow -lFB -xBN -jWI -eow -eow -eow -eow -eow -eow -eow -eow -ufR -mgz +ayr +vZF +vZF +mAB +osw +fmh +oWM +ayr +vZF +vZF +vZF +xQL +kbf +ayr +vZF +vZF +vZF +vZF +vZF +vZF +vZF +vZF +mAB +osw wef -mgz -cbY -amn -amn -amn -amn -amn -amn -amn -tPB +osw +sVQ +kun +kun +kun +kun +kun +kun +kun +xNk fSq -wdl +nia nOe qBe qBe -hdR -roQ +uiW +uwi ccZ uOP -cZR +feh qBe ccZ qBe @@ -67254,21 +67260,21 @@ qBe qBe qBe lFv -eFQ +rlx wpO -ioc -ioc -ioc -dHD -kbh -xbM -xbM -cxA -jET -xbM -cZh -fYY -voO +evN +evN +evN +gxB +pFE +eMK +eMK +nqR +jRn +eMK +mqq +jHr +cGZ kqC qRi end @@ -67276,21 +67282,21 @@ wzE wzE wzE kqC -ioc -ioc -ioc -ioc -pvE +evN +evN +evN +evN +wQL kqC jTJ goG goG goG vMK -nxc -pYB -pYB -nWM +glK +sJz +sJz +qha vMK vMK gjs @@ -67301,37 +67307,37 @@ fAf mxQ tUs mxQ -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG vMK gjs -nZB -nZB -nZB +kdX +kdX +kdX fAf fAf fAf fAf fAf fAf -nZB -nZB -nZB +kdX +kdX +kdX fAf -nZB -nZB -nZB +kdX +kdX +kdX fAf -nZB -nZB -nZB +kdX +kdX +kdX fAf -nZB -nZB -nZB -nZB +kdX +kdX +kdX +kdX fAf wly tan @@ -67401,58 +67407,58 @@ lAh lAh lAh lAh -bMT +mPa fEn -mvp -mvp +aDe +aDe fEn cKa cKa cKa cKa cKa -kjt -mgz -cCe -amn -amn -tPB -vUP -kXk -amn -amn -amn -tPB -vUP -kjt -mgz -xAq -mgz -mgz -mgz -mgz -mgz -mgz +nWc +osw +fkV +kun +kun +xNk +oWM +vLj +kun +kun +kun +xNk +oWM +nWc +osw +fFI +osw +osw +osw +osw +osw +osw wef -mgz -mgz -mgz -bOx +osw +osw +osw +upT jpN uwk uwk uwk lIG -vUP -sHj -vUP +oWM +upO +oWM cKa -oPR +wdn qBe qBe qBe -nCH -mEU +osZ +dzM oyS qBe qBe @@ -67466,62 +67472,62 @@ eUP qBe qBe qBe -oPR +wdn wpO -ioc -ioc -ioc -qNF -nAK -xbM -xbM -xbM -xbM -jET -xbM -xbM -pZn -vds -vds -elO +evN +evN +evN +lvW +cyy +eMK +eMK +eMK +eMK +jRn +eMK +eMK +jyK +nno +nno +iYl hZR bQM hZR -iCf -rzp -vds -vds -vds -rLJ -jvi +hSL +vwJ +nno +nno +nno +dDc +kfe duF -jTN -xro -fGW -pYB -pYB -pYB -pYB -pYB -uvV +qNh +fgj +noq +sJz +sJz +sJz +sJz +sJz +dtV vMK goG goG goG vMK -lVA +vyE mxQ deR mxQ -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG vMK fAf -nZB -nZB -nZB +kdX +kdX +kdX fAf wly wly @@ -67532,17 +67538,17 @@ cvv dUi fAf fAf -nZB -nZB +kdX +kdX fAf fAf fAf -nZB +kdX fAf fAf fAf fAf -nZB +kdX fAf fAf wly @@ -67620,12 +67626,12 @@ wef lSj cKa cKa -pRa -lFB -lpX -mgz -mgz -bOx +uJf +xQL +euf +osw +osw +upT cKa kzh tOp @@ -67636,20 +67642,20 @@ cKa kzh tOp arn -xVw -mgz -cCe -amn -amn -amn -amn -amn -amn -rTZ -mgz -mgz -mgz -rLG +lvn +osw +fkV +kun +kun +kun +kun +kun +kun +ugz +osw +osw +osw +fmh uwk bQM kPz @@ -67663,8 +67669,8 @@ hrz qBe qBe qBe -fWH -fWH +xpB +xpB jlI qBe qBe @@ -67673,41 +67679,41 @@ jlI qBe qBe qBe -oPR -oPR -hxj -wis -sGa -gNU +wdn +wdn +nSl +ffT +bst +fqy kqC kqC ecd kqC kqC -dHD -xbM -xbM -pHx -xbM -eNa -xRI -xRI -xRI -xRI -xRI -efW +gxB +eMK +eMK +ezj +eMK +jax +eYk +eYk +eYk +eYk +eYk +lKf hZR kPz hZR -auS -dHD -jbm -xbM -xbM -fHo -jvi +tib +gxB +dyF +eMK +eMK +tSH +kfe duF -fEH +mwt xsS tOM tOM @@ -67725,10 +67731,10 @@ iyf mxQ tUs mxQ -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG vMK hhu bOp @@ -67826,57 +67832,57 @@ cAW jmG bQM jmG -vUP -jWI -eow -lFB -mgz +oWM +ayr +vZF +xQL +osw cKa -dJh -rLG +sca +fmh uwk -kjt -mgz -rLG +nWc +osw +fmh cKa -jWI -oyy +ayr +mWp cKa -bTr -oyy +mym +mWp cKa -kyU -oyy +lle +mWp cKa -kjt -mgz -bOx +nWc +osw +upT cKa cKa -wZt -wZt +oOn +oOn cKa jmG gHh -mgz -mgz -mgz -rLG +osw +osw +osw +fmh uwk kPz kPz kPz uwk -cOF -cOF -utw +cHj +cHj +jiU lzm qBe qBe qBe qBe -oSz -roQ +cRT +uwi dvg qBe qBe @@ -67885,7 +67891,7 @@ dvg qBe eXz qBe -oPR +wdn kqC kqC dAd @@ -67896,12 +67902,12 @@ rCq vRA vRA kqC -fLb -ayW -xbM -xbM -xbM -rYK +msR +xXu +eMK +eMK +eMK +wZd kqC cRB end @@ -67911,21 +67917,21 @@ end wzE bQM hZR -qSz -dHD -eNa -rwK -nAK -fHo -kpu +sKm +gxB +jax +cqG +cyy +tSH +qdV duF -fAU +sFu tOM tOM tOM tOM -nny -vHD +qbU +rRI tOM tOM tOM @@ -67933,14 +67939,14 @@ tOM tOM wZH mxQ -gbf +nBG tUs tUs vDO -eBS -fOT -apu -gbf +axN +hsk +qtf +nBG bzO bzO ybj @@ -68038,57 +68044,57 @@ cAW jmG jmG jmG -vUP -kjt -mgz -rLG -vUP +oWM +nWc +osw +fmh +oWM cKa -iFB -dUx +wZK +iKj uwk -kjt -mgz -rLG +nWc +osw +fmh cKa -iFB -dUx +wZK +iKj cKa -iFB -dUx +wZK +iKj cKa -oMw -yhJ +evx +vUI cKa -mlg -mgz -rLG +uEH +osw +fmh cKa -uyC -dzB -dzB -aYg +oTK +tLc +tLc +dJW cKa -kjt -mgz -mgz -kWx -rLG +nWc +osw +osw +gSc +fmh uwk bQM kPz bQM uwk -cOF +cHj fyi -dXS +stl qva xbm smj qBe qBe -aZL -mEU +qxi +dzM ccZ qBe qBe @@ -68097,7 +68103,7 @@ ccZ qBe qBe qBe -sGa +bst kqC kqC vRA @@ -68108,30 +68114,30 @@ kqC tVV arl oFI -kCT -opj -xRI -nAK -xbM -fHo +kAQ +mXa +eYk +cyy +eMK +tSH kqC -rzp -bIP +vwJ +tkH kqC -rzp -mwP +vwJ +hJt wzE kPz jTJ -vUl -dHD -fHo -pLE -dHD -fHo -uuG +cGm +gxB +tSH +hLd +gxB +tSH +gSL jTJ -gHn +ivU tOM tOM tOM @@ -68145,14 +68151,14 @@ tOM tOM wZH mxQ -eBj +aeL vfz tUs mxQ -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG vEK bzO wly @@ -68250,18 +68256,18 @@ cAW cAW bQM uwk -vUP -kXk -amn -tPB -vUP +oWM +vLj +kun +xNk +oWM hEs cKa cKa cKa -wdL -vAU -hCR +paA +vHY +uiO hEs cKa cKa @@ -68272,30 +68278,30 @@ cKa cKa cKa cKa -xVw -mgz -rLG +lvn +osw +fmh cKa -onW -pZp -dzB -shh +qcI +aKi +tLc +hhI cKa -kjt -mgz +nWc +osw wef -mgz -rLG +osw +fmh jmG bQM kPz bQM uwk -jsu +fGG fyi -haQ +nIJ cKa -ntE +gMM smj wrT qBe @@ -68309,13 +68315,13 @@ sQr qBe qBe qBe -vcu +bOH qQM abJ -rzp -vds -elO -sKt +vwJ +nno +iYl +nMJ kqC vRA tiX @@ -68323,27 +68329,27 @@ kqC kqC kqC kqC -dHD -xbM -fHo +gxB +eMK +tSH kqC -qLi -dpe +tcK +ekt kqC -qLi -dpe +tcK +ekt wzE bQM hZR -pLE -dHD -fHo -pLE -dHD -fHo -pLE +hLd +gxB +tSH +hLd +gxB +tSH +hLd duF -mWR +uDU tOM tOM tOM @@ -68357,14 +68363,14 @@ mxQ iyf mxQ mxQ -gbf +nBG ndl aZN mxQ -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG lTW bzO bzO @@ -68462,82 +68468,82 @@ cAW cAW bQM uwk -jWI -eow -lFB -vUP -vUP +ayr +vZF +xQL +oWM +oWM wef -bqu -rwm -eDA -vsM -mgz -xBc +jUc +euy +gnf +rmw +osw +vvh cKa -bqu -rwm +jUc +euy cKa -bqu -rwm +jUc +euy cKa -bqu -rwm +jUc +euy cKa -kjt -mgz -rLG +nWc +osw +fmh cKa -tjR +xdQ cKa -onW -dzB -wZt -kjt -mgz -mgz +qcI +tLc +oOn +nWc +osw +osw wef -rLG +fmh uwk bQM kPz bQM jmG -bZI +epC fyi -vqs +cck mvl -ntE +gMM smj -qof +hBZ qBe -qof +hBZ qBe -qof -sGa -gNU -oOg +hBZ +bst +fqy +tVl bno bno bno bno -vrR +bNn jOb vRA -dHD -bAM -fHo -sKt +gxB +ydZ +tSH +nMJ oFI vRA glD kqC -pVY -mwP +muC +hJt kqC -dHD -xbM -rYK +gxB +eMK +wZd mCF kqC kqC @@ -68547,19 +68553,19 @@ kqC wzE kPz hZR -pLE -dHD -fHo -pLE -dHD -naI -pLE +hLd +gxB +tSH +hLd +gxB +uVP +hLd duF -dLN +dfb dPm tOM tOM -uyw +cjq tOM hoT tOM @@ -68569,19 +68575,19 @@ tUs rbK tUs tUs -aEC +aih tUs tUs ffZ -gbf -fOT -apu -gbf -gbf +nBG +hsk +qtf +nBG +nBG mxQ -qhD -qhJ -upK +dJZ +jVW +dEd bzO rzt rzt @@ -68594,16 +68600,16 @@ kPz bQM bQM bTo -afk -afk -afk +bCM +bCM +bCM hkh -afk -afk +bCM +bCM hkh -afk -afk -afk +bCM +bCM +bCM iWq bQM bQM @@ -68674,72 +68680,72 @@ bce bce uwk uwk -kjt -mgz -rLG -gBw -vUP -eDA -kXk -tPB +nWc +osw +fmh +xlh +oWM +gnf +vLj +xNk wef -kjt -mgz -xRY +nWc +osw +hSI cKa -kXk -tPB +vLj +xNk cKa -kXk -tPB +vLj +xNk cKa -kXk -ctI +vLj +uSW cKa -kjt -gzu -kGo +nWc +lyI +phS cKa -onW -vBa -cMP -dzB -wZt -kjt -mgz +qcI +qUQ +gXV +tLc +oOn +nWc +osw jMf wef -rLG +fmh uwk kPz kPz kPz jmG -wxW +iER jEK -cOF +cHj jce -ntE +gMM smj qBe qBe qBe qBe qBe -hSl +juI ecM -jVj -gqU -eac -dPe -mcJ -uIL +goX +wvR +lBU +nAv +htE +tyz kqC kqC -nBb -xbM -fHo -sKt +jVH +eMK +tSH +nMJ kqC kqC kqC @@ -68747,31 +68753,31 @@ kqC ryJ end kqC -nBb -xbM -fHo +jVH +eMK +tSH kqC -sfu -jyF +uWu +sFe kqC -hHX -jyF +cwP +sFe wzE bQM hZR -pLE -qNF -efW -pLE -qNF -efW -pLE +hLd +lvW +lKf +hLd +lvW +lKf +hLd duF -chg +cxX tOM tOM tOM -fiw +wjt tOM tOM tOM @@ -68781,23 +68787,23 @@ mxQ tUs mxQ mxQ -mAN +vvZ mxQ tUs mxQ -gbf -fOT -apu -pYB -pYB -qaT -fWy -uvu -gbf -erw +nBG +hsk +qtf +sJz +sJz +wnY +hgK +bBE +nBG +poc tOM -gbf -pRz +nBG +wrx bzO bQM kPz @@ -68806,16 +68812,16 @@ kPz bQM bQM bTo -afk -afk -afk +bCM +bCM +bCM pcu -afk -afk +bCM +bCM pcu -afk -afk -afk +bCM +bCM +bCM iWq bQM bQM @@ -68885,19 +68891,19 @@ vBP fQV erT uwk -wcC -kXk -amn -tPB -vUP -dFI +cWq +vLj +kun +xNk +oWM +lqP cKa -eDA +gnf wef wef -wlv -xWG -ngF +ihm +ufO +gVg cKa kzh tOp @@ -68908,66 +68914,66 @@ cKa kzh tOp cKa -xVw -mgz -rLG +lvn +osw +fmh cKa -onW -shh +qcI +hhI cKa -onW -wZt -kjt -mgz +qcI +oOn +nWc +osw bJn aTM -rLG +fmh uwk bQM kPz bQM jmG -txf -oZj -sfZ +pPO +oAL +bFh uhm -wdl +nia iUS -qof +hBZ qBe -qof +hBZ qBe -qof -pUo +hBZ +jIf ecM -vNd -fWH -fWH -fWH -fWH -fWH +ufe +xpB +xpB +xpB +xpB +xpB kqC -mue -bbI -xbM -rYK +jty +unY +eMK +wZd kqC kqC -wyQ -eTa -vds -vds -vds -elO -dHD -xbM -fHo +ujt +pFf +nno +nno +nno +iYl +gxB +eMK +tSH kqC -qNF -mDO +lvW +mZf kqC -qNF -mDO +lvW +mZf wzE wzE wzE @@ -68983,33 +68989,33 @@ vMK mGZ tOM bkg -czr +rSt tOM tOM -hao +etf mxQ jXj mxQ rsp mxQ -gbf -gbf +nBG +nBG mxQ tUs mxQ -gbf -xRw -apu -gbf -gbf +nBG +ixE +qtf +nBG +nBG mxQ -uvu -sxE -uvu +bBE +rfb +bBE sXa -uCO +mvE sXa -qhJ +jVW bzO bQM kPz @@ -69018,16 +69024,16 @@ kPz bQM bQM bTo -afk -afk -afk +bCM +bCM +bCM hkh -afk -afk +bCM +bCM hkh -afk -afk -afk +bCM +bCM +bCM iWq bQM bQM @@ -69092,48 +69098,48 @@ cAW bQM bce bTo -afk -afk -afk +bCM +bCM +bCM ghg uwk -aoZ -vUP -jWI -eow -lFB -vUP -pDo -jWI -bXz -kGd -ufR -sNi -jna -eow -eow -lFB -vUP -pRa -kGd -eow -eow -lFB -vUP -kjt -jYM -rLG +jqQ +oWM +ayr +vZF +xQL +oWM +ngO +ayr +fAF +wnT +mAB +eWU +wKd +vZF +vZF +xQL +oWM +uJf +wnT +vZF +vZF +xQL +oWM +nWc +dbJ +fmh cKa -onW -dzB -vBa -shh +qcI +tLc +qUQ +hhI cKa -kjt -mgz +nWc +osw wef -mgz -bOx +osw +upT jmG uwk uwk @@ -69143,37 +69149,37 @@ mvl mvl uhm cKa -dnj -wis +mzM +ffT qBe qBe qBe qBe -oPR -hSl +wdn +juI ecM bEX bEX izZ -oPR -oPR -oPR +wdn +wdn +wdn kqC -pCQ -dHD -xbM -fHo +tnO +gxB +eMK +tSH abJ -ioc -rzp -vds -vds -vds -elO -efW -dHD -xbM -rYK +evN +vwJ +nno +nno +nno +iYl +lKf +gxB +eMK +wZd kqC ryJ end @@ -69184,35 +69190,35 @@ kqC wzE pah vNQ -xbM -iCN +eMK +kZU qOq -xbM -xbM +eMK +eMK pah bhu goG tOM tOM tOM -tsf +icR tOM tOM -dbW +mDD mxQ tUs tUs oBj mxQ -gbf +nBG mxQ mxQ msj mxQ -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG vEK mxQ mxQ @@ -69304,58 +69310,58 @@ cAW bQM bce ajx -afk +bCM hkh -afk +bCM tCZ uwk -rce -vUP -kjt -mgz -rLG -mgz -mgz -kXk -qGB -amn -amn -amn -amn -amn -amn -tPB -baM -kXk -xYJ -qGB -amn -tPB -vUP -kjt -mgz -rLG +fzM +oWM +nWc +osw +fmh +osw +osw +vLj +mVW +kun +kun +kun +kun +kun +kun +xNk +ssG +vLj +qJp +mVW +kun +xNk +oWM +nWc +osw +fmh cKa -okJ -cMP -dzB -lsZ +tEh +gXV +tLc +cdz hEs -kjt -mgz -mgz +nWc +osw +osw wef -rLG +fmh jYs -uJi -fWH -hdR -hQQ -fWH -fWH -mBG -sue -wBB +cmY +xpB +uiW +rDT +xpB +xpB +fvX +bPU +wZm dAd ode ode @@ -69369,62 +69375,62 @@ qBe wKm qBe qBe -oPR +wdn kqC -cRI -dHD -xbM -fHo +sfj +gxB +eMK +tSH vRA -ioc -qNF -xRI -xRI -xRI -efW -elO -cHC -xbM -fHo -ioc -rzp -vds -vds -vds -elO -ioc +evN +lvW +eYk +eYk +eYk +lKf +iYl +vMG +eMK +tSH +evN +vwJ +nno +nno +nno +iYl +evN duF hQv gsL -mOI -xbM +uuv +eMK qOq -xbM -xbM +eMK +eMK gFj sNN goG tOM tOM tOM -bPh +rrO mzJ tOM -mtD +vzI mxQ xCa pjT cHm mxQ -fvK +kxg hvF tUs tUs lhY -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG vEK mxQ mxQ @@ -69516,17 +69522,17 @@ cAW bQM bce bTo -afk -afk -afk +bCM +bCM +bCM xMW uwk -rce -vUP -kXk -amn -tPB -qqC +fzM +oWM +vLj +kun +xNk +xWY eov efl fDQ @@ -69534,9 +69540,9 @@ eov tzy wef wef -xgH -vUP -knb +fNL +oWM +qpZ wef wef tOp @@ -69544,34 +69550,34 @@ cKa kzh tOp cKa -xVw -mgz -bOx +lvn +osw +upT aSz aSz aSz hul aSz aSz -nGV -amn -amn -amn -tPB +hhz +kun +kun +kun +xNk jYs -fWH -mEU -aZL -mEU -aZL -cGS -dBz -ivw -kmm +xpB +dzM +qxi +dzM +qxi +aag +rZt +vfh +qyX qBe -oPR -oPR -wuW +wdn +wdn +otp qBe qBe qBe @@ -69581,73 +69587,73 @@ qBe qBe qBe qBe -oPR +wdn kqC -mue -gIa -xbM -rYK +jty +wqC +eMK +wZd kqC kqC -ioc -qNF -xRI -xRI -xRI -efW -dHD -xbM -fHo -ioc -qNF -xRI -xRI -xRI -efW -sDR +evN +lvW +eYk +eYk +eYk +lKf +gxB +eMK +tSH +evN +lvW +eYk +eYk +eYk +lKf +kLy hBF -vcv -iLl -xbM -xbM +bEH +ktV +eMK +eMK qOq -huG -xbM +uRt +eMK pah rmJ goG tOM tOM tOM -quL +dfO tOM tOM -tzU +aRy mxQ tUs mxQ tUs tUs -gbf +nBG rbK tUs mxQ mxQ -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG vEK -fFw +dQh kGZ -fHI -pYB -eBS -pYB +eGs +sJz +axN +sJz tOM tOM -gbf -gbf +nBG +nBG bzO bQM kPz @@ -69733,33 +69739,33 @@ eJQ jlH bUB uwk -iTr -jWI -eow -lFB -vUP -mgz +kew +ayr +vZF +xQL +oWM +osw eov -ihV -uvS +oND +kZB eov -gXI -qxx +rzu +wOg jAW -vUP -tWs -vUP +oWM +ixg +oWM wef -jWI -lFB +ayr +xQL cKa -jWI -oyy +ayr +mWp cKa -kjt -mgz -rLG -vUP +nWc +osw +fmh +oWM cKa sXe wef @@ -69771,18 +69777,18 @@ uwk uwk jmG jmG -mEU -bbn -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR +dzM +qkd +wdn +wdn +wdn +wdn +wdn +wdn +wdn +wdn +wdn +wdn qBe qBe qBe @@ -69793,13 +69799,13 @@ qBe qBe qBe qBe -pUf +dir kqC kqC -nBb -xbM -fHo -sKt +jVH +eMK +tSH +nMJ kqC ryJ end @@ -69807,9 +69813,9 @@ kqC ryJ end kqC -dHD -xbM -rYK +gxB +eMK +wZd kqC ryJ end @@ -69840,18 +69846,18 @@ tUs mxQ vrF hvF -gbf +nBG hvF oBj tUs vDO -eBS -fOT -epB -gbf -gbf -fWy -vUZ +axN +hsk +rzO +nBG +nBG +hgK +mHI waN sfW sfW @@ -69859,7 +69865,7 @@ sfW sfW sfW qRW -mOE +ivy bzO tan tan @@ -69946,32 +69952,32 @@ bce bce uwk uwk -kjt -mgz -rLG -vUP -cEg +nWc +osw +fmh +oWM +xBR eov -jGs -vRu +xsV +hnU eov -iFB -nVu +wZK +kVz hqD -jiz -vUP -cfU +xym +oWM +sWO hqD -iFB -dUx +wZK +iKj cKa -iFB -qBT +wZK +hHo cKa -kjt -mgz -rLG -vUP +nWc +osw +fmh +oWM glj sXe wef @@ -69983,21 +69989,21 @@ bQM bQM bQM uwk -aZL -oPR -ldj -oPR -oPR -oPR -oPR -oPR -oPR -oPR -hoC -oPR +qxi +wdn +jaV +wdn +wdn +wdn +wdn +wdn +wdn +wdn +mNo +wdn qBe -hdR -ksu +uiW +mWW ecM mlC mlC @@ -70005,39 +70011,39 @@ mlC ecM okE qBe -vcu +bOH qQM abJ -dHD -xbM -fHo -sKt +gxB +eMK +tSH +nMJ kqC -qNF -mDO +lvW +mZf kqC -qNF -mDO +lvW +mZf kqC -nBb -xbM -fHo +jVH +eMK +tSH kqC -rzp -mwP +vwJ +hJt kqC -rzp -mwP +vwJ +hJt kqC -rKs +tvy tOM -wGA -fOT -apu -hAs -fOT -apu -gbf +nyI +hsk +qtf +hYS +hsk +qtf +nBG xXt vMK bRC @@ -70052,18 +70058,18 @@ tUs tUs jXj mxQ -gbf +nBG mxQ tUs hvF mxQ -gbf -fOT -nBw -nvX -nvX +nBG +hsk +hON +svs +svs wuz -fHI +eGs hfd fIW htt @@ -70158,11 +70164,11 @@ cAW cAW bQM uwk -kXk -amn -tPB -vUP -kIO +vLj +kun +xNk +oWM +nRl eov dRO pvD @@ -70170,9 +70176,9 @@ eov cKa cKa cKa -mZy -vUP -dFI +peo +oWM +lqP hEs cKa cKa @@ -70180,10 +70186,10 @@ cKa cKa cKa cKa -xVw -mgz -rLG -vUP +lvn +osw +fmh +oWM glj sXe wef @@ -70196,20 +70202,20 @@ kPz kPz uwk qBe -rpt -oPR -roQ +iBa +wdn +uwi ccZ -aZL -mEU -roQ +qxi +dzM +uwi ccZ -aZL -oPR -oPR +qxi +wdn +wdn qBe -jDe -ofl +tSn +rUY mlC kPz kPz @@ -70217,13 +70223,13 @@ kPz mlC qBe eUP -sGa +bst jOb vRA -qNF -eux -efW -ioc +lvW +hxo +lKf +evN kqC kqC kqC @@ -70231,25 +70237,25 @@ mCF kqC kqC kqC -dHD -xbM -fHo +gxB +eMK +tSH kqC -qLi -dpe +tcK +ekt kqC -qLi -dpe +tcK +ekt kqC -lbz +aRP gLk -gbf -fOT -apu -pYB -fOT -apu -gbf +nBG +hsk +qtf +sJz +hsk +qtf +nBG bRC vMK goG @@ -70264,16 +70270,16 @@ mxQ uZX mxQ mxQ -uOM +eJd mxQ uZX mxQ mxQ -mFS -fOT -gbf -gbf -gbf +hzI +hsk +nBG +nBG +nBG arT tOM hfd @@ -70370,32 +70376,32 @@ cAW cAW bQM uwk -vUP -jWI -eow -lFB -dbh +oWM +ayr +vZF +xQL +vwp eov doe cAW eov -bqu -rwm +jUc +euy cKa -gzN -vUP -vUP +lCF +oWM +oWM cKa -bqu -rwm +jUc +euy cKa -bqu -rwm +jUc +euy cKa -kjt -xAq -rLG -vUP +nWc +fFI +fmh +oWM cKa dcv wef @@ -70407,21 +70413,21 @@ bQM bQM bQM uwk -roQ -vdW -oPR -kJJ +uwi +kGW +wdn +mdR jRL mlC mlC mlC ecM iCE -oPR -oPR +wdn +wdn qBe -xbE -fYf +feb +pWF mlC bQM bQM @@ -70429,7 +70435,7 @@ bQM mlC eUP qBe -xIq +tcm kqC kqC vRA @@ -70437,15 +70443,15 @@ blG kqC kqC kqC -xbM -xbM -xbM -kgQ -xbM -xbM -dHD -xbM -rYK +eMK +eMK +eMK +reN +eMK +eMK +gxB +eMK +wZd kqC kqC kqC @@ -70455,39 +70461,39 @@ kqC kqC mxQ tOM -gbf -fOT -apu -pYB -fOT -apu -gbf +nBG +hsk +qtf +sJz +hsk +qtf +nBG tOM vuV -pYB -pYB -pYB +sJz +sJz +sJz mxQ oXS fUr wcW wjT mxQ -gbf -aEC -gzh -gbf +nBG +aih +rfR +nBG mxQ tUs tUs bMu -gOk -fOT -jzP -ydK -ydK +uKn +hsk +bhe +pXe +pXe qzb -tdq +xvc hfd ucj bBA @@ -70582,31 +70588,31 @@ cAW jmG jmG jmG -lSq -kjt -hjB -rLG -taI +eQW +nWc +aTQ +fmh +jDy eov ivb cAW eov -kXk -tPB +vLj +xNk cKa -fLH -gCK -vUP +seg +pqI +oWM cKa -kXk -rhH +vLj +jmu cKa -kXk -rhH +vLj +jmu cKa -kjt -mgz -rLG +nWc +osw +fmh cKa cKa cKa @@ -70619,21 +70625,21 @@ hxq hxq vnr vnr -mEU -oPR -oPR -aZL +dzM +wdn +wdn +qxi mlC bQM kPz bQM mlC -roQ -oPR -oPR +uwi +wdn +wdn qBe -vtX -dYo +aez +mvM mlC kPz kPz @@ -70648,32 +70654,32 @@ jva gEX wzE kqC -pai -kgQ -tSl -diJ -ddt -ioc -kgQ -diF -xbM -fHo +mCj +reN +vcQ +dbg +bdL +evN +reN +bbV +eMK +tSH kqC -sfu -jyF +uWu +sFe kqC -sfu -jyF +uWu +sFe kqC -hNj +efO ijd -gbf -fOT -apu -klN -fOT -wmm -gbf +nBG +hsk +qtf +cRh +hsk +jCz +nBG vRP anR pca @@ -70685,21 +70691,21 @@ rbK tUs tUs uZX -pYB -pYB -hQM -pYB -pYB +sJz +sJz +tJV +sJz +sJz tUs vjl mxQ -gbf -fOT -apu -gbf -gbf -fFw -vUZ +nBG +hsk +qtf +nBG +nBG +dQh +mHI tuX vEi vEi @@ -70707,7 +70713,7 @@ vEi vEi vEi faD -oyO +amA bzO tan tan @@ -70794,11 +70800,11 @@ cAW jmG cAW jmG -vUP -kXk -amn -tPB -mpR +oWM +vLj +kun +xNk +rsv eov hxJ qgd @@ -70806,9 +70812,9 @@ eov kzh tOp cKa -oDH -vUP -dFI +sdC +oWM +lqP cKa kzh tOp @@ -70816,13 +70822,13 @@ cKa kzh tOp cKa -xVw -mgz -bOx +lvn +osw +upT cKa -vUP -vUP -vUP +oWM +oWM +oWM cKa xRl cPz @@ -70831,21 +70837,21 @@ kJz ixl bjf vNq -hsz -oPR -oPR +lVM +wdn +wdn qBe mlC kPz kPz kPz mlC -hdR -oPR -oPR +uiW +wdn +wdn qBe -aZL -nGB +qxi +pLq ecM mlC mlC @@ -70860,66 +70866,66 @@ dQV nGp dQV kqC -pai -kgQ -nkg -diJ -iuC -ioc -pnP -dHD -xbM -fHo +mCj +reN +tcf +dbg +djI +evN +sYE +gxB +eMK +tSH kqC -qNF -mDO +lvW +mZf kqC -qNF -mDO +lvW +mZf kqC -lbz +aRP hnh -gbf -fOT -apu -vTM -fOT -apu -gbf -gbf -gbf -uFg -gbf +nBG +hsk +qtf +tom +hsk +qtf +nBG +nBG +nBG +rnX +nBG tOM mxQ -kag -kag -kag -kag +ksk +ksk +ksk +ksk uZX -gbf -dtk -nnC -ota -gbf +nBG +mAa +jbh +wTp +nBG mxQ mxQ mxQ -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG vEK -fWy +hgK lUv -gbf -pYB -eBS -pYB +nBG +sJz +axN +sJz tOM tOM -gbf -gbf +nBG +nBG bzO bQM kPz @@ -71015,26 +71021,26 @@ eov eov eov eov -vUP +oWM wef -vUP -ika -vUP -vUP -bjZ -jWI -eow -aiv -kGd -lFB -vUP -kjt -mgz -rLG +oWM +sDp +oWM +oWM +mXl +ayr +vZF +aiS +wnT +xQL +oWM +nWc +osw +fmh lZA -jWI -eow -lFB +ayr +vZF +xQL lZA ixl ixl @@ -71044,17 +71050,17 @@ hHH ixl rmX qBe -oPR -oPR -roQ +wdn +wdn +uwi mlC bQM kPz bQM mlC -aZL -oPR -oPR +qxi +wdn +wdn qBe qBe gbk @@ -71065,23 +71071,23 @@ qBe qBe qBe qBe -hdR -roQ +uiW +uwi qBe qBe qBe fjg kqC -pai -kgQ -tTm -diJ -aga -diJ -xbM -dHD -xbM -rYK +mCj +reN +eSj +dbg +xgo +dbg +eMK +gxB +eMK +wZd kqC ryJ end @@ -71091,17 +71097,17 @@ end kqC kqC pFW -cTy -fOT -wua -kKP -eqw -nBw -nvX -nvX -nvX -beB -gbf +oKd +hsk +qMF +hip +gOy +hON +svs +svs +svs +sdq +nBG aXv bzO rzt @@ -71109,21 +71115,21 @@ rzt rzt rzt bzO -pYB -pYB -xOm -pYB -pYB +sJz +sJz +nxG +sJz +sJz mxQ -rQN -rQN -fUD -fOT -apu -gbf -gbf -fFw -vUZ +eJS +eJS +dtd +hsk +qtf +nBG +nBG +dQh +mHI waN sfW sfW @@ -71131,7 +71137,7 @@ sfW sfW sfW qRW -mOE +ivy bzO tan tan @@ -71226,27 +71232,27 @@ jmG cKa cKa cKa -rpf -vUP -vUP -vUP -vUP -mIr -vUP -knb -kXk -xYJ -qGB -amn -hkH -vUP -kjt -mgz -rLG +wxe +oWM +oWM +oWM +oWM +ezt +oWM +qpZ +vLj +qJp +mVW +kun +uYZ +oWM +nWc +osw +fmh wef -kjt -mgz -rLG +nWc +osw +fmh wef ixl ixl @@ -71255,18 +71261,18 @@ ixl ixl gpr nnr -oPR -oPR -oPR -kJJ +wdn +wdn +wdn +mdR ecM mlC mlC mlC ecM iCE -oPR -oPR +wdn +wdn qBe qBe qBe @@ -71277,43 +71283,43 @@ qBe qBe qBe qBe -rMw -mEU +tBz +dzM qBe qBe qBe jLe kqC kqC -sRJ -iuC +gkc +djI coj -ioc -ioc -xbM -dHD -xbM -fHo -ioc -rzp -vds -vds -vds -elO -ioc +evN +evN +eMK +gxB +eMK +tSH +evN +vwJ +nno +nno +nno +iYl +evN ntv tOM -gbf -fOT -gbf -gbf -gbf -gbf -gbf -gbf -gbf -apu -gbf +nBG +hsk +nBG +nBG +nBG +nBG +nBG +nBG +nBG +qtf +nBG tOM bzO bQM @@ -71329,13 +71335,13 @@ mxQ mxQ jkW tOM -kLs -fOT -nBw -nvX -nvX +sTO +hsk +hON +svs +svs wuz -fHI +eGs hfd fIW htt @@ -71439,9 +71445,9 @@ cKa cKa cKa cKa -vUP -vUP -vUP +oWM +oWM +oWM jfc wef wef @@ -71452,13 +71458,13 @@ rPS wef wef jfc -kjt -mgz -rLG +nWc +osw +fmh lZA -kjt -mgz -rLG +nWc +osw +fmh lZA ixl ixl @@ -71467,24 +71473,24 @@ ixl ixl ixl nnr -oPR -oPR -oPR -aZL -eLy -roQ +wdn +wdn +wdn +qxi +aCQ +uwi qBe -aZL -eLy -roQ -oPR -oPR -hdR -roQ +qxi +aCQ +uwi +wdn +wdn +uiW +uwi qBe qBe -hdR -roQ +uiW +uwi qBe qBe qBe @@ -71494,38 +71500,38 @@ uou qBe mrW qBe -fWV +kFx tHl -qCK +cfK lIJ -qCK -ioc -idj -ioc -xbM -qNF -xRI -efW -ioc -qNF -xRI -xRI -xRI -efW -ioc +cfK +evN +vFu +evN +eMK +lvW +eYk +lKf +evN +lvW +eYk +eYk +eYk +lKf +evN ntv tOM -gbf -rsR -ydK -ydK -ydK -ydK -ydK -ydK -kHv -apu -gbf +nBG +mvJ +pXe +pXe +pXe +pXe +pXe +pXe +aDY +qtf +nBG kbt bzO rzt @@ -71534,18 +71540,18 @@ rzt rzt bzO tJR -pYB -gbf -pYB +sJz +nBG +sJz wcW mxQ tOM tOM -gbf -fOT -xEW -gbf -gbf +nBG +hsk +cMu +nBG +nBG arT tOM hfd @@ -71650,27 +71656,27 @@ jmG cKa cKa cKa -rpf -jWI -eow -lFB +wxe +ayr +vZF +xQL hqD -jWI -clA +ayr +eJl wef -jWI -lFB +ayr +xQL jfc -jWI -lFB +ayr +xQL rPS -kjt -mgz -rLG +nWc +osw +fmh wef -kXk -amn -tPB +vLj +kun +xNk wef ixl ixl @@ -71679,24 +71685,24 @@ ixl ghS ixl lpS -ooq -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -aZL -mEU +frW +wdn +wdn +wdn +wdn +wdn +wdn +wdn +wdn +wdn +wdn +wdn +qxi +dzM qBe eUP -aZL -mEU +qxi +dzM qBe qBe qBe @@ -71712,12 +71718,12 @@ vRA upY vRA vRA -ioc -diJ -xbM +evN +dbg +eMK vRA -xbM -xbM +eMK +eMK kqC ryJ end @@ -71727,39 +71733,39 @@ ecd kqC kqC pFW -gbf -gbf -gbf -gbf -gbf -gbf -gbf -gbf -fOT -apu -gbf -ivr +nBG +nBG +nBG +nBG +nBG +nBG +nBG +nBG +hsk +qtf +nBG +eNx vDO -wkA -wkA -wkA -lOk -gbf +orv +orv +orv +hHD +nBG tUs -pYB -hQM -pYB +sJz +tJV +sJz tUs vDO -eBS +axN tOM -gbf -fOT -jzP -ydK -ydK +nBG +hsk +bhe +pXe +pXe qzb -tdq +xvc hfd ucj bBA @@ -71863,26 +71869,26 @@ cKa cKa cKa cKa -kjt -mgz -rLG +nWc +osw +fmh hqD -fRc -dUx +qkX +iKj hqD -iFB -dUx +wZK +iKj jfc -iFB -dUx +wZK +iKj wef -kjt -mgz -rLG +nWc +osw +fmh cKa -vUP -vUP -vUP +oWM +oWM +oWM cKa xRl ixl @@ -71891,87 +71897,87 @@ ixl ixl bjf vNq -gvz -ooq -mEU -roQ +rcy +frW +dzM +uwi fyL -fje -rCe -etq +rjS +oVj +gSn gGc -dIx -rCe -gPE +xsj +oVj +kTX qBe qBe fyL gGc gGc tzM -hdR -roQ +uiW +uwi qBe kHH -fFv -uoH +cnU +qvH qBe qBe qBe qBe oPN vRA -aXC +bBj vRA -qCK +cfK lIJ vRA upY upY upY -tZe +xzJ kqC -rzp -mwP +vwJ +hJt mxQ fCZ nZQ sso mxQ bkg -kag +ksk tOM xsS xsS tOM tOM tOM -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG tOM bzO bzO mxQ tUs rVM -gbf -gbf -eBj -cLZ -atd -xGl +nBG +nBG +aeL +ohH +qMh +bmM vDO -eBS +axN tOM -gbf -fOT -apu +nBG +hsk +qtf tOM tOM -fFw -vUZ +dQh +mHI tuX vEi vEi @@ -71979,7 +71985,7 @@ vEi vEi vEi faD -oyO +amA bzO tan tan @@ -72075,9 +72081,9 @@ cKa cKa cKa cKa -wdL -mgz -rLG +paA +osw +fmh hEs cKa cKa @@ -72088,9 +72094,9 @@ cKa cKa cKa cKa -xVw -mgz -rLG +lvn +osw +fmh jmG uwk uwk @@ -72114,37 +72120,37 @@ vnr mlC mlC ecM -yfp +qeJ hEv hEv hbp ecM nSx gVc -xbo -qzZ +sLp +gww qBe qBe -aZL -mEU +qxi +dzM qBe qBe ooO faw -lux +fRf wjH -cqW -ckS -voh +jBj +pFJ +qmB dtg -ioc +evN upY upY upY -tZe +xzJ kqC -qLi -dpe +tcK +ekt mxQ gRW ssO @@ -72155,43 +72161,43 @@ iyf mxQ pte bzO -mOU -mOU -mOU -gbf -fOT -apu -gbf -mOU +fSl +fSl +fSl +nBG +hsk +qtf +nBG +fSl bzO bzO mxQ tUs uZX -gbf +nBG tUs -pYB -xOm -pYB +sJz +nxG +sJz tUs mxQ -rQN +eJS tOM -xEW -fOT -apu +cMu +hsk +qtf tOM aRk -fFw +dQh lUv -gbf -pYB -eBS -pYB +nBG +sJz +axN +sJz tOM tOM -gbf -gbf +nBG +nBG bzO bQM kPz @@ -72284,25 +72290,25 @@ cAW cAW jmG cKa -bqu -moQ +jUc +jjU cKa -kjt -mgz -vwX +nWc +osw +lva cKa -bqu -rwm +jUc +euy cKa -bqu -rwm +jUc +euy cKa -bqu -aLC +jUc +myx cKa -kjt -mgz -rLG +nWc +osw +fmh uwk bQM kPz @@ -72326,10 +72332,10 @@ ezn kPz kPz hxq -ovq -vyw -bix -uTb +mRC +gNB +umH +cOn ecM nSx gux @@ -72344,16 +72350,16 @@ qBe qBe faw tHl -jYm -xbM -thz -suq -xbM -wFB -xbM -xbM -xdZ -xbM +uyy +eMK +egg +mZw +eMK +ubZ +eMK +eMK +qMB +eMK kqC kqC kqC @@ -72367,16 +72373,16 @@ tUs mxQ bzO bzO -gbf -gbf -gbf -fWy -rsR -oEQ -fWy -gbf -gbf -gbf +nBG +nBG +nBG +hgK +mvJ +eoS +hgK +nBG +nBG +nBG mxQ iyf mxQ @@ -72389,13 +72395,13 @@ mxQ mxQ fob rxM -gbf -fOT -apu +nBG +hsk +qtf tOM rbW -voP -vUZ +jQe +mHI waN sfW sfW @@ -72403,7 +72409,7 @@ sfW sfW sfW qRW -mOE +ivy bzO tan tan @@ -72496,25 +72502,25 @@ cAW cAW jmG cKa -kXk -qRf +vLj +eRY cKa -kjt -mgz -rLG +nWc +osw +fmh cKa -kXk -jWY +vLj +iGe cKa -kXk -lzz +vLj +wrw cKa -kXk -rhH +vLj +jmu cKa -kXk -amn -tPB +vLj +kun +xNk uwk bQM kPz @@ -72538,19 +72544,19 @@ vnr hxq hxq vnr -lOx -oRg +qXv +hvm ixl -uvn +tRD ecM nSx -ayG -laK -gRA +frO +hOb +cab qBe -hdR -roQ -gRA +uiW +uwi +cab qBe qBe qBe @@ -72567,8 +72573,8 @@ blG jTJ jTJ jTJ -bMG -anl +koF +jTP ffZ tUs fgU @@ -72577,37 +72583,37 @@ noa mxQ mxQ mxQ -xLD -pYB +dMq +sJz tOM tOM -gbf -gbf -pYB -pYB -gbf -gbf +nBG +nBG +sJz +sJz +nBG +nBG tOM tOM -pYB -jyo +sJz +pDb mxQ mxQ mxQ -woB -mok +vOa +rFJ mxQ pRx tOM -xbp +uBk lUv -gbf -fOT -nBw -nvX -nvX +nBG +hsk +hON +svs +svs wuz -fHI +eGs hfd fIW htt @@ -72711,9 +72717,9 @@ cKa kzh tOp cKa -kjt -mgz -rLG +nWc +osw +fmh cKa kzh tOp @@ -72724,87 +72730,87 @@ cKa kzh tOp cKa -cIt -vUP -vUP +rCY +oWM +oWM uwk bQM kPz kPz bQM hxq -vyw -bix -fOC -bix -bix -bix -bix -bix -bix -fKu -bix -bix -bix -bix -bix -xOU -bix -bix -uPl -dIh -kGc +gNB +umH +fgi +umH +umH +umH +umH +umH +umH +gAr +umH +umH +umH +umH +umH +xYn +umH +umH +cMx +gCI +piK nSx cVV -oWC +lCw xKX -qTt -gRA -aZL -hdR -roQ -gRA +vXM +cab +qxi +uiW +uwi +cab qBe qBe uud -wXQ +jhj ntv -hqX -vds -vds -rQB -gdS -ioc -ioc -qxZ +rso +nno +nno +vde +ixZ +evN +evN +qTY duF -sFH +vce rCt -xGd +vva mxQ tUs kZy mxQ mxQ mxQ -pYB -pYB +sJz +sJz eTr tOM -gbf -gbf +nBG +nBG tOM -gbf -pYB -pYB -gbf +nBG +sJz +sJz +nBG tOM -gbf -gbf +nBG +nBG tOM tOM -pYB -cyR +sJz +eKY mxQ mxQ mxQ @@ -72813,11 +72819,11 @@ uLr tUs brl kyh -gbf -fOT -gbf -gbf -gbf +nBG +hsk +nBG +nBG +nBG arT tOM hfd @@ -72920,118 +72926,118 @@ cAW cAW jmG cKa -jWI -eow -eow -ufR -mgz -jna -eow -eow -kGd +ayr +vZF +vZF +mAB +osw +wKd +vZF +vZF +wnT wef -eow -eow -eow -eow -lFB -vUP -jWI -eow -lFB +vZF +vZF +vZF +vZF +xQL +oWM +ayr +vZF +xQL uwk bQM kPz kPz bQM hxq -oRg -ovq -ovq -ehr -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -uvn +hvm +mRC +mRC +pyF +mRC +mRC +mRC +mRC +mRC +mRC +mRC +mRC +mRC +mRC +mRC +mRC +mRC +mRC +mRC +mRC +tRD nSx nSx xKX rGf xKX -qUw -gRA -aZL -mEU -roQ +iVK +cab +qxi +dzM +uwi qBe qBe qBe kqC kqC kqC -fKX +vAs upY -rQB -iLl -ioc -ioc -sjZ +vde +ktV +evN +evN +eYQ kqC -huJ +rFq caF -xKE +eaS mxQ cLu wBX mxQ -xLD -pYB +dMq +sJz tOM tOM -gbf -gbf +nBG +nBG tOM tOM tOM -gbf -fLu -pYB -gbf +nBG +mhA +sJz +nBG tOM tOM tOM -gbf -gbf +nBG +nBG tOM tOM -pYB -xkm +sJz +jnJ mxQ mxQ mWY tUs arT tOM -gbf -fOT -jzP -ydK -ydK +nBG +hsk +bhe +pXe +pXe qzb -tdq +xvc hfd ucj bBA @@ -73132,70 +73138,70 @@ cAW cAW jmG cKa -kjt -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz +nWc +osw +osw +osw +osw +osw +osw +osw +osw wef -mgz -mgz -mgz -mgz -rLG -vUP -kjt -mgz -rLG +osw +osw +osw +osw +fmh +oWM +nWc +osw +fmh uwk bQM kPz kPz bQM hxq -oRg -ovq -kDw -kgG -kgG -kgG -kgG -kgG -kgG -ujb -ovq -kDw -kgG -kgG -kgG -kgG -kgG -kgG -ujb -ovq -uvn +hvm +mRC +lGz +oJs +oJs +oJs +oJs +oJs +oJs +euO +mRC +lGz +oJs +oJs +oJs +oJs +oJs +oJs +euO +mRC +tRD cVV nSx nVE xKX -uGL -mEU +hIC +dzM qBe -gRA -aZL -mEU +cab +qxi +dzM qBe qBe uud -mwu +vud ntv -hqX -vds -vds +rso +nno +nno jTJ jTJ vRA @@ -73203,47 +73209,47 @@ blG jTJ jTJ kqC -pim +xdw kqC mxQ tUs mxQ mxQ -pYB +sJz tOM -gbf -gbf -ekx +nBG +nBG +rxa tOM tOM dXT -egz -fpg -nmM -aMr -hDS -egz +gub +mum +wgn +wuB +vHv +gub xBu tOM tOM -beB -gbf -gbf +sdq +nBG +nBG tOM -pYB +sJz mxQ mxQ uSY tUs qzb rxM -uMN -fOT -apu -gbf -gbf -fWy -vUZ +dEk +hsk +qtf +nBG +nBG +hgK +mHI tuX vEi vEi @@ -73251,7 +73257,7 @@ vEi vEi vEi faD -oyO +amA bzO tan tan @@ -73344,60 +73350,60 @@ cAW cAW jmG cKa -ndQ -amn -amn -amn -amn -amn -amn -amn -amn +nLF +kun +kun +kun +kun +kun +kun +kun +kun ljc -amn -amn -amn -amn -tPB -vUP -kXk -ylr -tPB +kun +kun +kun +kun +xNk +oWM +vLj +uEO +xNk uwk bQM kPz kPz bQM hxq -oRg -ovq -peP +hvm +mRC +gav vnr hxq vnr vnr hxq vnr -sTw -ovq -peP +haP +mRC +gav oUg -qFO -qFO +iFt +iFt oUg oUg oUg -yfA -ovq -peP +fsA +mRC +gav nSx nSx -xgC -roQ -gRA +cnQ +uwi +cab qBe -hdR -dVu +uiW +uZF nSx okE qBe @@ -73406,7 +73412,7 @@ qBe kqC kqC kqC -xbM +eMK upY sqC vVx @@ -73414,56 +73420,56 @@ qQb qQb tlF hfT -ecU -iSg -vTA +khE +pQM +oCE vDO tUs vDO -pYB +sJz tOM -gbf +nBG tOM tOM tOM -tYD -egz -xkq +wMI +gub +dTL mxQ mxQ kKQ vhk mxQ mxQ -tSL -egz -jOv +qJe +gub +tpM tOM tOM tOM -gbf +nBG tOM -pYB +sJz mxQ -rQN +eJS tOM -rTD +kVl lUv -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG vEK -fWy +hgK lUv -gbf -pYB -eBS -pYB -gbf -gbf -gbf -gbf +nBG +sJz +axN +sJz +nBG +nBG +nBG +nBG bzO bQM kPz @@ -73559,19 +73565,19 @@ cKa cKa cKa cKa -wsw -dVA -vUP -dVA -vUP -mgz -mgz -mgz -vUP -dVA -gtr -gtr -gtr +tTq +mrc +oWM +mrc +oWM +osw +osw +osw +oWM +mrc +hDJ +hDJ +hDJ cKa cKa cKa @@ -73581,90 +73587,90 @@ kPz kPz bQM hxq -oRg -ovq -uvn +hvm +mRC +tRD hxq hoH bQM bQM bQM hxq -oRg -qFO -uvn -jSZ -ovq -sIg -uwb -wvU +hvm +iFt +tRD +xEc +mRC +rgW +jaI +irv oUg -oRg -vdN -uvn -uFC -qyM -aZL -hdR -roQ -gRA -aZL -hdR -dhc +hvm +hFo +tRD +ujF +hSj +qxi +uiW +uwi +cab +qxi +uiW +nUk nSx okE qBe uud -wXQ +jhj ntv -hqX -vds -vds +rso +nno +nno ntv -kUR -sIj -hkA -bDv +vjf +erc +sKb +gJg jCO -fOK -iSg -vTA +iKn +pQM +oCE bzO mxQ mxQ -pYB +sJz tOM -gbf +nBG tOM rko -egz -xkq +gub +dTL mxQ jjg mxQ -wGA -pYB -pYB -cwM +nyI +sJz +sJz +aDg mxQ jjg mxQ -cBn -egz +aqe +gub sGg tOM -gbf +nBG tOM -pYB +sJz mxQ mxQ mxQ sBW kyh -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG mxk mxQ mxQ @@ -73770,21 +73776,21 @@ jmG cKa cKa cKa -pQc -mgz -mgz -mgz -mgz -vUP -mgz -mgz -mgz -vUP -mgz -mgz -mns -vUP -vUP +hvl +osw +osw +osw +osw +oWM +osw +osw +osw +oWM +osw +osw +qUN +oWM +oWM tBP vNq vnr @@ -73793,90 +73799,90 @@ kPz kPz bQM hxq -oRg -ovq -uvn +hvm +mRC +tRD hxq bQM bQM bQM bQM hxq -oRg -ovq -ukg -jSZ -jSZ -mVk -ovq -cLS +hvm +mRC +tMp +xEc +xEc +aOv +mRC +xWs oUg -oRg -ovq -uvn -ovq -qyM -gRA -aZL -mEU -roQ -gRA -aZL -qEC -roQ -gRA +hvm +mRC +tRD +mRC +hSj +cab +qxi +dzM +uwi +cab +qxi +vtm +uwi +cab qBe qBe kqC kqC kqC -sKr +cdA upY ntv -kUR -sIj -hkA -nZI +vjf +erc +sKb +upL sWr -sIj +erc iBr -hkA +sKb bzO mxQ -pYB +sJz eTr -gbf -ekx +nBG +rxa tOM -xpM +lzt mxQ jjg mxQ tVY -jzP -gbf -pYB -pYB -gbf -blf +bhe +nBG +sJz +sJz +nBG +cWb fDW mxQ jjg mxQ -vUZ +mHI tOM -beB -jMv +sdq +qgV eTr -pYB +sJz bzO bzO aGR tOM -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG tOM mxQ mxQ @@ -73983,20 +73989,20 @@ cKa cKa cKa cKa -mgz -rAw -rAw -xKP -niw -niw -oKn -niw -jfp -pho -mgz -mgz -vUP -vUP +osw +mPt +mPt +hOz +gGb +gGb +gxe +gGb +pNB +tVU +osw +osw +oWM +oWM tBP vNq vnr @@ -74005,94 +74011,94 @@ kPz kPz bQM hxq -oRg -ovq -uvn +hvm +mRC +tRD hxq bQM bQM bQM bQM hxq -oRg -ovq -lAE -mVk -jSZ -grg -uen -ujz +hvm +mRC +niN +aOv +xEc +qlu +myV +aYs oUg -oRg -jUP -uvn -ovq -qyM -roQ -gRA -aZL -hdR -dVu +hvm +ggF +tRD +mRC +hSj +uwi +cab +qxi +uiW +uZF nSx -asf -hdR -roQ -gRA +qlA +uiW +uwi +cab uud -iIG +uBH ntv -hqX -vds -vds +rso +nno +nno ntv -kUR -sIj -hkA -qTQ +vjf +erc +sKb +jrz jfT -drd -hEk -myJ +qXF +kkE +fPF bzO bzO -pYB +sJz tOM -gbf +nBG tOM -tYD -xkq +wMI +dTL jjg -vRk -pRD -bTC -apu -gbf -pYB -voI -gbf -fOT -nBw -fXW -ldF +hfJ +aAg +gvt +qtf +nBG +sJz +ukd +nBG +hsk +hON +yaZ +tFK jjg -cBn -jOv +aqe +tpM tOM -gbf +nBG tOM -cyR +eKY bzO bzO pFW tOM -gbf -fOT -apu -xdT +nBG +hsk +qtf +iwF tOM -gbf +nBG tOM -gbf +nBG tOM bzO bzO @@ -74193,22 +74199,22 @@ jmG jmG jmG jmG -pcN -vUP -mgz -rAw -rAw -vsr -nmm -gWg -nmm -nmm -wJd -lFB -mns -mgz -vUP -vUP +dCO +oWM +osw +mPt +mPt +oNU +fYE +dxQ +fYE +fYE +oFY +xQL +qUN +osw +oWM +oWM tBP vNq vnr @@ -74217,44 +74223,44 @@ kPz kPz bQM hxq -oRg -ovq -uvn +hvm +mRC +tRD hxq bQM bQM bQM bQM hxq -erb -vhy -uvn -lpW -gyP -gPV -gyP -pBW +bQS +gng +tRD +eLl +nOJ +ehM +nOJ +kSP oUg -oRg -xHi -uvn -ovq -qyM -mEU -roQ -gRA -aZL -mEU -nGO +hvm +cow +tRD +mRC +hSj +dzM +uwi +cab +qxi +dzM +hgR nSx -hsz -mEU -roQ -gRA +lVM +dzM +uwi +cab kqC kqC kqC -xbM +eMK upY jTJ veW @@ -74266,46 +74272,46 @@ rBF nhY mny bzO -gbf +nBG tOM -gbf +nBG tOM tOM -xpM +lzt mxQ mxQ -pRD -gbf -gbf -jzP -gbf -pYB -pYB -gbf -iYe -bnx -siy -nAV +aAg +nBG +nBG +bhe +nBG +sJz +sJz +nBG +jeN +qxp +wXG +bro mxQ mxQ -vUZ +mHI tOM tOM -gbf +nBG tOM -nup -gbf +cIC +nBG tOM mxQ -gbf -fOT -apu -gbf -buJ -buJ -xTf +nBG +hsk +qtf +nBG +yfM +yfM +bQF tOM -gbf +nBG bzO bzO bzO @@ -74405,22 +74411,22 @@ cAW bQM fwn jmG -dVC -vUP -mgz -rAw -vrH -tAE -nmm -pqz -nmm -nmm -wJd -rLG -mgz -mgz -rkF -qfi +nKv +oWM +osw +mPt +rVo +bKO +fYE +olY +fYE +fYE +oFY +fmh +osw +osw +aXB +qsO vNq vNq vNq @@ -74429,96 +74435,96 @@ vNq vNq vNq vNq -oRg -ovq -peP +hvm +mRC +gav vnr hxq vnr vnr hxq vnr -yfA -ovq -peP +fsA +mRC +gav oUg -vnl -qcy +lIm +rgz oUg oUg oUg -yfA -ovq -uvn -vja +fsA +mRC +tRD +rmY nSx -oQS -aZL -roQ -gRA -aZL -hdR -roQ -gRA -aZL -hdR -roQ -cfa -qwH -qwH -rzp -elO +qHy +qxi +uwi +cab +qxi +uiW +uwi +cab +qxi +uiW +uwi +caE +gcP +gcP +vwJ +iYl jTJ -lmu -sIj -hkA -nZI -aoo -bcd -nZI -pxf +wOF +erc +sKb +upL +rAE +jQM +upL +nKp bzO -gbf +nBG tOM -gbf +nBG tOM rko -xkq +dTL jjg tVY -bxv -gbf -gbf -oox -lMV -pYB -pYB +vuI +nBG +nBG +cKC +qta +sJz +sJz vjR doQ upM vjR -nBw +hON fDW jjg -cBn +aqe rxM tOM -gbf +nBG tOM -nup -gbf +cIC +nBG bkg ivN -gbf -fOT -apu -xEi +nBG +hsk +qtf +iZM uVL uVL sqR lTW tOM -wwo +dzx rzt bQM bQM @@ -74617,20 +74623,20 @@ cAW tan geF jmG -qPL -vUP -mgz -rAw -rAw -uLj -nmm -rru -nmm -djB -wJd -tPB -mgz -uhA +ehm +oWM +osw +mPt +mPt +oAA +fYE +cny +fYE +rQm +oFY +xNk +osw +tDf oUg oUg oUg @@ -74641,96 +74647,96 @@ oUg oUg oUg oUg -oRg -nNS -sPi -sfe -bix -bix -bix -bix -bix -uPl -bww -sPi -bix -bix -mPf -bix -dWn -bix -uPl -kHS -iHB -reZ -qyM -gRA -aZL -mEU -dVu +hvm +mSv +nRK +raQ +umH +umH +umH +umH +umH +cMx +nyb +nRK +umH +umH +iWF +umH +cIZ +umH +cMx +dbD +cnd +gYU +hSj +cab +qxi +dzM +uZF nSx -hsz -mEU -roQ -gRA -aZL -mEU -cfa +lVM +dzM +uwi +cab +qxi +dzM +caE upY -qwH -qNF -efW +gcP +lvW +lKf jTJ -hcB -sIj -hkA -nZI +guT +erc +sKb +upL scG iBr iBr iBr -rtw -gbf -gbf +kXX +nBG +nBG tOM tOM -xpM +lzt mxQ mxQ -vZe -ydK -jzP -tlj -ekW -rKs -ngg -pYB -bnx -taS -jEa -hPu -ydK -blf +wNV +pXe +bhe +uzo +iac +tvy +cvI +sJz +qxp +cmF +urb +fXR +pXe +cWb mxQ mxQ -jLD +jrP tOM tOM -gbf -nup -gbf +nBG +cIC +nBG tOM lDG -gbf -fOT -apu -gbf -oib -nvX -uTA +nBG +hsk +qtf +nBG +qBa +svs +aBd tOM -gbf -wwo +nBG +dzx rzt bQM bQM @@ -74831,18 +74837,18 @@ cAW jmG uwk jmG -mgz -xCg -iFP -kiT -nmm -nmm -nmm -nmm -wJd -vUP -mgz -mgz +osw +eNN +fYp +biw +fYE +fYE +fYE +fYE +oFY +oWM +osw +osw oUg oUg oUg @@ -74851,97 +74857,97 @@ oUg oUg oUg oUg -qZc -qGn -oRg -ovq -ovq -ovq -jSZ -ovq -fun -xia -ovq -ovq -ovq -vdN -ovq -vhy -xia -ovq -sZZ -ovq -kvu -ovq -uvn -uFC -qyM -roQ -gRA -aZL -hdR -dVu +pXP +dAK +hvm +mRC +mRC +mRC +xEc +mRC +oaK +rBb +mRC +mRC +mRC +hFo +mRC +gng +rBb +mRC +wub +mRC +aeg +mRC +tRD +ujF +hSj +uwi +cab +qxi +uiW +uZF nSx -hsz -tad +lVM +jwj izZ -oQS +qHy vao kqC -cYj -qwH +tpL +gcP mCF kqC jTJ -oaa -sIj -hkA -nZI -nZI -pWc -nZI -nZI -nZI -fWy -dxW -gbf -gbf -gSg +pFe +erc +sKb +upL +upL +nbf +upL +upL +upL +hgK +tRn +nBG +nBG +nge mxQ -qyq -gbf -gbf -gbf -eEC -rKs -saL -qCx -fEY +dCj +nBG +nBG +nBG +qRt +tvy +ccV +juL +vHM bzO -gbf -drk -gbf -gbf -gbf -jHj +nBG +gmn +nBG +nBG +nBG +nEa mxQ -aNz -gbf -gbf -dxW -fWy -gbf -gbf -gbf -gbf -fOT -apu -gbf -buJ -qTW -ydK +cwj +nBG +nBG +tRn +hgK +nBG +nBG +nBG +nBG +hsk +qtf +nBG +yfM +aed +pXe tOM -gbf +nBG bzO bzO bQM @@ -75043,18 +75049,18 @@ cAW cAW cAW uwk -mgz -mgz -mgz -jPM +osw +osw +osw +edR oBC jNl vrp mTa -bsm -wqY -mgz -mgz +vLq +sai +osw +osw oUg kSh wPz @@ -75063,98 +75069,98 @@ wPz wPz ofq oUg -qZc -qGn -wTC -kgG -kgG -kgG -gFZ -kgG -kgG -kgG -eRR -cXV -ovq -iKI -kgG -bRA -tMs -sTK -kgG -kgG -uTt -xZV -uvn -ovq -qyM -mEU -roQ -gRA -aZL -mEU -roQ -gRA -aZL -xNJ -gRA -gRA +pXP +dAK +gwa +oJs +oJs +oJs +fGP +oJs +oJs +oJs +pmd +ydo +mRC +dcU +oJs +ePu +lGO +nGU +oJs +oJs +srA +iXU +tRD +mRC +hSj +dzM +uwi +cab +qxi +dzM +uwi +cab +qxi +dEs +cab +cab iBr iBr iBr iBr iBr qdf -oaa -sIj -iTE -iSg -iSg -iSg -iSg -iSg -iSg -waQ -pYB -pYB -pYB -ont +pFe +erc +gKf +pQM +pQM +pQM +pQM +pQM +pQM +prj +sJz +sJz +sJz +vxk eGm -pYB -pYB -pYB -pYB -qCx -pYB -pYB -pYB -pYB -pYB -pYB -pYB -hpX -pYB -pYB -pYB -vuT -uBV -pYB -pYB -pYB -ekx -nvX -nvX -nvX -nvX -pRD -apu -xEi +sJz +sJz +sJz +sJz +juL +sJz +sJz +sJz +sJz +sJz +sJz +sJz +pGv +sJz +sJz +sJz +gvE +xxe +sJz +sJz +sJz +rxa +svs +svs +svs +svs +aAg +qtf +iZM nMn icu ugP lTW tOM -wwo +dzx rzt bQM bQM @@ -75255,118 +75261,118 @@ cAW cAW cAW jmG -mgz -mgz -mgz -mUd +osw +osw +osw +oPP ubQ okF fis lUs -pqz -wqY -mgz -mgz +olY +sai +osw +osw mPW cpP -aFK -qGn -qGn -aFK +cdx +dAK +dAK +cdx fnD oUg oUg -qob -jGf -jGf -sdV +nVh +yck +yck +cwb oUg oUg oUg -jKv -tJH +qfq +coF oUg -yfA -imG -peP +fsA +tYW +gav oUg -uFd -hzF -aXp -iDA +uaa +wge +sgG +cpo ggh -acO -xFL -pmC -xFL -gRA -aZL -mEU -cGS -mEU -gRA -gRA -wOG -gRA -cum -gRA -eZW +djY +cmm +bsN +cmm +cab +qxi +dzM +aag +dzM +cab +cab +rta +cab +jFk +cab +klW iBr iBr iBr iBr iBr iBr -oaa -sIj -tPC -hEk -hEk -hEk -hEk -hEk -hEk -mkn -pYB -pYB -pYB -aMr +pFe +erc +clG +kkE +kkE +kkE +kkE +kkE +kkE +tGh +sJz +sJz +sJz +wuB jYV -pYB -pYB -ngg -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB +sJz +sJz +cvI +sJz +sJz +sJz +sJz +sJz +sJz +sJz +sJz +sJz +sJz +sJz +sJz +sJz qzb -nmM -pYB -pYB -pYB -rsR -ydK -ydK -ydK -ydK -ydK -ekW -gbf -pLM -jWk -eHQ +wgn +sJz +sJz +sJz +mvJ +pXe +pXe +pXe +pXe +pXe +iac +nBG +gPn +uAK +iiH tOM -gbf -wwo +nBG +dzx rzt bQM bQM @@ -75467,118 +75473,118 @@ cAW cAW cAW uwk -mgz -xCh -mgz -mUd +osw +sjI +osw +oPP hpz hxM fHK iwT -nmm -wqY -pUG -mgz +fYE +sai +fkX +osw puE -hTf -qGn -eqQ -eqQ -qGn -pbp -qGn -pbp -qGn -oRg -kHF -uvn +vHS +dAK +elY +elY +dAK +qWd +dAK +qWd +dAK +hvm +jzR +tRD oUg -mNN -wFM -ehr -ovq -lpW -oRg -ovq -uvn -nvi -wMe -jQc -hGW -lFm -nUm -oRg -ovq -lAE -vja +vda +wNo +pyF +mRC +eLl +hvm +mRC +tRD +aUG +vNI +pRX +gQW +oGw +fgB +hvm +mRC +niN +rmY nSx -hsz -mEU -gRA -dJt +lVM +dzM +cab +fwG izZ bEX bEX bEX iCU -gRA -gRA +cab +cab iBr qdf iBr iBr iBr iBr -oaa -sIj -lHw -sFr -sFr -nZI -nZI -nZI -gRg -fWy -gbf -dxW -gbf -gSg +pFe +erc +lxx +iSp +iSp +upL +upL +upL +cVY +hgK +nBG +tRn +nBG +nge mxQ -xcz -gbf -gbf -gbf -ubo -ubo +fzF +nBG +nBG +nBG +puS +puS mxQ -opM -pYB -tWz -duV -lAM -gbf -gbf -gbf -jHj +bfq +sJz +nKc +kOC +mdP +nBG +nBG +nBG +nEa mxQ -dNc -gbf -dxW -gbf -fWy -gbf -gbf +qck +nBG +tRn +nBG +hgK +nBG +nBG tOM -gbf -gbf -gbf -gbf -buJ -thV -ydK +nBG +nBG +nBG +nBG +yfM +srb +pXe tOM -gbf -wwo +nBG +dzx rzt bQM bQM @@ -75679,118 +75685,118 @@ cAW cAW cAW jmG -mgz -mgz -rAw -kiT -wyU -ujs -nmm -nmm -wJd -vUP -mgz +osw +osw +mPt +biw +qQB +kYW +fYE +fYE +oFY +oWM +osw wef puE -cJv -eqQ -eqQ -eqQ -eqQ -eqQ -eqQ -eqQ -eqQ -oRg -kHF -uvn +sTQ +elY +elY +elY +elY +elY +elY +elY +elY +hvm +jzR +tRD oUg -mju -ovq -cLS -ekS -ePU -oRg -vhy -dkX -nvi -orD -oiX -qgv -aEQ -nUm -uVH -xFL -pmC -xFL -hdR -ntx -kSe -leN -mEU +qrK +mRC +xWs +bvk +gtc +hvm +gng +lxb +aUG +pLJ +xjP +jZQ +uIq +fgB +hFv +cmm +bsN +cmm +uiW +wNS +oSN +aqk +dzM izZ -fOe -rez -xJn +lhx +ojN +hso bEX -cRM -gRA +wZR +cab bhX iBr xMO iDg urv avT -gVT -sIj -lHw -nZI +utq +erc +lxx +upL xyw -cOB +rYG iBr iBr -rtw -gbf -gbf +kXX +nBG +nBG tOM tOM -xpM +lzt mxQ mxQ -fEv -uTw -pYB -pYB -nKf -gbf -pYB -pYB -hWG -qQy -pRD -pRD -khw -htT +daB +kQs +sJz +sJz +sCb +nBG +sJz +sJz +ggS +tbo +aAg +aAg +uvE +qeQ mxQ mxQ -vUZ +mHI tOM tOM -gbf -nup -gbf +nBG +cIC +nBG tOM tOM tOM tOM -gbf +nBG lTW uVL hUj dWp lTW tOM -wwo +dzx rzt bQM bQM @@ -75891,61 +75897,61 @@ cAW cAW cAW uwk -mgz -rAw -rAw -vsr -nmm -nmm -cYT -nmm -wJd -lFB +osw +mPt +mPt +oNU +fYE +fYE +skw +fYE +oFY +xQL wef -mgz +osw qrz puE -lzn -eqQ -jCy -eqQ -eqQ -eqQ -eqQ -eqQ -oRg -kHF -uvn +kbx +elY +sXs +elY +elY +elY +elY +elY +hvm +jzR +tRD eUi -bGB -vhy -ovq -pse -ovq -oRg -ovq -uvn -nvi -tPA -lou -fwg -qAe -nUm -oRg -ovq -uvn -uZP -aZL -aZL -mEU -gRA -gRA +jMZ +gng +mRC +rZX +mRC +hvm +mRC +tRD +aUG +mBs +jCS +hdJ +kbz +fgB +hvm +mRC +tRD +oPa +qxi +qxi +dzM +cab +cab izZ -bIR +vuj gWq -xJn +hso bEX -lbL +wei xKX iyc bhX @@ -75953,55 +75959,55 @@ iBr qdf iDg iBr -oaa -sIj -hkA -nZI +pFe +erc +sKb +upL iBr fdC iBr iBr -myA -gbf +jqZ +nBG tOM -gbf +nBG tOM rdt -rsQ +bCJ mxQ -lWy -gbf -gbf -jMv -pYB -gbf -pYB -ioW -hXF -pRD -ota -gbf -jzP +txC +nBG +nBG +qgV +sJz +nBG +sJz +tAJ +hMT +aAg +wTp +nBG +bhe pRx jjg -tlC +pVq kyh tOM -gbf +nBG tOM -nup -gbf -fvK +cIC +nBG +kxg qbY tOM tOM -gbf +nBG uSX -jWk -nvX -nvX +uAK +svs +svs tOM -gbf +nBG bzO bzO bQM @@ -76103,118 +76109,118 @@ cAW cAW cAW jmG -mgz -rAw -rAw -gFN -nmm -nmm -nmm -nmm -wJd -rLG -mgz -pUG +osw +mPt +mPt +uom +fYE +fYE +fYE +fYE +oFY +fmh +osw +fkX puE -eqQ -qGn -eqQ -eqQ -qGn -qGn -qGn -qGn -qGn -oRg -kHF -uvn +elY +dAK +elY +elY +dAK +dAK +dAK +dAK +dAK +hvm +jzR +tRD oUg -pBW -jew -vhy -ovq -mNN -wet -ovq -uvn -nvi -mrK -qRS -kHF -kHF -nUm -lBE -sNj -erh -ovq -gRA -ntx -kSe -gRA -gRA +kSP +hLr +gng +mRC +vda +jRR +mRC +tRD +aUG +dBX +hBR +jzR +jzR +fgB +rrY +hNs +kHm +mRC +cab +wNS +oSN +cab +cab izZ -nyF +yeO tOc tOc bgd -gRA -gRA +cab +cab bhX mhR bhX iBr dfA iBr -oaa -sIj -hkA -nZI +pFe +erc +sKb +upL qKq -cOB +rYG iBr aTL -vPF -gbf +xcN +nBG tOM -gbf +nBG tOM tOM -xpM +lzt mxQ mxQ tOM gjr -gbf -fgq -drk -pYB -pYB -gbf -pRD -gbf -gbf -oLX +nBG +nYk +gmn +sJz +sJz +nBG +aAg +nBG +nBG +qDV mxQ mxQ -vUZ +mHI tOM tOM -gbf +nBG tOM -nup -gbf -bnx +cIC +nBG +qxp qbY rVQ tOM -gbf +nBG mPg -ydK -lZm -buJ +pXe +iSL +yfM tOM -gbf -jlU +nBG +rMm rzt bQM bQM @@ -76315,104 +76321,104 @@ bQM cAW cAW uwk -mgz -rAw -rAw -srQ -nmm -sUX -nmm -nmm -nEN -tPB -mgz -mgz +osw +mPt +mPt +lhf +fYE +oxI +fYE +fYE +ndr +xNk +osw +osw mPW -vvM -tet -eyz -qGn -tet +qbO +rvQ +pxD +dAK +rvQ fnD oUg oUg -qob -jGf -jGf -sdV +nVh +yck +yck +cwb oUg oUg oUg -ovq -kbj +mRC +rcw oUg -acO -xFL -uVk +djY +cmm +fFx oUg -njG -sli -fbX -nxW +fSi +eaE +ePt +wjz oUg -vmL -ovq -uvn -ovq -ovq -aZL -mEU -gRA -fXo +pbx +mRC +tRD +mRC +mRC +qxi +dzM +cab +pol izZ bEX mrG bEX izZ -oQS -lco +qHy +uqO oZx bhX ahm xMO rSU iBr -oaa -sIj -hkA -nZI +pFe +erc +sKb +upL iBr iBr iBr aco bzO bzO -pYB +sJz tOM -gbf +nBG tOM -kTD -rsQ +ekm +bCJ mxQ tOM tOM -gbf -pYB -gbf -pYB -pYB -gbf -fOT -jzP -oLX -wYT +nBG +sJz +nBG +sJz +sJz +nBG +hsk +bhe +qDV +sLq jjg -tlC -jrO +pVq +hpg tOM -gbf +nBG tOM -cyR +eKY bzO bzO pFW @@ -76425,8 +76431,8 @@ lsO uVL iRG lTW -gbf -jlU +nBG +rMm rzt bQM bQM @@ -76527,18 +76533,18 @@ kPz bce cAW jmG -mgz -rAw -xCg -xKP -spl -oNx -uuJ -oNx -jWy -vUP -mgz -mgz +osw +mPt +eNN +hOz +lQN +lGr +kqW +lGr +aaE +oWM +osw +osw jqt pTU wPz @@ -76547,95 +76553,95 @@ wPz wPz jPK oUg -qZc -qGn -vyw -bix -bix -bix -bix -fKu -tTv -bix -wGX -uPl -ovq -sPi -bix -uZZ -bix -bix -bBr -eds -uPl -ovq -hkB -cOL -ovq -ovq -ovq -oaa -oaa -oaa -kMV -oaa -kMV -oaa -kMV -oaa -tbj -oaa -uKb -evC -wzg -oaa -oaa -sIj -lHw -nZI +pXP +dAK +gNB +umH +umH +umH +umH +gAr +quw +umH +oGE +cMx +mRC +nRK +umH +oyg +umH +umH +vxT +xRg +cMx +mRC +qaf +rWC +mRC +mRC +mRC +pFe +pFe +pFe +hnO +pFe +hnO +pFe +hnO +pFe +oHS +pFe +nRO +hMq +pug +pFe +pFe +erc +lxx +upL xyw -cOB +rYG iBr ume bzO bzO -pYB +sJz eTr -gbf -rsR +nBG +mvJ tOM -xpM +lzt mxQ mxQ mxQ -sHe -pYB -kBt -pYB -pYB -gbf -wdo +kIG +sJz +uew +sJz +sJz +nBG +qhO nEP mxQ jjg mxQ -vUZ +mHI tOM -oEQ -gbf +eoS +nBG tOM -pYB +sJz bzO bzO -gbf +nBG qbY rVQ tOM -gbf +nBG tOM -nvX -jWk -nvX +svs +uAK +svs tOM eTr bzO @@ -76739,18 +76745,18 @@ fiq cAW cAW uwk -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz +osw +osw +osw +osw +osw +osw +osw +osw +osw +osw +osw +osw oUg oUg oUg @@ -76759,52 +76765,52 @@ oUg oUg oUg oUg -qZc -qGn -oRg -kHF -kHF -kHF -kHF -kHF -kHF -nVN -ojj -kHF -vTL -kBm -kHF -ojj -kHF -kHF -hcs -kHF -kHF -hcs -kHF -jLC -bix -fKu -bix -iSg -cJS -iSg -fVY -alK -jOd -iSg -jOd -njg -xGr -iSg -tyt -iSg -eQX -iSg -iSg -dBZ -lHw -nZI +pXP +dAK +hvm +jzR +jzR +jzR +jzR +jzR +jzR +knD +pDT +jzR +sjq +dDV +jzR +pDT +jzR +jzR +cSe +jzR +jzR +cSe +jzR +ljU +umH +gAr +umH +pQM +aZz +pQM +vbw +rhQ +bKS +pQM +bKS +wrZ +bBe +pQM +wUC +pQM +qdF +pQM +pQM +axD +lxx +upL iBr iBr iBr @@ -76812,45 +76818,45 @@ dcy bzO bzO mxQ -pYB +sJz tOM -gbf +nBG tOM rdt -jGC -rsQ +tTx +bCJ mxQ mxQ mxQ -aLz -pYB -pYB -mPn +cBj +sJz +sJz +fAs mxQ jjg mxQ -tlC -jGC +pVq +tTx kyh tOM -gbf +nBG tOM -pYB +sJz mxQ mxQ mxQ -gbf -gbf -gbf -gbf +nBG +nBG +nBG +nBG tOM -gbf -gbf +nBG +nBG tOM -gbf +nBG lNR -gbf -uXK +nBG +vGk bzO bzO bzO @@ -76951,18 +76957,18 @@ fiq fiq tan jmG -mgz -mgz -mgz -mgz -mgz -vUP -vUP -vUP -vUP -mgz -mgz -mgz +osw +osw +osw +osw +osw +oWM +oWM +oWM +oWM +osw +osw +osw oUg oUg oUg @@ -76973,87 +76979,87 @@ oUg oUg oUg oUg -wTC -kgG -kgG -kgG -kgG -kgG -vyK -kgG -pXJ -kgG -kgG -kgG -kgG -pXJ -kgG -lqN -kgG -kgG -kgG -kgG -kgG -kgG -slR -slR -kgG -iIx -hEk -hEk -nZU -hEk -nZU -irE -nZU -hEk -mqM -hEk -hEk -hEk -hEk -hEk -hEk -hEk -rVi -nZI +gwa +oJs +oJs +oJs +oJs +oJs +vqf +oJs +uBp +oJs +oJs +oJs +oJs +uBp +oJs +oeq +oJs +oJs +oJs +oJs +oJs +oJs +cjC +cjC +oJs +rQM +kkE +kkE +pBH +kkE +pBH +ouc +pBH +kkE +auE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +pee +upL xyw -cOB +rYG iBr -brR +xIT vDO tUs mxQ -pYB +sJz tOM -gbf +nBG tOM tOM tOM -kTD -jGC -rsQ +ekm +tTx +bCJ mxQ mxQ rqh iAr mxQ mxQ -tlC -jGC -jrO +pVq +tTx +hpg tOM tOM tOM -gbf +nBG eTr -pYB +sJz mxQ tUs vDO -eBS -gbf -gbf +axN +nBG +nBG tOM eTr gLk @@ -77062,7 +77068,7 @@ gLk gLk tOM tOM -pti +cWc bzO bzO bzO @@ -77195,11 +77201,11 @@ hxq hxq hxq vnr -fjV -jGf -jGf +sDt +yck +yck vNq -oRg +hvm ixl cCh qby @@ -77209,26 +77215,26 @@ ixl ixl ixl ixl -uvn -oty -tUD -oty -koK -oaa -sga -oaa -kMV -oaa -jft -oaa -oaa -oaa -oaa -oaa -iEF -rBu -rBu -oaa +tRD +duY +orb +duY +nSQ +pFe +tDn +pFe +hnO +pFe +kxc +pFe +pFe +pFe +pFe +pFe +ycF +hxF +hxF +pFe iBr iBr iBr @@ -77237,35 +77243,35 @@ mxQ tUs mxQ mxQ -pYB +sJz tOM -gbf -gbf -rsR +nBG +nBG +mvJ tOM tOM rdt -jGC -dOZ -uBV -ont -xcS -jGC +tTx +lzf +xxe +vxk +wRO +tTx kyh tOM tOM -oEQ -gbf -gbf +eoS +nBG +nBG tOM -pYB +sJz mxQ mxQ tUs bzO tOM tOM -gbf +nBG tOM mxQ mLP @@ -77376,14 +77382,14 @@ cAW tan tan tan -tst -iPv -roH +dgi +aXg +flo lRT -gxn -ijC -ijC -fdu +ltx +qRd +qRd +iOs lRT cAW vnr @@ -77407,21 +77413,21 @@ bQM bQM kPz xDw -ibl -raC -tIW +bnj +vYd +tcV dOX -pmn -smR -fgN -bMF -smR -fDJ -fSp -fDJ +aVa +ouS +sDg +djv +ouS +tMd +qyJ +tMd vlU xSz -uYi +tkN lRT dzl dzl @@ -77433,15 +77439,15 @@ dzl nie rSU iBr -enu -xNU -wkL -vMT -oaa -vMT -xNU -kKs -vMT +iQU +hbC +fls +oMC +pFe +oMC +hbC +vCB +oMC ksY iBr bnJ @@ -77449,28 +77455,28 @@ mxQ cLu kVk mxQ -xLD -pYB +dMq +sJz tOM tOM -gbf -gbf +nBG +nBG tOM tOM tOM -gbf -pYB -pYB -gbf +nBG +sJz +sJz +nBG tOM tOM tOM -gbf -gbf +nBG +nBG tOM tOM -pYB -bAf +sJz +eoj mxQ cZr tUs @@ -77480,14 +77486,14 @@ tOM vEK tOM jjg -ekx -cqV -nvX -nvX -nvX -nvX -nvX -prL +rxa +obv +svs +svs +svs +svs +svs +tTo rzt bQM bQM @@ -77588,14 +77594,14 @@ cAW cAW pcu nfF -gID +vXV ruD -dde +iaP taY -ann +jyD nGZ nGZ -uYi +tkN lRT cAW vnr @@ -77619,21 +77625,21 @@ xDw xDw xDw lRT -pVk -fDJ -hmq +ibB +tMd +tVi sIJ -qaL -hWk -vKz -dnX -hPO -dnX -qgk -jYt -dnX -tIW -uYi +mVz +rZc +wna +myr +xPm +myr +oQX +rPy +myr +tcV +tkN xDw cAW bQM @@ -77645,15 +77651,15 @@ rBF dzl urv xMO -gmg -nRQ -qNy -cdp -oaa -gmg -nLS -qpN -pwo +jnL +vve +klH +seU +pFe +jnL +ttp +xwK +gCt iBr obE mxQ @@ -77663,24 +77669,24 @@ cFX mxQ mxQ mxQ -kag -pYB +ksk +sJz eTr tOM -gbf -gbf +nBG +nBG tOM -gbf -pYB -pYB -gbf +nBG +sJz +sJz +nBG tOM -gbf -gbf +nBG +nBG tOM eTr -pYB -pYB +sJz +sJz mxQ iyf mxQ @@ -77692,14 +77698,14 @@ tOM vEK tOM jjg -fOT -gbf -gbf -gIo -wYq -gbf -gbf -xlx +hsk +nBG +nBG +gwt +rjg +nBG +nBG +qcH rzt bQM bQM @@ -77800,14 +77806,14 @@ fiq fiq pcu fiq -gID -gID -gID +vXV +vXV +vXV taY -qaL +mVz nGZ nGZ -uYi +tkN lRT cAW vnr @@ -77830,22 +77836,22 @@ qeN wSD bHP vlU -lqI -qaL -gtT -uYi +pcH +mVz +acP +tkN dOX -onB -mbz -ibl -vKz -rpT -dnX -vKz -raC -bec -uYi -sDS +sDW +tIY +bnj +wna +mhV +myr +wna +vYd +aRD +tkN +lTA xDw dhi fQV @@ -77857,15 +77863,15 @@ erT dzl mQV iBr -vMT -rZN -krE -vMT -wzg -vMT -rZN -krE -vMT +oMC +odD +aDr +oMC +pug +oMC +odD +aDr +oMC iBr iBr ffZ @@ -77877,20 +77883,20 @@ vFn mxQ iyf mxQ -xLD -pYB +dMq +sJz tOM tOM -gbf -gbf -pYB -pYB -gbf -gbf +nBG +nBG +sJz +sJz +nBG +nBG tOM tOM -pYB -pYB +sJz +sJz mxQ mxQ mxQ @@ -77904,14 +77910,14 @@ tOM vEK tOM jjg -rsR -ydK -ydK -ydK -ydK -ydK -ydK -eyj +mvJ +pXe +pXe +pXe +pXe +pXe +pXe +sxq rzt bQM bQM @@ -78016,10 +78022,10 @@ fiq nfF nfF lRT -qaL -cUd -cUd -uYi +mVz +gGq +gGq +tkN lRT cAW bce @@ -78042,44 +78048,44 @@ nGZ nGZ nGZ nGZ -lqI -qaL -fDJ -uYi +pcH +mVz +tMd +tkN dOX -nSS -udE -utW -ibl -dnX -dnX -dnX -xEX -mfF -uYi -lOy +uYr +bcl +tUA +bnj +myr +myr +myr +lhA +gOj +tkN +bNw lRT ajx -afk -afk +bCM +bCM hkh -afk -afk +bCM +bCM iWq dzl iBr iBr -oaa -oaa -oaa -oaa -oaa -oaa -oaa -oaa -oaa -nZI -brR +pFe +pFe +pFe +pFe +pFe +pFe +pFe +pFe +pFe +upL +xIT vDO tUs tUs @@ -78091,16 +78097,16 @@ tUs mxQ mxQ bzO -gbf -gbf -gbf -fWy -ekx -beB -fWy -gbf -gbf -jHj +nBG +nBG +nBG +hgK +rxa +sdq +hgK +nBG +nBG +nEa bzO mxQ mxQ @@ -78112,13 +78118,13 @@ tUs tUs tUs vDO -eBS +axN vEK tOM mxQ -lPE -qbR -gcD +uhx +pbj +dlF mxQ syV iyf @@ -78228,10 +78234,10 @@ pcu atp cAW lRT -pVk +ibB hjW hjW -mgE +uGi lRT cAW bce @@ -78254,44 +78260,44 @@ nGZ wSD nGZ kNk -sPh -gTy -ifN -ncb +pgR +gst +euL +taE dOX -kaF -kka -qaL -kqJ -cUd -cUd -tUC -ncb -hXG -uYi -sgJ +rqS +cQh +mVz +mNU +gGq +gGq +eqD +taE +jyL +tkN +tea xDw ajx -afk -afk +bCM +bCM pcu -afk -afk +bCM +bCM iWq dzl iBr iBr -vMT -xNU -kKs -vMT -oaa -vMT -xNU -kKs -vMT -nZI -nZI +oMC +hbC +vCB +oMC +pFe +oMC +hbC +vCB +oMC +upL +upL mxQ mxQ mxQ @@ -78305,12 +78311,12 @@ xRo bzO bzO bzO -iHT -gbf -fOT -apu -gbf -iHT +dAV +nBG +hsk +qtf +nBG +dAV bzO bzO bzO @@ -78328,13 +78334,13 @@ tOM vEK tOM mxQ -nQJ -iys -iFZ +gTh +nAA +imE bzO -eET -ldW -tyJ +cif +pbI +sdb bzO bQM bQM @@ -78440,10 +78446,10 @@ pcu fiq cAW lRT -qaL -dnX -dnX -uYi +mVz +myr +myr +tkN lRT cAW bce @@ -78471,57 +78477,57 @@ hir hir hir dOX -eqi -tYt -bxy -cUd -tUC -cUd -guv -cUd -ncb -uYi -qhP +wbz +mMM +mtz +gGq +eqD +gGq +cph +gGq +taE +tkN +dGT xDw ajx -afk -afk +bCM +bCM hkh -afk -afk +bCM +bCM iWq dzl ksY iBr -gmg -nck -ayH -pwo -oaa -gmg -nRQ -vGM -pwo -nZI -nZI -pYB -fWy -xEW -cwM -gbf -cwM -gbf -wkA +jnL +xTa +ien +gCt +pFe +jnL +vve +vGg +gCt +upL +upL +sJz +hgK +cMu +aDg +nBG +aDg +nBG +orv tOM tOM rzt bQM rzt tOM -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG aXv mxQ cZr @@ -78540,13 +78546,13 @@ tOM vEK tOM mxQ -llE -nfe -bvg +mvD +iXh +rww bzO -klt -qFf -tyJ +dfo +hji +sdb bzO bQM bQM @@ -78652,20 +78658,20 @@ pcu cAW cAW xDw -qaL -cUd -cUd -uYi +mVz +gGq +gGq +tkN lRT lRT lRT cAW cAW lRT -gUu -gUu -gUu -gUu +gfl +gfl +gfl +gfl lRT bQM kPz @@ -78679,21 +78685,21 @@ xDw bQM bQM xDw -tZz -jrT -vhd -fDJ -qaL -rrs -cUd -cUd -cUd -pvi -cUd -cUd -cUd -ncb -sXP +fYD +qvi +qDY +tMd +mVz +sBJ +gGq +gGq +gGq +olS +gGq +gGq +gGq +taE +sSv xDw fdV jlH @@ -78705,36 +78711,36 @@ bUB rBF lwn iBr -vMT -rZN -krE -vMT -oaa -vMT -rZN -krE -vMT -nZI -nZI -pYB -nvX -nvX -nvX -nvX -nvX -beB -gbf +oMC +odD +aDr +oMC +pFe +oMC +odD +aDr +oMC +upL +upL +sJz +svs +svs +svs +svs +svs +sdq +nBG tOM tOM rzt kPz rzt tOM -gbf -fOT -apu -gbf -ivr +nBG +hsk +qtf +nBG +eNx vDO tUs tUs @@ -78749,12 +78755,12 @@ bQM bQM bzO tOM -kag +ksk lKI mxQ -wSb -gPp -tIf +evO +noM +xnA bzO rzt rzt @@ -78864,10 +78870,10 @@ pcu cAW cAW xDw -qaL +mVz hjW hjW -uYi +tkN nGZ gsX lRT @@ -78891,21 +78897,21 @@ bQM bQM bQM lRT -sLu +pce hva -fUP -fDJ -qaL -fDJ -qLH -udB -fDJ -fDJ -fDJ -rPW +gxD +tMd +mVz +tMd +sBe +oCt +tMd +tMd +tMd +cCw dmQ nGZ -wBE +tou xDw cAW bQM @@ -78920,32 +78926,32 @@ iBr iBr iBr iBr -oaa -oaa -oaa +pFe +pFe +pFe iBr -nZI +upL iBr -nZI -nZI -pYB -ydK -ydK -ydK -ydK -kHv -apu -gbf +upL +upL +sJz +pXe +pXe +pXe +pXe +aDY +qtf +nBG tOM tOM rzt bQM rzt tOM -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG tOM mxQ bzO @@ -79076,11 +79082,11 @@ cAW cAW cAW xDw -qaL -dnX -dnX -nCm -tIW +mVz +myr +myr +aro +tcV nGZ nGZ nGZ @@ -79090,34 +79096,34 @@ nGZ nGZ nGZ nGZ -ntw -ntw -cTD -ntw -lqI -lqI -lqI -gBP +ovm +ovm +ceO +ovm +pcH +pcH +pcH +aOp xDw bQM bQM bQM xDw -dNC -wAt -oJK -fDJ -bSm -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -dZQ -ncb +aPh +kfv +wZJ +tMd +rpa +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +snH +taE lRT xDw xDw @@ -79132,34 +79138,34 @@ iRa iRa iRa dOX -bTp -lqI -lqI +lmC +pcH +pcH fjd -nZI -xXY -nZI -jgz -pYB -fWy -gbf -mPn -gbf -fOT -apu -gbf +upL +wAw +upL +jbM +sJz +hgK +nBG +fAs +nBG +hsk +qtf +nBG tOM eTr bzO rzt bzO pFW -gbf -fOT -apu -xEW +nBG +hsk +qtf +cMu tOM -kUo +abA rzt kPz rzt @@ -79288,25 +79294,25 @@ cAW cAW cAW xDw -qaL +mVz vOD nGZ nGZ -ibl -tIW +bnj +tcV nGZ -ibl -dnX -tIW +bnj +myr +tcV nGZ -ibl -dnX -tIW +bnj +myr +tcV nGZ -ibl -eEQ -tIW -qaL +bnj +eOC +tcV +mVz nGZ nGZ nGZ @@ -79339,39 +79345,39 @@ xDw bQM xAl xDw -lqC -lqC -lqC -lqC -lqC -lqC -lqC -lqC +vrG +vrG +vrG +vrG +vrG +vrG +vrG +vrG fjd -nZI -mdY -nZI +upL +pFq +upL rBF rzt rzt rzt bzO -gbf -fOT -apu -gbf -xEW -gbf -gbf -gbf -gbf -jMv -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG +cMu +nBG +nBG +nBG +nBG +qgV +nBG +hsk +qtf +nBG bkg -gZg +gVd rzt bQM rzt @@ -79500,25 +79506,25 @@ cAW cAW cAW lRT -rbI -nim +fCz +npS lPA nGZ -qaL -uYi -lqI -qaL -lqI -uYi -lqI -qaL -lqI -uYi -lqI -qaL -lqI -uYi -qaL +mVz +tkN +pcH +mVz +pcH +tkN +pcH +mVz +pcH +tkN +pcH +mVz +pcH +tkN +mVz nGZ nGZ nGZ @@ -79534,8 +79540,8 @@ hQR nGZ nGZ nGZ -qaL -uYi +mVz +tkN nGZ nGZ nGZ @@ -79551,14 +79557,14 @@ xDw bQM bQM xDw -lqC +vrG nGZ nGZ nGZ nGZ nGZ nGZ -lqC +vrG lRT rBF rBF @@ -79568,22 +79574,22 @@ bQM bQM bQM bzO -gbf -fOT -nBw -nvX -nvX -nvX -nvX -nvX -nvX -nvX -nvX -pRD -apu -gbf +nBG +hsk +hON +svs +svs +svs +svs +svs +svs +svs +svs +aAg +qtf +nBG eTr -iwi +aqp rzt bQM rzt @@ -79713,24 +79719,24 @@ cAW cAW xDw xDw -bxy -nim +mtz +npS nGZ -bxy -ncb +mtz +taE nGZ -bxy -cUd -ncb +mtz +gGq +taE nGZ -bxy -cUd -ncb +mtz +gGq +taE nGZ -bxy -cUd -ncb -qaL +mtz +gGq +taE +mVz nGZ nGZ aHj @@ -79746,31 +79752,31 @@ hQR vlU nGZ nGZ -qaL -uYi +mVz +tkN nGZ hjW hjW vlU hjW nGZ -ibl -cVu -dnX +bnj +jJh +myr xeO smv xDw bQM bQM xDw -lqC -lqC -lqC -lqC -lqC -lqC -lqC -lqC +vrG +vrG +vrG +vrG +vrG +vrG +vrG +vrG xDw kPz kPz @@ -79780,22 +79786,22 @@ kPz kPz kPz bzO -eJt -fOT -jzP -ydK -ydK -ydK -ydK -ydK -ydK -ydK -ydK -ydK -oEQ -gbf +iIP +hsk +bhe +pXe +pXe +pXe +pXe +pXe +pXe +pXe +pXe +pXe +eoS +nBG tOM -oZS +tix rzt kPz rzt @@ -79926,23 +79932,23 @@ cAW cAW xDw xDw -bxy -cUd -vnM +mtz +gGq +bWP nGZ nGZ nGZ nGZ rJW -hSO -hSO -hSO -pkB -hSO -hSO -ign -hSO -qaL +xJS +xJS +xJS +qYC +xJS +xJS +cEX +xJS +mVz nGZ nGZ nGZ @@ -79958,27 +79964,27 @@ nGZ mSP nGZ nGZ -qaL -uYi +mVz +tkN nGZ nGZ nGZ nGZ nGZ nGZ -qaL +mVz nGZ -fDJ -hbH +tMd +mlq nGZ lRT xDw xDw lRT -bTp -lqI -lqI -lqI +lmC +pcH +pcH +pcH lRT fjd lRT @@ -79992,20 +79998,20 @@ bQM bQM kPz bzO -gbf -fOT -apu -gbf -gbf -gbf -gbf -gbf -gbf -gbf -gbf -gbf -gbf -gbf +nBG +hsk +qtf +nBG +nBG +nBG +nBG +nBG +nBG +nBG +nBG +nBG +nBG +nBG tOM mxQ bzO @@ -80154,40 +80160,40 @@ lRT lRT lRT lRT -vgC -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -tIW -fDJ -uYi +rNs +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +myr +tcV +tMd +tkN xeO -yiT -lqC -lqC -lqC -lqC +arK +vrG +vrG +vrG +vrG nGZ nGZ nGZ @@ -80204,10 +80210,10 @@ bQM bQM bQM bzO -gbf -fOT -apu -gbf +nBG +hsk +qtf +nBG tOM tOM aAk @@ -80218,7 +80224,7 @@ tOM tOM tOM tOM -ivr +eNx vDO tUs tUs @@ -80366,34 +80372,34 @@ bQM vzB gws vzB -qaL +mVz nGZ -lqI -eDp -qGe -unp -wKx -eDp -qGe -unp -wKx -eDp -qGe -unp -wKx -eDp -qGe -unp -wKx -eDp -qGe -unp -wKx -eDp -lqI -uYi -cUd -ncb +pcH +fmn +rpB +hjs +dFE +fmn +rpB +hjs +dFE +fmn +rpB +hjs +dFE +fmn +rpB +hjs +dFE +fmn +rpB +hjs +dFE +fmn +pcH +tkN +gGq +taE nGZ gtg nGZ @@ -80416,10 +80422,10 @@ kPz kPz kPz bzO -gbf -fOT -apu -kBt +nBG +hsk +qtf +uew tOM tOM tOM @@ -80578,9 +80584,9 @@ bQM vzB gws vzB -qaL +mVz nGZ -uNs +raz iOa cCx xeO @@ -80602,19 +80608,19 @@ xeO xeO cCx iOa -eLB -uYi +wPf +tkN nGZ nGZ nGZ -lqC -lqC -lqC -lqC -lqC -lqC -lqC -lqC +vrG +vrG +vrG +vrG +vrG +vrG +vrG +vrG lRT xeO lRT @@ -80628,17 +80634,17 @@ bQM bQM bQM bzO -eJt -fOT -apu -gbf -pYB -pYB -pYB -pYB -hZG -pYB -pYB +iIP +hsk +qtf +nBG +sJz +sJz +sJz +sJz +feH +sJz +sJz bzO rzt rzt @@ -80790,9 +80796,9 @@ ogf tsc bEk tsc -dxc +lFy pYD -ehy +eTZ xeO xeO xeO @@ -80814,8 +80820,8 @@ xeO xeO xeO xeO -oGR -uYi +nsp +tkN nGZ ieA hQh @@ -80824,8 +80830,8 @@ hQh hQh hQh hQh -fDJ -fDJ +tMd +tMd lRT lRT fjd @@ -81002,9 +81008,9 @@ bQM vzB gws vzB -qaL +mVz czf -aTe +hgL xeO xeO xeO @@ -81026,8 +81032,8 @@ xeO xeO xeO xeO -rrD -uYi +cZo +tkN hjW ieA xeO @@ -81036,8 +81042,8 @@ uKx uKx xew vem -uGI -uGI +aAl +aAl paI tsc paI @@ -81052,10 +81058,10 @@ ogf ogf tsc kSD -sNQ -aeo -aeo -dPr +gnn +gth +gth +qCc cUU mvF kkU @@ -81214,9 +81220,9 @@ bQM vzB gws vzB -qaL +mVz czf -tgK +oIa xeO xeO xeO @@ -81238,8 +81244,8 @@ xeO xeO xeO xeO -cfG -uYi +xMv +tkN hjW ieA xeO @@ -81426,9 +81432,9 @@ bQM vzB gws vzB -qaL +mVz czf -uNs +raz xeO xeO xeO @@ -81450,8 +81456,8 @@ xeO xeO xeO mUA -eLB -uYi +wPf +tkN hjW ieA xeO @@ -81460,8 +81466,8 @@ lIv lIv xFP sov -uGI -uGI +aAl +aAl paI tsc paI @@ -81476,10 +81482,10 @@ ogf ogf tsc vmt -aeo -aeo -aeo -aeo +gth +gth +gth +gth vmt mvF kkU @@ -81638,9 +81644,9 @@ bQM vzB gws vzB -qaL +mVz czf -ehy +eTZ xeO xeO xeO @@ -81662,8 +81668,8 @@ xeO xeO xeO xeO -oGR -uYi +nsp +tkN nGZ ieA xeO @@ -81850,9 +81856,9 @@ bQM vzB gws vzB -qaL +mVz czf -aTe +hgL xeO xeO xeO @@ -81874,8 +81880,8 @@ xeO xeO xeO xeO -rrD -uYi +cZo +tkN hjW ieA xeO @@ -81884,8 +81890,8 @@ uKx uKx xew vem -uGI -uGI +aAl +aAl paI tsc paI @@ -81900,10 +81906,10 @@ cQv ogf tsc vmt -aeo -aeo -aeo -aeo +gth +gth +gth +gth vmt mvF kkU @@ -82062,9 +82068,9 @@ bQM vzB gws vzB -qaL +mVz czf -tgK +oIa xeO xeO xeO @@ -82086,8 +82092,8 @@ xeO xeO xeO xeO -cfG -uYi +xMv +tkN hjW ieA xeO @@ -82274,9 +82280,9 @@ bQM vzB gws vzB -qaL +mVz czf -uNs +raz xeO xeO xeO @@ -82298,8 +82304,8 @@ xeO xeO xeO xeO -jKz -uYi +xFe +tkN hjW ieA xeO @@ -82308,8 +82314,8 @@ lIv lIv xFP sov -uGI -uGI +aAl +aAl paI tsc paI @@ -82324,10 +82330,10 @@ vev ogf tsc vmt -aeo -aeo -aeo -aeo +gth +gth +gth +gth vmt mvF kkU @@ -82486,9 +82492,9 @@ ogf tsc bEk tsc -dxc +lFy pqY -ehy +eTZ doA xeO xeO @@ -82510,8 +82516,8 @@ xeO xeO xeO xeO -kIh -uYi +wZf +tkN nGZ ieA giX @@ -82520,8 +82526,8 @@ giX giX giX giX -fDJ -fDJ +tMd +tMd scM scM xkv @@ -82698,9 +82704,9 @@ bQM vzB gws vzB -qaL +mVz nGZ -aTe +hgL iOa cCx xeO @@ -82722,8 +82728,8 @@ xeO xeO cCx iOa -rrD -uYi +cZo +tkN nGZ nGZ fBD @@ -82735,18 +82741,18 @@ nGZ nGZ nGZ lnK -bcp -akZ -bcp +fhD +mOP +fhD scM xdE xdE xdE xdE scM -jZk -akZ -lOe +psh +mOP +xxl lnK uFs hqb @@ -82910,34 +82916,34 @@ bQM vzB gws vzB -qaL +mVz nGZ -lqI -laz -dDI -vrA -hTh -laz -dDI -vrA -hTh -laz -dDI -vrA -hTh -laz -dDI -vrA -hTh -laz -dDI -vrA -hTh -laz -lqI -uYi -dnX -tIW +pcH +sqW +aqr +rsf +sLR +sqW +aqr +rsf +sLR +sqW +aqr +rsf +sLR +sqW +aqr +rsf +sLR +sqW +aqr +rsf +sLR +sqW +pcH +tkN +myr +tcV nGZ nGZ kdR @@ -82947,28 +82953,28 @@ hjW hjW nGZ eVj -sYB -oTP +uVR +lwm qQl -ekb -tuA -tuA -tuA -fQa -tuA +kIX +sYe +sYe +sYe +wsO +sYe ssb -sYB -oTP -qDq +uVR +lwm +qSc ssb qQl qQl ssb -ekb +kIX epY hrl jBv -ekb +kIX xdE cAW cAW @@ -83122,64 +83128,64 @@ bQM lRT lRT lRT -rbI -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -ipV -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -ncb -fDJ -uYi -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -qes -rRo -sYB -oTP +fCz +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +egP +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +taE +tMd +tkN +myr +myr +myr +myr +myr +myr +myr +myr +nzb +dwU +uVR +lwm ssb -sYB -sYB -eot -eot -eot -sYB -oTP -hZi -ekb +uVR +uVR +brO +brO +brO +uVR +lwm +mDo +kIX qQl -sYB -xmV +uVR +oHq qQl -ekb -sYB -eot -nMg +kIX +uVR +brO +rKx ssb xdE bce @@ -83358,40 +83364,40 @@ nGZ nGZ nGZ nGZ -qaL -fDJ -fDJ -uYi -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -jYU -rRo -aic -ckr +mVz +tMd +tMd +tkN +gGq +gGq +gGq +gGq +gGq +gGq +gGq +gGq +uxg +dwU +qpe +fyX ssb -aic -aic -xZA -xZA -xZA -aic -ckr -hZi -ekb +qpe +qpe +xkL +xkL +xkL +qpe +fyX +mDo +kIX qQl -aic -ckr +qpe +fyX qQl -ekb -aic -xZA -ckr +kIX +qpe +xkL +fyX ssb xdE cAW @@ -83570,10 +83576,10 @@ iUO iUO iUO wzT -bxy -cUd -cUd -ncb +mtz +gGq +gGq +taE nGZ nGZ hjW @@ -83583,28 +83589,28 @@ hjW hjW nGZ fWs -aic -ckr +qpe +fyX qQl -ekb -csL -csL -csL -csL -csL +kIX +nPZ +nPZ +nPZ +nPZ +nPZ sZt -aic -ckr -ekb +qpe +fyX +kIX ssb qQl qQl ssb -ekb +kIX epY hrl jBv -ekb +kIX xdE cAW cAW @@ -83795,9 +83801,9 @@ nGZ nGZ tpw lnK -mVn -gHo -nwS +vLo +khB +vgU scM xdE xdE @@ -83805,13 +83811,13 @@ xdE xdE scM scM -bcp -bcp -ekb -ekb -ekb -ekb -ekb +fhD +fhD +kIX +kIX +kIX +kIX +kIX lnK vJL ssb @@ -84019,11 +84025,11 @@ bQM scM aOC dKB -gmp -csL -csL -csL -uLq +vqK +nPZ +nPZ +nPZ +fVL scM scM scM @@ -84229,8 +84235,8 @@ pcu iWq bQM scM -eNv -lFM +lWW +lOO scM xdE xdE @@ -84858,16 +84864,16 @@ bQM bQM bQM bTo -afk -afk -afk +bCM +bCM +bCM hkh -afk -afk +bCM +bCM hkh -afk -afk -afk +bCM +bCM +bCM iWq bQM bQM @@ -85070,16 +85076,16 @@ bQM bQM bQM bTo -afk -afk -afk +bCM +bCM +bCM pcu -afk -afk +bCM +bCM pcu -afk -afk -afk +bCM +bCM +bCM iWq bQM bQM @@ -85282,16 +85288,16 @@ bQM bQM bQM bTo -afk -afk -afk +bCM +bCM +bCM hkh -afk -afk +bCM +bCM hkh -afk -afk -afk +bCM +bCM +bCM iWq bQM bQM diff --git a/maps/map_files/FOP_v3_Sciannex/standalone/clfship.dmm b/maps/map_files/FOP_v3_Sciannex/standalone/clfship.dmm new file mode 100644 index 000000000000..ab5b65f4a36f --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/standalone/clfship.dmm @@ -0,0 +1,3190 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"af" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ag" = ( +/turf/closed/wall/prison, +/area/fiorina/maintenance) +"ai" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"aw" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_left" + }, +/area/lv624/lazarus/crashed_ship) +"aA" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/panelscorched, +/area/fiorina/maintenance) +"aC" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"aJ" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"aN" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"bk" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"bo" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"bC" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/central_ring) +"bJ" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"bM" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"bO" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"bS" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan2" + }, +/area/lv624/lazarus/crashed_ship) +"cs" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"cw" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/lv624/lazarus/crashed_ship) +"cA" = ( +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"cB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"cF" = ( +/turf/open/floor/almayer/greencorner/north, +/area/lv624/lazarus/crashed_ship) +"cG" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"de" = ( +/turf/open/floor/prison/floor_plate, +/area/lv624/lazarus/crashed_ship) +"dh" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/storage/bag/trash, +/obj/item/tool/screwdriver, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"dj" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"dC" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_2" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"dG" = ( +/obj/item/stack/rods, +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"dN" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_9_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"dO" = ( +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"dZ" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_2" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"eb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"ep" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"et" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"ev" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"ew" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/platingdmg1, +/area/fiorina/station/lowsec) +"ex" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"eG" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/central_ring) +"eI" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/lv624/lazarus/crashed_ship) +"eL" = ( +/obj/item/weapon/gun/rifle/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"eP" = ( +/turf/open/floor/platingdmg1, +/area/fiorina/station/central_ring) +"fb" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/coin/uranium, +/obj/item/bedsheet/green, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"fx" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"fB" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/central_ring) +"fE" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"fF" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"fO" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"fQ" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + dir = 4; + density = 1; + closed = 0 + }, +/turf/open/floor/panelscorched, +/area/fiorina/station/central_ring) +"fT" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"fW" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"gg" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"gk" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/central_ring) +"gs" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"gH" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"gK" = ( +/turf/closed/shuttle/ert, +/area/lv624/lazarus/crashed_ship) +"gW" = ( +/turf/open/space/basic, +/area/fiorina/oob) +"gZ" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/pill_bottle/dexalin/skillless, +/obj/effect/spawner/random/gun/special/midchance, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"hb" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_3" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"hi" = ( +/obj/structure/machinery/floodlight{ + name = "Yard Floodlight" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"hm" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"hn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"hy" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"hB" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"hK" = ( +/obj/effect/vehicle_spawner/van/fixed{ + color = "#4a9eed"; + desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; + name = "CLF Van" + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"hO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"hU" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"hX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"ib" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"iu" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 + }, +/obj/item/storage/backpack/general_belt, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"iy" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"iD" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"iQ" = ( +/turf/open/floor/prison/damaged3, +/area/fiorina/station/central_ring) +"iV" = ( +/turf/open/organic/grass/astroturf, +/area/lv624/lazarus/crashed_ship) +"iY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/backpack/general_belt{ + pixel_y = 3 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"iZ" = ( +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"jb" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) +"jg" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/crashed_ship) +"jk" = ( +/turf/open/floor/almayer/greencorner, +/area/lv624/lazarus/crashed_ship) +"jm" = ( +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"jn" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"jI" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"jM" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"jO" = ( +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"jS" = ( +/obj/item/stool, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"jT" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"kp" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"kr" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/toy/katana, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"kz" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"kB" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"kT" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"kX" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"lg" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"lv" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"lx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Side Entrance" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"lD" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"lG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"lM" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/device/flashlight, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"lO" = ( +/turf/closed/wall/prison, +/area/fiorina/station/central_ring) +"lX" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_3" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"lY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"mf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"mn" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"mv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"mF" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"mG" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_r_w" + }, +/area/lv624/lazarus/crashed_ship) +"nk" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"nn" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"np" = ( +/obj/item/clothing/under/shorts/black, +/turf/open/floor/panelscorched, +/area/fiorina/station/central_ring) +"ns" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper General Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"nt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" + }, +/obj/item/paper/prison_station/pirate_note/clfship, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"nE" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = -3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3 + }, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"nL" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"nX" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"oi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/attached_gun/flamer, +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"on" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -4 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"oG" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"oH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Cargo Hold" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"oM" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/lv624/lazarus/crashed_ship) +"oU" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"oV" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/restraint/handcuffs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/green/southeast, +/area/lv624/lazarus/crashed_ship) +"oW" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"pa" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = -3; + pixel_y = 20 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/lv624/lazarus/crashed_ship) +"po" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/central_ring) +"px" = ( +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"pG" = ( +/obj/item/inflatable, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"pJ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/incendiary{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"pM" = ( +/turf/closed/wall/prison, +/area/fiorina/station/lowsec) +"pP" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"pS" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan9" + }, +/area/lv624/lazarus/crashed_ship) +"pY" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"qq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -8 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 9 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"qv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/rifle/mar40/lmg{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"qz" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_3_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"qO" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 3; + pixel_y = 20 + }, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"qP" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/toolbox, +/obj/item/toy/deck/uno{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"qU" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"qX" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/lowsec) +"rb" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"rc" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/lowsec) +"rg" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_2_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"ri" = ( +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec) +"rn" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"rp" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"rA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"rY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"rZ" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"sb" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"sl" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"sv" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"sA" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"sR" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/turf/open/floor/prison/damaged2, +/area/fiorina/station/central_ring) +"te" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/fiorina/station/central_ring) +"tp" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"ts" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6_1" + }, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"tB" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"tD" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_right" + }, +/area/lv624/lazarus/crashed_ship) +"tN" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"tX" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/lv624/lazarus/crashed_ship) +"uw" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/orange/southwest, +/area/lv624/lazarus/crashed_ship) +"uD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/panelscorched, +/area/fiorina/maintenance) +"uE" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"uF" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"uH" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"uP" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Armoury"; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"va" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/lv624/lazarus/crashed_ship) +"vq" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_color = "green"; + phone_id = "Medical Bay"; + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"vB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"vD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/transmitter/clf_net/rotary{ + phone_category = "CR-116"; + phone_color = "yellow"; + phone_id = "Engineering" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"vL" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"vQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"wc" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"wd" = ( +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"wn" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = -3 + }, +/turf/open/floor/almayer/green/southwest, +/area/lv624/lazarus/crashed_ship) +"wr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 3 + }, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"wu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"wL" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"wV" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"xc" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"xr" = ( +/obj/item/reagent_container/food/drinks/cans/sodawater, +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"xS" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/maintenance) +"xT" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"xX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Engineering Storage" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"xZ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"yf" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/blue/north, +/area/lv624/lazarus/crashed_ship) +"yq" = ( +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"yy" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"yI" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"yT" = ( +/obj/structure/lattice, +/turf/open/space, +/area/fiorina/oob) +"yV" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"zk" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"zm" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"zq" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"zs" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"zu" = ( +/obj/structure/machinery/floodlight, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"zx" = ( +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"zR" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_medic, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"zY" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan8" + }, +/area/lv624/lazarus/crashed_ship) +"Ay" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"AP" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"AQ" = ( +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"AU" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + density = 1; + closed = 0 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"AY" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Bc" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Bd" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Bm" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/central_ring) +"Bv" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Bx" = ( +/obj/item/circuitboard/apc{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/cell{ + pixel_x = -2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Bz" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/lv624/lazarus/crashed_ship) +"BJ" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" + }, +/area/lv624/lazarus/crashed_ship) +"BL" = ( +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"BO" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"BR" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/lv624/lazarus/crashed_ship) +"BT" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/box/holobadge{ + pixel_y = 3 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"BZ" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"Cf" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"Cr" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"CB" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"CO" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Dg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/heavy_barrel, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"Dp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Dt" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Dv" = ( +/obj/item/inflatable, +/turf/open/floor/platingdmg1, +/area/fiorina/station/lowsec) +"DG" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"DJ" = ( +/obj/structure/girder, +/obj/item/stack/rods, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"DO" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"DY" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Ef" = ( +/obj/item/stool, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Eg" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"Ej" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/maintenance) +"Eq" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"Eu" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"EC" = ( +/turf/open/floor/almayer_hull, +/area/fiorina/oob) +"Fb" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"Fh" = ( +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Fi" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"Fv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"FX" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"FZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Gu" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/turf/open/floor/almayer/orange/northeast, +/area/lv624/lazarus/crashed_ship) +"Gv" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"GT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"GW" = ( +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Ht" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"HE" = ( +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"HG" = ( +/obj/item/ammo_casing{ + icon_state = "casing_9_1" + }, +/turf/open/floor/prison/yellowcorner/west, +/area/fiorina/station/lowsec) +"HS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/east, +/area/lv624/lazarus/crashed_ship) +"Ia" = ( +/obj/structure/machinery/power/smes/buildable/charged, +/turf/open/floor/almayer/orange/north, +/area/lv624/lazarus/crashed_ship) +"ID" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"IV" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"IW" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"IZ" = ( +/obj/structure/machinery/computer/communications{ + icon_state = "commb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/lv624/lazarus/crashed_ship) +"Ja" = ( +/obj/item/device/binoculars/civ, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"Jg" = ( +/obj/structure/machinery/computer/station_alert{ + icon_state = "atmosb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Jk" = ( +/obj/item/stool, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Jn" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"Jz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Medical Bay" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"JB" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_4_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"JH" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"JN" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"JS" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan21" + }, +/area/lv624/lazarus/crashed_ship) +"JZ" = ( +/obj/structure/lattice, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space, +/area/fiorina/oob) +"Kk" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Kt" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "clf_umbilical_1"; + pixel_x = 1; + pixel_y = 28; + range = 20 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Kx" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"KA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_y = 1 + }, +/obj/item/stack/sheet/plasteel{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/orange/southeast, +/area/lv624/lazarus/crashed_ship) +"KD" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"KG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"KI" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"KM" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/crashed_ship) +"KP" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"KQ" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/lv624/lazarus/crashed_ship) +"KX" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Ln" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"Lu" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"LH" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/fiorina/station/central_ring) +"LQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_3" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"LT" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_2_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"LU" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1" + }, +/area/lv624/lazarus/crashed_ship) +"LV" = ( +/turf/open/floor/platingdmg1, +/area/fiorina/station/lowsec) +"Ma" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"Mh" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"Mr" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -10 + }, +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"ML" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/lv624/lazarus/crashed_ship) +"MM" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"Nk" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"Nl" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"Nt" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Nu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"Nv" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"NS" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Oh" = ( +/turf/open/floor/prison/yellow/north, +/area/lv624/lazarus/crashed_ship) +"Ok" = ( +/turf/open/floor/panelscorched, +/area/fiorina/station/central_ring) +"Om" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"Oo" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"Os" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"Ow" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_2" + }, +/area/lv624/lazarus/crashed_ship) +"OA" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Cargo Bay"; + pixel_y = 32 + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"OR" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/shiva, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"Pj" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Pm" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3" + }, +/area/lv624/lazarus/crashed_ship) +"Po" = ( +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"Pv" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_s_w" + }, +/area/lv624/lazarus/crashed_ship) +"Px" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"PH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Dining Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"PI" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"PL" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"Qa" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Qc" = ( +/obj/item/storage/box/donkpockets, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"Qd" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Qh" = ( +/turf/open/space, +/area/fiorina/oob) +"Qk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"Qx" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Rd" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/clothing/accessory/storage/webbing, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"Rk" = ( +/obj/item/clothing/under/shorts/green, +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/turf/open/floor/platingdmg1, +/area/fiorina/station/central_ring) +"Rv" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"RF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bridge" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"RI" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"RM" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"RW" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Si" = ( +/obj/item/bedsheet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"Sn" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer/green/northwest, +/area/lv624/lazarus/crashed_ship) +"Sr" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"SB" = ( +/turf/open/floor/prison, +/area/lv624/lazarus/crashed_ship) +"SC" = ( +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"SD" = ( +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"SV" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"Te" = ( +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"To" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"Tt" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/adv, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Tx" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/lv624/lazarus/crashed_ship) +"TP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"TU" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + icon_state = "plasteel_closed_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"TV" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"Ux" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"UA" = ( +/obj/structure/closet, +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"UO" = ( +/turf/open/floor/panelscorched, +/area/fiorina/maintenance) +"UT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/emerald/northeast, +/area/lv624/lazarus/crashed_ship) +"UV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"Ve" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"Vl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Vp" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Vu" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_6_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"VD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"VT" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"VV" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"VW" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"Wl" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"Wq" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/lv624/lazarus/crashed_ship) +"Wu" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"WB" = ( +/obj/structure/girder/displaced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"WC" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"Xb" = ( +/obj/item/stack/rods, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Xe" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Xh" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"Xp" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/lv624/lazarus/crashed_ship) +"Xq" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"XH" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) +"Yg" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"Yt" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2" + }, +/area/lv624/lazarus/crashed_ship) +"Yy" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_1" + }, +/area/lv624/lazarus/crashed_ship) +"YD" = ( +/obj/structure/girder, +/turf/open/floor/panelscorched, +/area/fiorina/station/lowsec) +"YL" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/lv624/lazarus/crashed_ship) +"YN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bunk Beds" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Zb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Zj" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"Zl" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_white_t_up" + }, +/area/lv624/lazarus/crashed_ship) +"Zp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/emerald/northwest, +/area/lv624/lazarus/crashed_ship) +"Zz" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing fifty reposessed USCM MRE packets."; + name = "\improper CLF Supply MRE crate (x50)" + }, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"ZD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/platingdmg1, +/area/fiorina/station/central_ring) +"ZH" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"ZY" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) + +(1,1,1) = {" +lv +lv +po +po +po +po +po +po +lv +lv +po +yT +yT +Ej +Ej +Ej +Ej +zx +zx +zx +zx +hX +ag +ag +nk +xc +Sr +zx +Qc +zx +zx +zx +ag +pM +nk +yq +"} +(2,1,1) = {" +Jn +AQ +Mh +TP +RI +Jn +Mh +nL +Jn +Jn +po +po +gW +Qh +Qh +Qh +Ej +To +aA +ag +uD +UO +uF +zx +nk +xc +Sr +Ma +zx +xS +zx +zx +zx +pM +nk +yq +"} +(3,1,1) = {" +Mh +Mh +Mh +Mh +aC +Mh +Mh +Ok +Ok +eP +eP +po +fB +Bz +gK +gK +mG +gK +gK +tX +aJ +kX +Yg +uF +SC +SC +Sr +zx +eb +ag +gZ +hO +UA +pM +nk +yq +"} +(4,1,1) = {" +Wl +Wl +Wl +Mh +Eu +Cr +Wl +Wl +Wl +Wl +eP +eP +eP +xT +kT +uw +Yy +Zp +yV +zY +tX +aJ +kX +Yg +SC +LV +yy +pM +pM +pM +pM +pM +pM +pM +XH +fF +"} +(5,1,1) = {" +Wl +Wl +Wl +Mh +aC +eP +Wl +Wl +Wl +Wl +Wl +Bz +gK +va +pa +BR +Yy +Qk +Nl +VW +zY +Wq +UO +ag +LV +LV +SC +LV +YD +YD +pM +nn +mv +pM +hm +hm +"} +(6,1,1) = {" +Zj +Wl +Wl +eP +Eu +Ok +Wl +Wl +Wl +Wl +Wl +JS +ZH +Bx +VV +jm +Yy +gH +BL +Oo +wu +tD +gK +gK +gK +gK +gK +Wq +SC +YD +pM +SC +fb +pM +zs +Fb +"} +(7,1,1) = {" +Wl +Wl +Wl +Ok +lg +Cr +PI +zu +Bz +iV +KP +dO +Ia +jm +tN +vD +Yy +vq +jm +jm +nt +Yy +Zz +KI +Nv +fW +rb +zY +tX +aJ +kX +Yg +ad +pM +nk +HE +"} +(8,1,1) = {" +Wl +Wl +vL +Ok +bO +eP +Bz +Dt +va +iZ +Bd +Yy +Gu +jm +Wu +KA +Yy +rY +Oo +jm +fE +Yy +bJ +sl +hK +iZ +sl +Te +zY +tX +aJ +kX +Yg +ex +nk +yq +"} +(9,1,1) = {" +Wl +Wl +Wl +eP +pY +eP +DJ +dh +wV +Te +GW +Zl +Ow +xX +Ow +Ow +Pv +bo +eI +zR +vB +Yy +Rv +sl +bJ +iZ +uH +iy +Te +zY +tX +aJ +kX +Yg +nk +yq +"} +(10,1,1) = {" +Wl +hi +Wl +eP +Bz +WB +Pv +FZ +de +GW +iZ +iZ +jm +jm +Mr +wn +Yy +iu +Oo +jm +BL +oH +jg +Kx +jg +KM +IV +Vp +LT +Te +zY +gK +gK +Wq +Dv +yq +"} +(11,1,1) = {" +Wl +Wl +LQ +Bz +va +de +dG +iZ +Gv +Vl +Te +Yy +MM +jm +jm +nE +Yy +UT +HS +jm +jm +jm +Te +Kk +Xb +ib +ZY +RM +hb +lX +qU +ID +Te +bS +SC +LV +"} +(12,1,1) = {" +Ok +Ok +LH +va +GW +iZ +Yy +GW +iZ +ID +Bv +Yy +NS +BL +jm +Po +Zl +Ow +Ow +jm +Jz +Pv +Nt +Fh +ID +rg +Bc +Bv +ID +iZ +Tx +iZ +GW +bS +SC +yq +"} +(13,1,1) = {" +sb +Jn +Xp +IZ +Ef +GW +Dt +Dp +GW +iZ +ID +Xq +IW +ep +jm +jm +ns +jm +jm +jm +fO +Yy +Kt +iZ +AP +iZ +Qd +Te +GW +Oh +GW +Gv +sl +bk +pG +LV +"} +(14,1,1) = {" +Ok +Mh +Xp +GW +de +tB +Zl +oU +GW +ID +Ow +Pv +rZ +px +px +SD +BL +fO +jm +fO +wd +xT +fT +qz +Te +ID +Vu +Te +Tx +Oh +iZ +GW +iZ +xZ +SC +SC +"} +(15,1,1) = {" +Wl +Wl +Xp +Te +Gv +iZ +RF +Te +iZ +Gv +iY +Zl +Ow +Ow +Ow +Ow +Pv +Fv +jm +rn +fx +Yy +BO +KD +iZ +uE +AU +ID +ID +GW +ID +SB +sl +AY +LV +SC +"} +(16,1,1) = {" +Wl +hi +Xp +Jg +jS +Te +iZ +Zb +ID +ID +ep +Yy +nX +zm +Tt +GT +Yy +fO +qv +qq +wd +xT +Te +zk +JB +ID +AU +SB +iZ +aN +SB +SB +sl +xZ +SC +SC +"} +(17,1,1) = {" +Wl +Wl +YL +cw +Te +ID +Yy +GW +ID +iZ +hn +Xq +JH +pJ +qP +GT +Yy +Om +lY +on +fx +Yy +OA +Te +Te +GW +wc +iZ +SB +Oh +GW +SB +SB +VT +SC +iD +"} +(18,1,1) = {" +Wl +dZ +Wl +YL +cw +kB +xT +ID +BL +jm +BL +Yy +CO +KX +KX +KX +Yy +uP +DG +pP +wd +Yy +cG +TU +SV +Te +RW +qU +Te +GW +iZ +iZ +GW +bS +LV +yq +"} +(19,1,1) = {" +Wl +sv +JN +kz +xT +DY +Yy +Xe +BL +jm +jm +PH +jm +jm +jm +jm +PH +jm +jm +ev +fx +sA +iZ +mF +eL +rp +gs +dj +dj +yI +qU +Te +ID +bS +SC +yq +"} +(20,1,1) = {" +Wl +sv +Wl +eP +YL +ML +Pv +Pj +Xe +jm +BL +BL +KX +KX +KX +KX +BL +BL +jm +fO +wd +oU +Te +wV +Kk +CB +GW +hU +dN +Te +pS +ML +ML +oM +SC +LV +"} +(21,1,1) = {" +Wl +sv +Wl +eP +Ok +eP +Yy +Ux +jn +jm +BL +Zl +Ow +Ow +Ow +Ow +Pv +yf +jm +rn +fx +Yy +Nt +iZ +Qx +GW +Qa +Kk +mF +pS +KQ +Pm +Yt +LU +LV +hm +"} +(22,1,1) = {" +Wl +sv +JN +Ok +eP +eG +YL +ML +cw +jm +BL +Yy +Sn +kr +wr +cF +YN +BL +jm +fO +wd +Yy +af +Te +jO +iZ +Ht +Te +pS +KQ +Pm +Yt +LU +qX +jI +Px +"} +(23,1,1) = {" +Mh +dC +Bm +bC +gk +Ok +eP +Lu +YL +Te +lx +Pv +rA +ep +Jk +jm +jm +DO +jm +jm +Dg +Yy +lG +ID +GW +ID +mn +pS +KQ +Pm +Yt +LU +UV +pM +LV +Si +"} +(24,1,1) = {" +Jn +VD +xr +et +FX +et +sR +ZD +np +eP +te +JS +gg +vQ +SD +jk +Yy +jM +cw +BL +oi +aw +ML +ML +ML +ML +ML +oM +LV +LV +pM +jb +BT +LV +nk +xc +"} +(25,1,1) = {" +lv +po +Ln +Ay +Ay +Ay +lD +lO +Xh +Rk +fQ +YL +ML +cw +qO +jT +Yy +Eq +Yy +cB +pS +oM +LV +LV +ew +LV +SC +LV +LV +hy +pM +BZ +ad +pM +Ja +xc +"} +(26,1,1) = {" +yT +po +lM +iQ +tp +Bm +Fi +lO +lO +bM +bM +lO +eP +JS +Rd +oV +Yy +cs +Yy +pS +KQ +Pm +Yt +LU +zq +LV +HG +Fb +SC +Cf +Fb +Fb +ai +hm +nk +xc +"} +(27,1,1) = {" +JZ +lv +Ve +KG +tp +Ve +wL +kp +oW +Ve +Nk +Ve +Ve +YL +ML +ML +BJ +ML +BJ +KQ +Pm +Yt +LU +SC +LV +iD +xc +xc +Eg +ri +TV +TV +WC +hm +nk +xc +"} +(28,1,1) = {" +EC +lv +oG +oG +Ve +oG +oG +kp +oW +Ln +OR +Ve +Ln +OR +lv +hB +hB +gW +gW +rc +LV +ts +PL +mf +xc +xc +xc +cA +xc +Os +pM +BZ +ad +pM +Nu +xc +"} diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index c359e4ae0a0e..78dbbd22b41e 100644 --- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm +++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm @@ -17,12 +17,6 @@ /obj/structure/girder, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) -"aag" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "aah" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/ice/layer1, @@ -93,10 +87,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"aar" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "aas" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -612,12 +602,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"acn" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "aco" = ( /obj/structure/stairs/perspective/ice{ icon_state = "p_stair_full" @@ -631,13 +615,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"acq" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1; - pixel_y = 4 - }, -/turf/open/floor/shiva/purple/north, -/area/shiva/interior/lz2_habs) "acr" = ( /obj/structure/fence{ health = 0 @@ -667,13 +644,6 @@ /obj/effect/spider/cocoon, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/right_spiders) -"acx" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/medseceng) "acA" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -682,9 +652,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"acC" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/shiva/exterior/junkyard/fortbiceps) "acD" = ( /turf/closed/shuttle/elevator/button/arrivals, /area/shiva/interior/colony/central) @@ -718,48 +685,16 @@ "acT" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/medseceng) -"acU" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) -"acW" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/shiva/exterior/junkyard/fortbiceps) -"acY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "ada" = ( /obj/structure/reagent_dispensers, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"ade" = ( -/obj/structure/fence, -/turf/open/floor/shiva/redfull/west, -/area/shiva/exterior/cp_colony_grounds) -"adf" = ( -/turf/open/floor/dark2, -/area/shiva/interior/colony/central) -"adi" = ( -/turf/open/floor/shiva/yellowcorners/east, -/area/shiva/interior/colony/research_hab) "adj" = ( /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, /obj/item/reagent_container/glass/bucket, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"ado" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"adp" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "adq" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 4; @@ -767,6 +702,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"adr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "ady" = ( /obj/item/tool/shovel/snow, /turf/open/floor/plating, @@ -793,69 +733,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"adJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"adR" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"adS" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/research_hab) -"adT" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"adV" = ( -/obj/structure/surface/table, -/obj/item/device/reagent_scanner, -/obj/effect/landmark/good_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"adW" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/research_hab) -"adX" = ( -/obj/structure/machinery/cryo_cell, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"adY" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"adZ" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_colony_grounds) -"aea" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/research_hab) -"aeb" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/research_hab) "aec" = ( /obj/structure/largecrate/random/mini/med{ pixel_x = -7; @@ -873,89 +750,15 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"aef" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "aeg" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aeh" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) "aek" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ael" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"aeo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"aeq" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"aes" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"aet" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"aev" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) -"aew" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/research_hab) -"aex" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/research_hab) -"aez" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"aeA" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) -"aeC" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) "aeD" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -985,41 +788,6 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"aeM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"aeN" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/storage/belt/marine, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) -"aeP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/research_hab) -"aeQ" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/research_hab) -"aeR" = ( -/obj/structure/machinery/light/double, -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) "aeU" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -1043,58 +811,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"afd" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"aff" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"afh" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"afi" = ( -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) -"afm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"afp" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"afv" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"afw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"afx" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"afz" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/research_hab) "afA" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, @@ -1107,64 +823,6 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"afE" = ( -/obj/structure/surface/table, -/obj/item/stack/nanopaste, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"afF" = ( -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) -"afL" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"afM" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"afN" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) -"afP" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"afQ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/purplefull/north, -/area/shiva/interior/colony/research_hab) -"afR" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"afT" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"afV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"afX" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) "afY" = ( /obj/item/weapon/ice_axe/green, /turf/open/auto_turf/ice/layer1, @@ -1173,19 +831,6 @@ /obj/structure/closet/bodybag, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"aga" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"agb" = ( -/obj/structure/bed/chair/wheelchair, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) "agc" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -1200,35 +845,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"age" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"agg" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"agh" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"agl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"agm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) "agp" = ( /obj/structure/noticeboard{ pixel_y = 32 }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"agq" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "agr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Security Checkpoint"; @@ -1254,19 +880,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"agx" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "agy" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"agz" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/platebot, -/area/shiva/interior/colony/research_hab) "agA" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 @@ -1279,32 +896,17 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"agC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"agF" = ( -/obj/structure/machinery/landinglight/ds2, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"agJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/technology_scanner, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/medseceng) -"agK" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" +"agG" = ( +/obj/structure/safe, +/obj/item/spacecash/c1000{ + pixel_x = -2; + pixel_y = -1 }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) +/obj/item/spacecash/c1000, +/obj/item/spacecash/c500, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "agM" = ( /obj/item/ammo_box/magazine/nailgun, /turf/open/auto_turf/snow/layer1, @@ -1315,42 +917,12 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"agY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/research_hab) -"agZ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/research_hab) -"aha" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/research_hab) -"ahe" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) "ahh" = ( /obj/structure/platform/shiva/catwalk{ dir = 1 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) -"ahl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/medseceng) "ahq" = ( /obj/structure/filingcabinet/security, /obj/effect/landmark/objective_landmark/close, @@ -1362,10 +934,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ahu" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "ahv" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Underground Security Custodial Closet"; @@ -1373,114 +941,34 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ahy" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "ahC" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_2" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"ahD" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/east, -/area/shiva/interior/colony/medseceng) -"ahE" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"ahO" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"ahP" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/weapon/gun/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"ahQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/cell/high, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"ahR" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"ahS" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) -"ahT" = ( +"ahG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"ahV" = ( +/obj/item/clothing/shoes/snow, /obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) -"ahU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) -"ahW" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/exterior/cp_colony_grounds) "ahX" = ( /turf/closed/shuttle/elevator/gears, /area/shiva/interior/aerodrome) -"ahZ" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"aia" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"aii" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) "aij" = ( /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer3, @@ -1492,15 +980,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"aim" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/weapon/gun/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "ain" = ( /obj/structure/flora/bush/snow{ icon_state = "snowbush_2" @@ -1526,86 +1005,14 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aiv" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"aix" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/medseceng) -"aiy" = ( -/obj/structure/surface/table, -/obj/item/storage/surgical_tray, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) "aiz" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"aiD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"aiE" = ( -/obj/item/ammo_magazine/flamer_tank, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) "aiF" = ( /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"aiG" = ( -/obj/structure/machinery/optable, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"aiH" = ( -/obj/structure/machinery/computer/operating, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"aiJ" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"aiK" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"aiL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/custom/metal_foam{ - pixel_x = 11; - pixel_y = 5 - }, -/obj/item/explosive/grenade/custom/metal_foam{ - pixel_x = 10 - }, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) -"aiO" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) "aiQ" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ dir = 4; @@ -1620,64 +1027,10 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"aiT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/cell_charger, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) -"aiV" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/research_hab) "aiW" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"aiZ" = ( -/obj/structure/surface/rack, -/obj/item/cell, -/obj/item/cell, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) -"ajb" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) -"ajd" = ( -/obj/item/stack/snow{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/stack/snow, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"aje" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"ajg" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/research_hab) -"aji" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/medseceng) -"ajq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/blue/east, -/area/shiva/interior/colony/n_admin) "ajr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -1686,9 +1039,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"aju" = ( -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/colony/central) "ajw" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ name = "\improper Colony Power Substation" @@ -1698,48 +1048,14 @@ "ajy" = ( /turf/open/floor/shiva, /area/shiva/interior/caves/cp_camp) -"ajD" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"ajE" = ( -/obj/item/stack/snow{ - pixel_x = -7 - }, -/obj/item/tool/shovel/snow, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) "ajF" = ( /obj/item/tool/shovel/etool, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"ajJ" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/medseceng) -"ajK" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"ajL" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "ajM" = ( /obj/structure/ore_box, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ajN" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "ajO" = ( /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) @@ -1747,61 +1063,14 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"ajU" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/medseceng) "ajV" = ( /obj/structure/curtain, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ajW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) -"ajX" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) -"ajY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/medseceng) -"aka" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) "akf" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"akh" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"aki" = ( -/turf/open/floor/darkgreen2/northeast, -/area/shiva/interior/colony/botany) -"akj" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"akl" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) "ako" = ( /obj/structure/barricade/snow{ dir = 4 @@ -1829,41 +1098,10 @@ /obj/item/stack/sheet/wood/small_stack, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"akA" = ( -/obj/item/tool/shovel/snow, -/turf/open/floor/shiva/greenfull/west, -/area/shiva/interior/colony/n_admin) -"akE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Sports Center"; - req_access_txt = "100" - }, -/turf/open/floor/dark2, -/area/shiva/interior/colony/central) -"akF" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/warehouse) "akG" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"akH" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"akI" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "akL" = ( /obj/structure/machinery/light/double{ dir = 8; @@ -1901,46 +1139,10 @@ /obj/item/weapon/baton, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"akX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "ala" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"ald" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"ale" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"all" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "alr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Colony Mining Station"; @@ -1948,38 +1150,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"alt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"alx" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/wood{ - amount = 15 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"aly" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"alz" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) "alA" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/junkyard) @@ -2026,35 +1196,12 @@ /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/warehouse) -"alV" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) "alW" = ( /obj/structure/barricade/deployable{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/warehouse) -"alZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"ama" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/beakers, -/obj/item/reagent_container/glass/beaker/bluespace{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"amh" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "ami" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -2070,21 +1217,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"amk" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"amn" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"amr" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "amu" = ( /turf/closed/wall/shiva/prefabricated/red, /area/shiva/interior/caves/research_caves) @@ -2098,27 +1230,9 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"amA" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"amE" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"amG" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +"amF" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/exterior/cp_colony_grounds) "amH" = ( /obj/structure/bed/chair{ dir = 4 @@ -2143,15 +1257,6 @@ /obj/item/folder/red, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"amL" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "amM" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -2159,32 +1264,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"amN" = ( -/obj/item/tool/crowbar, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"amO" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"amP" = ( -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "amQ" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"amR" = ( -/obj/structure/prop/ice_colony/ground_wire{ - layer = 2.98 - }, -/turf/open/floor/shiva/purple, -/area/shiva/interior/lz2_habs) -"amU" = ( -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) "amX" = ( /obj/item/paper_bin{ pixel_x = 7; @@ -2198,22 +1281,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"anb" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 - }, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"anc" = ( -/turf/closed/wall/shiva/prefabricated/white, -/area/shiva/interior/aux_power) -"anm" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "anq" = ( /obj/structure/toilet, /turf/open/floor/plating, @@ -2222,39 +1289,6 @@ /obj/vehicle/train/cargo/trolley, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"ant" = ( -/obj/item/roller, -/turf/open/floor/shiva/wred/southeast, -/area/shiva/interior/colony/medseceng) -"any" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) -"anz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 9 - }, -/obj/item/stack/sheet/mineral/phoron{ - pixel_x = -1; - pixel_y = 14 - }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"anA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"anE" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "anF" = ( /obj/item/reagent_container/food/drinks/bottle/limejuice{ pixel_x = 11; @@ -2281,11 +1315,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"anI" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) "anJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/wirerod, @@ -2297,50 +1326,6 @@ /obj/item/ammo_magazine/revolver/cmb, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"anR" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"anU" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"anV" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/shiva/green/north, -/area/shiva/interior/colony/botany) -"anX" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/n_admin) -"anY" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "anZ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -2358,74 +1343,9 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aoi" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"aop" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"aor" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"aos" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"aot" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"aov" = ( -/obj/structure/barricade/handrail/wire, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"aow" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"aoy" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"aoz" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -10; - pixel_y = 19 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"aoA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"aoB" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/interior/colony/botany) "aoK" = ( /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"aoL" = ( -/obj/item/storage/pouch/flare/full, -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) -"aoP" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) "aoX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -2519,11 +1439,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"apk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) "apm" = ( /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" @@ -2533,18 +1448,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"apv" = ( -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"apz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"apB" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/shiva/redfull/west, +"apA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) "apD" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -2552,10 +1459,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"apE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "apF" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" @@ -2571,57 +1474,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"apL" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/green/northeast, -/area/shiva/interior/colony/botany) -"apO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"apT" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/shiva/green/northeast, -/area/shiva/interior/colony/botany) -"apW" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"apY" = ( -/obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/handful/shotgun/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"apZ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 5 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"aqb" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = 12; - pixel_y = 28 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "aqc" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -2640,6 +1492,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"aqj" = ( +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/colony/medseceng) +"aqo" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "aqC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -2687,12 +1546,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"ard" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) +"aqY" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/warehouse) "arh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -2738,24 +1595,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"arB" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"arK" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/apc, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/research_hab) -"arL" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "arN" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 1 @@ -2778,11 +1617,10 @@ /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"arU" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/research_hab) +"arV" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "arW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -2804,20 +1642,6 @@ /obj/item/stack/folding_barricade, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"asd" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/bed/chair, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"ase" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) "ash" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer3, @@ -2883,6 +1707,10 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"asF" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "asG" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8; @@ -2898,16 +1726,6 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"asJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/assembly/timer, -/obj/item/attachable/flashlight{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) "asK" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -2939,11 +1757,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/valley_huts/disposals) -"asU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz1_console/two) "asW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -2997,34 +1810,6 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"aty" = ( -/obj/item/trash/candy, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) -"atB" = ( -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) -"atC" = ( -/obj/item/trash/raisins, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) -"atD" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) -"atF" = ( -/obj/item/evidencebag, -/obj/item/trash/pistachios, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) -"atG" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/plating/warnplate, -/area/shiva/interior/valley_huts/disposals) "atH" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -3039,41 +1824,6 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"atS" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"atT" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black{ - pixel_y = 4 - }, -/obj/item/device/flashlight{ - pixel_x = -3; - pixel_y = -13 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) -"aub" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"aud" = ( -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/research_hab) -"aue" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/research_hab) -"auf" = ( -/turf/open/floor/darkbrown2/west, -/area/shiva/interior/valley_huts/disposals) "aug" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -3100,64 +1850,16 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"aup" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "aut" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"auB" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"auM" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"auS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/hotchili, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"auT" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"auU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/darkbrown2/northwest, -/area/shiva/interior/valley_huts/disposals) -"auV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/darkbrown2/north, -/area/shiva/interior/valley_huts/disposals) -"auZ" = ( -/obj/structure/machinery/door/window/northright, -/turf/open/floor/darkbrown2/northeast, -/area/shiva/interior/valley_huts/disposals) -"ava" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) "ave" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -3169,25 +1871,6 @@ /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"avu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"avx" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) "avz" = ( /obj/structure/surface/rack, /obj/item/bodybag/tarp/snow{ @@ -3204,34 +1887,17 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"awc" = ( -/turf/open/floor/darkbrown2/east, -/area/shiva/interior/valley_huts/disposals) -"awj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"awq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Disposals" +"awd" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 8 }, -/turf/open/floor/dark2, -/area/shiva/interior/valley_huts/disposals) +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "awr" = ( /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"awA" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "awK" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" @@ -3261,11 +1927,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"axd" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "axe" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -3273,31 +1934,12 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"axf" = ( -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) -"axq" = ( -/obj/item/ammo_magazine/rifle/boltaction{ - pixel_x = -5; - pixel_y = -9 +"axh" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"axt" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/storage/toolbox/emergency, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/west, -/area/shiva/interior/valley_huts/disposals) -"axv" = ( -/turf/open/floor/darkbrowncorners2, -/area/shiva/interior/valley_huts/disposals) -"axw" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/darkbrown2/southeast, -/area/shiva/interior/valley_huts/disposals) +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "axx" = ( /obj/structure/ice/ice_rock/cornerOverlay{ dir = 1 @@ -3318,35 +1960,9 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"axG" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"axH" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/garage) -"axI" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) "axJ" = ( /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"axK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"axM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) "axN" = ( /obj/structure/machinery/door_control{ id = "garage_ice_2"; @@ -3354,68 +1970,6 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/garage) -"axO" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"axP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/garage) -"axQ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/garage) -"axR" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"axS" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/good_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southwest, -/area/shiva/interior/valley_huts/disposals) -"axT" = ( -/obj/structure/surface/table, -/obj/item/device/lightreplacer, -/obj/item/clothing/mask/rebreather, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2, -/area/shiva/interior/valley_huts/disposals) -"axU" = ( -/turf/open/floor/darkbrown2, -/area/shiva/interior/valley_huts/disposals) -"axV" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/darkbrown2, -/area/shiva/interior/valley_huts/disposals) -"axZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2, -/area/shiva/interior/valley_huts/disposals) -"ayb" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight/flare, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkbrown2/southeast, -/area/shiva/interior/valley_huts/disposals) "ayc" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -3432,42 +1986,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"ayo" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"ayx" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/garage) -"ayy" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellowcorners/north, -/area/shiva/interior/garage) "ayz" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"ayB" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) -"ayG" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "ayH" = ( /obj/item/clothing/shoes/snow, /turf/open/auto_turf/snow/layer1, @@ -3520,59 +2042,10 @@ /obj/effect/decal/warning_stripes, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"azd" = ( -/obj/item/storage/toolbox/emergency, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/southwest, -/area/shiva/interior/colony/medseceng) -"aze" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"azf" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"azg" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"azk" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) "azm" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"azo" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"azp" = ( -/obj/vehicle/train/cargo/engine, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"azq" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) "azx" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer2, @@ -3592,43 +2065,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"azF" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"azH" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/research_hab) -"azI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"azK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) "azM" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"azO" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "azS" = ( /obj/structure/surface/table, /obj/item/clipboard, @@ -3638,36 +2078,6 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"azY" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) -"azZ" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) -"aAc" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"aAg" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"aAh" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"aAi" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"aAj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "aAl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -3679,29 +2089,24 @@ /obj/effect/landmark/corpsespawner/security, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"aAn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"aAw" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"aAp" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"aAM" = ( -/obj/structure/surface/table, -/obj/item/device/radio, /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"aBe" = ( -/obj/item/bodybag, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"aBf" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) "aBi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -3718,45 +2123,11 @@ }, /turf/open/floor/plating, /area/shiva/interior/garage) -"aBk" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"aBl" = ( -/obj/item/bodybag, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"aBm" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"aBs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"aBt" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "aBA" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"aBB" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) "aBE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NS-center" @@ -3765,24 +2136,6 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"aBK" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"aBU" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"aBV" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) -"aBZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) "aCb" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -3819,24 +2172,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/garage) -"aCv" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/rebreather, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/garage) -"aCw" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/yellowcorners, -/area/shiva/interior/garage) -"aCx" = ( -/obj/structure/machinery/light/double, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) "aCy" = ( /obj/structure/surface/table, /obj/structure/machinery/computer3/laptop/secure_data{ @@ -3844,18 +2179,6 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"aCz" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/garage) -"aCA" = ( -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/garage) -"aCB" = ( -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/research_hab) "aCC" = ( /obj/structure/largecrate/random/mini/med, /turf/open/auto_turf/snow/layer2, @@ -3902,24 +2225,6 @@ "aDn" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/medseceng) -"aDo" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"aDq" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) "aDu" = ( /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) @@ -3937,30 +2242,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"aDE" = ( -/obj/structure/closet/crate, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"aDF" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"aDG" = ( -/obj/structure/machinery/door_control{ - id = "st_17"; - name = "Storage Unit Lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) "aDH" = ( /obj/structure/machinery/door_control{ id = "st_17"; @@ -3986,10 +2267,6 @@ /obj/item/stack/sheet/wood, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"aDR" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) "aDS" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ id = "st_17"; @@ -3997,21 +2274,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/valley_huts/no2) -"aDW" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"aEd" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = 2; - pixel_y = -1 - }, -/turf/closed/wall/shiva/prefabricated/white, -/area/shiva/interior/aux_power) "aEq" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, @@ -4112,35 +2374,6 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/interior/oob) -"aFr" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"aFs" = ( -/obj/structure/machinery/door_control{ - id = "st_18"; - name = "Storage Unit Lock"; - normaldoorcontrol = 1; - pixel_y = 24; - req_access_txt = "100"; - specialfunctions = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 50 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) -"aFu" = ( -/obj/item/storage/pouch/firstaid/full/pills, -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) "aFz" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, @@ -4157,6 +2390,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) +"aFD" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "aFI" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -4177,38 +2414,13 @@ "aFO" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"aFZ" = ( -/obj/structure/machinery/light/double{ +"aFY" = ( +/obj/structure/barricade/sandbags/wired{ dir = 1; - pixel_y = 9 + icon_state = "sandbag_0" }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"aGb" = ( -/obj/item/stack/rods, -/turf/open/floor/corsat/squares, -/area/shiva/interior/aerodrome) -"aGc" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/shiva/interior/aerodrome) -"aGd" = ( -/turf/open/floor/corsat/squares, -/area/shiva/interior/aerodrome) -"aGe" = ( -/obj/structure/prop/structure_lattice{ - dir = 8; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/shiva/interior/aerodrome) +/area/shiva/exterior/lz2_fortress) "aGf" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, @@ -4254,18 +2466,17 @@ /obj/item/stack/rods, /turf/open/shuttle/elevator/grating, /area/shiva/interior/aerodrome) -"aHr" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/obj/structure/cargo_container/horizontal/blue/top{ - density = 0; - pixel_y = 12 +"aHs" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/adv{ + pixel_y = 9 }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -3; - pixel_y = 2 +/obj/item/paper{ + pixel_x = -12; + pixel_y = 4 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/area/shiva/interior/colony/research_hab) "aHB" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -4278,79 +2489,51 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"aHQ" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "aIh" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/barbed_wire, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"aIv" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +"aIp" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Underground Morgue" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"aIu" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "aIG" = ( /obj/item/weapon/wirerod, /turf/open/shuttle/elevator/grating, /area/shiva/interior/aerodrome) -"aJc" = ( -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"aJe" = ( -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) "aJj" = ( /obj/item/weapon/throwing_knife, /turf/open/shuttle/elevator/grating, /area/shiva/interior/aerodrome) -"aJk" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/arrivals, -/turf/open/floor/corsat/squares, -/area/shiva/interior/aerodrome) -"aJn" = ( -/obj/item/frame/table, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) +"aJm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc{ + dir = 8; + start_charge = 0 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "aJy" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aJB" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/interior/colony/central) -"aJE" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"aJF" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "aJG" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"aJM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard{ - pixel_y = 5 - }, -/obj/item/tool/pen/red{ - pixel_x = 6; - pixel_y = 9 - }, +"aJT" = ( +/obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/area/shiva/interior/valley_huts) "aJU" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -4380,17 +2563,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aKv" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"aKJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Anti-Freeze Lounge" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "aKK" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -4401,28 +2573,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"aKQ" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "aKR" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"aKS" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"aLk" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +"aKV" = ( +/turf/open/floor/chapel/north, +/area/shiva/interior/colony/central) "aLs" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -4450,16 +2609,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aLB" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/s_admin) "aLD" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) -"aLG" = ( -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "aLJ" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; @@ -4480,6 +2633,13 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) +"aMe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Chapel" + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) "aMj" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -4492,13 +2652,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"aMs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "aMu" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "pink" @@ -4509,25 +2662,6 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) -"aMw" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 - }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"aMx" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"aMz" = ( -/obj/structure/machinery/smartfridge{ - density = 0; - pixel_y = 22 - }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "aMA" = ( /obj/structure/bed/chair{ dir = 4 @@ -4592,40 +2726,15 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aMT" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/chunk, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "aMW" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"aNb" = ( -/obj/structure/safe, -/obj/item/spacecash/c1000{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c500, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) -"aNd" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) "aNe" = ( /obj/effect/spawner/random/toolbox, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) -"aNf" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "aNg" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -4655,15 +2764,10 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"aNp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"aNq" = ( -/obj/item/stool, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +"aNu" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "aNy" = ( /obj/structure/platform/strata{ dir = 1 @@ -4678,41 +2782,42 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) -"aNL" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"aNN" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) "aNP" = ( /turf/closed/shuttle/elevator/button/research, /area/shiva/interior/colony/research_hab) "aNR" = ( /turf/closed/shuttle/elevator/research, /area/shiva/interior/colony/research_hab) +"aNU" = ( +/obj/structure/barricade/metal{ + health = 230 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "aNX" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aOb" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "aOg" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"aOh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "aOo" = ( /obj/item/dogtag, /obj/effect/decal/cleanable/blood, @@ -4721,16 +2826,11 @@ "aOu" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/medseceng_caves) -"aOv" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) -"aOW" = ( +"aOF" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"aOW" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/s_admin) "aPd" = ( @@ -4760,36 +2860,6 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"aPg" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) -"aPh" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"aPi" = ( -/obj/item/paper/research_notes/bad{ - pixel_x = 11; - pixel_y = 4 - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) -"aPj" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/shaker{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "aPk" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11 @@ -4808,26 +2878,10 @@ }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"aPy" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) -"aQb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/s_admin) -"aQg" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +"aPB" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "aQi" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/layer2, @@ -4857,6 +2911,11 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) +"aQF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/research_hab) "aQJ" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, @@ -4889,15 +2948,6 @@ /obj/item/stool, /turf/open/floor/shiva, /area/shiva/interior/bar) -"aRs" = ( -/obj/structure/closet/radiation, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) "aRz" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Straight" @@ -4914,6 +2964,10 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"aRP" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_colony_grounds) "aRS" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -4933,17 +2987,13 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aSc" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/storage/belt/marine, +"aSd" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 + }, /turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/colony/research_hab) "aSi" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) @@ -4970,10 +3020,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"aSI" = ( -/obj/structure/closet/radiation, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) "aSJ" = ( /obj/structure/prop/invuln{ desc = "Boy am I glad that he's in there and that we're out here and that we're in there and that he's the sheriff."; @@ -5061,6 +3107,14 @@ /obj/effect/spawner/random/tool, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"aTv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/feathertrilby{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "aTE" = ( /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/ice/layer1, @@ -5080,11 +3134,6 @@ /obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"aTT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) "aTY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -5098,21 +3147,14 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"aUc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "aUd" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/junkyard/cp_bar) -"aUn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +"aUs" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "aUt" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -5148,60 +3190,12 @@ /obj/structure/girder/reinforced, /turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) -"aUM" = ( -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) -"aUS" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/research_hab) -"aUT" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/crayons{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) -"aUU" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"aUX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"aUQ" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"aUY" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"aVc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"aVm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) +/area/shiva/interior/aerodrome) "aVn" = ( /obj/structure/reagent_dispensers/beerkeg, /obj/structure/reagent_dispensers/beerkeg{ @@ -5213,6 +3207,12 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) +"aVp" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "aVr" = ( /obj/structure/reagent_dispensers/beerkeg{ density = 0; @@ -5237,6 +3237,12 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) +"aVu" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "aVw" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer0, @@ -5253,12 +3259,6 @@ }, /turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) -"aVF" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar/red, -/obj/item/device/flash, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) "aVL" = ( /turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) @@ -5296,50 +3296,14 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"aVT" = ( -/obj/item/tool/mop{ - pixel_y = 20 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) "aVU" = ( /obj/item/stack/sheet/metal, /turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) -"aWb" = ( -/obj/structure/foamed_metal, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"aWs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"aWv" = ( -/obj/structure/machinery/landinglight/ds2, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"aWB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"aWC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +"aWf" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "aWD" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 5 @@ -5409,10 +3373,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"aXa" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "aXb" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer1, @@ -5425,12 +3385,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"aXh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) "aXi" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Corner" @@ -5457,19 +3411,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"aXw" = ( -/obj/vehicle/train/cargo/engine, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) -"aXH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/purplefull/north, -/area/shiva/interior/colony/research_hab) +"aXz" = ( +/obj/item/tool/soap, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "aXI" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -5491,16 +3436,23 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aXZ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) +"aXW" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "aYd" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/shiva/interior/aerodrome) +"aYw" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "aYx" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3" @@ -5510,10 +3462,6 @@ /obj/structure/window_frame/shiva, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"aYU" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/shiva/red/northwest, -/area/shiva/interior/colony/medseceng) "aZg" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, @@ -5524,18 +3472,16 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aZp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"aZw" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/shiva/greenfull/west, -/area/shiva/interior/colony/n_admin) +"aZy" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"aZz" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) "aZA" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -5552,14 +3498,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"aZR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor/darkgreen2/southeast, -/area/shiva/interior/colony/botany) "bag" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -5584,9 +3522,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"bai" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/shiva/exterior/junkyard/fortbiceps) "bar" = ( /obj/item/trash/tray, /obj/item/trash/tray{ @@ -5613,14 +3548,9 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"baV" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"baW" = ( -/obj/structure/kitchenspike, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +"baO" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "baX" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; @@ -5657,12 +3587,13 @@ /obj/item/stack/rods, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"bbw" = ( +"bbC" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/deck) +/obj/item/newspaper, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "bbG" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -5675,6 +3606,11 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) +"bbI" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) "bcl" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -5716,12 +3652,21 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"bdT" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/interior/colony/medseceng) +"bee" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "ben" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/telecomm/lz1_north) +"beD" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "beF" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -5737,10 +3682,6 @@ icon_state = "rightengine_1" }, /area/shiva/interior/aerodrome) -"beP" = ( -/obj/item/clothing/under/rank/janitor, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) "beQ" = ( /turf/closed/shuttle/elevator, /area/shiva/interior/colony/central) @@ -5766,12 +3707,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/shiva/interior/bar) -"bfy" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "bfL" = ( /obj/structure/largecrate/random/mini/wooden, /turf/open/auto_turf/snow/layer2, @@ -5783,11 +3718,9 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/fortbiceps) -"bfR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) +"bfU" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/aux_power) "bga" = ( /obj/structure/prop/dam/truck{ dir = 4; @@ -5795,6 +3728,17 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"bgc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"bgl" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "bgC" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/shiva, @@ -5805,23 +3749,14 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"bhI" = ( -/turf/open/floor/shiva/wred/southeast, -/area/shiva/interior/colony/medseceng) "bhN" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"bhS" = ( -/turf/open/floor/shiva/wred/north, +"biz" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) -"bhY" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "nlz_shutters"; - pixel_y = 28 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) "biM" = ( /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) @@ -5838,12 +3773,10 @@ "bjv" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_colony_grounds) -"bjP" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"bkp" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "bks" = ( /obj/structure/morgue{ dir = 8 @@ -5860,13 +3793,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"blI" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/telecomm/lz1_biceps) -"blP" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/green/northwest, -/area/shiva/interior/colony/botany) "bme" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, @@ -5875,6 +3801,14 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"bmj" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/corpsespawner/bridgeofficer, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "bmv" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/ice/layer1, @@ -5882,30 +3816,35 @@ "bni" = ( /turf/open/floor/plating, /area/shiva/interior/caves/cp_camp) -"bnk" = ( -/obj/structure/largecrate/random/mini/chest/b, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"bnm" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "bnD" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"bnF" = ( +/obj/structure/surface/table/woodentable{ + dir = 1; + flipped = 1 + }, +/obj/structure/machinery/computer/objective, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"bnP" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/deck) "bnS" = ( /obj/structure/bed/chair, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"bou" = ( +/turf/open/floor/chapel/east, +/area/shiva/interior/colony/central) +"bov" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/medical/bruise_pack, +/obj/item/cell, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "boA" = ( /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer1, @@ -5918,22 +3857,23 @@ /obj/docking_port/stationary/marine_dropship/lz1, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"boT" = ( -/obj/structure/largecrate/random/mini/wooden{ - pixel_y = 6 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "boW" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"bpH" = ( -/turf/open/floor/shiva/red/southeast, +"bpP" = ( +/turf/open/floor/shiva/green/north, +/area/shiva/interior/colony/botany) +"bqd" = ( +/turf/open/floor/shiva/radiator_tile2, /area/shiva/interior/colony/medseceng) -"bqy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/research_hab) +"bqr" = ( +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"bqt" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "bqN" = ( /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/shuttle/can_surgery/black, @@ -5942,22 +3882,34 @@ /obj/effect/decal/cleanable/blood, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"bsp" = ( +"bra" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, /turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/deck) +/area/shiva/interior/colony/n_admin) +"brq" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"bsv" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/n_admin) "bsw" = ( /obj/effect/landmark/corpsespawner/bridgeofficer, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) +"bsz" = ( +/obj/structure/platform_decoration/shiva/catwalk, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/valley) "bsC" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"bsM" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/exterior/cp_lz2) "bsN" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/ice/layer1, @@ -5969,53 +3921,66 @@ "bsV" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/junkyard/cp_bar) +"bta" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/filingcabinet/filingcabinet{ + name = "mail bins"; + pixel_y = 14 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "btE" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) -"btM" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11; - pixel_y = 20 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"btQ" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/shiva/red/northwest, +"bub" = ( +/turf/open/floor/shiva/radiator_tile2, /area/shiva/interior/colony/central) +"bug" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"buj" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "buJ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/medseceng) +"buM" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "bvb" = ( /obj/structure/platform_decoration/strata, /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"bvC" = ( +"bvM" = ( /obj/structure/surface/table, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, +/obj/item/reagent_container/food/snacks/human/burger, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"bwb" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +"bvY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "bwk" = ( /obj/structure/platform/shiva/catwalk{ dir = 1 @@ -6027,43 +3992,27 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"bws" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/garage) -"bwJ" = ( -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/aux_power) +"bwo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) "bwP" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"bxb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"bxL" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/under/overalls, -/obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"bxW" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"bxo" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"bxF" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/turf/open/floor/shiva/yellowfull, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) +"bxG" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/caves/research_caves) "byr" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -6073,33 +4022,19 @@ /obj/item/device/analyzer/plant_analyzer, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/lz2_habs) -"byH" = ( +"byM" = ( /obj/structure/surface/table, -/obj/item/storage/box/pizza, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"byK" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"bzh" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/garage) +"bzz" = ( +/obj/structure/machinery/vending/cigarette, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/area/shiva/interior/bar) "bzK" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"bzZ" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) "bAn" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ @@ -6107,10 +4042,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"bAv" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) "bAK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -6119,20 +4050,48 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"bAX" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 +"bAP" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"bBs" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"bAS" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/tool/soap{ + pixel_x = 5 + }, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "bBB" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"bBL" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/obj/structure/prop/ice_colony/flamingo{ + dir = 9 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"bCg" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "bCr" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, @@ -6141,10 +4100,40 @@ }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) +"bCN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "bDx" = ( /obj/item/reagent_container/food/drinks/flask/vacuumflask, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"bDN" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"bEo" = ( +/obj/item/stack/snow{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/stack/snow, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"bEt" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "bFb" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xtracks" @@ -6161,13 +4150,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"bFP" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 10 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "bFS" = ( /obj/structure/platform/shiva/catwalk{ dir = 1 @@ -6178,6 +4160,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) +"bGf" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "bGU" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -6187,33 +4173,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"bHf" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"bHx" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"bHC" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"bHN" = ( -/obj/item/ammo_magazine/rifle/boltaction{ - pixel_x = -7; - pixel_y = -8 - }, -/obj/structure/barricade/metal{ - layer = 3 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) "bHZ" = ( /obj/structure/platform/strata{ dir = 8 @@ -6228,32 +4187,65 @@ /obj/item/device/motiondetector/hacked, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"bIy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/greencorners/west, +/area/shiva/interior/colony/botany) +"bIO" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/interior/aux_power) "bIV" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) -"bJf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"bJi" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) "bJj" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"bJq" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shiva/exterior/junkyard/fortbiceps) "bJz" = ( /turf/closed/shuttle/elevator{ dir = 1 }, /area/shiva/interior/colony/central) -"bJF" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) +"bJE" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"bJN" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"bJT" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"bJX" = ( +/obj/item/weapon/gun/boltaction{ + pixel_x = -6 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"bJZ" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"bKC" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "bKF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -6277,26 +4269,14 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"bMn" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/carpet, -/area/shiva/interior/colony/central) -"bMK" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 +"bLi" = ( +/obj/structure/barricade/metal{ + dir = 1; + health = 210 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"bMW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/medseceng_caves) -"bNu" = ( +/area/shiva/interior/colony/botany) +"bLw" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 5; pixel_y = 5 @@ -6306,48 +4286,105 @@ }, /turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) -"bNN" = ( +"bMn" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/carpet, +/area/shiva/interior/colony/central) +"bMV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"bMW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/medseceng_caves) +"bNl" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/n_admin) +"bNG" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"bNM" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"bOg" = ( /obj/structure/surface/table, +/obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "bOh" = ( /obj/effect/landmark/survivor_spawner, /turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) +"bOq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"bOu" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"bPd" = ( +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"bPp" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) "bPu" = ( /obj/item/bodybag, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"bPJ" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"bQv" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassgb_2" +"bPE" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard/cp_bar) -"bQx" = ( +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"bQf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/purplefull/north, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "road_edge_decal8"; + pixel_x = -14 + }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) -"bQR" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" +"bQh" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) +"bQm" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/area/shiva/exterior/lz2_fortress) +"bQv" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassgb_2" + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) "bQZ" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/interior/caves/s_lz2) +"bRj" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "bRD" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Hydroponics South Wing Dome" @@ -6358,6 +4395,13 @@ /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"bSv" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "bSB" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -6376,8 +4420,10 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"bTV" = ( -/obj/structure/surface/table/reinforced/prison, +"bTD" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, /turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "bUe" = ( @@ -6386,11 +4432,26 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"bUO" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) +"bUg" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"bUp" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"bUN" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "bUU" = ( /obj/structure/prop/dam/truck{ dir = 4; @@ -6399,32 +4460,32 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"bUX" = ( -/obj/item/storage/belt/gun/m44, -/turf/open/floor/shiva/green/southwest, -/area/shiva/interior/colony/botany) -"bVb" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/shiva/bluefull, +"bVh" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) -"bVr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/weapon/gun/rifle/m41aMK1, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) "bVz" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"bVK" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "bVS" = ( /obj/structure/machinery/light/double, /obj/effect/decal/cleanable/vomit, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"bWa" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 + }, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) "bWB" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/double, @@ -6434,6 +4495,15 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) +"bWD" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) +"bXe" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "bXl" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -6455,25 +4525,16 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"bXC" = ( -/obj/structure/machinery/m56d_hmg{ - dir = 4 +"bYc" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"bYd" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) -"bYk" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/dexalin/skillless, -/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) +"bYF" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/deck) "bYO" = ( /obj/structure/prop/invuln{ desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; @@ -6486,22 +4547,44 @@ }, /turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) -"bYS" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/central) -"bYV" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light/double{ - dir = 8; +"bYZ" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_y = 7 + }, +/obj/item/tool/pen/blue{ + pixel_x = 5; pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"bZZ" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"bZg" = ( +/obj/structure/surface/table, +/obj/item/paper/janitor{ + pixel_y = 8 + }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) +"bZu" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"cak" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"car" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/exterior/junkyard) +"caC" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/botany) "caS" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) @@ -6517,32 +4600,30 @@ }, /turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) -"cbt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"cbC" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"cbs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) "cbG" = ( /obj/effect/spawner/random/tool, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"cbU" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "cbW" = ( /obj/structure/largecrate/random/mini/med, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"cce" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) "ccu" = ( /obj/structure/machinery/power/apc, /turf/open/floor/plating, @@ -6562,6 +4643,16 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"cee" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/colony/central) +"cer" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "cex" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -6569,15 +4660,17 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"ceM" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/cp_lz2) -"ceS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"cfu" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) +"cfR" = ( +/obj/structure/closet/firecloset, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/research_hab) "cgd" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -6587,29 +4680,20 @@ /obj/structure/prop/invuln/ice_prefab/roof_greeble, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"cgg" = ( +/obj/item/bananapeel, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "cgh" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"cgQ" = ( -/obj/item/device/taperecorder, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) "cgR" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/cp_bar) -"chq" = ( -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"chU" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) "cid" = ( /obj/structure/platform/strata{ dir = 4 @@ -6617,9 +4701,12 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/exterior/cp_s_research) -"cio" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/warehouse) +"cij" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "ciL" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer0, @@ -6632,24 +4719,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_s_research) -"ckI" = ( -/obj/structure/surface/table, -/obj/item/circuitboard{ - pixel_x = -3; - pixel_y = 18 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) "clp" = ( /obj/item/tool/weldingtool, /turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) -"clz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/medseceng) "cnb" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/telecomm/lz2_northeast) @@ -6659,19 +4732,16 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"cnk" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) "cnt" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"coj" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/labcoat/researcher, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +"cnO" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "cos" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 15; @@ -6692,13 +4762,6 @@ icon_state = "stan23" }, /area/shiva/interior/aerodrome) -"cpb" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) "cps" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -6727,19 +4790,31 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"crk" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) +"cqv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories"; + req_access_txt = "100" + }, +/turf/open/floor/darkgreen2/southeast, +/area/shiva/interior/colony/botany) +"crb" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/shiva/purple/west, +/area/shiva/interior/lz2_habs) "crF" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/colony/research_hab) -"crN" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"crW" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "cse" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -6749,27 +4824,27 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"cso" = ( -/turf/open/floor/bcircuit, -/area/shiva/interior/colony/medseceng) "csu" = ( /obj/structure/largecrate/random, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"ctk" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"ctz" = ( +"csF" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/item/tool/pen/blue{ + pixel_x = 5 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"ctC" = ( -/obj/structure/surface/table/reinforced/prison, +/area/shiva/interior/colony/s_admin) +"csW" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, /turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) -"ctJ" = ( -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/garage) "cur" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating, @@ -6780,6 +4855,11 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"cvh" = ( +/obj/structure/machinery/computer/operating, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "cvn" = ( /obj/effect/decal/remains/xeno, /turf/open/floor/plating, @@ -6790,18 +4870,30 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/s_admin) +"cvI" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"cwj" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "cwm" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz2-eastsouth" }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"cwU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +"cwB" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "cwZ" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse/caves) @@ -6814,30 +4906,30 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"cyd" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/botany) +"cxR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "czf" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"czH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +"czR" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"cAw" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"czI" = ( -/obj/structure/girder, -/turf/open/floor/dark2, -/area/shiva/interior/caves/research_caves) +/area/shiva/exterior/lz2_fortress) "cAH" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, @@ -6852,42 +4944,34 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"cBe" = ( -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) -"cBB" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/exterior/lz2_fortress) -"cBF" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"cBG" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +"cBw" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "cBL" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/shiva, /area/shiva/interior/bar) -"cCI" = ( -/turf/open/floor/shiva/greenfull/west, +"cCm" = ( +/obj/structure/closet/coffin, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"cCn" = ( +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"cCG" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"cDI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "cDN" = ( /obj/structure/largecrate/random/case/small{ @@ -6895,29 +4979,39 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) +"cDW" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "cEj" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"cEk" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"cFa" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"cFP" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "cFQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"cGi" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"cGk" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/s_lz2) "cGr" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow{ @@ -6926,6 +5020,11 @@ /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"cGI" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "cGJ" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 5 @@ -6940,23 +5039,26 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"cGW" = ( -/obj/structure/largecrate/random{ - anchored = 1; - pixel_x = 9; - pixel_y = -3 +"cHm" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 }, -/obj/structure/largecrate/random/mini{ - pixel_x = 10; - pixel_y = 12 +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"cHt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"cHM" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, /turf/open/floor/shiva/floor3, /area/shiva/interior/bar) -"cHB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) "cIa" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer3, @@ -6979,6 +5081,18 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/cp_camp) +"cIU" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "cIV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, @@ -6991,13 +5105,24 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"cJu" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/aux_power) -"cJy" = ( -/obj/structure/surface/table, +"cJA" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher/mini, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/crap_item, /turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) +"cJB" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 + }, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/s_lz2) "cJC" = ( /obj/structure/platform/strata{ dir = 8 @@ -7007,30 +5132,21 @@ "cKb" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/deck) -"cKB" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"cKE" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/snow_mat, -/area/shiva/interior/colony/botany) +"cKv" = ( +/obj/structure/closet/radiation, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "cKL" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/valley) "cKR" = ( /turf/open/floor/plating, /area/shiva/interior/caves/s_lz2) -"cLi" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"cLq" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) "cLx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2 @@ -7048,6 +5164,22 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"cLR" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"cMo" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/storage/belt/marine, +/obj/item/weapon/gun/rifle/m41a, +/obj/item/ammo_magazine/rifle/extended, +/obj/item/ammo_magazine/rifle, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "cMr" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer1, @@ -7058,12 +5190,21 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"cOa" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva/blue/west, -/area/shiva/interior/colony/n_admin) +"cMy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/research_hab) +"cME" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"cMK" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/bar) +"cNg" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "cOq" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, @@ -7071,34 +5212,22 @@ "cOA" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/interior/oob) +"cOF" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) "cOU" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"cOX" = ( -/obj/structure/surface/table, -/obj/item/key/cargo_train, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"cPK" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +"cPL" = ( +/obj/structure/bed, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"cQP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/exterior/cp_colony_grounds) -"cQB" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/shiva/wred/north, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "cQW" = ( /turf/open/floor/plating, @@ -7111,30 +5240,28 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"cRs" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/red/northwest, +"cRv" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) +"cRD" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "cRP" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"cRX" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"cSn" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/storage/belt/marine, -/obj/item/clothing/suit/armor/riot/marine, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) "cTh" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -7142,14 +5269,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"cTo" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"cTu" = ( -/turf/open/floor/shiva/bluecorners/west, -/area/shiva/interior/colony/central) +"cTR" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "cTU" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/warning_stripes{ @@ -7157,28 +5286,18 @@ }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"cTY" = ( -/obj/item/ammo_magazine/flamer_tank, -/turf/open/floor/shiva/floor3, +"cUy" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) -"cUl" = ( -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/telecomm/lz1_biceps) "cUQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"cUS" = ( -/turf/open/floor/shiva/greencorners, -/area/shiva/interior/colony/botany) -"cVy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) "cVM" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -7186,21 +5305,31 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"cWG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +"cVT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_queen{ + pixel_y = 7 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"cWc" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/research_hab) "cWN" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"cWP" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "cWT" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -7211,11 +5340,6 @@ "cXk" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/fortbiceps) -"cXm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) "cXM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -7242,19 +5366,6 @@ }, /turf/open/gm/river, /area/shiva/exterior/cp_s_research) -"cYa" = ( -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) -"cYc" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) "cYz" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -7269,52 +5380,60 @@ /obj/item/device/multitool, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"cYR" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +"cYD" = ( +/obj/structure/machinery/computer/cameras{ dir = 8 }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"cYN" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"cYO" = ( +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/botany) "cYT" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"cZb" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) "cZk" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) +"cZo" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/sink{ + pixel_y = 15 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/botany) +"cZr" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "backup power SMES" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "cZC" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"cZE" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) +"cZO" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "cZZ" = ( /obj/structure/bed/chair/wood/normal, /obj/effect/decal/cleanable/blood{ @@ -7325,6 +5444,12 @@ "daD" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"dbk" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "dbv" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/ice/layer1, @@ -7338,12 +5463,18 @@ /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) -"dbQ" = ( -/obj/structure/bed/chair/office/light{ +"dbY" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"dcm" = ( +/obj/structure/machinery/m56d_hmg{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "dcn" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -7359,17 +5490,48 @@ /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"dcD" = ( +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) "dcG" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"dcV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ - pixel_y = 7 +"ddb" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"ddk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"ddl" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"ddo" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, +/obj/item/clothing/under/colonist, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"ddp" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "dex" = ( @@ -7380,15 +5542,27 @@ }, /turf/open/floor/plating, /area/shiva/interior/bar) +"deG" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"deK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) "deV" = ( /turf/closed/shuttle/ert{ icon_state = "stan3" }, /area/shiva/interior/aerodrome) -"dgb" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) +"dfV" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/exterior/cp_colony_grounds) "dgF" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -7405,6 +5579,26 @@ /obj/vehicle/train/cargo/engine, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) +"dhc" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) +"dhQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/s_admin) +"dig" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "diL" = ( /obj/structure/machinery/light/double{ dir = 1; @@ -7415,52 +5609,20 @@ "djn" = ( /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"djy" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/greenfull, +"djq" = ( +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) -"djJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/candy_corn{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/clothing/head/fedora{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"djO" = ( -/obj/item/stool, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +"djM" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/warehouse/caves) +"dkc" = ( +/obj/item/lightstick/red/variant, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "dkv" = ( /obj/structure/largecrate/random/mini/med, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"dkC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"dkI" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "dkP" = ( /obj/structure/barricade/metal{ layer = 3 @@ -7470,6 +5632,14 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) +"dkQ" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -5; + pixel_y = 11 + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "dlk" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -7483,6 +5653,21 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"dlm" = ( +/obj/structure/surface/table, +/obj/item/device/encryptionkey, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"dmx" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"dmH" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) "dnj" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -7505,6 +5690,14 @@ /obj/item/storage/box/lightstick/red, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) +"dnO" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "doJ" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, @@ -7515,6 +5708,16 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"dpg" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) "dpF" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -7522,18 +5725,10 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"dqH" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +"dqy" = ( +/obj/item/roller, +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) "dqW" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, @@ -7544,56 +5739,69 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) -"drx" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) "drM" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"drP" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"dse" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "dsx" = ( /turf/closed/shuttle/elevator{ dir = 1 }, /area/shiva/interior/aerodrome) -"dsD" = ( -/obj/structure/largecrate/random/case/double, +"dsH" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) +"dsN" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" + }, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"dsY" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/colony/medseceng) +"dtb" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "dtq" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/botany) -"dtr" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"dtK" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 12 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"dtE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" +/obj/item/storage/firstaid/rad{ + pixel_y = 4 }, -/turf/open/floor/shiva/yellowfull, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"dub" = ( +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) -"dtZ" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/bar) "dug" = ( /obj/item/reagent_container/food/drinks/bottle/rum, /turf/open/floor/plating, @@ -7604,46 +5812,67 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"duv" = ( -/turf/open/floor/shiva/snow_mat, -/area/shiva/interior/colony/n_admin) +"duD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "dvg" = ( /obj/item/tool/warning_cone{ pixel_y = 16 }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/central) -"dwf" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +"dwa" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"dwq" = ( +/obj/item/stool, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"dwE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + pixel_y = 5 }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"dwF" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -2; + pixel_y = -8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "dwQ" = ( /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"dxh" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - icon_state = "psiphon:1" +"dxK" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "dxS" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) +"dxT" = ( +/obj/structure/barricade/metal, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "dyt" = ( /obj/vehicle/train/cargo/trolley, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"dyF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) "dze" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" @@ -7656,31 +5885,27 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"dAi" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat/chess, -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/exterior/cp_lz2) +"dAg" = ( +/obj/item/paper/research_notes/grant, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"dAn" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "dAt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"dBB" = ( -/obj/item/reagent_container/glass/beaker/cryopredmix{ - pixel_x = -10 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"dBK" = ( +"dCI" = ( /obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -4; - pixel_y = 10 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"dCo" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/shiva/floor3, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) +"dCK" = ( +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "dCS" = ( /turf/closed/shuttle/ert{ @@ -7691,31 +5916,41 @@ /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"dDo" = ( -/obj/structure/machinery/landinglight/ds1/spoke, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) -"dEH" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, +"dDx" = ( +/obj/structure/surface/table, +/obj/item/storage/box/pizza, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"dGs" = ( -/obj/structure/barricade/snow, -/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/colony/botany) +"dDU" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"dFK" = ( +/turf/open/floor/darkbrown2/east, +/area/shiva/interior/valley_huts/disposals) +"dGs" = ( +/obj/structure/barricade/snow, +/turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"dHg" = ( +"dGS" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/central) +"dHH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz1_console/two) +"dHW" = ( /obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, +/obj/item/circuitboard/airalarm, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"dIF" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) +"dIP" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) "dJl" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer0, @@ -7724,6 +5959,13 @@ /obj/item/powerloader_clamp, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) +"dKF" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "dKL" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -7738,6 +5980,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"dKU" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/apc, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/research_hab) "dLe" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -7746,6 +5993,12 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"dLg" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "dLi" = ( /obj/structure/surface/rack, /obj/item/lightstick/red/spoke, @@ -7757,30 +6010,24 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"dLk" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"dMo" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"dMy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"dMc" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/shiva/interior/colony/deck) -"dOf" = ( -/turf/open/floor/shiva/yellowcorners/east, -/area/shiva/interior/colony/deck) -"dOo" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "nlz_shutters"; - pixel_y = 28 +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"dMz" = ( +/obj/structure/machinery/landinglight/ds2, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"dOd" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) "dOs" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -7793,70 +6040,67 @@ "dOD" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/colony/botany) -"dPW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) -"dQp" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -11; - pixel_y = 8 - }, -/obj/item/tool/mop{ - pixel_x = -10 +"dPp" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"dPI" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/turf/open/floor/shiva/red/west, +/area/shiva/interior/colony/medseceng) "dQq" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"dQF" = ( -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"dQZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "dRb" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"dRv" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"dRR" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) +"dSB" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "dTj" = ( /obj/structure/machinery/space_heater, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"dTn" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) -"dTU" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/research_hab) -"dVw" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +"dTK" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"dUM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating, -/area/shiva/interior/caves/research_caves) -"dWp" = ( -/turf/open/floor/shiva/yellow/southeast, +/turf/open/floor/shiva/red/west, /area/shiva/interior/colony/medseceng) +"dUN" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 1 + }, +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"dVA" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/n_admin) "dWw" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -7867,6 +6111,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/n_admin) +"dWB" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "dWD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ @@ -7877,28 +6131,17 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"dWM" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"dWO" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/warehouse/caves) -"dXc" = ( -/obj/item/device/flashlight/lamp/tripod, +"dWF" = ( +/obj/structure/closet/emcloset, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"dXp" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/bar) +/area/shiva/interior/colony/research_hab) +"dWV" = ( +/turf/open/floor/shiva/red/west, +/area/shiva/interior/colony/central) +"dXS" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "dYi" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -7906,31 +6149,39 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"dYm" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/cp_colony_grounds) "dYp" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/bar) -"dZb" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/weapon/gun/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/storage/belt/marine, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) -"dZN" = ( -/obj/item/newspaper, +"dYv" = ( /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/area/shiva/interior/warehouse) +"dZe" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/central) +"dZm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/shiva/wredcorners/north, +/area/shiva/interior/colony/medseceng) +"dZn" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"dZA" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "eaa" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 32 @@ -7952,21 +6203,23 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/s_lz2) -"eaz" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/adv{ - pixel_y = 9 - }, -/obj/item/paper{ - pixel_x = -12; - pixel_y = 4 +"eaH" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"ebp" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "ebK" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) +"ebS" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/central) "ebV" = ( /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer3, @@ -7978,53 +6231,59 @@ /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"ect" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/under/marine/veteran/mercenary, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"ecx" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/cp_camp) "ecz" = ( /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"ecZ" = ( +"edl" = ( +/obj/item/tool/warning_cone, /turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"edw" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/exterior/cp_lz2) -"edW" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +/area/shiva/interior/colony/central) +"eef" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/plating, -/area/shiva/exterior/cp_colony_grounds) -"eep" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "eeD" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) +"eeE" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "efD" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"efE" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"efO" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "egf" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Underground Sports Center" }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"egj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) "egr" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -8033,37 +6292,55 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"egJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"egL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"ehv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) "ehO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/interior/colony/research_hab) -"ehV" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) "eit" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"eiT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) -"ejt" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +"ejm" = ( +/obj/structure/surface/table, +/obj/item/storage/surgical_tray, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "ejF" = ( /obj/item/ammo_magazine/handful/shotgun/incendiary, /turf/open/floor/wood, /area/shiva/interior/bar) +"ejI" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) "ejX" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"ekg" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/garage) +"ekG" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "ekH" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/snow/layer2, @@ -8075,14 +6352,23 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"eln" = ( +"elk" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/storage/belt/marine, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"elv" = ( /obj/structure/surface/table, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) +/obj/item/restraint/handcuffs, +/obj/item/tool/stamp, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "elw" = ( /obj/item/stack/rods, /turf/open/floor/plating, @@ -8095,25 +6381,27 @@ /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison, /area/shiva/interior/bar) -"emd" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/botany) -"emq" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 +"eme" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"ems" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"emV" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/advanced/bruise_pack/upgraded{ + pixel_x = -3; + pixel_y = 14 }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +/obj/item/stack/medical/advanced/ointment/upgraded{ + pixel_x = 4; + pixel_y = 5 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/yellowfull, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"emy" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/north, -/area/shiva/interior/aux_power) "enc" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/ice/layer0, @@ -8135,10 +6423,17 @@ }, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"eoG" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) +"eop" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -10; + pixel_y = 19 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"eoC" = ( +/turf/closed/wall/shiva/prefabricated/white, +/area/shiva/interior/aux_power) "eoH" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/shiva, @@ -8149,31 +6444,38 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"eoO" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +"epe" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) +"epB" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_y = 8 }, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/shiva/purple/west, -/area/shiva/interior/lz2_habs) -"epp" = ( -/obj/item/stool{ - pixel_x = 4; +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"epO" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"eqt" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/double{ + dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/exterior/cp_lz2) -"eqD" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"eqz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) -"eqY" = ( -/obj/structure/toilet, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "erc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -8187,6 +6489,10 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"erW" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/northeast, +/area/shiva/interior/colony/botany) "esf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -8194,6 +6500,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"esg" = ( +/obj/item/weapon/ice_axe/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) "etl" = ( /obj/structure/largecrate/random/secure, /obj/item/ashtray/bronze{ @@ -8201,32 +6511,15 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"etm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"etV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/reagent_scanner, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"euA" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/research_hab) +"etZ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) "euZ" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"evY" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/storage/box/engineer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "ewa" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/s_lz2) @@ -8236,30 +6529,75 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"ewd" = ( +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) "ewf" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"exm" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +"ewn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/garage) +"ewu" = ( +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/garage) +"ewK" = ( +/obj/structure/barricade/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"ewP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"exM" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"exO" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"eyb" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) -"exX" = ( -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/warehouse) "eyx" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"ezb" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) +"ezp" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"ezJ" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/garage) +"eAW" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/central) "eAZ" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) @@ -8272,71 +6610,92 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"eBp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) +"eBk" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"eBu" = ( +/turf/open/floor/dark2, +/area/shiva/interior/valley_huts/disposals) "eBG" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"eBU" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"eBZ" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"eBH" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) +"eBS" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"eCg" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/reagent_container/food/condiment/coldsauce, -/obj/item/reagent_container/food/condiment/coldsauce, -/obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "eCr" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"eCM" = ( +/obj/structure/surface/table, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"eEx" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "eET" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) +"eEW" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/colony/medseceng) +"eFa" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) "eFk" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"eFm" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/item/paper/research_notes, -/obj/item/paper_bin, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"eFG" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/north, +"eFs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"eFw" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "eFI" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"eFQ" = ( -/obj/item/tool/warning_cone, +"eFK" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) +"eFX" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/area/shiva/exterior/lz2_fortress) "eGq" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -8362,19 +6721,19 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"eHk" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/storage/belt/marine, -/obj/item/weapon/gun/rifle/m41a, -/obj/item/ammo_magazine/rifle/extended, -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) -"eHp" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) +"eHo" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/aux_power) +"eHJ" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/bar) "eHL" = ( /obj/item/tool/wrench, /turf/open/shuttle/can_surgery/black, @@ -8387,32 +6746,42 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"eIa" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 4 +"eIj" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"eKb" = ( +/obj/structure/surface/table, +/obj/item/vehicle_clamp{ + pixel_y = 2 }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"eIe" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = 8; - pixel_y = 6 +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/central) +"eKf" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) -"eIH" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"eKr" = ( +/obj/item/reagent_container/glass/beaker/cryopredmix{ + pixel_x = -10 }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"eKY" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"eKz" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"eLo" = ( +/obj/effect/spawner/random/powercell, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/area/shiva/interior/garage) "eMh" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 9 @@ -8423,29 +6792,41 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"eNr" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"eNv" = ( -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"eOG" = ( -/obj/structure/closet/secure_closet/guncabinet, +"eMz" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"eMG" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"eNi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"eNS" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"eNU" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) +"eOj" = ( /obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 + dir = 1; + pixel_y = 9 }, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/storage/belt/marine, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "eOK" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/redpyjamas, @@ -8455,45 +6836,41 @@ "eOM" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"ePS" = ( -/obj/structure/closet/crate, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_king, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_queen, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/cp_lz2) -"eRk" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" +"eOR" = ( +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/garage) +"ePa" = ( +/obj/structure/machinery/light/double, +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"ePy" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) +"ePV" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"eQO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"eQX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "eRE" = ( /obj/item/tool/wirecutters, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"eRG" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "eSf" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -8502,18 +6879,38 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"eSt" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/research_hab) +"eSm" = ( +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"eSx" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "eSK" = ( /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"eSN" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/exterior/junkyard) +"eTc" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) +"eTG" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/clothing/head/cakehat, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"eTP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "eTV" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_2" @@ -8526,15 +6923,31 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/interior/caves/cp_camp) +"eUr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/sliceable/cheesecake{ + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"eUR" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard) "eUT" = ( /turf/closed/wall/shiva/prefabricated/white, /area/shiva/exterior/cp_lz2) -"eVa" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +"eUY" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "eVG" = ( /obj/structure/largecrate/random, /turf/open/floor/shiva, @@ -8546,27 +6959,17 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"eVX" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/exterior/cp_lz2) +"eWi" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "eWl" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) -"eWn" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) "eWB" = ( /turf/open/floor/plating, /area/shiva/interior/garage) -"eXL" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) "eXN" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -8577,18 +6980,23 @@ /obj/structure/inflatable/popped, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) +"eYl" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) "eYH" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/cp_lz2) -"eZX" = ( -/obj/item/tool/soap, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"far" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +"eZV" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"fai" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Panic Room Shutters" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "faA" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/s_lz2) @@ -8617,22 +7025,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"fbI" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/under/marine/veteran/mercenary/support, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +"fbq" = ( +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) "fbS" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) -"fcq" = ( -/obj/structure/closet/coffin, -/obj/effect/landmark/objective_landmark/close, +"fbT" = ( /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +/area/shiva/exterior/lz2_fortress) "fcy" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -8643,27 +7046,17 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/n_admin) -"fcL" = ( -/turf/open/floor/shiva/snow_mat, -/area/shiva/exterior/cp_colony_grounds) -"fel" = ( +"fcK" = ( /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/central) -"feA" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_y = 6 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"feR" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellow, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) +"fdo" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "ffg" = ( /obj/effect/landmark/nightmare{ insert_tag = "panic_room" @@ -8675,19 +7068,17 @@ dir = 10 }, /area/shiva/interior/colony/central) -"ffn" = ( -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/aux_power) -"ffo" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) -"ffw" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +"ffu" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"ffC" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "fgB" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, @@ -8708,52 +7099,41 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"fhh" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "fhv" = ( /obj/item/tool/wrench, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"fir" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/multi_tiles, +"fhQ" = ( +/obj/structure/surface/table{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) +"fij" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"fim" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "fiK" = ( /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"fjd" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 4; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 10; - pixel_y = -5 +"fiL" = ( +/obj/structure/prop/souto_land{ + desc = "Someone has crudely rendered a face and the word 'souto'"; + health = 10000; + layer = 2.9; + name = "souto graffiti" }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "fjs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) -"fjI" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) "fjS" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -8774,44 +7154,32 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"fkq" = ( -/obj/structure/machinery/shower{ - dir = 8 +"fkx" = ( +/obj/structure/mirror{ + pixel_x = -32 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/machinery/door/window/westleft, /turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "fkB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_s_research) -"fkF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"fkP" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -2; - pixel_y = -8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) "flN" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"flV" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "fmi" = ( /obj/structure/bed, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"fmk" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "fmo" = ( /obj/structure/platform/strata{ dir = 4 @@ -8819,6 +7187,21 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/caves/research_caves) +"fmH" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"fmJ" = ( +/obj/structure/toilet, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"fnd" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) "fnw" = ( /obj/structure/stairs/perspective/ice{ dir = 1; @@ -8826,9 +7209,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/research_caves) -"fnx" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/exterior/cp_lz2) "fnG" = ( /obj/structure/barricade/snow{ dir = 1 @@ -8839,10 +7219,6 @@ /obj/item/storage/toolbox/electrical, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"foc" = ( -/obj/structure/platform_decoration/shiva/catwalk, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) "fof" = ( /obj/structure/prop/invuln{ desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; @@ -8853,6 +7229,24 @@ /obj/item/storage/firstaid/fire, /turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) +"fol" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"fpa" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/research_hab) "fpF" = ( /obj/structure/stairs/perspective/ice{ dir = 8; @@ -8860,22 +7254,45 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/warehouse/caves) -"fqJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +"fpQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) +"fqR" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "frj" = ( /obj/item/tool/shovel/snow, /turf/open/floor/shiva, /area/shiva/interior/bar) -"frV" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "pink_trim" - }, -/turf/closed/wall/shiva/prefabricated/white, -/area/shiva/interior/aux_power) +"frl" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/s_lz2) +"frw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"frS" = ( +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) +"frY" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "fse" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/lightstick/red{ @@ -8888,45 +7305,57 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"ftm" = ( -/obj/effect/decal/cleanable/ash, +"fsr" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/aux_power) +"fsL" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"fsU" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/garage) +"fsW" = ( /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/area/shiva/interior/telecomm/lz1_biceps) "ftr" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/book/manual/security_space_law, /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"fub" = ( +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "fuj" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"fun" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) +"fup" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"fuv" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "fuz" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"fwv" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"fww" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) +"fwq" = ( +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) "fwU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -8935,24 +7364,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"fxw" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "fxy" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"fxJ" = ( -/obj/structure/surface/table, -/obj/item/clipboard{ - pixel_y = 6 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) "fyC" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ pixel_x = -17; @@ -8960,26 +7375,9 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) -"fyF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - name = "\improper Aurora Medical Clinic Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"fze" = ( -/obj/item/frame/apc, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) "fzm" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/cp_colony_grounds) -"fzA" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/medseceng) "fzF" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -8990,11 +7388,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"fBg" = ( -/obj/structure/closet/wardrobe/green, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) +"fAE" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"fAX" = ( +/obj/item/device/pinpointer, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "fBA" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, @@ -9005,28 +7408,35 @@ /obj/item/tool/stamp, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"fBQ" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) +"fBZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"fCk" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) "fCs" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"fDd" = ( -/obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"fDb" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) +"fDs" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +/area/shiva/interior/caves/s_lz2) "fDH" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"fEf" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/red/southeast, -/area/shiva/interior/colony/medseceng) "fEl" = ( /obj/structure/platform/strata{ dir = 1 @@ -9037,30 +7447,39 @@ /obj/structure/window/framed/shiva, /turf/open/floor/shiva, /area/shiva/interior/bar) -"fEO" = ( -/turf/open/floor/shiva/yellowcorners/west, -/area/shiva/interior/garage) +"fEI" = ( +/obj/item/ammo_magazine/flamer_tank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"fES" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "fEU" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"fFd" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "fFf" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"fFk" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "fFl" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"fFu" = ( +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/deck) "fFG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -9074,15 +7493,16 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"fFH" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) -"fGb" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/caves/cp_camp) +"fFU" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-north" + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"fFY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "fGl" = ( /obj/item/shard{ icon_state = "medium" @@ -9110,26 +7530,10 @@ /obj/vehicle/train/cargo/engine, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"fHH" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) "fHM" = ( /obj/item/stool, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"fHQ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"fIz" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "fII" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -11; @@ -9150,19 +7554,21 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"fJw" = ( -/obj/structure/surface/table, -/obj/item/device/camera, +"fJP" = ( +/obj/structure/machinery/light/double, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/research_hab) +"fJT" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "fKb" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"fKx" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) "fKy" = ( /obj/item/tool/pen/blue{ pixel_x = 5 @@ -9185,12 +7591,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/shiva/interior/bar) -"fKT" = ( -/obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) "fLi" = ( /obj/item/tool/shovel/snow, /obj/item/storage/fancy/cigarettes/arcturian_ace{ @@ -9215,41 +7615,39 @@ /obj/item/clothing/mask/rebreather, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"fLz" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +"fLw" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 17 }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +/obj/item/tool/surgery/scalpel{ + pixel_x = 16 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"fLX" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/obj/item/tool/surgery/hemostat{ + pixel_x = -4; + pixel_y = 4 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/s_lz2) -"fMe" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/research_hab) "fMq" = ( /obj/vehicle/train/cargo/engine, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"fMG" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) "fMO" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/carpet, /area/shiva/interior/colony/medseceng) +"fMR" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/double, +/obj/item/weapon/gun/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "fNf" = ( /obj/structure/platform/strata{ dir = 8 @@ -9269,27 +7667,49 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"fOE" = ( -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"fOe" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"fOp" = ( +/obj/item/bodybag, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"fOD" = ( +/turf/open/floor/shiva/wredcorners/west, +/area/shiva/interior/colony/medseceng) +"fOK" = ( +/obj/item/trash/candy, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) "fPA" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/structure/closet/cabinet, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"fPD" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/northeast, +"fPX" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) +"fQu" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/lz2_habs) +"fQV" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "fQX" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"fRg" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "fSc" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 8; @@ -9304,39 +7724,48 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"fSm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 10 +"fSp" = ( +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"fSA" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/obj/item/cell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"fSt" = ( +/area/shiva/exterior/lz2_fortress) +"fUf" = ( +/obj/item/paper/research_notes/good, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"fUk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"fUZ" = ( +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"fVb" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, /obj/item/clothing/shoes/snow, /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, /obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) -"fTX" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"fUP" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"fUZ" = ( -/obj/item/lightstick/red/planted, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard/cp_bar) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/n_admin) +"fVh" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "fVq" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "pink" @@ -9349,30 +7778,15 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"fVI" = ( -/obj/structure/bed/roller, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"fVR" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"fWb" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"fWq" = ( -/obj/structure/machinery/door_control/brbutton/alt{ - id = "hangar_ice_3"; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = -12; - pixel_y = 7 +"fWK" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "fXp" = ( /obj/structure/prop/invuln{ desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; @@ -9394,46 +7808,27 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"fXv" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"fXA" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "fXB" = ( /obj/structure/largecrate/random/case/double, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"fXG" = ( +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/central) +"fXH" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/n_admin) "fXX" = ( /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"fYm" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"fYW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/hotchili{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/hotchili{ - pixel_y = 14 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"fZz" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) -"fZP" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibhead" - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) -"fZR" = ( -/turf/open/floor/shiva/snow_mat, -/area/shiva/interior/colony/botany) "gaz" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/valley) @@ -9448,15 +7843,22 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) -"gbC" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"gcF" = ( -/obj/structure/closet/coffin, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +"gbv" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"gcq" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "gcK" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -9468,15 +7870,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"gcP" = ( -/obj/structure/bed/chair/wheelchair, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"gdk" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) +"gdu" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "gdU" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -9484,23 +7881,33 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"geh" = ( -/obj/structure/surface/table, -/obj/item/folder/white, +"gdX" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) +"geo" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "geE" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/junkyard) -"geS" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) +"geI" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"gfk" = ( +/turf/open/floor/darkgreen2/northwest, +/area/shiva/interior/colony/botany) +"gfv" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "ggh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt{ @@ -9519,10 +7926,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"ggL" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) "gha" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/machinery/light/double{ @@ -9531,20 +7934,29 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"ghK" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) +"ghd" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 16 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"ghp" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "ghS" = ( /obj/structure/surface/table, /obj/item/storage/box/explosive_mines, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"ghU" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) "gik" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/aerodrome) @@ -9560,12 +7972,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"gjg" = ( -/turf/open/floor/shiva/wredcorners/north, -/area/shiva/interior/colony/medseceng) -"gjY" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/shiva/interior/colony/botany) "gkv" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) @@ -9575,31 +7981,46 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"gkK" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, +"gkU" = ( /turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"gkL" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/n_admin) "gkY" = ( /turf/open/floor/plating, /area/shiva/exterior/lz2_fortress) -"glG" = ( +"gld" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) +"glY" = ( /obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/obj/effect/landmark/crap_item, +/obj/item/paper/research_notes, +/obj/item/paper_bin, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"gmf" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) +"gmJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"gmN" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "gmS" = ( /obj/item/device/flashlight, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"gmV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "gnZ" = ( /turf/closed/shuttle/elevator{ dir = 8 @@ -9608,16 +8029,6 @@ "goe" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/aerodrome) -"goh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"goj" = ( -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) "goS" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_2" @@ -9635,21 +8046,9 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"gpn" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "gpz" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/research_caves) -"gpF" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) "gpS" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" @@ -9661,36 +8060,36 @@ dir = 4 }, /area/shiva/interior/colony/central) -"gqe" = ( -/obj/structure/machinery/door_control/brbutton/alt{ - id = "hangar_ice_2"; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +"gpY" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "gqp" = ( /obj/item/stack/catwalk, /turf/open/floor/plating, /area/shiva/interior/bar) -"gqO" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4 +"gqN" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 6; +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"gqO" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 4 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 6; pixel_y = -1 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"grd" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 0 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/caves/s_lz2) "grk" = ( /obj/structure/platform/strata{ dir = 8 @@ -9701,29 +8100,54 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse/caves) +"grx" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"grE" = ( +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"grM" = ( +/turf/open/floor/chapel, +/area/shiva/interior/colony/central) +"grV" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 10; + pixel_y = 5 + }, +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"gsa" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "gso" = ( /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) +"gsp" = ( +/obj/structure/machinery/sensortower{ + pixel_x = 6 + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) "gss" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/junkyard) -"gsK" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/filingcabinet/filingcabinet{ - name = "mail bins"; - pixel_y = 14 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) "gtp" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) +"gtq" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) "gtx" = ( /obj/item/explosive/grenade/high_explosive/m15, /turf/open/auto_turf/snow/layer0, @@ -9734,30 +8158,17 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"gtZ" = ( -/turf/open/floor/shiva/red/east, -/area/shiva/interior/colony/central) -"gul" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) -"guz" = ( -/turf/open/floor/shiva/blue/west, -/area/shiva/interior/colony/n_admin) -"guA" = ( -/obj/structure/surface/table, -/obj/item/tool/wirecutters/clippers{ - pixel_y = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) "guH" = ( /obj/structure/prop/ice_colony/surveying_device, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_s_research) +"guS" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "gva" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -9765,19 +8176,36 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"gvz" = ( -/turf/open/floor/chapel, -/area/shiva/interior/colony/central) +"gvC" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"gvF" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) "gvT" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_4" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) -"gwq" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +"gvU" = ( +/obj/structure/surface/table, +/obj/item/stack/nanopaste, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"gws" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"gwy" = ( +/obj/item/frame/air_alarm, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "gwA" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -9786,19 +8214,29 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"gxK" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"gxN" = ( -/turf/open/floor/dark2, -/area/shiva/interior/valley_huts/disposals) +"gwW" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) +"gxP" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "gxW" = ( /obj/structure/closet/cabinet, /obj/item/storage/toolbox/emergency, /obj/item/clothing/under/colonist, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"gyd" = ( +/obj/item/paper, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"gyz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "gyT" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/ice/layer1, @@ -9815,6 +8253,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"gzg" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "gzp" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, @@ -9822,26 +8264,54 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"gzx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"gzJ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) "gzM" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"gAV" = ( -/turf/open/floor/shiva/yellowfull/west, +"gzZ" = ( +/obj/item/weapon/gun/flamer, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"gAC" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) +"gAN" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "gBc" = ( /obj/structure/surface/table, /obj/item/device/flashlight, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) +"gBl" = ( +/obj/item/tool/mop{ + desc = "Unlock the power of Mop-Fu!"; + force = 35; + pixel_x = -12; + pixel_y = 24 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "gBp" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"gBr" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) "gBH" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -9850,30 +8320,53 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) +"gBS" = ( +/obj/structure/girder, +/turf/open/floor/dark2, +/area/shiva/interior/caves/research_caves) +"gBW" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"gCk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Anti-Freeze Lounge" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "gCx" = ( /obj/structure/machinery/landinglight/ds1/spoke, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"gCy" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/garage) "gCL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"gCM" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "gCW" = ( /obj/structure/platform/shiva/catwalk{ dir = 8 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"gDz" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva/snow_mat, +"gDc" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"gEb" = ( +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) +"gEd" = ( +/obj/structure/machinery/light/double, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) "gEk" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -9888,13 +8381,12 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"gFb" = ( -/obj/structure/surface/table, -/obj/structure/window{ +"gEW" = ( +/obj/structure/platform/shiva/catwalk{ dir = 1 }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "gFe" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -9902,7 +8394,7 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"gGc" = ( +"gFI" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ dir = 4; @@ -9914,60 +8406,31 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) +"gFO" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "gGf" = ( /obj/item/ammo_magazine/rifle/m41aMK1, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"gGB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "gGH" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) +"gGN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "gGT" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"gHh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) -"gHr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "gHu" = ( /obj/item/explosive/grenade/custom/large, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/central) -"gHA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/clipboard, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"gIq" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "gIQ" = ( /obj/item/stack/sheet/metal, /turf/open/floor/shiva, @@ -9991,38 +8454,41 @@ /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"gKE" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +"gKA" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "gKQ" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"gLu" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) +"gLe" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "gLv" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"gMl" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "gMv" = ( /turf/closed/shuttle/elevator{ dir = 6 }, /area/shiva/interior/colony/central) -"gMP" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/wred/northwest, +"gMG" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/shiva/red/east, /area/shiva/interior/colony/medseceng) "gNw" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -10030,15 +8496,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"gNF" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/central) -"gNJ" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) +"gNH" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/research_hab) "gNM" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -10052,40 +8513,49 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"gOj" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) "gPg" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/central) +"gPG" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"gPL" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "gPN" = ( /obj/structure/closet/coffin, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"gPZ" = ( -/obj/item/stack/sheet/metal/medium_stack, +"gPX" = ( /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"gQx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/feathertrilby{ - pixel_x = -4; - pixel_y = 5 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +/area/shiva/interior/aux_power) +"gQk" = ( +/obj/item/stool, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "gQy" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"gQz" = ( +/obj/structure/surface/table, +/obj/item/tool/wirecutters/clippers{ + pixel_y = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "gQE" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer3, @@ -10117,6 +8587,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"gRe" = ( +/obj/item/lightstick/red/variant, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) "gRx" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -10130,10 +8604,6 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"gRG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "gRJ" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -10155,68 +8625,77 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"gSb" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"gSG" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"gSJ" = ( -/obj/structure/machinery/vending/cola/research, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +"gSk" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibhead" + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "gTe" = ( /obj/structure/machinery/gibber, /turf/open/floor/prison, /area/shiva/interior/bar) -"gTv" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +"gTC" = ( +/obj/structure/machinery/door_control/brbutton/alt{ + id = "hangar_ice_2"; + pixel_y = 5 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"gTU" = ( -/obj/vehicle/train/cargo/trolley, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/aerodrome) +"gTW" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "gUc" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/shiva/interior/aerodrome) -"gVh" = ( -/obj/structure/window/framed/shiva, +"gUf" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"gVJ" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/green/northwest, -/area/shiva/interior/colony/botany) +/area/shiva/exterior/lz2_fortress) +"gUy" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"gUP" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"gWb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"gWf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) "gWk" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/bar) -"gWF" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) "gXu" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"gXz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"gXO" = ( +/obj/structure/prop/dam/truck, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "gXS" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) @@ -10226,17 +8705,14 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"gYd" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 +"gXZ" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/wood{ + amount = 15 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "gYu" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer0, @@ -10249,6 +8725,11 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"gZp" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "gZG" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 2; @@ -10256,6 +8737,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) +"gZK" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "gZZ" = ( /obj/effect/decal/cleanable/dirt{ icon_state = "thermite"; @@ -10263,11 +8748,22 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hab" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/north, +"had" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) +"hax" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -5; + pixel_y = 11 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "hbo" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, @@ -10279,44 +8775,68 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard) -"hbu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/flour{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"hbB" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/warehouse/caves) "hbD" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"hce" = ( +/obj/item/book/manual/atmospipes{ + pixel_y = 10 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "hcH" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/bar) "hcJ" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/interior/telecomm/lz1_biceps) -"hfm" = ( -/obj/item/paper/research_notes/good, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"hfw" = ( +"hdv" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"hdP" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/deck) +"hdY" = ( +/obj/structure/machinery/vending/cola/research, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"hfa" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/exterior/cp_colony_grounds) +"hfQ" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/central) +"hfT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) -"hfN" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) +"hgb" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "hgI" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, @@ -10327,6 +8847,9 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) +"hhH" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) "hhT" = ( /obj/structure/platform/strata{ dir = 8 @@ -10339,15 +8862,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"hif" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) "hin" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, @@ -10359,17 +8873,24 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"hju" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) -"hjx" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"hjT" = ( +/obj/item/weapon/twohanded/spear, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) +"hka" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"hki" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "hkC" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"hkO" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/central) "hkS" = ( /obj/item/lightstick/red/variant{ pixel_x = 3; @@ -10391,30 +8912,26 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"hlO" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "hmo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/gun/rifle/m41a, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hms" = ( -/turf/open/floor/shiva/wred/east, +"hmp" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb, +/obj/item/weapon/gun/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"hmI" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"hmQ" = ( -/obj/structure/filingcabinet/filingcabinet{ - name = "mail bins" +"hmS" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) "hmU" = ( /obj/structure/largecrate/random/mini/wooden{ pixel_y = 6 @@ -10429,17 +8946,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"hnc" = ( -/turf/open/floor/shiva/purplefull/west, -/area/shiva/exterior/lz2_fortress) -"hnf" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) "hng" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/cp_colony_grounds) @@ -10451,16 +8957,14 @@ /obj/structure/coatrack, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"hpb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - dir = 10 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"hpc" = ( +"hnC" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/interior/aux_power) +"hpg" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/holywater, /turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/s_lz2) +/area/shiva/interior/colony/central) "hpm" = ( /obj/structure/largecrate/random/mini{ layer = 2.99; @@ -10479,13 +8983,22 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) -"hpN" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/obj/structure/machinery/landinglight/ds2/delaytwo, +"hpz" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) +"hpD" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/weapon/gun/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/area/shiva/interior/colony/medseceng) +"hpG" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) "hqd" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 6; @@ -10493,14 +9006,14 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"hqh" = ( -/turf/open/floor/shiva/greencorners/east, -/area/shiva/interior/colony/botany) -"hqC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/north, +"hqO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"hqW" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "hrb" = ( /obj/structure/surface/table, @@ -10513,18 +9026,12 @@ "hrk" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/warehouse/caves) -"hrB" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"hsw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard, -/obj/item/tool/screwdriver, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) +"hsU" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "hsZ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -10535,25 +9042,13 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"htb" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"htC" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/exterior/cp_colony_grounds) -"hul" = ( -/obj/structure/barricade/metal{ - dir = 4; - health = 130 +"htO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/obj/item/stack/barbed_wire, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"hum" = ( -/obj/structure/foamed_metal, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/aux_power) "huv" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -10568,6 +9063,17 @@ /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) +"hvg" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"hvw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/t_scanner, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "hvZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "hangar_ice_3"; @@ -10575,25 +9081,17 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"hwg" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, +"hwz" = ( +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"hwA" = ( -/turf/open/floor/shiva/red/west, /area/shiva/interior/colony/medseceng) -"hwJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Underground Morgue" +"hwG" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9; + pixel_y = 21 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"hxf" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/cp_lz2) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "hxk" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -10601,22 +9099,21 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"hxJ" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) "hxY" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"hye" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"hyu" = ( -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +"hya" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"hyf" = ( +/obj/item/ammo_magazine/rifle/ap, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "hyw" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -10624,25 +9121,25 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"hyx" = ( -/obj/item/tool/mop{ - desc = "Unlock the power of Mop-Fu!"; - force = 35; - pixel_x = -12; - pixel_y = 24 - }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = 4; - pixel_y = 9 +"hyU" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"hzG" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/green/northeast, +/area/shiva/interior/colony/botany) "hzJ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/lz1_valley) -"hzZ" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/north, +"hAv" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"hAC" = ( +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "hAS" = ( /turf/open/floor/interior/plastic/alt, @@ -10651,6 +9148,9 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) +"hBm" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "hBn" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer2, @@ -10658,22 +9158,14 @@ "hBq" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/caves/cp_camp) -"hBI" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"hBN" = ( +"hBW" = ( +/obj/structure/bed/chair/comfy/blue, /obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 + dir = 1; + pixel_y = 9 }, -/obj/item/clothing/under/colonist, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "hCa" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -10686,40 +9178,33 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"hCt" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"hCq" = ( +/obj/structure/machinery/door_control{ + id = "st_18"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_y = 24; + req_access_txt = "100"; + specialfunctions = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"hCX" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/structure/machinery/power/apc{ + dir = 4; + start_charge = 50 }, -/turf/open/floor/shiva/red/east, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) "hCY" = ( /obj/structure/bed/chair/comfy/orange{ dir = 4 }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"hDd" = ( -/obj/item/lightstick/red/spoke, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"hDo" = ( -/obj/structure/girder/reinforced, +"hDg" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"hDs" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_colony_grounds) "hDw" = ( /obj/structure/machinery/light/double{ dir = 1; @@ -10748,6 +9233,10 @@ /obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_rook, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"hDG" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "hDW" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -10787,17 +9276,19 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"hEG" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "hFj" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/fortbiceps) "hFl" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/oob/dev_room) -"hFJ" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "hGj" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "hangar_ice_2"; @@ -10805,9 +9296,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"hGH" = ( -/turf/open/floor/shiva/red/east, -/area/shiva/interior/colony/medseceng) "hHf" = ( /obj/structure/largecrate, /obj/effect/decal/cleanable/dirt, @@ -10821,6 +9309,23 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) +"hHr" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-east-gate" + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"hHv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"hHP" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "hHR" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" @@ -10830,15 +9335,6 @@ }, /turf/open/floor/plating, /area/shiva/exterior/junkyard) -"hHV" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/medseceng) "hHY" = ( /obj/structure/barricade/metal{ layer = 3 @@ -10859,36 +9355,45 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"hIC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) "hIM" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"hJz" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "hJH" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"hKR" = ( -/turf/open/floor/shiva/green/north, -/area/shiva/interior/colony/botany) -"hKS" = ( -/obj/effect/landmark/static_comms/net_two, +"hJU" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 32 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/aux_power) +/area/shiva/interior/colony/medseceng) +"hKe" = ( +/obj/structure/machinery/computer/cameras/telescreen{ + name = "Interrogation Telescreen"; + network = list("interrogation"); + pixel_y = 32 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"hLa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "hLf" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/n_admin) -"hLB" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) "hLE" = ( /obj/item/lightstick/red/variant, /obj/effect/decal/cleanable/dirt{ @@ -10897,17 +9402,47 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hMn" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"hLZ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"hMj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"hMY" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"hMN" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Storeroom" + }, +/turf/open/floor/dark2, +/area/shiva/interior/telecomm/lz1_biceps) +"hMW" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = 6 + }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) +"hNb" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"hPd" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) "hPp" = ( /turf/closed/wall/shiva/prefabricated/orange, /area/shiva/interior/caves/cp_camp) @@ -10919,16 +9454,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"hQU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/shiva/wredcorners/north, -/area/shiva/interior/colony/medseceng) "hQW" = ( /obj/structure/machinery/light/double{ dir = 1; @@ -10936,6 +9461,9 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"hRg" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "hRC" = ( /obj/structure/surface/rack, /obj/item/device/radio{ @@ -10948,12 +9476,6 @@ /obj/structure/machinery/light/double, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hRK" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) "hRQ" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -10974,12 +9496,13 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"hSq" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +"hSC" = ( +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) "hSW" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -10992,21 +9515,6 @@ /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"hTb" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/device/implanter/subdermal_armor{ - pixel_x = 12 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "hTk" = ( /obj/structure/bookcase/manuals/medical, /obj/structure/machinery/light/double{ @@ -11019,10 +9527,27 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"hTy" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"hTJ" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "hTO" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"hUd" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "hUv" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -11041,17 +9566,24 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) -"hUG" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/research_hab) "hUM" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"hUX" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"hVi" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "hVs" = ( /obj/structure/surface/table, /obj/item/evidencebag{ @@ -11059,9 +9591,10 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"hWh" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) +"hWy" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) "hWK" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -11102,26 +9635,20 @@ /obj/structure/machinery/light/double, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"hYf" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"hYT" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"hZu" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +"hYE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/wy_mre, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"hYR" = ( +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"hZn" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + icon_state = "White" }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "hZI" = ( /obj/structure/largecrate/random/mini/small_case/b{ pixel_x = -9 @@ -11135,51 +9662,63 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"iaj" = ( -/obj/structure/machinery/vending/snack, +"iaF" = ( +/obj/structure/largecrate/random/mini/chest/b, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +/area/shiva/interior/lz2_habs) "iaK" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"ibN" = ( -/obj/structure/machinery/light/double, +"iba" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"ibR" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/storage/toolbox/emergency, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/shiva/interior/valley_huts/disposals) +"icc" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"icP" = ( +/obj/item/stack/sheet/metal/small_stack, +/obj/structure/foamed_metal, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"ibP" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, +/area/shiva/exterior/lz2_fortress) +"idf" = ( +/obj/structure/machinery/light/double, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"icC" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +/area/shiva/interior/bar) +"idi" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) +/turf/open/floor/chapel, +/area/shiva/interior/colony/central) +"idJ" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) "idR" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"iek" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"ieo" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva/blue/east, -/area/shiva/interior/colony/n_admin) +"ies" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "iey" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" @@ -11193,53 +9732,62 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"ift" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"ifN" = ( -/obj/structure/surface/rack, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/item/cell/hyper/empty, -/obj/item/cell/hyper/empty, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"ieZ" = ( +/obj/item/paper/research_notes/bad{ + pixel_x = 11; + pixel_y = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"igl" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"ifz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"ifR" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) -"igr" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +"ifW" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "igJ" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"igN" = ( -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/deck) -"ihh" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"igT" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"ihl" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "ihp" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/floor/wood, /area/shiva/interior/bar) +"ihF" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"ihP" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) +"iic" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"iim" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/garage) "iio" = ( /obj/structure/cargo_container/arious/right{ health = 5000; @@ -11247,13 +9795,11 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"iiy" = ( -/obj/item/stool{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +"ije" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) "iji" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/wygoon, @@ -11263,10 +9809,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/warehouse/caves) -"ijq" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) "ijA" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -11288,85 +9830,80 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"ijR" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "ikb" = ( /obj/item/stack/sheet/metal/small_stack, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) +"ikr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"ikH" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/green/northwest, +/area/shiva/interior/colony/botany) "ikR" = ( /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"ile" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/n_admin) -"ilh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"ilo" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"ilt" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, +"ilA" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/crap_item, /turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/research_hab) "ilW" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"imc" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "imk" = ( /obj/effect/spider/stickyweb, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"imq" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) "inJ" = ( /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) +"iob" = ( +/obj/structure/surface/table, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) "iof" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) +"ioH" = ( +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/colony/research_hab) +"ioX" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "ipP" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"ipY" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double, -/obj/item/weapon/gun/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "iqh" = ( /obj/item/device/flashlight, /turf/open/floor/wood, /area/shiva/interior/bar) -"iqt" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 4; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/research_hab) "iqA" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" @@ -11377,36 +9914,10 @@ /obj/structure/coatrack, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"ire" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/antag{ - pixel_y = 7 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) -"irk" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/boiledspagetti, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"irt" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/obj/structure/barricade/metal{ - layer = 3 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"irx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +"irB" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "irT" = ( /obj/structure/platform/strata{ dir = 4 @@ -11414,21 +9925,17 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/exterior/cp_lz2) -"isr" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) -"isU" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"itG" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/red/southwest, +"isW" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/medseceng) +"itz" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "itH" = ( /obj/structure/largecrate/random/secure, /obj/structure/largecrate/random/mini{ @@ -11450,39 +9957,10 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"itW" = ( -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/central) -"iuz" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "iuI" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"iuK" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"iuM" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"iuR" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/medseceng) -"iuX" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "ivl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -11490,19 +9968,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"ivr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Chapel" - }, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) -"ivy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) "ivE" = ( /obj/structure/platform/strata{ dir = 1 @@ -11512,34 +9977,23 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"ivS" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) -"ivU" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) -"iwn" = ( -/obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"iwK" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, +/obj/item/paper_bin, +/obj/structure/machinery/light/double, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/s_admin) "ixo" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"ixr" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "ixC" = ( /obj/structure/surface/rack, /obj/item/device/radio/headset{ @@ -11555,87 +10009,49 @@ /obj/item/device/whistle, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"ixX" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/deck) -"iyk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/sliceable/cheesecake{ - pixel_y = 5 - }, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 10 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"iyP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/ale{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/cans/ale{ - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/cans/ale{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"izt" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) "iAg" = ( /obj/structure/barricade/snow{ dir = 8 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"iAt" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) +"iAs" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "iAG" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"iCr" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +"iAY" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 5 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"iCs" = ( -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva/green/north, -/area/shiva/interior/colony/botany) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"iBJ" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13; + pixel_y = 25 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shiva/exterior/junkyard/fortbiceps) +"iCh" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp{ + pixel_y = 4 + }, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) "iCF" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_colony_grounds) -"iCJ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) "iCK" = ( /obj/item/storage/belt/medical{ pixel_x = -3; @@ -11643,10 +10059,26 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) +"iCM" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/northwest, +/area/shiva/interior/colony/medseceng) +"iCY" = ( +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) "iDa" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"iDd" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) +"iDf" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "iDn" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -11661,10 +10093,22 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"iDN" = ( -/obj/item/weapon/ice_axe/red, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) +"iDB" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"iDT" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 2; + pixel_y = -1 + }, +/turf/closed/wall/shiva/prefabricated/white, +/area/shiva/interior/aux_power) "iDW" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -11675,37 +10119,65 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"iEi" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"iEp" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/medseceng) "iEF" = ( /obj/structure/bed/chair/comfy/orange, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"iFr" = ( +"iEN" = ( +/obj/item/device/taperecorder, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"iFn" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"iFq" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"iFz" = ( /obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"iGb" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"iGf" = ( +/obj/structure/machinery/power/apc{ dir = 1; - pixel_y = 9 + start_charge = 0 }, +/turf/open/floor/plating, +/area/shiva/exterior/cp_colony_grounds) +"iGF" = ( +/obj/item/clipboard, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) +"iHx" = ( +/obj/structure/foamed_metal, /turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/botany) -"iHu" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 +/area/shiva/exterior/lz2_fortress) +"iHA" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + pixel_y = 4 }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/junkyard) -"iHN" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/purple/north, +/area/shiva/interior/lz2_habs) +"iHE" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) "iHV" = ( /obj/structure/largecrate/random{ anchored = 1; @@ -11718,17 +10190,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"iIe" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 10; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/research_hab) "iIg" = ( /obj/structure/stairs/perspective/ice{ icon_state = "p_stair_sn_full_cap" @@ -11743,6 +10204,13 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) +"iJl" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "iJr" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" @@ -11753,33 +10221,55 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"iJA" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) -"iJY" = ( -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"iKW" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) -"iLf" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 +"iJy" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"iKb" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 7 }, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/lz2_fortress) -"iLS" = ( -/obj/item/stack/cable_coil/cut, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) +/area/shiva/interior/colony/s_admin) +"iKI" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"iLj" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"iLY" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "iMb" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) +"iMf" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"iMj" = ( +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"iMq" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) "iMA" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, @@ -11792,12 +10282,28 @@ /obj/item/stack/cable_coil/cut, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"iNS" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"iMY" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/shiva/wredfull, +/turf/open/floor/darkbrown2/northwest, +/area/shiva/interior/valley_huts/disposals) +"iNh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"iNH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "iNX" = ( /obj/effect/decal/cleanable/blood, @@ -11822,32 +10328,11 @@ /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"iOA" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "hangar_ice_3"; - pixel_y = 28 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) -"iPg" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/n_admin) -"iPG" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva/redfull, +"iPl" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"iPU" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/kelotane/skillless{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) "iQe" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -11858,77 +10343,96 @@ "iQq" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"iQP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) -"iRa" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, +"iQE" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + name = "telecomms relay power controller"; + start_charge = 10 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"iQW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"iRh" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) +"iQZ" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"iRA" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"iSj" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) +"iSH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "iTQ" = ( /obj/structure/girder, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"iUk" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +"iUn" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor/shiva/north, +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) -"iVj" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/shiva/exterior/cp_lz2) -"iVT" = ( +"iUY" = ( +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) +"iVe" = ( /obj/structure/surface/table, -/obj/structure/largecrate/random/mini/chest/c{ - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) -"iWa" = ( -/obj/item/clipboard, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) -"iWg" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 }, -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/colony_floodlight{ - layer = 2.9; - pixel_y = 7 +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) -"iWu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ - pixel_y = 26 +/obj/item/tool/lighter/zippo{ + pixel_x = -14; + pixel_y = 14 }, -/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ - pixel_x = -7; - pixel_y = 11 +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"iVt" = ( +/obj/item/frame/toolbox_tiles, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"iWN" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, /turf/open/floor/prison/kitchen, /area/shiva/interior/bar) -"iWO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "iWS" = ( /obj/structure/prop/invuln/dense{ desc = "Gonzo is trying to drill his way to freedom. He made this himself."; @@ -11954,10 +10458,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"iXc" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "iXk" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer2, @@ -11979,18 +10479,12 @@ }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"iXC" = ( -/obj/item/book/manual/atmospipes{ - pixel_y = 10 - }, +"iXB" = ( /obj/structure/surface/table, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"iXE" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "iXG" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro, /turf/open/gm/river/no_overlay, @@ -12007,36 +10501,31 @@ /obj/item/tool/wrench, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"iXZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"iYc" = ( -/obj/structure/surface/table, -/obj/item/clipboard{ - pixel_x = -2; - pixel_y = 5 - }, +"iXW" = ( +/obj/structure/largecrate/random/mini/med, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/valley_huts/no2) +"iYl" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) "iYC" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"iYF" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) +"iYE" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"iYS" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat/chess, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) "iZj" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"iZF" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) "iZX" = ( /obj/structure/machinery/power/apc{ dir = 4; @@ -12044,15 +10533,21 @@ }, /turf/open/floor/shiva, /area/shiva/interior/bar) -"jac" = ( -/obj/structure/platform/shiva/catwalk{ +"jan" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"jaz" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/bed/chair/comfy/orange{ dir = 4 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"jay" = ( -/turf/open/floor/shiva/yellowcorners/north, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "jaF" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer3, @@ -12060,35 +10555,73 @@ "jaT" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/warehouse/caves) -"jaU" = ( -/obj/structure/surface/table, -/obj/item/device/whistle, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"jbE" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/medseceng) -"jbK" = ( -/turf/open/floor/plating, -/area/shiva/exterior/valley) "jbY" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"jcv" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/armor/hos, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +"jca" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"jco" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) +"jcu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"jcC" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/storage/box/engineer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"jcR" = ( +/obj/structure/surface/table/woodentable{ + flipped = 1 + }, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"jdm" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) "jeg" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/shiva, /area/shiva/interior/bar) +"jeA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 9 + }, +/obj/item/toy/deck{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"jeF" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench{ + pixel_x = -5; + pixel_y = -2 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jeX" = ( +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/central) "jft" = ( /obj/structure/surface/table, /obj/item/storage/box/emps, @@ -12110,22 +10643,23 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) -"jgz" = ( +"jgG" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"jhx" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"jhy" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, /turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) -"jhm" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/junkyard) -"jhq" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/n_admin) "jhR" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/kitchen/utensil/pknife{ @@ -12144,18 +10678,23 @@ "jiu" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"jjm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Administration" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"jjX" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) +"jiD" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shiva/exterior/junkyard/fortbiceps) +"jjd" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"jjG" = ( +/turf/open/floor/darkgreen2/northeast, +/area/shiva/interior/colony/botany) +"jko" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/under/overalls, +/obj/item/clothing/suit/storage/apron/overalls, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "jkH" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -12164,12 +10703,27 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"jlb" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "jld" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"jlk" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + name = "telecomms relay power controller"; + start_charge = 0 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"jlr" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) "jlv" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood{ @@ -12189,9 +10743,6 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"jmq" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/central) "jmt" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/snow/layer2, @@ -12199,33 +10750,48 @@ "jmW" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"jny" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"jnW" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellow/west, +"jmX" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/good_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/shiva/interior/valley_huts/disposals) +"jnh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"jnj" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"joh" = ( +"jnM" = ( +/turf/open/floor/shiva/greencorners/north, +/area/shiva/interior/colony/botany) +"jor" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb, +/obj/item/weapon/gun/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva/green/northeast, -/area/shiva/interior/colony/botany) -"jop" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/shiva/red/northwest, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "joF" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"joP" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/deck) +"jpb" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "jph" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -12253,36 +10819,60 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"jqT" = ( -/obj/structure/closet/firecloset, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/redfull, +"jqB" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/medseceng) +"jqU" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/device/implanter/subdermal_armor{ + pixel_x = 12 + }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"jqY" = ( -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "jrg" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/research_caves) -"jru" = ( +"jrK" = ( /turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/n_admin) +/area/shiva/exterior/cp_lz2) "jrR" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"jrV" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "jsn" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"jsA" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/southwest, -/area/shiva/interior/colony/central) +"jsM" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/crayons{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "jtp" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/ice/layer0, @@ -12293,6 +10883,12 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"jvx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "jvz" = ( /obj/structure/platform/strata{ dir = 8 @@ -12310,32 +10906,36 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"jwa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"jwk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +"jwh" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/aux_power) +"jwl" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/rebreather, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) "jwm" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"jwB" = ( +/turf/open/floor/shiva/wredcorners/east, +/area/shiva/interior/colony/medseceng) +"jxf" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "jxh" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) -"jxJ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/warnplate/northwest, +"jxV" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "jzs" = ( /obj/structure/largecrate/random/mini/wooden{ @@ -12344,43 +10944,32 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"jAg" = ( -/turf/open/floor/shiva/snow_mat, -/area/shiva/exterior/cp_lz2) +"jzy" = ( +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) +"jzE" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jAl" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/botany) "jAu" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"jAv" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) "jAL" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) "jAN" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/valley_huts/disposals) -"jBp" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/n_admin) -"jBu" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"jBN" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"jCe" = ( -/obj/structure/machinery/light/double, +"jBY" = ( +/obj/item/packageWrap, /turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) +/area/shiva/interior/colony/research_hab) "jCk" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer2, @@ -12388,6 +10977,23 @@ "jCE" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) +"jCP" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shiva/exterior/junkyard/fortbiceps) +"jCT" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" + }, +/obj/item/paper/research_notes, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "jCZ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -12398,15 +11004,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"jDp" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "jDv" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -12415,22 +11012,20 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) -"jDB" = ( -/obj/item/shard, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"jEa" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) +"jEb" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "jEc" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"jFd" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/botany) "jFq" = ( /obj/structure/surface/rack, /obj/item/lightstick/red/variant, @@ -12449,6 +11044,25 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"jFA" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jGD" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/storage/belt/marine, +/obj/item/clothing/suit/armor/riot/marine, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"jGP" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "jGW" = ( /obj/structure/cargo_container/horizontal/blue/middle, /obj/structure/largecrate/random/mini/small_case/b{ @@ -12457,33 +11071,40 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"jGZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) +"jHf" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/exterior/cp_lz2) "jHg" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"jIF" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/green/southwest, -/area/shiva/interior/colony/botany) -"jIK" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/n_admin) -"jIP" = ( -/obj/structure/platform/strata{ - dir = 4 - }, +"jHh" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"jHK" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -11; + pixel_y = 8 + }, +/obj/item/tool/mop{ + pixel_x = -10 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"jHU" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) +"jIP" = ( +/obj/structure/platform/strata{ + dir = 4 + }, /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) -"jIR" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/s_admin) "jJf" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -12501,6 +11122,17 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"jJT" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"jJW" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "jJZ" = ( /obj/structure/largecrate/random/mini/small_case/b{ pixel_x = -5; @@ -12520,21 +11152,19 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"jLc" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"jLn" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/telecomm/lz1_biceps) +"jKY" = ( +/obj/item/clothing/under/rank/janitor, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "jLx" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) +"jLR" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "jLX" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Anti-Freeze Lounge" @@ -12544,33 +11174,74 @@ "jMf" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"jMD" = ( -/obj/structure/foamed_metal, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"jMZ" = ( -/turf/open/floor/chapel/east, -/area/shiva/interior/colony/central) +"jMg" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/botany) +"jMm" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 + }, +/obj/item/weapon/ice_axe, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) +"jMA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"jMF" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/knife{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/grown/goldapple{ + pixel_y = 4 + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"jNc" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "jNr" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"jOi" = ( +"jNv" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/cp_camp) +/area/shiva/interior/colony/medseceng) +"jOr" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/storage/box/flashbangs, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "jOv" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/device/t_scanner, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"jOA" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/weapon/gun/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"jOI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/garage) "jOP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -12581,9 +11252,6 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"jPj" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) "jPo" = ( /obj/structure/platform/strata{ dir = 1 @@ -12628,6 +11296,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"jQD" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "jQS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -12646,23 +11323,38 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) -"jSb" = ( -/obj/item/weapon/gun/boltaction{ - pixel_x = 12; - pixel_y = 6 - }, -/obj/item/ammo_magazine/rifle/boltaction{ - pixel_x = 5; - pixel_y = -7 - }, -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/structure/barricade/metal{ +"jRQ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"jSd" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) +"jSB" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"jTt" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) +"jTJ" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "jTT" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -12676,18 +11368,40 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"jUj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"jUA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"jUE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "jVi" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"jVp" = ( -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/deck) +"jVn" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"jVv" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "jVx" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating, @@ -12708,25 +11422,22 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse/caves) -"jWL" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) +"jWx" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) +"jXh" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "jXD" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"jXM" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "jYO" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -12735,53 +11446,15 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"jZF" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"kap" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +"jZb" = ( +/turf/open/floor/shiva/bluecorners, +/area/shiva/interior/colony/central) +"jZf" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/s_admin) "kaC" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/aerodrome) -"kaL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"kaT" = ( -/obj/structure/surface/table/woodentable{ - dir = 1; - flipped = 1 - }, -/obj/structure/machinery/computer/objective, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"kbf" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/shiva/wred/southwest, -/area/shiva/interior/colony/medseceng) -"kbl" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"kbJ" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "kbK" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 4; @@ -12789,6 +11462,13 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) +"kbR" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "kbT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light/double{ @@ -12798,82 +11478,57 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/research_hab) -"kbZ" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"kce" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/medseceng) +"kbW" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/arrivals, +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) "kch" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/plasmacutter, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"kcB" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"kdd" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-east-gate" - }, +"kcL" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"kdy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"kdK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"kdR" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, +/area/shiva/interior/colony/n_admin) +"kcM" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva/multi_tiles/west, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/n_admin) -"kdW" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) -"kec" = ( -/obj/structure/window/reinforced/tinted{ +"kcO" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"kdN" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/deck) +"ked" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/landmark/crap_item, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/area/shiva/exterior/lz2_fortress) "kee" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"keq" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"keE" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "keI" = ( /obj/structure/largecrate/random{ anchored = 1; @@ -12883,6 +11538,21 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"keK" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"kfw" = ( +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/medseceng) +"kfA" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "kfW" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -12910,6 +11580,25 @@ /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"khj" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + icon_state = "psiphon:1" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"khl" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"khp" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/exterior/cp_lz2) "khw" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -12921,12 +11610,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"khx" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) "khz" = ( /obj/item/device/flashlight, /turf/open/floor/shiva, @@ -12937,10 +11620,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"kiv" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "kiB" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -12957,17 +11636,10 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/s_lz2) -"kiS" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) -"kjt" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +"kjh" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "kjM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper North Aerodrome Hangar"; @@ -12982,6 +11654,22 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/interior/warehouse/caves) +"kjZ" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/central) +"kkX" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"klo" = ( +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"klB" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/central) "klF" = ( /obj/structure/bed/chair{ dir = 4 @@ -12994,10 +11682,13 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) -"klP" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) +"kmg" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) "kmM" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" @@ -13014,6 +11705,18 @@ "kng" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/right_spiders) +"knj" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"knt" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) "knC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Aurora Medical Clinic Treatment" @@ -13023,6 +11726,9 @@ "knF" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_colony_grounds) +"knH" = ( +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) "knI" = ( /obj/item/tool/shovel/spade{ pixel_x = -3; @@ -13041,25 +11747,44 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"knU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"knW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"kod" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "kop" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"koS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) +"kpw" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/botany) +"kpy" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "kqb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"kqs" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/interior/colony/central) -"kqH" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "kri" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, @@ -13068,10 +11793,14 @@ /obj/structure/bed/chair/office/light, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"krM" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) +"krq" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "krU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/white, @@ -13081,18 +11810,6 @@ /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"ksu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -32 - }, -/obj/structure/bed/chair, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"ksY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/bed/chair, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "ktd" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/garage) @@ -13105,9 +11822,17 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"ktQ" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "kue" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/colony/research_hab) +"kuw" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "kuJ" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -13115,9 +11840,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"kuM" = ( -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/deck) "kuS" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer3, @@ -13133,27 +11855,27 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"kvu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/russianRed{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 9 +"kva" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"kvg" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/area/shiva/interior/colony/central) "kvB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin, /obj/item/tool/stamp, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"kvD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "kvE" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, /obj/structure/prop/invuln/ice_prefab/roof_greeble, @@ -13163,31 +11885,27 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) +"kvS" = ( +/turf/open/floor/bcircuit, +/area/shiva/interior/colony/medseceng) "kwa" = ( /turf/open/floor/plating, /area/shiva/exterior/junkyard) -"kwc" = ( -/obj/structure/bed/chair/comfy/blue, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) "kwf" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"kxb" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/central) -"kxv" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"kxx" = ( -/turf/open/floor/shiva/purplefull/north, +"kxo" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shiva/exterior/junkyard/fortbiceps) +"kxE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "kxG" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -13195,12 +11913,15 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"kxN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" +"kyj" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "kys" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -13211,34 +11932,13 @@ /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) -"kyu" = ( -/obj/structure/surface/table, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) "kyD" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"kyG" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"kzr" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +"kzt" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) "kzE" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 5 @@ -13249,6 +11949,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) +"kzF" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "kAd" = ( /obj/structure/closet/radiation, /turf/open/auto_turf/snow/layer3, @@ -13270,17 +11974,24 @@ /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"kAp" = ( -/obj/item/stack/sheet/metal/small_stack, -/obj/structure/foamed_metal, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "kAw" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"kAT" = ( -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/garage) +"kAI" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"kAU" = ( +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"kBg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/darkbrown2/north, +/area/shiva/interior/valley_huts/disposals) "kBo" = ( /obj/structure/prop/ice_colony/poly_kevlon_roll{ pixel_y = 21 @@ -13294,6 +12005,36 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"kBt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 9 + }, +/obj/item/stack/sheet/mineral/phoron{ + pixel_x = -1; + pixel_y = 14 + }, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"kBT" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/aux_power) +"kBU" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"kCc" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/up, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"kCs" = ( +/obj/item/lightstick/red/spoke, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "kCK" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" @@ -13308,55 +12049,60 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"kDJ" = ( -/obj/structure/bed/chair/office/dark{ +"kEn" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"kEh" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) +"kEp" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "kEs" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"kEx" = ( -/turf/open/floor/plating, -/area/shiva/interior/bar) -"kEy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"kEB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/medseceng) -"kEK" = ( +"kEu" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"kEw" = ( /obj/structure/stairs/perspective{ - dir = 4; + dir = 1; icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) -"kFd" = ( -/obj/structure/machinery/power/terminal{ +"kEx" = ( +/turf/open/floor/plating, +/area/shiva/interior/bar) +"kFm" = ( +/obj/structure/machinery/landinglight/ds2, +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, /turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"kFr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"kFw" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) -"kFJ" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"kGn" = ( -/obj/item/device/motiondetector/hacked, -/turf/open/floor/shiva/green/northwest, -/area/shiva/interior/colony/botany) "kGz" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/floor/wood, @@ -13365,39 +12111,31 @@ /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"kHB" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"kHg" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"kIj" = ( +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) +"kIA" = ( +/obj/structure/surface/table{ + dir = 4; + flipped = 1 }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"kIC" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/exterior/lz2_fortress) +"kIY" = ( /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"kHG" = ( -/obj/structure/largecrate/random/mini/med, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/cp_camp) -"kIq" = ( -/obj/structure/bed/chair, +"kJf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/n_admin) -"kIs" = ( -/obj/item/storage/donut_box, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"kIH" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"kJi" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) +/area/shiva/interior/colony/research_hab) "kJw" = ( /obj/item/clipboard, /turf/open/floor/shiva, @@ -13408,25 +12146,21 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"kJL" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/shiva/wred/southwest, +"kJO" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/east, /area/shiva/interior/colony/medseceng) -"kJN" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "kJQ" = ( /obj/item/lightstick/red/variant, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"kLa" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +"kKN" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "kLi" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/snow_suit/doctor{ @@ -13440,19 +12174,6 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"kLv" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"kLz" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"kLB" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails, -/turf/open/floor/shiva/north, -/area/shiva/interior/aux_power) "kLG" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /obj/structure/flora/grass/tallgrass/ice, @@ -13461,9 +12182,10 @@ "kLM" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"kMg" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/caves/s_lz2) +"kMs" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) "kMF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -13472,29 +12194,23 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"kMJ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - pixel_y = 6 +"kMU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"kMO" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/kitchen, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) -"kNf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"kOi" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/effect/spawner/random/attachment, -/obj/effect/decal/cleanable/dirt, +"kNG" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"kOC" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"kOD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/reagent_scanner, /turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "kOV" = ( @@ -13507,6 +12223,10 @@ "kPl" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/medseceng_caves) +"kPz" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "kPS" = ( /obj/structure/machinery/light/double{ dir = 4; @@ -13514,20 +12234,14 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"kPX" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) "kPZ" = ( /obj/structure/closet/bodybag, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"kQi" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) +"kQy" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "kQF" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 5 @@ -13538,10 +12252,18 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"kQJ" = ( +"kQI" = ( +/obj/structure/surface/table, +/obj/item/device/lightreplacer, +/obj/item/clothing/mask/rebreather, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) +"kQV" = ( +/obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "kQW" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -13551,48 +12273,25 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"kQX" = ( -/obj/item/shard{ - icon_state = "large" +"kRc" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"kRj" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -5; - pixel_y = 11 +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "kRq" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"kRI" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/wred, +"kRC" = ( +/obj/structure/surface/rack, +/obj/item/cell, +/obj/item/cell, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/medseceng) -"kRK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/chapel, -/area/shiva/interior/colony/central) -"kRR" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"kRV" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "kSh" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer2, @@ -13606,16 +12305,13 @@ }, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) +"kSU" = ( +/obj/structure/machinery/cryo_cell, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "kTd" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/colony/research_hab) -"kTI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_queen{ - pixel_y = 7 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) "kTP" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, @@ -13624,6 +12320,21 @@ /obj/item/tool/wirecutters, /turf/open/floor/plating, /area/shiva/interior/colony/deck) +"kUd" = ( +/turf/open/floor/shiva/green/northwest, +/area/shiva/interior/colony/botany) +"kUg" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/n_admin) +"kUo" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "kVd" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) @@ -13634,11 +12345,13 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"kVA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/twohanded/fireaxe, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +"kVy" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) "kWa" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 9 @@ -13650,12 +12363,10 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"kWG" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/bluefull, +"kWz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/bronze, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "kWK" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, @@ -13666,14 +12377,6 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/cp_camp) -"kWP" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/rum{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) "kXs" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -13693,6 +12396,15 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"kYe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "kZj" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -13703,13 +12415,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"kZy" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8; - layer = 2.98 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) "kZK" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/item/ammo_magazine/handful/shotgun/buckshot{ @@ -13718,6 +12423,16 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) +"kZU" = ( +/obj/structure/window/reinforced/tinted/frosted, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"lab" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/research_hab) "las" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = 1; @@ -13735,32 +12450,40 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"laD" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes/grant, -/obj/item/paper/research_notes/decent{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) -"laK" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"laL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +"lbf" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/deck) +"lbo" = ( +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) +"lbA" = ( +/turf/open/floor/shiva/bluecorners/west, +/area/shiva/interior/colony/central) +"lbC" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) -"lbF" = ( -/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"lbV" = ( /obj/structure/machinery/microwave{ pixel_y = 6 }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +/obj/structure/surface/table, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "lcv" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = -6; @@ -13772,6 +12495,18 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"lcC" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"lcH" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "\improper Aurora Medical Clinic Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "ldd" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -13784,6 +12519,9 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"lef" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/botany) "leg" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/telecomm/lz1_north) @@ -13791,18 +12529,6 @@ /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"lfk" = ( -/obj/structure/surface/table, -/obj/item/device/binoculars/range{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -14; - pixel_y = 14 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "lfC" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/ice/layer2, @@ -13811,15 +12537,6 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard) -"lgx" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "lgN" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/junkyard/fortbiceps) @@ -13840,19 +12557,27 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"lim" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "lip" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"liD" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - start_charge = 0 +"ljt" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"ljv" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) "ljz" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -13860,24 +12585,27 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"ljM" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/deck) -"ljS" = ( +"lkf" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"lkj" = ( /obj/structure/surface/table, -/obj/item/tool/wrench, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"lkP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/good_item, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -4; + pixel_y = 10 + }, /turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"lkX" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/colony/n_admin) +"llu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"llT" = ( +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "llZ" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/warehouse/caves) @@ -13885,38 +12613,25 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"lmL" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/botany) -"lmQ" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"lnk" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "telecomms relay power controller"; - start_charge = 10 +"lnm" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, /turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) +/area/shiva/interior/colony/medseceng) "lnH" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"lnJ" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) "lnR" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/s_lz2) -"lnY" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/telecomm/lz1_biceps) -"lod" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/interior/colony/botany) "loe" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -13924,6 +12639,12 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"loi" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "lok" = ( /obj/structure/cargo_container/ferret/left, /turf/open/auto_turf/snow/layer3, @@ -13935,29 +12656,17 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"loH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +"loC" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "loX" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"lpn" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 6 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"lpA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "lpD" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xtracks" @@ -13972,10 +12681,6 @@ /obj/structure/cargo_container/ferret/right, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"lpX" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) "lqu" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -14004,14 +12709,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"lro" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "telecomms relay power controller"; - start_charge = 0 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "lrt" = ( /obj/item/shard{ icon_state = "large"; @@ -14019,52 +12716,69 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) +"lry" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) +"lrV" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/central) "lsg" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) -"lsk" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +"lsG" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"lsI" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 + }, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/warehouse/caves) "ltA" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, /obj/item/storage/belt/utility/full, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) +"luz" = ( +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/aux_power) "luD" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"luR" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +"luL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "nlz_shutters"; + name = "\improper Bio-lab Shutters" }, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"lvj" = ( -/obj/structure/machinery/landinglight/ds2, +/area/shiva/interior/lz2_habs) +"luM" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/reagent_container/food/condiment/coldsauce, +/obj/item/reagent_container/food/condiment/coldsauce, +/obj/item/reagent_container/food/condiment/coldsauce, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"luX" = ( +/obj/item/paper/research_notes/decent, /turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"lvq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"lvW" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/research_hab) "lwo" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) @@ -14075,17 +12789,34 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/garage) -"lxl" = ( -/obj/item/stack/rods{ - pixel_x = 6; - pixel_y = -3 +"lwH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"lwQ" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) +"lwV" = ( +/obj/structure/machinery/door_control{ + id = "st_17"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 }, -/obj/item/stack/catwalk, -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) -"lxn" = ( /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/area/shiva/interior/valley_huts/no2) +"lxy" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) "lyh" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -14094,10 +12825,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"lyw" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) "lzQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NS-center" @@ -14112,6 +12839,21 @@ /obj/structure/largecrate/random, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) +"lAg" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"lAz" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "lAN" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -14119,12 +12861,9 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"lBC" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, +"lCa" = ( /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/area/shiva/interior/colony/central) "lCb" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/ice/layer0, @@ -14136,16 +12875,33 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"lCB" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 +"lCk" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"lCr" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"lCU" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"lDv" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/shiva/wred/southeast, -/area/shiva/interior/colony/medseceng) +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"lDu" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "lDx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Colony Dormitories"; @@ -14153,36 +12909,29 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"lDI" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"lEJ" = ( -/obj/structure/surface/table/woodentable{ - flipped = 1 - }, -/obj/effect/spawner/random/technology_scanner, +"lFF" = ( +/obj/structure/bed/roller, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"lFp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_y = 9 - }, -/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) -"lFP" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) +"lFJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) "lFX" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"lGa" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + start_charge = 0 + }, +/turf/open/floor/plating, +/area/shiva/exterior/cp_lz2) "lGq" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) @@ -14205,16 +12954,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"lGZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) "lHl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -14224,88 +12963,93 @@ /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating, /area/shiva/interior/garage) -"lHA" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"lHK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool{ - pixel_y = 2 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"lHX" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) "lIa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"lJh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"lJt" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +"lIk" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"lIK" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"lIN" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) "lJx" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) +"lJI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + dir = 5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "lKz" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"lKJ" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - start_charge = 0 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"lKQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/greencorners/west, -/area/shiva/interior/colony/botany) "lLf" = ( /obj/item/tool/screwdriver, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) +"lLp" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/storage/belt/marine, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "lLv" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) +"lLR" = ( +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) +"lMN" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "lMO" = ( /obj/structure/barricade/snow{ dir = 8 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"lNf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) +"lMY" = ( +/obj/item/weapon/gun/pistol/highpower, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "lNg" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/lz1_valley) -"lNm" = ( -/obj/item/paper/janitor{ - pixel_y = 8 +"lNk" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/shiva/exterior/cp_lz2) +"lNq" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/obj/structure/surface/table, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "lNE" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -14322,37 +13066,49 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"lNP" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "lNV" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/medseceng) -"lOO" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/garage) -"lOT" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/red/southwest, -/area/shiva/interior/colony/medseceng) -"lPh" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/device/flashlight, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) -"lPC" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"lOg" = ( +/obj/structure/barricade/metal{ + dir = 4; + health = 130 + }, +/obj/item/stack/barbed_wire, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"lOq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"lOr" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, /turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"lPp" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"lPB" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) -"lQa" = ( -/turf/open/floor/shiva/red/west, -/area/shiva/interior/colony/central) "lQm" = ( /obj/structure/reagent_dispensers/water_cooler{ density = 0; @@ -14365,24 +13121,21 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"lQN" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 10 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/cp_colony_grounds) "lRo" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"lRI" = ( -/obj/structure/largecrate/random/mini/med, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) "lRJ" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/research_hab) -"lSz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/n_admin) "lSU" = ( /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/interior/colony/research_hab) @@ -14393,50 +13146,51 @@ "lTr" = ( /turf/open/floor/plating, /area/shiva/exterior/telecomm/lz2_southeast) -"lTL" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-north" - }, +"lTK" = ( +/obj/item/trash/raisins, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) +"lUA" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"lUU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"lTN" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 0 +/area/shiva/interior/colony/medseceng) +"lVu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -32 }, -/turf/open/floor/darkbrown2/east, -/area/shiva/interior/valley_huts/disposals) -"lUF" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/interior/colony/botany) -"lUQ" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, +/obj/structure/bed/chair, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"lVw" = ( +/obj/structure/closet/firecloset, /turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) -"lVb" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"lVf" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/research_hab) "lVF" = ( /obj/structure/platform/shiva/catwalk{ dir = 4 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) -"lWr" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, +"lVK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"lWl" = ( +/obj/item/ammo_magazine/flamer_tank, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, /turf/open/floor/shiva/north, /area/shiva/interior/colony/central) +"lWm" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) "lWC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" @@ -14453,45 +13207,12 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"lWR" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"lWW" = ( -/turf/open/floor/chapel/west, -/area/shiva/interior/colony/central) -"lXj" = ( -/turf/open/floor/shiva/yellowcorners/west, -/area/shiva/interior/colony/medseceng) -"lXy" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - pixel_y = 6 +"lXd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) -"lXE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/bronze, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"lXM" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 16 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "lXQ" = ( /obj/structure/stairs/perspective/ice{ dir = 1; @@ -14499,14 +13220,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse/caves) -"lYf" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "nlz_shutters"; - name = "\improper Bio-lab Shutters" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) "lYk" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin{ @@ -14526,6 +13239,11 @@ /mob/living/simple_animal/hostile/giant_spider/hunter, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"lYt" = ( +/obj/structure/surface/table, +/obj/item/device/camera, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "lYG" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random{ @@ -14537,25 +13255,10 @@ /obj/effect/spawner/random/powercell, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"lYX" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"mae" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +"lZH" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "mah" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -14563,14 +13266,23 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"may" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "maA" = ( /obj/structure/surface/table/woodentable, /obj/item/ammo_magazine/rifle/boltaction, /turf/open/floor/wood, /area/shiva/interior/bar) -"maW" = ( -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) +"maO" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/valley) "mbj" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -14581,38 +13293,57 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"mbp" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "mbt" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"mcw" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) -"mcH" = ( -/obj/effect/decal/warning_stripes{ +"mcF" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"mcH" = ( +/obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"mdx" = ( +"mcV" = ( +/obj/effect/decal/warning_stripes{ + pixel_y = 32 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) +/area/shiva/interior/colony/medseceng) +"mcW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/chapel/east, +/area/shiva/interior/colony/central) +"mdw" = ( +/obj/item/clipboard, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"mdz" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "mdV" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"med" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "meg" = ( /obj/item/tool/wet_sign, /turf/open/floor/wood, @@ -14622,10 +13353,6 @@ /obj/item/stack/sheet/metal/small_stack, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"meG" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) "mfa" = ( /obj/item/weapon/ice_axe, /turf/open/auto_turf/snow/layer2, @@ -14636,24 +13363,15 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"mfe" = ( -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"mfr" = ( -/turf/open/floor/shiva/yellowcorners/east, -/area/shiva/interior/colony/medseceng) -"mgt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +"mgc" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) -"mgA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light/double, /turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +/area/shiva/interior/bar) "mgL" = ( /obj/item/weapon/gun/energy/taser, /obj/structure/machinery/light/double{ @@ -14676,10 +13394,10 @@ /obj/effect/spawner/random/powercell, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"mhx" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) +"mhL" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) "mhP" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) @@ -14688,17 +13406,28 @@ dir = 8 }, /area/shiva/interior/aerodrome) +"mia" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "mib" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/medseceng_caves) -"miD" = ( +"mik" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"mip" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"mju" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, /turf/open/floor/shiva/yellow/east, -/area/shiva/interior/colony/research_hab) -"miW" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/garage) "mjV" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating, @@ -14710,40 +13439,63 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"mkK" = ( -/obj/structure/surface/table/reinforced/prison, +"mkF" = ( +/obj/item/book/manual/security_space_law, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +/area/shiva/interior/colony/medseceng) "mlG" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) +"mlQ" = ( +/obj/item/tool/kitchen/rollingpin, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "mlX" = ( /obj/docking_port/stationary/marine_dropship/lz2{ name = "LZ2: Research Landing Zone" }, /turf/open/floor/plating, /area/shiva/exterior/lz2_fortress) -"mms" = ( -/turf/open/floor/shiva/north, +"mmt" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"mmR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"mmU" = ( +/turf/open/floor/shiva/yellowcorners/east, /area/shiva/interior/colony/deck) -"mnD" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/exterior/lz2_fortress) +"mnw" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"mny" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/ointment, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "mnS" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"moV" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/structure/machinery/light/double, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +"moK" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "mpt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc{ @@ -14752,34 +13504,55 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"mpB" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/storage/belt/marine, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"mpH" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "mpI" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"mqd" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, +"mpM" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/chunk, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"mqe" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"mqt" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "mqD" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/central) +"mqI" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) +"mqR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "mru" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/rum{ @@ -14788,25 +13561,28 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"mrY" = ( +"msp" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) -"msd" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) +/area/shiva/interior/colony/research_hab) "msu" = ( /obj/structure/closet/bodybag, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"msN" = ( -/obj/structure/bedsheetbin{ - pixel_y = 9 +"msS" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "mti" = ( /obj/structure/machinery/light/double{ dir = 4; @@ -14814,16 +13590,36 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"mtA" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) +"mtG" = ( +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"mtN" = ( +/turf/open/floor/plating, +/area/shiva/exterior/valley) "mtU" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"mua" = ( +/obj/structure/bed/roller, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"muq" = ( +/obj/item/evidencebag, +/obj/item/trash/pistachios, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) +"muz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/beakers, +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "muH" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer2, @@ -14840,6 +13636,9 @@ /obj/structure/largecrate/random/mini/ammo, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"mvt" = ( +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) "mvF" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -14856,22 +13655,25 @@ /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"mwa" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "mwE" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/junkyard) -"mwF" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) "mwJ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"mxn" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "mxr" = ( /obj/structure/stairs/perspective/ice{ dir = 8; @@ -14879,6 +13681,30 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"mxw" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"myk" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"myC" = ( +/obj/structure/surface/table{ + dir = 4; + flipped = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"myG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) "myR" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -14895,10 +13721,34 @@ /obj/structure/prop/invuln/ice_prefab/standalone/trim, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"mAl" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"mAu" = ( +/obj/structure/machinery/light/double, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "mAK" = ( /obj/item/weapon/ice_axe/green, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"mAX" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "mBf" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_4" @@ -14910,6 +13760,15 @@ /obj/effect/decal/cleanable/ash, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) +"mBq" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/dexalin/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "mBM" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -2; @@ -14917,23 +13776,12 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"mBW" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) "mCe" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"mCg" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "mCj" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) @@ -14943,22 +13791,18 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"mCn" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/interior/aux_power) "mCo" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"mCs" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"mCq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "mCG" = ( /obj/structure/platform_decoration/strata{ dir = 4 @@ -14983,12 +13827,12 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"mEp" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 +"mDE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "mEw" = ( /obj/structure/cargo_container/wy/left, /turf/open/auto_turf/snow/layer3, @@ -15007,24 +13851,24 @@ }, /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/bar) -"mEV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"mFm" = ( +"mFe" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/crap_item, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/area/shiva/interior/garage) "mFo" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"mFD" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/wred/northeast, +"mFP" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"mGa" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) "mGk" = ( /obj/item/tool/shovel/snow, @@ -15035,13 +13879,10 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) -"mGn" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) +"mGz" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "mGI" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random/mini{ @@ -15050,15 +13891,16 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"mGR" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "mHn" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz2_southeast) -"mHA" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) "mHB" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" @@ -15077,13 +13919,13 @@ /obj/structure/computerframe, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"mIt" = ( -/obj/structure/machinery/light/double{ +"mIf" = ( +/obj/structure/machinery/power/apc{ dir = 1; - pixel_y = 9 + start_charge = 0 }, -/turf/open/floor/shiva/green/north, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "mIx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/snow/layer1, @@ -15091,6 +13933,18 @@ "mIL" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) +"mIN" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"mJh" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "mJx" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/layer1, @@ -15113,10 +13967,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) -"mKk" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "mKr" = ( /obj/structure/window/framed/shiva, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -15134,10 +13984,6 @@ /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/shiva/interior/colony/s_admin) -"mKB" = ( -/obj/item/paper, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "mKD" = ( /obj/structure/machinery/cell_charger, /turf/open/auto_turf/snow/layer0, @@ -15146,21 +13992,18 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"mLo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 +"mLP" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"mLG" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) +"mLR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "mLT" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -15168,10 +14011,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"mMa" = ( -/obj/item/packageWrap, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/research_hab) "mMg" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 1; @@ -15179,6 +14018,14 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"mMt" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "mME" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -15199,14 +14046,14 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"mNK" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"mOu" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellow, +"mNx" = ( +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) +"mOr" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "mOv" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -15221,28 +14068,15 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) -"mQl" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"mQs" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, +"mPI" = ( +/obj/structure/closet/wardrobe/green, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"mQm" = ( +/obj/item/stack/rods, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) -"mQL" = ( -/turf/open/floor/darkgreen2/northwest, -/area/shiva/interior/colony/botany) -"mRa" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) +/area/shiva/exterior/lz2_fortress) "mRc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -15262,13 +14096,18 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) +"mRr" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/exterior/cp_lz2) "mRv" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"mRU" = ( -/turf/open/floor/shiva/yellowcorners/west, -/area/shiva/interior/colony/research_hab) +"mRw" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "mSv" = ( /obj/item/tool/shovel/spade{ pixel_x = -3; @@ -15276,13 +14115,14 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"mSR" = ( -/turf/open/floor/shiva/bluecorners, -/area/shiva/interior/colony/central) -"mTK" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +"mSU" = ( +/obj/structure/dispenser, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) +"mTI" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) "mUB" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -15302,10 +14142,31 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"mVl" = ( -/obj/structure/prop/dam/truck, +"mUZ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/north, -/area/shiva/interior/garage) +/area/shiva/interior/colony/s_admin) +"mVf" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/botany) +"mVU" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"mVW" = ( +/obj/item/shard, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "mVY" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -15316,34 +14177,27 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"mWw" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"mWA" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"mWE" = ( +"mWo" = ( +/obj/structure/barricade/handrail/strata, /obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"mWK" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"mXq" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"mWG" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"mXa" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + start_charge = 0 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"mXe" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) "mXz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -15354,46 +14208,56 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"mXS" = ( -/obj/structure/machinery/newscaster/security_unit, -/turf/closed/wall/shiva/prefabricated, -/area/shiva/interior/colony/central) -"mXV" = ( +"mXC" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) +"mXK" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/research_hab) +"mXS" = ( +/obj/structure/machinery/newscaster/security_unit, +/turf/closed/wall/shiva/prefabricated, +/area/shiva/interior/colony/central) +"mXV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"mYm" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +"mYa" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) +"mYn" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) "mYK" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"mYX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) "mZb" = ( /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/shiva/interior/bar) -"mZH" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"mZR" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/green/east, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) +"nat" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "naN" = ( /obj/structure/airlock_assembly, /turf/open/floor/plating, @@ -15404,6 +14268,12 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"naZ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "nbk" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -15412,6 +14282,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"nca" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/research_hab) "ncB" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, @@ -15420,24 +14294,27 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/warehouse) -"ncY" = ( -/obj/item/weapon/gun/flamer, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) "ndb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/research_hab) +"ndm" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "ndJ" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ndR" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) "nej" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; @@ -15452,21 +14329,14 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"neS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 9; - pixel_y = 17 - }, -/obj/item/tool/surgery/scalpel{ - pixel_x = 16 - }, -/obj/item/tool/surgery/hemostat{ - pixel_x = -4; - pixel_y = 4 +"neR" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/blue/east, +/area/shiva/interior/colony/n_admin) "neZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -15477,46 +14347,40 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"nfe" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"nfg" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"ngx" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) +"ngi" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) "ngz" = ( /obj/item/tool/wrench, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) -"nhl" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/aux_power) -"nhB" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 +"ngK" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"nho" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cherrypie, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"nhp" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva/multi_tiles/west, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"nhX" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "nig" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -15534,6 +14398,12 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"niG" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/voice, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) "niL" = ( /obj/structure/platform/strata{ dir = 8 @@ -15546,6 +14416,24 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"njK" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 + }, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"nkj" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"nle" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "nlx" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -15556,13 +14444,6 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"nlG" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "nmf" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" @@ -15570,10 +14451,11 @@ /obj/structure/prop/invuln/ice_prefab/roof_greeble, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"nmi" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) +"nmr" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) "nmt" = ( /obj/structure/machinery/power/apc{ dir = 4 @@ -15592,20 +14474,30 @@ /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"nnG" = ( -/obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/red/southeast, -/area/shiva/interior/colony/central) +"nnD" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "noa" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" }, /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) +"nob" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/exterior/cp_lz2) "noi" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/colony/n_admin) +"nom" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"noQ" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "noV" = ( /obj/item/tool/shovel/spade{ layer = 2.99; @@ -15628,20 +14520,16 @@ /obj/structure/inflatable, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"nqu" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/interior/colony/central) -"nqK" = ( -/obj/structure/platform/shiva/catwalk, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"nrf" = ( -/obj/structure/machinery/reagentgrinder{ - pixel_y = 12 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +"nql" = ( +/obj/structure/dispenser, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"nqn" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/botany) +"nqz" = ( +/turf/open/floor/shiva/blue/east, +/area/shiva/interior/colony/n_admin) "nrr" = ( /obj/structure/surface/table, /obj/structure/noticeboard{ @@ -15653,25 +14541,21 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nrB" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/north, -/area/shiva/interior/aux_power) +"nrz" = ( +/obj/item/frame/apc, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "nrN" = ( /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"nrU" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/aux_power) -"nsI" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/southeast, -/area/shiva/interior/colony/medseceng) +"nsg" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Underground Morgue" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "ntc" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) @@ -15714,20 +14598,35 @@ }, /turf/open/gm/river, /area/shiva/interior/caves/research_caves) -"nvS" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/exterior/cp_colony_grounds) -"nwd" = ( +"nvB" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 12 +/obj/item/storage/box/trackimp, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) +"nvO" = ( +/obj/structure/machinery/door_control/brbutton/alt{ + id = "hangar_ice_3"; + pixel_y = 5 }, -/obj/item/storage/firstaid/rad{ - pixel_y = 4 +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = -12; + pixel_y = 7 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/aerodrome) +"nwo" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) +"nwF" = ( +/obj/item/tool/shovel/snow, +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) "nxi" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer3, @@ -15743,16 +14642,26 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"nxA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "nyc" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"nyt" = ( +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"nyE" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "nyS" = ( /obj/structure/platform/strata{ dir = 8 @@ -15779,6 +14688,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"nzp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/twohanded/fireaxe, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "nzr" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -15786,6 +14700,18 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) +"nzD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"nzG" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) +"nzK" = ( +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "nzR" = ( /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/snow/layer3, @@ -15794,16 +14720,19 @@ /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"nAs" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) -"nAY" = ( -/turf/open/floor/shiva/yellowcorners, +"nBg" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"nBh" = ( -/turf/open/floor/shiva/yellowcorners, -/area/shiva/interior/colony/research_hab) +"nBk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "nBo" = ( /obj/structure/largecrate/random, /obj/item/device/flashlight{ @@ -15812,30 +14741,29 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"nBs" = ( -/obj/structure/surface/table, -/obj/item/frame/firstaid_arm_assembly{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/item/tool/wrench{ - pixel_x = -5; - pixel_y = -2 +"nBy" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) -"nBB" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib6" +"nBI" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "nlz_shutters"; + pixel_y = 28 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"nCo" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"nCr" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/obj/item/circuitboard/firealarm, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/chapel/east, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "nCx" = ( /obj/structure/closet/coffin, /obj/effect/landmark/objective_landmark/close, @@ -15852,10 +14780,16 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"nED" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) +"nDY" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"nEN" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "nEQ" = ( /obj/structure/inflatable, /turf/open/auto_turf/snow/layer2, @@ -15866,45 +14800,29 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"nEZ" = ( -/obj/structure/machinery/vending/snack, +"nFQ" = ( +/obj/item/tool/wirecutters/clippers, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"nFg" = ( -/obj/item/stool{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/exterior/cp_lz2) -"nFB" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) -"nGv" = ( -/obj/item/shard{ - icon_state = "large" +/area/shiva/interior/lz2_habs) +"nGf" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"nGx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "nGT" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"nHj" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"nHt" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/medseceng) +"nHp" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "nHH" = ( /obj/structure/surface/table, /obj/item/storage/donut_box{ @@ -15912,6 +14830,31 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"nHJ" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/structure/machinery/light/double, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"nHO" = ( +/turf/open/floor/shiva/greencorners/west, +/area/shiva/interior/colony/botany) +"nHZ" = ( +/obj/structure/largecrate/random/mini/wooden{ + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"nIr" = ( +/turf/open/floor/darkbrowncorners2, +/area/shiva/interior/valley_huts/disposals) +"nIv" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "nIA" = ( /obj/item/lightstick/red/variant/planted, /obj/structure/platform/shiva/catwalk{ @@ -15919,22 +14862,22 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/aerodrome) -"nIB" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "nIN" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, /turf/open/floor/wood, /area/shiva/interior/bar) -"nJu" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) +"nJt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"nJX" = ( +/turf/open/floor/shiva/greencorners, +/area/shiva/interior/colony/botany) "nKc" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 1; @@ -15942,6 +14885,14 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"nKk" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "nKD" = ( /obj/structure/largecrate/random/mini/small_case/c{ pixel_x = -7; @@ -15952,14 +14903,14 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"nKO" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/botany) -"nLn" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +"nKF" = ( +/obj/item/clipboard, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"nLj" = ( +/obj/item/newspaper, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "nMk" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp{ @@ -15967,10 +14918,12 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nMP" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"nMv" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "nMR" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -15995,22 +14948,13 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) -"nNj" = ( -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) -"nNN" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"nNX" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +"nNs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + dir = 10 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/warehouse/caves) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "nOd" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/s_admin) @@ -16020,10 +14964,10 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"nOB" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) +"nOG" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "nOK" = ( /obj/structure/platform/strata{ dir = 1 @@ -16040,13 +14984,18 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"nPH" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 +"nPj" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"nPE" = ( /obj/structure/surface/table, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +/obj/item/storage/belt/utility, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/garage) "nPW" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 5 @@ -16056,16 +15005,18 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"nRy" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"nRk" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"nRB" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "nRD" = ( /obj/structure/stairs/perspective/ice{ dir = 1; @@ -16073,29 +15024,37 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/warehouse/caves) -"nSI" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +"nSA" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "nSO" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) -"nTu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/interior/plastic, -/area/shiva/interior/warehouse) -"nTv" = ( -/obj/structure/surface/table, -/obj/item/device/encryptionkey, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/telecomm/lz1_biceps) -"nTC" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) +"nTf" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"nTk" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) +"nTu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/interior/plastic, +/area/shiva/interior/warehouse) +"nTK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" + }, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "nUa" = ( /obj/structure/bed/chair{ dir = 8 @@ -16108,58 +15067,93 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"nUn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/green/east, -/area/shiva/interior/colony/botany) "nUq" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"nVn" = ( +"nUP" = ( +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"nVh" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/deck) +"nVm" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"nVO" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"nVY" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) +"nVZ" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"nVL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets{ - pixel_x = 7; - pixel_y = 8 +/obj/item/clipboard{ + pixel_y = 5 }, -/obj/item/storage/box/donkpockets{ - pixel_x = -6; +/obj/item/paper{ + pixel_x = -9; pixel_y = 7 }, -/obj/item/storage/box/donkpockets{ - pixel_y = 3 +/obj/item/tool/pen/red{ + pixel_x = 6; + pixel_y = 9 }, -/turf/open/floor/shiva/multi_tiles, +/obj/item/paper{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"nVM" = ( -/obj/structure/bed/chair/comfy/orange{ +"nWm" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"nWs" = ( +/obj/structure/bed/chair{ dir = 1 }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"nWv" = ( +/obj/item/storage/toolbox/emergency, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/valley_huts/no2) "nWI" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"nXG" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "backup power SMES" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"nXu" = ( +/turf/open/floor/shiva/purplefull/west, +/area/shiva/exterior/lz2_fortress) +"nXU" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/botany) +"nYm" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "nZA" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/warehouse/caves) @@ -16170,27 +15164,20 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"nZM" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, +"oac" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"oak" = ( +/obj/item/stack/rods, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) -"oag" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) -"oah" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"oaH" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/floor3, +"oaJ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) -"oaI" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) "oaO" = ( /obj/item/stack/cable_coil/random, /turf/open/floor/plating, @@ -16198,11 +15185,25 @@ "oaP" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/oob/dev_room) +"oaT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) "obb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight, /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"obv" = ( +/obj/structure/surface/table, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "obH" = ( /obj/item/device/camera{ pixel_x = 6; @@ -16211,16 +15212,51 @@ /obj/structure/surface/table, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) +"obQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "ocb" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"ocf" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"oct" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) "ocv" = ( /obj/item/weapon/ice_axe/red, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) +"ocx" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "ocB" = ( /obj/structure/bed/chair{ dir = 4 @@ -16231,6 +15267,16 @@ }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"ocC" = ( +/obj/item/weapon/gun/boltaction{ + pixel_x = -6 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"ocE" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "ocF" = ( /obj/item/stack/sheet/mineral/plastic/small_stack, /obj/structure/machinery/light/double{ @@ -16239,13 +15285,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/bar) -"odb" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/red/west, -/area/shiva/interior/colony/medseceng) "odg" = ( /obj/item/tool/weldingtool, /turf/open/auto_turf/snow/layer1, @@ -16253,38 +15292,81 @@ "odz" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/lz2_habs) -"oeQ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva/green, -/area/shiva/interior/colony/botany) +"oeB" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib6" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"oeF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"ofi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/custom/metal_foam{ + pixel_x = 11; + pixel_y = 5 + }, +/obj/item/explosive/grenade/custom/metal_foam{ + pixel_x = 10 + }, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "ofl" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) +"ofp" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) "ofw" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard) -"ofK" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, +"ofH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"ofU" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) -"ogd" = ( -/obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +"ogc" = ( +/obj/item/storage/box/bodybags, +/obj/structure/surface/table, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) "ogu" = ( /obj/structure/machinery/door/airlock/almayer/generic/autoname{ dir = 1 }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) +"ogI" = ( +/obj/structure/surface/table, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/wirecutters, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "ogP" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -16295,19 +15377,17 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"ohb" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/garage) +"ogW" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) "ohd" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"ohq" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "ohE" = ( /obj/item/clipboard, /turf/open/floor/wood, @@ -16337,6 +15417,11 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"ojj" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/aux_power) "ojU" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -16349,25 +15434,40 @@ }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"okz" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +"olE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"okM" = ( -/obj/item/frame/toolbox_tiles, -/turf/open/floor/shiva/redfull/west, +/obj/item/cell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"olI" = ( -/obj/item/device/pinpointer, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"omu" = ( -/obj/structure/machinery/photocopier, +"olN" = ( +/obj/structure/surface/table, +/obj/item/clipboard{ + pixel_y = 6 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +/area/shiva/interior/aux_power) +"omi" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"omC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"omE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "onc" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, @@ -16377,12 +15477,11 @@ /obj/item/evidencebag, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"onM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +"onx" = ( +/obj/structure/closet/coffin, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "ood" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/valley) @@ -16390,22 +15489,40 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) +"ooG" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"ooL" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) "opa" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/central) -"opM" = ( -/obj/structure/machinery/vending/snack, +"opw" = ( +/obj/item/stool, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/aerodrome) +"opE" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "oqf" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"oqt" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) "oqy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -16422,12 +15539,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"oqQ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) "oqX" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 4; @@ -16435,28 +15546,28 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ord" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Underground Morgue" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) "ork" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) +"oro" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/central) "ors" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"orO" = ( -/obj/structure/desertdam/decals/road_stop, -/turf/open/floor/shiva/floor3, +"oru" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) -"osh" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) +"osA" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "osE" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/research_caves) @@ -16464,33 +15575,30 @@ /obj/structure/prop/ice_colony/dense/ice_tray, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"osV" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"osX" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/obj/structure/cargo_container/horizontal/blue/top{ + density = 0; + pixel_y = 12 }, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/research_hab) -"otA" = ( -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 7 +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -3; + pixel_y = 2 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"otn" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"otw" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_colony_grounds) "otJ" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"otL" = ( -/turf/open/floor/shiva/greencorners/west, -/area/shiva/interior/colony/botany) -"otV" = ( -/obj/vehicle/powerloader/jd{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "ouS" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 15; @@ -16501,10 +15609,6 @@ "ovc" = ( /turf/open/floor/carpet, /area/shiva/interior/colony/medseceng) -"ovh" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) "ovI" = ( /obj/structure/largecrate/random/mini/med, /turf/open/auto_turf/snow/layer3, @@ -16517,34 +15621,23 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"owt" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/small{ - dir = 8 +"ows" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/turf/open/floor/shiva/wred/southwest, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "oww" = ( /obj/item/frame/rack, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"owx" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) "owB" = ( /obj/structure/platform/shiva/catwalk{ dir = 4 }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"owD" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "owW" = ( /obj/structure/barricade/snow{ dir = 1 @@ -16555,21 +15648,41 @@ /obj/structure/machinery/power/apc, /turf/open/floor/plating, /area/shiva/exterior/telecomm/lz2_northeast) +"oxr" = ( +/obj/structure/surface/table, +/obj/item/device/reagent_scanner, +/obj/effect/landmark/good_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) "oxP" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"oyc" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "oyw" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"ozs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard{ + pixel_y = 5 + }, +/obj/item/tool/pen/red{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"ozt" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"ozF" = ( +/obj/structure/filingcabinet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) "oAo" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -16577,19 +15690,33 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) +"oAs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard, +/obj/item/tool/screwdriver, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "oBV" = ( /obj/structure/largecrate, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"oCr" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +"oCx" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"oCy" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) "oCG" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/aerodrome) +"oCH" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "oDi" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -16600,23 +15727,25 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"oDm" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails, +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) "oDH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"oDJ" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/garage) -"oDM" = ( -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/garage) "oDQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"oDV" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) "oEk" = ( /obj/structure/machinery/light/double{ dir = 4; @@ -16625,10 +15754,6 @@ /obj/effect/decal/cleanable/vomit, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"oET" = ( -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "oEU" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -16637,6 +15762,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"oFj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "oFl" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -16644,65 +15773,55 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"oFG" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) -"oFX" = ( -/turf/open/floor/shiva/wredcorners/west, -/area/shiva/interior/colony/medseceng) -"oGb" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +"oFm" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "oGg" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/medseceng) +"oGp" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"oGK" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "oHf" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) -"oHz" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) "oHE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"oHF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"oHX" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/floor/shiva/multi_tiles/north, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"oIQ" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"oJa" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/caves/cp_camp) +"oJr" = ( +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/research_hab) -"oHI" = ( -/obj/structure/ice/thin/single{ - opacity = 1; - unacidable = 0 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"oIh" = ( -/obj/item/frame/air_alarm, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) -"oIR" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"oJe" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "oKc" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -16716,25 +15835,29 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"oKo" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "oKM" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/assistantformal, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"oLr" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "oLu" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) +"oMo" = ( +/obj/item/storage/pouch/firstaid/full/pills, +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "oMG" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -16748,17 +15871,21 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"oNo" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, +"oMZ" = ( +/obj/effect/landmark/crap_item, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/garage) "oNz" = ( /obj/item/stack/rods, /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/interior/warehouse) +"oNF" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"oNO" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "oNQ" = ( /obj/structure/barricade/snow{ dir = 1 @@ -16778,12 +15905,74 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"oPg" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"oPR" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"oPU" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "oQl" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/valley) +"oQn" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "oQo" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/cp_s_research) +"oQR" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) +"oRa" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"oRr" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"oRs" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/hotchili, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"oRv" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/research_hab) +"oRx" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "oRH" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) @@ -16791,47 +15980,90 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) -"oSU" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +"oSq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"oSr" = ( +/obj/item/weapon/gun/boltaction{ + pixel_x = 12; + pixel_y = 6 + }, +/obj/item/ammo_magazine/rifle/boltaction{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/structure/barricade/metal{ + layer = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "oTd" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) -"oTh" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +"oTf" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/aux_power) +"oTO" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/colony/medseceng) +"oUs" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "oUu" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"oWk" = ( -/obj/structure/barricade/deployable{ - dir = 1 +"oUT" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/warehouse) +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"oVo" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"oVG" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "\improper Colony Dormitories" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "oWG" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber{ icon_state = "psiphon:1" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"oXf" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"oXz" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 +"oWT" = ( +/obj/structure/machinery/light/double, +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"oXI" = ( +/obj/structure/machinery/message_server, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"oXK" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) +/area/shiva/interior/colony/s_admin) "oXM" = ( /obj/structure/machinery/space_heater, /obj/item/clothing/glasses/welding{ @@ -16848,12 +16080,21 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"oYe" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) +"oYi" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar/red, +/obj/item/device/flash, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "oYw" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/medseceng) -"oYH" = ( -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) "oYX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -16867,37 +16108,33 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"oZs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "oZE" = ( /obj/structure/coatrack, /turf/open/floor/shiva, /area/shiva/interior/bar) -"oZR" = ( -/obj/item/stack/cable_coil/green, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"pad" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, +"pax" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"paZ" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, +/obj/structure/window/reinforced/tinted, /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"paE" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/research_hab) +"paN" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"pbz" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "pbY" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" @@ -16907,13 +16144,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/s_admin) -"pch" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "pct" = ( /obj/effect/spider/stickyweb, /turf/open/auto_turf/ice/layer2, @@ -16937,10 +16167,37 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"pdv" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"pea" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "peb" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"pee" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "pef" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/yellow, @@ -16956,19 +16213,22 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/s_lz2) -"peQ" = ( -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +"pfd" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "pff" = ( /obj/item/stack/rods, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"pfg" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"pfj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 7 }, -/turf/open/floor/shiva/north, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/deck) "pfp" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -16985,13 +16245,6 @@ /obj/item/ammo_magazine/handful/shotgun/buckshot, /turf/open/floor/wood, /area/shiva/interior/bar) -"pgh" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "pgu" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/telecomm/lz2_southeast) @@ -17001,9 +16254,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"piW" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/north, +"phX" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "pji" = ( /obj/item/paper_bin{ @@ -17012,67 +16267,108 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"pjV" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 +"pjv" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) +"pjQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"pjZ" = ( +/obj/item/tool/mop{ + pixel_y = 20 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "pkp" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"pkK" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +"pkE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"pkR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/obj/item/storage/box/evidence{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "pkT" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"plm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +"pkV" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/central) +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"pld" = ( +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) +"plk" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "plM" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/junkyard) +"pme" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "pmj" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/central) -"pmz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"pmI" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"pmQ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/tool/weldingtool{ - pixel_x = 5; - pixel_y = 4 +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/shiva/green/west, +/turf/open/floor/shiva/green/east, /area/shiva/interior/colony/botany) -"pnd" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +"pne" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, /turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) -"pnK" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/human/burger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/central) "poz" = ( /obj/structure/platform/strata{ dir = 1 @@ -17082,16 +16378,19 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/lz1_valley) +"poE" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"poV" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/deck) "ppb" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"ppI" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "ppS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -17110,13 +16409,10 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"prb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) +"prx" = ( +/obj/item/device/motiondetector/hacked, +/turf/open/floor/shiva/green/northwest, +/area/shiva/interior/colony/botany) "prO" = ( /obj/structure/stairs/perspective/ice{ dir = 1; @@ -17127,22 +16423,28 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/research_caves) -"prU" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +"prR" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "psl" = ( /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"pth" = ( +"psE" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"psQ" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/obj/structure/barricade/metal{ + layer = 3 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +/area/shiva/exterior/lz2_fortress) "pti" = ( /obj/item/tool/weldpack{ pixel_x = 6; @@ -17165,48 +16467,32 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/research_caves) -"ptr" = ( -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/research_hab) +"ptw" = ( +/obj/structure/surface/table, +/obj/structure/largecrate/random/mini/chest/c{ + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "pue" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_y = 8 }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"pul" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/caves/s_lz2) -"puN" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"puT" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +"puq" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "puZ" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) -"pve" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"pvk" = ( +"pvg" = ( /obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/colony/medseceng) +/obj/item/storage/bag/plants, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "pvv" = ( /turf/open/floor/shiva, /area/shiva/interior/aerodrome) @@ -17214,6 +16500,13 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"pwh" = ( +/obj/item/paper/research_notes{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "pwB" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 1 @@ -17226,10 +16519,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"pxi" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "pxl" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -17240,22 +16529,33 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) +"pxr" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "pxA" = ( /turf/closed/wall/shiva/prefabricated/red, /area/shiva/interior/colony/research_hab) -"pyp" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" +"pxQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"pxW" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibhead" }, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"pyI" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/shiva/interior/lz2_habs) +"pyA" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/kelotane/skillless{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "pyK" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -17268,12 +16568,12 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/interior/oob) -"pyV" = ( -/obj/structure/bed/chair{ - dir = 8 +"pyP" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/bar) "pzi" = ( /obj/item/newspaper, /turf/open/floor/wood, @@ -17282,51 +16582,33 @@ /obj/item/paper, /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"pzn" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"pzH" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "pzJ" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/cp_colony_grounds) +"pzV" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"pzZ" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "pAx" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) -"pAE" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/wred/west, +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) -"pAO" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/newspaper, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"pAV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) -"pBl" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"pBy" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"pBL" = ( -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/interior/aux_power) +"pBh" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "pCe" = ( /obj/structure/stairs/perspective/ice{ dir = 1; @@ -17345,22 +16627,25 @@ /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"pCI" = ( -/obj/effect/decal/cleanable/dirt, +"pCP" = ( +/obj/item/stack/cable_coil/cut, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"pCJ" = ( -/obj/item/book/manual/marine_law, -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/handcuffs, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"pDp" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/area/shiva/interior/aux_power) +"pDi" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shiva/exterior/junkyard/fortbiceps) +"pDl" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) "pDr" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer1, @@ -17392,18 +16677,12 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"pEh" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"pEg" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"pEs" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/deck) +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "pEv" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ @@ -17419,33 +16698,27 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"pFd" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +"pER" = ( +/obj/structure/bedsheetbin{ + pixel_y = 9 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "pFg" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"pFt" = ( -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) -"pFI" = ( -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/botany) -"pFJ" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) -"pGf" = ( -/turf/open/floor/shiva/wred/southwest, +"pFw" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) -"pGg" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "pGi" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/snow/layer3, @@ -17462,28 +16735,33 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) +"pGA" = ( +/obj/structure/closet/radiation, +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "pGL" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"pHz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/red/southwest, -/area/shiva/interior/colony/medseceng) -"pId" = ( -/obj/structure/machinery/computer/cameras/telescreen{ - name = "Interrogation Telescreen"; - network = list("interrogation"); - pixel_y = 32 +"pGP" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"pHp" = ( +/obj/item/paper/janitor{ + pixel_y = 8 }, +/obj/structure/surface/table, /turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/research_hab) +"pIm" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/central) "pIK" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" @@ -17499,10 +16777,6 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/exterior/cp_s_research) -"pJp" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) "pJA" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ @@ -17523,21 +16797,40 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"pKb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, +"pJN" = ( +/obj/structure/bed/chair/comfy/blue, /turf/open/floor/shiva/north, -/area/shiva/interior/garage) +/area/shiva/interior/colony/botany) +"pJO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "pKf" = ( /obj/item/stack/cable_coil/white, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) +"pKl" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "pKm" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/boltaction, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) +"pKp" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" + }, +/turf/closed/wall/shiva/prefabricated/white, +/area/shiva/interior/aux_power) +"pKs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) "pKF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -17549,17 +16842,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"pKK" = ( -/obj/item/lightstick/red/variant, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) -"pKP" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) "pKQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, @@ -17573,40 +16855,35 @@ "pLf" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/cp_s_research) -"pLn" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"pLy" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp{ - pixel_y = 4 +"pLm" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-southeast-gate" }, -/turf/open/floor/shiva/red/southeast, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"pLq" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "pLS" = ( /obj/structure/surface/rack, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"pMs" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) -"pME" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"pMK" = ( -/obj/structure/machinery/processor, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +"pLX" = ( +/obj/structure/platform/shiva/catwalk, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/valley) +"pMy" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) +"pMR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) "pMV" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -17616,9 +16893,12 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"pNf" = ( -/turf/open/floor/shiva/yellowcorners, -/area/shiva/interior/garage) +"pMW" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "pNo" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11 @@ -17628,44 +16908,22 @@ }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"pNq" = ( -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) "pNs" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"pNx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) "pNy" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/colonist, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"pNM" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"pOI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"pOM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +"pOS" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" }, -/turf/open/floor/delivery, -/area/shiva/interior/telecomm/lz1_biceps) +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "pPt" = ( /obj/structure/surface/table, /obj/item/frame/firstaid_arm_assembly{ @@ -17673,16 +16931,26 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"pPH" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) "pPK" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"pQt" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) +"pPS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"pQy" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/bar) "pQE" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/valley_huts) @@ -17704,14 +16972,13 @@ /obj/item/stack/cable_coil/white, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"pSD" = ( -/turf/open/floor/shiva/yellow, -/area/shiva/interior/garage) -"pSM" = ( -/obj/structure/barricade/metal, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +"pSk" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "pTp" = ( /obj/structure/surface/rack, /obj/item/weapon/ice_axe/green{ @@ -17723,49 +16990,46 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"pTC" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"pTG" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, +"pTr" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"pTz" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/warehouse/caves) +"pTR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/central) +"pUn" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "pUp" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"pUx" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/greenfull/west, -/area/shiva/interior/colony/n_admin) -"pUZ" = ( -/obj/structure/barricade/metal{ - health = 230 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"pVm" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, +"pUE" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"pUU" = ( +/turf/open/floor/dark2, +/area/shiva/interior/colony/central) +"pVn" = ( +/obj/item/frame/bucket_sensor, /turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"pVo" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/caves/s_lz2) "pWf" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/cp_lz2) @@ -17796,6 +17060,33 @@ /obj/effect/landmark/good_item, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"pXg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Colony Dormitories Canteen"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"pXp" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"pXG" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "pXU" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -16; @@ -17803,6 +17094,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"pYq" = ( +/obj/structure/closet/crate, +/obj/item/tool/shovel/snow, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"pZa" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "pZB" = ( /obj/structure/largecrate/random/mini/ammo{ pixel_x = 3 @@ -17817,6 +17118,13 @@ /obj/effect/spider/cocoon, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"qag" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) "qaF" = ( /obj/structure/barricade/handrail/wire, /turf/open/floor/shiva, @@ -17830,6 +17138,17 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"qaV" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"qbf" = ( +/obj/structure/largecrate/random/mini/med, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) "qbh" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/firealarm{ @@ -17837,18 +17156,29 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"qbu" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "qbF" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/junkyard/cp_bar) +"qcw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/clipboard, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"qcR" = ( +/obj/structure/largecrate/random/mini/med, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) "qcT" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"qdd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) "qdh" = ( /obj/structure/platform/strata{ dir = 1 @@ -17861,27 +17191,30 @@ "qdH" = ( /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/exterior/junkyard/cp_bar) +"qeg" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/armor/hos, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "qep" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_colony_grounds) -"qer" = ( -/obj/structure/surface/table, -/obj/item/vehicle_clamp{ - pixel_y = 2 - }, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/central) -"qeH" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/red/north, -/area/shiva/interior/colony/medseceng) -"qfe" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 +"qeG" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair, /turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +/area/shiva/interior/colony/s_admin) +"qeS" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "qfh" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -17891,10 +17224,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"qfq" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/garage) "qfR" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, @@ -17902,6 +17231,11 @@ "qfZ" = ( /turf/closed/wall/shiva/prefabricated/orange, /area/shiva/interior/caves/research_caves) +"qgb" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "qgd" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/ice/layer2, @@ -17913,15 +17247,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"qgp" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"qgz" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) "qgP" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/warehouse/caves) @@ -17934,48 +17259,35 @@ }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"qhJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/aux_power) -"qid" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"qiu" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "qiy" = ( /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_s_research) +"qiB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"qiS" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/northwest, +/area/shiva/interior/colony/botany) +"qjw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/cell_charger, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) "qjY" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"qjZ" = ( -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/foamed_metal, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"qkr" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/deck) -"qkt" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/interior/aux_power) +"qkj" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "qkC" = ( /turf/open/shuttle/elevator, /area/shiva/interior/aerodrome) @@ -17999,15 +17311,6 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"qkR" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "qkT" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -18015,6 +17318,10 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) +"qkY" = ( +/obj/structure/fence, +/turf/open/floor/shiva/redfull/west, +/area/shiva/exterior/cp_colony_grounds) "qlk" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -18022,34 +17329,46 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"qlQ" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"qls" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"qlx" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +/area/shiva/interior/colony/n_admin) "qmv" = ( /obj/item/stack/flag/red{ pixel_x = 6 }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"qmA" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +"qmy" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/north, /area/shiva/interior/colony/central) -"qng" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"qmL" = ( +/obj/item/shard{ + icon_state = "large" }, -/obj/structure/filingcabinet/filingcabinet{ - name = "mail bins"; - pixel_y = 14 +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"qni" = ( +/obj/structure/ice/thin/single{ + opacity = 1; + unacidable = 0 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"qnn" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/under/marine/veteran/mercenary/support, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "qnu" = ( /obj/structure/machinery/light/double{ @@ -18085,9 +17404,16 @@ /obj/structure/airlock_assembly, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"qow" = ( -/turf/open/floor/shiva/red/northeast, -/area/shiva/interior/colony/central) +"qoE" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"qoO" = ( +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "qoU" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer2, @@ -18098,15 +17424,11 @@ /obj/item/storage/firstaid/o2, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"qpq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) -"qps" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) +"qph" = ( +/obj/structure/foamed_metal, +/obj/item/ammo_magazine/handful/shotgun/buckshot, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) "qpu" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -18114,32 +17436,45 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"qpv" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) -"qpZ" = ( -/obj/item/frame/table, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"qrq" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, +"qqy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) -"qrz" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +"qqC" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"qrj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/flour{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"qrv" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"qrD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"qrR" = ( +/turf/open/floor/shiva/wredcorners, +/area/shiva/interior/colony/medseceng) "qrY" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/junkyard) +"qsK" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/shiva/purple/west, +/area/shiva/interior/lz2_habs) "qsN" = ( /obj/structure/machinery/light/double{ dir = 4; @@ -18153,25 +17488,38 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"qud" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 +"qto" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + pixel_y = 5 }, -/turf/open/floor/shiva/multi_tiles, +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) -"que" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"qvr" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +"qtE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"qvw" = ( +/obj/structure/computerframe, /turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/research_hab) +"qvy" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "qvY" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) @@ -18179,44 +17527,24 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"qxv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/clothing/head/fez{ - pixel_y = 6 - }, +"qwU" = ( +/obj/structure/foamed_metal, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/area/shiva/exterior/lz2_fortress) "qxQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"qyd" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) -"qyy" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +"qxS" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 4; + pixel_y = 5 }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"qyC" = ( -/obj/structure/barricade/metal{ - dir = 4 +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 10; + pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"qyE" = ( -/obj/item/stool, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) "qza" = ( /obj/item/device/flashlight/flare, @@ -18229,11 +17557,16 @@ }, /turf/open/floor/plating, /area/shiva/interior/garage) -"qAL" = ( +"qBs" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/research_hab) +"qBB" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device, +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) "qBM" = ( /obj/structure/platform/strata{ dir = 8 @@ -18241,12 +17574,25 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) -"qCa" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/wred/west, +"qCh" = ( +/obj/item/restraint/handcuffs, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) +"qCm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/storage/box/donkpockets{ + pixel_y = 3 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "qCn" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) @@ -18264,10 +17610,10 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"qCM" = ( -/obj/structure/barricade/metal, +"qCN" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/area/shiva/interior/colony/medseceng) "qCW" = ( /obj/structure/platform/strata{ dir = 1 @@ -18299,22 +17645,17 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"qEt" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +"qEj" = ( +/obj/item/stack/snow{ + pixel_x = -7 }, -/turf/open/floor/plating, +/obj/item/tool/shovel/snow, +/turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) "qEB" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"qEC" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/southwest, -/area/shiva/interior/colony/medseceng) "qEH" = ( /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/ice/layer1, @@ -18330,33 +17671,81 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"qER" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "qFx" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz1_north) -"qGq" = ( -/obj/item/frame/bucket_sensor, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) +"qGF" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/strata/floor2, +/area/shiva/interior/colony/research_hab) "qGN" = ( /obj/structure/closet/crate/trashcart, /obj/effect/landmark/objective_landmark/medium, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"qHB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/shiva/green/north, +/area/shiva/interior/colony/botany) +"qIm" = ( +/obj/structure/platform/shiva/catwalk, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "qIr" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/warehouse) -"qII" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/exterior/cp_lz2) -"qJa" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) +"qJt" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"qKe" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"qKy" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/central) +"qKA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) +"qLn" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "qLA" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 8 @@ -18388,20 +17777,25 @@ /obj/effect/spawner/random/toolbox, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) +"qNc" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "qNj" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"qNn" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/s_admin) -"qNt" = ( -/obj/structure/barricade/metal{ - dir = 1; - health = 210 +"qNx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) "qNB" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -18429,21 +17823,33 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"qOD" = ( -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/deck) +"qOC" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "qOE" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/rad, /obj/item/storage/firstaid/rad, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) +"qOS" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + start_charge = 0 + }, +/turf/open/floor/darkbrown2/east, +/area/shiva/interior/valley_huts/disposals) "qOZ" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) +"qPe" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "qPh" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, @@ -18454,23 +17860,23 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"qRb" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"qPt" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/botany) +"qPF" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"qQO" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "qRl" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"qRo" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) "qRJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -18494,12 +17900,25 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"qSe" = ( -/obj/structure/bed/chair{ - dir = 1 +"qSi" = ( +/obj/structure/surface/table, +/obj/item/frame/firstaid_arm_assembly{ + pixel_x = 4; + pixel_y = 12 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/obj/item/tool/wrench{ + pixel_x = -5; + pixel_y = -2 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"qSN" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) "qSW" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -18517,110 +17936,131 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"qUe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cherrypie, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"qUw" = ( -/obj/structure/foamed_metal, -/obj/item/ammo_magazine/handful/shotgun/buckshot, -/turf/open/floor/shiva/radiator_tile, +"qTh" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) +"qTG" = ( +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "qVo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/bicaridine, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"qVq" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) -"qWu" = ( -/obj/structure/machinery/light/double, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +"qWI" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "qWL" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/toxin, /obj/item/storage/firstaid/toxin, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"qWS" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -13; - pixel_y = 25 +"qWW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/candy_corn{ + pixel_x = 7; + pixel_y = 5 }, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/lz2_fortress) -"qXk" = ( -/obj/item/clipboard, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"qXm" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) -"qXx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" +/obj/item/clothing/head/fedora{ + pixel_x = -6; + pixel_y = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"qXf" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"qXp" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "qXS" = ( /turf/open/floor/shiva, /area/shiva/interior/bar) -"qYp" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +"qYc" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"qYq" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "qYP" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/s_lz2) -"qZa" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/aux_power) +"qZC" = ( +/obj/item/weapon/gun/boltaction, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"qZV" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"qZW" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"rab" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "rad" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"raQ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +"rai" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/plating, -/area/shiva/exterior/junkyard/cp_bar) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"raH" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"raM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "rbc" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"rbo" = ( -/obj/structure/window/reinforced/tinted{ +"rbu" = ( +/obj/structure/platform/shiva/catwalk{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"rbq" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/caves/research_caves) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"rbz" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "rbA" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -18628,16 +18068,15 @@ /obj/structure/barricade/metal, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"rbM" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/machinery/computer/cameras{ - dir = 8 +"rbG" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "rcp" = ( /obj/item/storage/toolbox/mechanical/green, /turf/open/auto_turf/snow/layer2, @@ -18646,9 +18085,17 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) +"rcY" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) "rdh" = ( /turf/closed/wall/shiva/prefabricated/pink, /area/shiva/interior/caves/s_lz2) +"rdo" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) "rdp" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -18656,41 +18103,17 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"rdL" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "rdS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"rey" = ( -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "large" - }, -/obj/item/shard{ - icon_state = "large" - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"reV" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/shiva/purplefull/west, +"rej" = ( +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) -"rfc" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/obj/item/circuitboard/firealarm, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) "rfd" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/wood, @@ -18699,18 +18122,31 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"rfU" = ( +"rfH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"rfU" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"rgu" = ( -/obj/structure/machinery/camera/autoname{ +"rga" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"rgn" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light/double{ dir = 1; - network = list("interrogation") + pixel_y = 9 }, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "rgy" = ( /obj/structure/flora/bush/snow{ @@ -18718,19 +18154,26 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"rgF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "rgI" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/fire, /obj/item/storage/firstaid/fire, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"rhS" = ( -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 +"rhc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/shiva/redfull/west, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) +"rhh" = ( +/turf/open/floor/shiva/blue/west, +/area/shiva/interior/colony/n_admin) "rib" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -18739,21 +18182,33 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/valley) -"ril" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) "riV" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"rjw" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/shiva/red/northeast, +"rjo" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"rju" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp{ + pixel_y = 4 + }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) -"rjQ" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/yellow/east, +"rjB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Colony Disposals" + }, +/turf/open/floor/dark2, +/area/shiva/interior/valley_huts/disposals) +"rjH" = ( +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/medseceng) "rkc" = ( /obj/structure/surface/table/reinforced/prison, @@ -18763,20 +18218,24 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/garage) +"rkh" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/garage) +"rki" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"rkm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) "rkG" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"rkS" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -13; - pixel_y = 25 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/icefloor/warnplate/northwest, -/area/shiva/exterior/junkyard/fortbiceps) +"rla" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "rld" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -18790,16 +18249,33 @@ /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"rnz" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) +"rmB" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) +"rnk" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/colony_floodlight{ + layer = 2.9; + pixel_y = 7 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) "rnB" = ( /obj/structure/platform_decoration/shiva/catwalk{ dir = 8 }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"rnO" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) "rov" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -18808,10 +18284,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"rpv" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "rpE" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -18819,16 +18291,26 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"rpL" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"rpK" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) +"rpV" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"rqv" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/blue/west, +/area/shiva/interior/colony/n_admin) "rqK" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "road_edge_decal5"; @@ -18836,6 +18318,21 @@ }, /turf/closed/wall/shiva/prefabricated/orange, /area/shiva/interior/colony/research_hab) +"rqQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"rrb" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/turf/open/floor/plating, +/area/shiva/interior/caves/research_caves) "rrj" = ( /obj/item/lightstick/red/variant/planted{ pixel_x = -7; @@ -18843,11 +18340,12 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/research_caves) -"rsa" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"rsT" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/aux_power) "rti" = ( /obj/structure/surface/table, /obj/item/tool/pen/blue{ @@ -18860,19 +18358,41 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"rtv" = ( -/obj/structure/surface/table, -/obj/item/storage/box/trackimp, -/turf/open/floor/shiva/red/southeast, -/area/shiva/interior/colony/medseceng) "rtZ" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"rwQ" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva/multi_tiles/north, +"ruZ" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) +"rvv" = ( +/obj/item/stack/rods, +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) +"rvK" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"rwh" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_y = 7 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"rwP" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/n_admin) +"rwX" = ( +/obj/vehicle/powerloader/jd{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "rxd" = ( /obj/structure/bed/chair, /turf/open/floor/interior/plastic/alt, @@ -18883,70 +18403,60 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"rym" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"ryI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wred, +"ryc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"ryV" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/shiva/red/northeast, /area/shiva/interior/colony/medseceng) -"ryZ" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/aux_power) "rzw" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"rzz" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) -"rzI" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/ointment, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"rzR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/spaceacillin{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/storage/belt/utility/full{ - pixel_y = 14 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"rAm" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 +"rzH" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor/plating/icefloor/warnplate/northeast, -/area/shiva/exterior/junkyard/fortbiceps) +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) "rAq" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"rAF" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/deck) +"rAB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) "rAH" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) +"rBf" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 1; + pixel_y = 5 + }, +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) "rBk" = ( /obj/structure/platform/strata{ dir = 1 @@ -18956,15 +18466,16 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"rBr" = ( -/obj/item/device/flashlight/lamp/tripod, +"rBp" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"rBy" = ( -/obj/structure/window/reinforced/tinted/frosted, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/colony/s_admin) "rBC" = ( /obj/effect/spawner/random/toolbox, /obj/effect/decal/cleanable/dirt, @@ -18973,19 +18484,46 @@ "rBH" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/botany) +"rBU" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "rCO" = ( /obj/item/tool/wirecutters, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) -"rDn" = ( -/turf/open/floor/shiva/yellowcorners/west, -/area/shiva/interior/colony/deck) +"rCQ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"rDF" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"rDU" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + start_charge = 0 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "rEd" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"rEK" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/deck) "rEQ" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, @@ -18999,53 +18537,105 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"rFp" = ( -/obj/structure/machinery/colony_floodlight{ - pixel_y = 10 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/cp_colony_grounds) -"rFA" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) "rFB" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"rGg" = ( +"rFQ" = ( +/obj/item/powerloader_clamp, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"rFZ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8; + layer = 2.98 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"rGm" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/colony/central) +"rGx" = ( +/obj/structure/desertdam/decals/road_stop, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"rGI" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"rHk" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"rHr" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/deck) +"rHB" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"rHE" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "hangar_ice_2"; + pixel_y = 28 + }, +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "rHO" = ( /obj/structure/largecrate/random, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"rIj" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +"rIh" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"rIm" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "hangar_ice_3"; + pixel_y = 28 + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"rJj" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"rJt" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/aux_power) +"rJz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "rJI" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) +"rJU" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "rKk" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/fortbiceps) -"rKo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - name = "\improper Panic Room Shutters" - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) "rKq" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"rKW" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/shiva/north, +"rLl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "rLu" = ( /obj/structure/platform/strata{ @@ -19053,13 +18643,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"rLD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) "rMb" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -19071,19 +18654,18 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"rMc" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/medseceng) -"rMe" = ( +"rMs" = ( /obj/structure/surface/table, -/obj/item/restraint/handcuffs, -/obj/item/tool/stamp, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"rMI" = ( -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) +"rNv" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "rNx" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 @@ -19097,10 +18679,6 @@ /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"rNY" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) "rNZ" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -19111,15 +18689,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"rOv" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/exterior/lz2_fortress) "rOG" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Aurora Medical Clinic Scanning Unit" }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"rOY" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "rPa" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 @@ -19129,31 +18708,37 @@ }, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/shiva/interior/aerodrome) -"rRb" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"rPd" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"rQh" = ( +/obj/structure/machinery/smartfridge{ + density = 0; + pixel_y = 22 }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/botany) -"rRp" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"rQo" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/deck) +"rRq" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"rRO" = ( -/obj/structure/machinery/light/double, -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "rRP" = ( /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/science, @@ -19162,29 +18747,32 @@ "rRZ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/cp_s_research) -"rSr" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/aux_power) -"rSL" = ( -/obj/item/weapon/gun/boltaction{ - pixel_x = -6 +"rSH" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"rSU" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"rTe" = ( +/obj/item/ammo_magazine/rifle/boltaction{ + pixel_x = -5; + pixel_y = -9 }, /turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) -"rTk" = ( -/obj/item/storage/box/bodybags, -/obj/structure/surface/table, -/turf/open/floor/shiva/red/southwest, -/area/shiva/interior/colony/medseceng) -"rTG" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"rTF" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 }, -/turf/open/floor/shiva/bluefull/west, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) +"rUb" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "rUD" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ desc = "Shhhh, he's sleeping."; @@ -19197,54 +18785,64 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"rUN" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/aux_power) "rUW" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"rVF" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) -"rVK" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +"rVd" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/obj/structure/bed/chair, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"rVM" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2-4" +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/west, -/area/shiva/exterior/junkyard/fortbiceps) -"rWj" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/telecomm/lz2_northeast) -"rWt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"rVB" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin{ + pixel_x = -5; + pixel_y = 14 }, -/turf/open/floor/plating, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"rVH" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) +"rVS" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) +"rWg" = ( +/obj/structure/girder/displaced, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"rWj" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/telecomm/lz2_northeast) +"rWt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/plating, /area/shiva/interior/colony/central) +"rWu" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"rWx" = ( +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) "rWz" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "pink" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"rWS" = ( -/obj/item/ammo_magazine/rifle/ap, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) "rWW" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -19257,10 +18855,6 @@ dir = 5 }, /area/shiva/interior/aerodrome) -"rXp" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) "rXt" = ( /obj/structure/cable/heavyduty{ icon_state = "0-8" @@ -19271,17 +18865,22 @@ /obj/effect/landmark/railgun_camera_pos, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) +"rXF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"rXN" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "rYj" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/cp_bar) -"rZj" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/southeast, -/area/shiva/interior/aux_power) "rZq" = ( /obj/structure/surface/table/reinforced/prison{ dir = 4; @@ -19298,36 +18897,33 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"rZD" = ( -/turf/open/floor/shiva/green/west, -/area/shiva/interior/colony/botany) -"rZH" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"rZF" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/exterior/cp_colony_grounds) "rZP" = ( /obj/structure/machinery/optable, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"rZV" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/corpsespawner/scientist, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/wred/northwest, -/area/shiva/interior/colony/medseceng) -"san" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - start_charge = 0 +"saj" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"sas" = ( +/obj/item/stack/rods{ + pixel_x = 6; + pixel_y = -3 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/obj/item/stack/catwalk, +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) "sax" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/warehouse/caves) @@ -19338,10 +18934,11 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"sbd" = ( -/obj/effect/decal/cleanable/blood/splatter, +"sbi" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/aux_power) "sbj" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, @@ -19350,43 +18947,50 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"scp" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"scN" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/voice, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) -"sdF" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/knife{ - pixel_x = 10; - pixel_y = 6 +"sdo" = ( +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/handful/shotgun/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"sdO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/item/reagent_container/food/snacks/grown/goldapple{ - pixel_y = 4 +/obj/structure/desertdam/decals/road_stop{ + icon_state = "road_edge_decal5"; + pixel_x = -14 }, -/turf/open/floor/shiva/yellowfull, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) -"sdG" = ( -/obj/structure/machinery/message_server, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"sef" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) "sev" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) +"seK" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) +"seT" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"seV" = ( +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) "seW" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "smokestack" @@ -19405,6 +19009,10 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"sga" = ( +/obj/item/tool/crowbar, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "sgj" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble, /turf/open/auto_turf/ice/layer1, @@ -19425,12 +19033,24 @@ "sgX" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/telecomm/lz2_northeast) +"shh" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "shi" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" }, /turf/closed/wall/shiva/ice, /area/shiva/exterior/cp_s_research) +"sho" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"shp" = ( +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/garage) "shx" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -19438,21 +19058,17 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"shO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/shiva/multi_tiles/north, +"shG" = ( +/obj/structure/machinery/vending/cola/research, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) -"shP" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/obj/structure/barricade/metal{ - dir = 4 +"sid" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "siD" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -19471,9 +19087,12 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"sjo" = ( -/turf/open/floor/shiva/green/northwest, -/area/shiva/interior/colony/botany) +"ske" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "skl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/snow/layer0, @@ -19491,24 +19110,27 @@ /obj/structure/prop/invuln/ice_prefab/roof_greeble, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"skG" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"slj" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/lz2_fortress) -"slC" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 +"slu" = ( +/obj/item/stack/cable_coil/green, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"slD" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/s_lz2) +/area/shiva/interior/colony/deck) +"slL" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "slO" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz1_valley) @@ -19516,47 +19138,47 @@ /obj/item/lightstick/red/spoke, /turf/open/floor/shiva, /area/shiva/interior/bar) -"smy" = ( +"smU" = ( +/obj/structure/machinery/door/window/northright, +/turf/open/floor/darkbrown2/northeast, +/area/shiva/interior/valley_huts/disposals) +"snn" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/garage) -"smI" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva/multi_tiles/west, +/obj/structure/machinery/microwave, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"snz" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "snN" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"snX" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +"soa" = ( +/turf/open/floor/shiva/red/west, +/area/shiva/interior/colony/medseceng) "sod" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"soj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"soE" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) "spo" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"sqy" = ( -/obj/item/wrapping_paper, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) +"spr" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "srJ" = ( /obj/structure/stairs/perspective/ice{ dir = 4; @@ -19567,15 +19189,22 @@ "ssf" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/central) +"ssJ" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"sti" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "stv" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"stN" = ( -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "stT" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" @@ -19598,17 +19227,56 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"sum" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"sur" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "suD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) -"swF" = ( -/obj/structure/machinery/firealarm{ +"suW" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/machinery/light/double{ dir = 8; - pixel_x = -24 + pixel_y = -5 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/purple/east, +/area/shiva/interior/lz2_habs) +"svg" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"svQ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"swM" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/under/marine/veteran/mercenary, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "swV" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -19623,31 +19291,10 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"sxb" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"sxm" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"sxp" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/northeast, -/area/shiva/interior/colony/medseceng) -"sxD" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "sxT" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"sym" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) "syA" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/ice/layer1, @@ -19656,73 +19303,48 @@ /obj/structure/janitorialcart, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"syK" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/exterior/cp_colony_grounds) -"syV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/medical/bruise_pack, -/obj/item/cell, -/obj/item/clothing/gloves/yellow, +"syE" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"szU" = ( -/obj/structure/prop/ice_colony/flamingo/festive{ - dir = 4 +/area/shiva/interior/lz2_habs) +"szS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ + pixel_y = 26 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"sAe" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ + pixel_x = -7; + pixel_y = 11 }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "sAM" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"sBh" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) +"sBt" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "sBH" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"sBN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - dir = 5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) "sBT" = ( /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"sBW" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) -"sCc" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) "sCi" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -19733,29 +19355,43 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"sCl" = ( -/obj/structure/surface/table, -/obj/item/clipboard{ - pixel_y = 5 - }, -/obj/item/paper{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/tool/pen/red{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/paper{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, +"sCx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platebot, /area/shiva/interior/colony/research_hab) +"sCF" = ( +/obj/item/bodybag, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "sDd" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"sDv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"sDQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/clothing/head/fez{ + pixel_y = 6 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"sEx" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/green/northeast, +/area/shiva/interior/colony/botany) "sEC" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -19763,6 +19399,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) +"sEH" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) "sFj" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/ice/layer1, @@ -19782,54 +19422,43 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"sFR" = ( -/obj/structure/closet, -/obj/item/newspaper, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"sGs" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"sGI" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/clothing/head/cakehat, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"sGR" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -13 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +"sFD" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/southwest, -/area/shiva/exterior/junkyard/fortbiceps) -"sHc" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"sHf" = ( -/obj/item/paper/research_notes/grant, -/turf/open/floor/shiva/multi_tiles/north, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"sFN" = ( +/obj/structure/closet/radiation, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) -"sHL" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/multi_tiles, +"sGt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/cell/high, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"sHs" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) -"sII" = ( -/obj/structure/closet/coffin, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"sHI" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) +/area/shiva/interior/bar) +"sIl" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/blue/east, +/area/shiva/interior/colony/n_admin) "sIP" = ( /obj/item/shard{ icon_state = "large" @@ -19846,34 +19475,17 @@ /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"sJs" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/foamed_metal, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"sJz" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) "sJD" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"sJP" = ( -/obj/structure/machinery/light/double, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) -"sKa" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"sKf" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 1 +"sKf" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 1 }, /obj/structure/flora/bush/desert{ pixel_y = 14 @@ -19887,12 +19499,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"sKH" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12 - }, -/turf/open/floor/plating/icefloor/warnplate/southeast, -/area/shiva/exterior/junkyard/fortbiceps) "sKO" = ( /obj/item/reagent_container/food/drinks/cans/ale{ pixel_x = -7; @@ -19913,10 +19519,13 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"sLV" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva/green, -/area/shiva/interior/colony/botany) +"sMz" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"sNc" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/deck) "sNi" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -19927,22 +19536,18 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"sNZ" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"sOg" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/colony/medseceng) -"sPn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_y = 2 +"sOj" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "sPo" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -19950,34 +19555,59 @@ /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"sPA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/window/reinforced/tinted{ - dir = 4 +"sPB" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "sPM" = ( /obj/structure/barricade/snow{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"sQt" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) -"sQU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/redfull/west, +"sPQ" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) +"sQh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"sQk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"sQn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + dir = 4; + pixel_y = 5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"sQr" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "sQX" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_s_research) +"sRy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/research_hab) "sRV" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" @@ -19988,6 +19618,11 @@ /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"sTT" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "sUD" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/ice/layer1, @@ -19995,6 +19630,12 @@ "sUE" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/telecomm/lz2_southeast) +"sUF" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" + }, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) "sVJ" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -20002,37 +19643,41 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"sVV" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/green/southwest, -/area/shiva/interior/colony/botany) -"sWt" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) -"sXr" = ( +"sVR" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"sVW" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 7 +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/obj/item/tool/pen/blue, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"sWq" = ( +/obj/structure/surface/table, +/obj/item/device/whistle, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) +/area/shiva/interior/colony/research_hab) +"sXn" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/antag{ + pixel_y = 7 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "sXt" = ( /obj/structure/machinery/light/double, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"sXF" = ( -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"sXP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"sXL" = ( +/obj/structure/surface/table, +/obj/item/key/cargo_train, +/obj/structure/machinery/light/double, /turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "sXZ" = ( @@ -20066,12 +19711,20 @@ /obj/item/clothing/shoes/snow, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"sZx" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, +"sYM" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/area/shiva/interior/colony/central) +"sZr" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"sZJ" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "tad" = ( /obj/structure/platform/strata{ dir = 1 @@ -20084,12 +19737,44 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"taq" = ( -/obj/item/tool/kitchen/rollingpin, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +"tav" = ( +/obj/item/storage/belt/gun/m44, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"taF" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"taN" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"tbg" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/s_admin) +"tbl" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"tbC" = ( +/obj/item/frame/table, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "tbR" = ( /obj/structure/surface/table, /obj/item/folder/red, @@ -20102,14 +19787,6 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"tcG" = ( -/obj/item/weapon/gun/pistol/highpower, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"tcI" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/wred/northeast, -/area/shiva/interior/colony/medseceng) "tcR" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/snow/layer2, @@ -20121,12 +19798,19 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"tds" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +"tdn" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"tdw" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"tdx" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/boiledspagetti, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "tdG" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -20144,10 +19828,22 @@ /obj/item/tool/stamp, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"tef" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +"teb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"ted" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 10 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/cp_lz2) "tes" = ( /obj/structure/platform/strata, /obj/structure/barricade/handrail/wire{ @@ -20169,10 +19865,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/fortbiceps) -"teD" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/green/southwest, -/area/shiva/interior/colony/botany) "teK" = ( /obj/structure/stairs/perspective/ice{ dir = 4; @@ -20188,41 +19880,57 @@ /obj/item/tool/shovel/spade, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"thc" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_y = 8 +"tgu" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/multi_tiles/southeast, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) -"thB" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"thd" = ( +/obj/structure/machinery/light/double, +/obj/structure/noticeboard{ + pixel_y = -32 }, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"thy" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"tiw" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, +/area/shiva/exterior/lz2_fortress) +"thZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/research_hab) +"tir" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "tiO" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"tjl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "tjL" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/aerodrome) -"tkb" = ( +"tjU" = ( /obj/structure/surface/table, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "tkm" = ( /obj/structure/largecrate/random/case, /turf/open/asphalt/cement, @@ -20234,6 +19942,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"tkW" = ( +/obj/structure/filingcabinet/security, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/central) "tle" = ( /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer2, @@ -20247,28 +19960,32 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) +"tlw" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "tlB" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"tlX" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) +"tlD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "tmh" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva, /area/shiva/interior/bar) -"tmi" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"tmI" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/central) +"tmy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "tmP" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/ice/layer1, @@ -20281,41 +19998,13 @@ /obj/item/stack/cable_coil/cut, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"tnh" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/interior/colony/n_admin) "tnu" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/bar) -"tnz" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "tnG" = ( /obj/structure/inflatable, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"tnM" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 5; - pixel_y = 16 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"tnU" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/shiva/exterior/cp_lz2) "too" = ( /obj/structure/prop/ice_colony/soil_net, /obj/item/tool/shovel/spade{ @@ -20325,9 +20014,12 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"toA" = ( -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) +"tos" = ( +/obj/item/book/manual/marine_law, +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "toD" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) @@ -20337,52 +20029,70 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"toN" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) "toO" = ( /obj/item/stack/rods, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"tpg" = ( -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/exterior/junkyard) -"tpL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +"toR" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/obj/structure/desertdam/decals/road_stop{ - icon_state = "road_edge_decal5"; - pixel_x = -14 +/obj/item/tool/weldingtool{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"tqs" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - pixel_y = 5 +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) +"tpF" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; - pixel_y = -5 +/turf/open/floor/strata/floor3/east, +/area/shiva/interior/colony/deck) +"tqc" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/research_hab) -"tqL" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/warehouse) "trj" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) +"trE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"trM" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" + }, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) "trX" = ( /obj/structure/machinery/conveyor, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"tsh" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/weapon/gun/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/storage/belt/marine, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "tsI" = ( /obj/structure/largecrate/random/mini/small_case/c{ pixel_x = -14; @@ -20394,29 +20104,58 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) -"tsR" = ( -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = 3; - pixel_y = 9 +"tsL" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "tsU" = ( /obj/structure/machinery/light/double, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"tsZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 +"ttM" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 12; + pixel_y = 28 }, /turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"ttN" = ( -/obj/structure/machinery/sensortower{ - pixel_x = 6 +/area/shiva/exterior/lz2_fortress) +"ttV" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/corpsespawner/scientist, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"ttX" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"tua" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"tul" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_y = 9 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"tut" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/weapon/gun/rifle/m41aMK1, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) "tuz" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -20431,51 +20170,37 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) +"tuI" = ( +/obj/structure/machinery/processor, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "tuT" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) -"tvo" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/north, +"tuV" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"tvX" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) -"twc" = ( -/obj/item/paper/research_notes/decent, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "twi" = ( /obj/structure/girder, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"twt" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/research_hab) -"twD" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"twG" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/shiva/interior/colony/central) -"txA" = ( -/obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/red/southeast, -/area/shiva/interior/colony/medseceng) -"txS" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/aux_power) -"txU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, +"txh" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) -"txX" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/shiva/multi_tiles/east, +"txK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "tyi" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -20483,6 +20208,17 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"tyr" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/obj/structure/barricade/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"tyG" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/southeast, +/area/shiva/interior/valley_huts/disposals) "tyI" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -20490,14 +20226,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"tyL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - dir = 4; - pixel_y = 5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) "tze" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/ice/layer1, @@ -20505,33 +20233,78 @@ "tzo" = ( /turf/open/shuttle/elevator/grating, /area/shiva/interior/aerodrome) -"tzu" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"tzp" = ( +/obj/item/frame/table, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"tzy" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) +"tzS" = ( +/obj/item/ammo_magazine/rifle/boltaction{ + pixel_x = -7; + pixel_y = -8 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/aux_power) -"tzH" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/deck) +/obj/structure/barricade/metal{ + layer = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "tAc" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_4" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"tAn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"tAT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"tBg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "tBB" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/cp_bar) -"tCi" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"tDb" = ( -/obj/structure/platform/shiva/catwalk, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) +"tCG" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"tCI" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/botany) +"tCQ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"tDd" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "tDg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -20558,13 +20331,6 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/s_admin) -"tEr" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "tEE" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer1, @@ -20599,6 +20365,23 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) +"tFH" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"tFQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/tool/soap{ + pixel_x = -7 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "tGs" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -20611,34 +20394,44 @@ dir = 4 }, /area/shiva/interior/aerodrome) -"tGS" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) -"tGU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Colony Dormitories Canteen"; - req_access_txt = "100" - }, +"tGI" = ( +/obj/structure/machinery/disposal, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +/area/shiva/interior/colony/medseceng) "tHd" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"tHD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) "tHJ" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"tIR" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/green, +"tHO" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"tIi" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) +"tIp" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"tIC" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "tJe" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -20650,12 +20443,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"tJn" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/botany) "tJP" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, @@ -20664,30 +20451,12 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"tJY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/desertdam/decals/road_stop{ - icon_state = "road_edge_decal8"; - pixel_x = -14 - }, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"tKd" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) "tKg" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/central) -"tKk" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/green, -/area/shiva/interior/colony/botany) "tKv" = ( /obj/structure/largecrate/random/mini/wooden{ pixel_x = -16; @@ -20701,10 +20470,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/telecomm/lz2_southeast) -"tLz" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) "tLC" = ( /obj/item/lightstick/red/variant/planted, /obj/structure/platform/shiva/catwalk{ @@ -20727,6 +20492,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"tMB" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "tMR" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -20734,38 +20503,19 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"tMS" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/north, +"tNQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"tMY" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/cp_lz2) -"tNm" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"tNN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/t_scanner, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"tNP" = ( +"tOi" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid/adv{ - pixel_x = 2; - pixel_y = 10 +/obj/item/circuitboard{ + pixel_x = -3; + pixel_y = 18 }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "tOo" = ( /obj/effect/spider/stickyweb, @@ -20781,23 +20531,23 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"tOG" = ( -/obj/item/tool/wirecutters{ - pixel_x = -1; - pixel_y = -4 +"tOI" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_y = 12 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"tOO" = ( +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "tPs" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"tPz" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) "tPB" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer4, @@ -20806,46 +20556,44 @@ /obj/structure/platform/shiva/catwalk, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) +"tQk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/spaceacillin{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/storage/belt/utility/full{ + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "tQn" = ( /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"tQG" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Storeroom" +"tQp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/assembly/timer, +/obj/item/attachable/flashlight{ + pixel_x = -2; + pixel_y = 8 }, -/turf/open/floor/dark2, -/area/shiva/interior/telecomm/lz1_biceps) -"tQK" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"tQN" = ( -/turf/open/floor/shiva/radiator_tile, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"tQY" = ( +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) -"tQR" = ( -/obj/structure/bed/chair{ +"tRp" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/up, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"tRw" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/obj/structure/machinery/power/apc{ - dir = 8; - start_charge = 0 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"tRq" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "tRN" = ( /obj/structure/largecrate/random{ anchored = 1; @@ -20858,30 +20606,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"tRT" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/bed/chair/comfy/orange{ +"tRO" = ( +/obj/structure/prop/ice_colony/flamingo/festive{ dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"tSt" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"tSI" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "tTc" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer3, @@ -20899,12 +20629,12 @@ "tTi" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/s_lz2) -"tTW" = ( -/obj/structure/prop/ice_colony/tiger_rug{ - icon_state = "White" +"tTB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/plating, +/area/shiva/exterior/valley) "tUe" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -20923,55 +20653,52 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) +"tVy" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) "tVZ" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"tWn" = ( -/obj/structure/bed/chair{ - dir = 8 +"tWf" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/shiva/bluefull, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) -"tWv" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/interior/colony/medseceng) "tWz" = ( /obj/structure/machinery/space_heater, /turf/open/floor/shiva, /area/shiva/interior/bar) -"tWE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"tXd" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) +"tWO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/research_hab) "tXe" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_colony_grounds) +"tXo" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + start_charge = 10 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "tXL" = ( /obj/item/stack/cable_coil/green, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"tYa" = ( -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"tYm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +"tXY" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "tYw" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/junkyard) @@ -20989,29 +20716,17 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"tZs" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"tZu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Sports Center"; + req_access_txt = "100" }, -/turf/open/floor/shiva/multi_tiles/southeast, +/turf/open/floor/dark2, +/area/shiva/interior/colony/central) +"tZN" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) -"tZA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) -"tZM" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "tZW" = ( /obj/structure/surface/rack, /obj/item/device/radio/headset{ @@ -21030,6 +20745,17 @@ /obj/item/stack/cable_coil/cyan, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"uaK" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"uaQ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) "ubv" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -21040,15 +20766,18 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ubG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4; - id = "nlz_shutters"; - name = "\improper Bio-lab Shutters" +"ubD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"ubE" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 4 }, /turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) +/area/shiva/exterior/cp_colony_grounds) "ucn" = ( /obj/structure/largecrate/random/mini/med{ layer = 3.01; @@ -21061,6 +20790,10 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"ucF" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/aux_power) "ucN" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -21068,6 +20801,17 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) +"udd" = ( +/obj/structure/surface/table, +/obj/item/storage/box/syringes{ + pixel_y = 2 + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) +"udf" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "udD" = ( /obj/structure/prop/dam/truck{ dir = 4; @@ -21075,54 +20819,30 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"udJ" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/research_hab) "uee" = ( /obj/item/weapon/gun/revolver/cmb, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"ueu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"uei" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"ueG" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "ueX" = ( /obj/item/ammo_magazine/rifle/boltaction, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"ufb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"ufd" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 +"ufr" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/blue/west, +/area/shiva/interior/colony/n_admin) "ufA" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -21149,50 +20869,50 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"ugd" = ( +/obj/structure/largecrate/random{ + anchored = 1; + pixel_x = 9; + pixel_y = -3 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = 10; + pixel_y = 12 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "ugl" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) +"ugu" = ( +/obj/item/wrapping_paper, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "ugC" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob) -"ugP" = ( -/obj/structure/computerframe, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"uhe" = ( -/obj/structure/machinery/colony_floodlight{ - pixel_y = 10 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/cp_lz2) -"uhL" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"uhO" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11 +"ugZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"uhj" = ( +/obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"uhV" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/red/northeast, -/area/shiva/interior/colony/medseceng) -"uig" = ( -/obj/item/shard{ - icon_state = "medium" +/area/shiva/interior/aerodrome) +"uia" = ( +/obj/item/storage/pouch/flare/full, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"uid" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"uim" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/spawner/random/attachment, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "uir" = ( @@ -21214,48 +20934,21 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"ujm" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/red/west, -/area/shiva/interior/colony/medseceng) -"ujJ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"ujV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"ukn" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "ukp" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_s_research) -"ukv" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/obj/item/tool/screwdriver, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"ukU" = ( -/obj/structure/surface/table, -/obj/item/clipboard, +"uld" = ( /obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"ulm" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/green/north, +/area/shiva/interior/colony/botany) "ulD" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4-8" @@ -21274,31 +20967,34 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/junkyard/fortbiceps) -"umj" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/exterior/lz2_fortress) -"umm" = ( -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) +"umg" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"umy" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "umB" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/telecomm/lz2_northeast) -"umC" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ +"unp" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"uot" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +/area/shiva/interior/aerodrome) +"uor" = ( +/obj/structure/surface/table, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "uoI" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -21330,10 +21026,13 @@ /obj/structure/largecrate/random/mini/chest/b, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"upp" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/lz2_habs) +"upI" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "upK" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood, @@ -21342,19 +21041,16 @@ "uqb" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"uqS" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +"urv" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/botany) "urX" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"ush" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/garage) "usZ" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -21368,63 +21064,72 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"uuv" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +"uti" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight/flare, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southeast, +/area/shiva/interior/valley_huts/disposals) +"utY" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black{ + pixel_y = 4 + }, +/obj/item/device/flashlight{ + pixel_x = -3; + pixel_y = -13 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "uuN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"uuZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +"uvF" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "uvU" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"uwv" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibhead" - }, +"uwk" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/n_admin) +"uwq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) +/area/shiva/interior/colony/central) "uwz" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/s_lz2) -"uwS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"uxH" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"uxO" = ( -/obj/structure/bed, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"uxV" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/botany) +"uxG" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "uxZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, /turf/open/floor/plating, /area/shiva/exterior/junkyard) +"uyp" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "uyI" = ( /obj/structure/largecrate/random/mini/small_case/c{ pixel_x = 11; @@ -21432,21 +21137,17 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"uyJ" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) "uzf" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/junkyard) -"uzs" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"uzo" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool{ + pixel_y = 2 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "uzu" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_s_research) @@ -21454,24 +21155,16 @@ /obj/structure/barricade/metal/wired, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) -"uzP" = ( -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) -"uzU" = ( -/obj/structure/surface/rack, +"uzS" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) +/area/shiva/interior/lz2_habs) "uAd" = ( /obj/structure/lz_sign/ice_sign{ layer = 3.1 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"uAq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) "uAM" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -21480,10 +21173,23 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"uBz" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +"uAS" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"uAZ" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"uBA" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes/grant, +/obj/item/paper/research_notes/decent{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "uCp" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -21494,29 +21200,34 @@ /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"uCO" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/exterior/cp_lz2) -"uDb" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) -"uDZ" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-east" +"uDi" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shiva/exterior/junkyard/fortbiceps) +"uDR" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"uDY" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + start_charge = 0 + }, +/turf/open/floor/plating, +/area/shiva/interior/caves/cp_camp) "uEo" = ( /obj/structure/platform/strata, /obj/item/lightstick/variant/planted, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"uEx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva/purplefull/north, +"uFc" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "uFl" = ( /obj/structure/barricade/snow{ @@ -21531,45 +21242,54 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"uFr" = ( +"uFy" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/bar) +"uFO" = ( /obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"uFA" = ( -/obj/item/weapon/gun/boltaction{ - pixel_x = -6 +/obj/item/device/binoculars/range{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -14; + pixel_y = 14 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/exterior/lz2_fortress) -"uGq" = ( -/turf/open/floor/plating, -/area/shiva/interior/colony/n_admin) -"uGw" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"uHa" = ( -/obj/structure/morgue, +/area/shiva/interior/colony/research_hab) +"uGn" = ( /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"uHA" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"uHH" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) +"uGq" = ( +/turf/open/floor/plating, +/area/shiva/interior/colony/n_admin) +"uGX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) +"uHt" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/bed/chair, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"uHu" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "uIC" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -21586,11 +21306,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"uII" = ( -/obj/structure/surface/table, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) "uIO" = ( /obj/item/lightstick/red/variant/planted{ pixel_x = 11; @@ -21598,22 +21313,10 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"uJg" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) +"uJi" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "uJj" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -21621,10 +21324,14 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"uJk" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/shiva/snow_mat/north, -/area/shiva/interior/colony/botany) +"uJz" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "uJL" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -13; @@ -21632,49 +21339,37 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"uKo" = ( +"uJP" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"uJT" = ( /obj/structure/surface/table, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/tool/lighter/zippo{ - pixel_x = -14; - pixel_y = 14 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"uKB" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/floor/shiva/north, -/area/shiva/interior/caves/s_lz2) -"uKN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +/obj/item/weapon/gun/pistol/holdout, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) -"uKV" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_y = 7 - }, -/obj/item/tool/pen/blue{ - pixel_x = 5; - pixel_y = -5 - }, +"uJW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) +"uKF" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "uKZ" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/aerodrome) +"uLd" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) "uLf" = ( /obj/structure/platform/strata{ dir = 4 @@ -21692,28 +21387,24 @@ "uLi" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/aerodrome) -"uLn" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/obj/item/paper/research_notes, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/wred/west, +"uLp" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/shiva/red/northwest, /area/shiva/interior/colony/medseceng) -"uLq" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"uLs" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"uLw" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/turf/open/floor/shiva/purple/east, -/area/shiva/interior/lz2_habs) -"uLu" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"uLH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "uLT" = ( /obj/structure/machinery/conveyor, /turf/open/asphalt/cement, @@ -21724,6 +21415,11 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) +"uMD" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) "uNe" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Colony Engineering Locker Room" @@ -21731,23 +21427,37 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"uOR" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) -"uPo" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/wood, +"uNm" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) +"uNK" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Colony Security Checkpoint" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"uOJ" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "uPv" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"uPB" = ( +/obj/effect/landmark/crap_item, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "uPE" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/sake{ @@ -21756,6 +21466,31 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) +"uPS" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/folder/black_random{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"uQb" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "uQy" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -21772,119 +21507,134 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"uRi" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) -"uRn" = ( -/obj/item/weapon/gun/boltaction, +"uQC" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"uRt" = ( -/obj/structure/closet/radiation, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) -"uRK" = ( -/obj/structure/surface/table, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) "uSd" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"uSe" = ( -/turf/open/floor/shiva/green/southwest, -/area/shiva/interior/colony/botany) +"uSv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "uSF" = ( /mob/living/simple_animal/hostile/giant_spider/nurse, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"uSN" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/botany) "uTu" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"uTB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) +"uTw" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/colony/deck) +"uTC" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "uTL" = ( /obj/item/tool/pickaxe/diamond{ desc = "So we back in the mine, swinging pickaxe from side to side, side side, to side." }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"uTM" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-southeast-gate" - }, +"uTO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"uUa" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"uTN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"uVa" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) -"uVK" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"uWi" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"uWj" = ( -/obj/structure/flora/tree/dead/tree_1, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_colony_grounds) -"uWA" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/shiva/yellowfull, +"uUd" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) -"uXQ" = ( -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/medseceng) -"uYa" = ( -/turf/open/floor/shiva/greencorners/north, -/area/shiva/interior/colony/botany) -"uYg" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Underground Security Checkpoint" - }, -/turf/open/floor/plating, -/area/shiva/interior/colony/medseceng) -"uYl" = ( -/obj/item/tool/warning_cone, +"uUn" = ( +/obj/item/ammo_magazine/revolver/cmb, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"uYt" = ( -/obj/structure/reagent_dispensers, +/area/shiva/interior/lz2_habs) +"uUJ" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"uVg" = ( +/obj/structure/closet/crate, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_king, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_queen, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) +"uVp" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"uVw" = ( +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "large" + }, +/obj/item/shard{ + icon_state = "large" + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"uVZ" = ( +/obj/structure/surface/table, +/obj/item/clipboard{ + pixel_x = -2; + pixel_y = 5 + }, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) +"uWi" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"uWj" = ( +/obj/structure/flora/tree/dead/tree_1, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_colony_grounds) +"uYg" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Underground Security Checkpoint" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) "uYC" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/telecomm/lz1_biceps) @@ -21895,17 +21645,28 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"uZf" = ( -/turf/open/floor/shiva/wredcorners, -/area/shiva/interior/colony/medseceng) -"uZl" = ( -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/botany) -"uZJ" = ( -/obj/structure/bed/chair{ - dir = 8 +"uZh" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-east" }, /turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"uZn" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/flare, +/obj/item/device/radio, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"uZC" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/botany) +"uZS" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) "uZU" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -21917,37 +21678,57 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"vbb" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/obj/item/tool/pen/blue{ - pixel_x = 5 +"vae" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/aux_power) +"vaC" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "vbm" = ( /obj/structure/bed/chair/comfy/orange, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"vbA" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"vcx" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/flare, -/obj/item/device/radio, +"vbw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4; + id = "nlz_shutters"; + name = "\improper Bio-lab Shutters" + }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"vcU" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/yellow/southwest, -/area/shiva/interior/colony/medseceng) -"vdb" = ( +/area/shiva/interior/lz2_habs) +"vbP" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) +"vbY" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"vca" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/deck) +"vcV" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"vdo" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "vdw" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -21961,41 +21742,14 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/s_lz2) -"vdC" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"vdS" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"veo" = ( -/obj/structure/surface/table, -/obj/item/device/defibrillator, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/wred/east, -/area/shiva/interior/colony/medseceng) -"ver" = ( -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"ves" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/colony/central) +"vdL" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/aux_power) "veu" = ( /obj/structure/platform_decoration/strata, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"vey" = ( -/turf/open/floor/shiva/red/northeast, -/area/shiva/interior/colony/medseceng) "veS" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, @@ -22003,59 +21757,44 @@ "vfc" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/cp_lz2) -"vfd" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) +"vfK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"vgb" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "vgR" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer4, /area/shiva/interior/caves/cp_camp) -"vhp" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) -"vhG" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher/mini, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"vhL" = ( -/turf/open/floor/shiva/green/southeast, -/area/shiva/interior/colony/botany) "vhM" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"vhQ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"vip" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"viy" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) -"viF" = ( +"vhS" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/n_admin) +"vhT" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"viZ" = ( +/obj/item/stack/barbed_wire, /turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"vjs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva/purplefull/east, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/colony/botany) +"vji" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "vjy" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, @@ -22067,18 +21806,15 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"vkq" = ( +"vjO" = ( /obj/structure/surface/table, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/garage) "vkr" = ( /obj/item/device/flashlight, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"vkZ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts) "vlh" = ( /obj/structure/platform/strata{ dir = 1 @@ -22089,20 +21825,27 @@ /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"vmy" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +"vmK" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/s_admin) "vnc" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"vno" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access_txt = "100" +"vnj" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/wred/southwest, -/area/shiva/interior/colony/medseceng) +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"vnt" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "vnF" = ( /obj/structure/surface/table, /obj/item/device/radio, @@ -22113,10 +21856,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"vnX" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) "vom" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -22124,12 +21863,6 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"voo" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) "voH" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = 1; @@ -22137,54 +21870,84 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) +"vpa" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "vpD" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz1_north) -"vpZ" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"vqq" = ( -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/central) +"vqb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"vqd" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"vqm" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) "vqw" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"vqy" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"vqS" = ( +/obj/item/storage/donut_box, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "vqT" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"vqV" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/obj/structure/prop/ice_colony/flamingo{ - dir = 9 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"vrm" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) "vrG" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"vrM" = ( -/obj/effect/decal/warning_stripes{ - pixel_y = 32 - }, +"vsk" = ( +/obj/structure/machinery/landinglight/ds2, /turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"vsp" = ( +/turf/open/floor/shiva/greencorners/east, +/area/shiva/interior/colony/botany) +"vsK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"vsi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/wy_mre, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +"vsM" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"vta" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"vte" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) "vty" = ( /obj/item/shard{ icon_state = "medium"; @@ -22196,25 +21959,37 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"vuj" = ( -/obj/structure/bed/roller, -/turf/open/floor/shiva/floor3, +"vua" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) -"vvb" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +"vum" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_colony_grounds) +"vvi" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"vvs" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"vvV" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/labcoat/researcher, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "vwn" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) -"vwv" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) +"vww" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "vwx" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -22223,24 +21998,51 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"vxb" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/shiva/multi_tiles/southeast, +"vwF" = ( +/obj/structure/machinery/chem_master/condimaster, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) +"vwY" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "nlz_shutters"; + pixel_y = 28 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"vwZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "vxg" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"vxE" = ( -/turf/open/floor/shiva/snow_mat, -/area/shiva/interior/colony/central) -"vxW" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/obj/effect/landmark/objective_landmark/science, +"vxi" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/exterior/junkyard) +"vxU" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"vyi" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -5; + pixel_y = 11 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) +/area/shiva/interior/colony/research_hab) "vym" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -22251,13 +22053,20 @@ /obj/structure/bed/roller, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"vzy" = ( -/obj/structure/machinery/light/double, -/obj/structure/noticeboard{ - pixel_y = -32 +"vza" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"vzC" = ( +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"vzK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "vzM" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" @@ -22279,17 +22088,10 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) -"vAw" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) -"vAT" = ( -/turf/open/floor/shiva/green/northeast, -/area/shiva/interior/colony/botany) +"vAz" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "vAU" = ( /obj/structure/platform/strata{ dir = 4 @@ -22301,23 +22103,16 @@ /obj/structure/curtain/black, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"vBl" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/northwest, -/area/shiva/interior/colony/medseceng) -"vBm" = ( -/obj/item/clipboard, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "vCe" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) +"vCf" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) "vCj" = ( /obj/structure/barricade/snow{ dir = 1 @@ -22329,27 +22124,12 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"vCl" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/signaller, -/obj/item/circuitboard/airlock, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"vCv" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) -"vDB" = ( -/obj/structure/barricade/metal{ - dir = 4 +"vDu" = ( +/obj/item/shard{ + icon_state = "large" }, -/obj/structure/barricade/metal, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) +/area/shiva/interior/aerodrome) "vDD" = ( /obj/structure/flora/pottedplant, /turf/open/floor/wood, @@ -22358,22 +22138,32 @@ /obj/structure/prop/ice_colony/surveying_device, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"vDP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"vEU" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "vFi" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"vFq" = ( -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) "vFR" = ( /obj/structure/machinery/space_heater, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"vFX" = ( -/obj/structure/closet/firecloset, +"vGC" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"vGK" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/bar) "vGY" = ( /obj/structure/barricade/snow{ dir = 1 @@ -22389,9 +22179,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"vHM" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/botany) "vHT" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, @@ -22402,13 +22189,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"vIi" = ( -/obj/effect/landmark/crap_item, -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) "vIy" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -22423,29 +22203,64 @@ /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"vIL" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/central) -"vJh" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/deck) +"vIT" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"vJm" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) "vJu" = ( /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/exterior/valley) -"vKu" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/research_hab) -"vKx" = ( -/turf/open/floor/shiva/yellow/northeast, +"vJB" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" + }, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) -"vMX" = ( -/obj/structure/flora/grass/tallgrass/ice/corner, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_lz2) -"vNJ" = ( -/turf/open/floor/shiva/green, +"vJN" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"vKJ" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"vLa" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"vLn" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"vMX" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_lz2) +"vNA" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"vNH" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/snow_mat, /area/shiva/interior/colony/botany) "vNN" = ( /obj/structure/fence, @@ -22457,20 +22272,12 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"vOd" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/exterior/lz2_fortress) "vOv" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/plating, /area/shiva/interior/bar) -"vOP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow/northeast, -/area/shiva/interior/colony/medseceng) "vPr" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/warehouse/caves) @@ -22483,20 +22290,28 @@ }, /turf/open/gm/river, /area/shiva/exterior/cp_lz2) -"vPR" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/shiva/interior/colony/research_hab) -"vQm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/floor3, +"vPZ" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/research_hab) "vQZ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/cp_colony_grounds) +"vRr" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) +"vRD" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "vRM" = ( /obj/structure/platform/strata{ dir = 8 @@ -22504,30 +22319,34 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/exterior/cp_lz2) -"vRW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +"vSn" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"vSv" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"vSK" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "vSL" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"vTc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/purplefull/west, -/area/shiva/interior/colony/research_hab) -"vTh" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva/red/east, -/area/shiva/interior/colony/medseceng) +"vSN" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"vSX" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shiva/exterior/junkyard/fortbiceps) "vTi" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -22537,10 +22356,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"vTj" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) +"vUq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "vUC" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer4, @@ -22552,9 +22371,10 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"vUL" = ( -/turf/open/floor/shiva/yellow/east, -/area/shiva/interior/garage) +"vUK" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "vUR" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/lz2_fortress) @@ -22562,9 +22382,17 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, /area/shiva/interior/aerodrome) -"vWf" = ( -/obj/item/restraint/handcuffs, -/turf/open/floor/shiva/redfull/west, +"vVN" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard) +"vVR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "vWt" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -22573,49 +22401,52 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"vWR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "vWW" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/cp_lz2) -"vXh" = ( -/obj/structure/filingcabinet, +"vXi" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/crap_item, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"vXk" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) +/area/shiva/interior/garage) "vXl" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"vXw" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/shiva/interior/caves/cp_camp) "vYm" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"vYU" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +"vYw" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 }, -/turf/open/floor/shiva/purple/west, -/area/shiva/interior/lz2_habs) -"vZj" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"vZH" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "vZS" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/lz1_valley) +"waf" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "wag" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/n_admin) @@ -22632,10 +22463,15 @@ dir = 6 }, /area/shiva/interior/aerodrome) -"wck" = ( -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +"wbL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"wci" = ( +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "wcF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -22644,21 +22480,28 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) -"wdy" = ( -/obj/item/paper/research_notes{ - pixel_x = -7; - pixel_y = 3 +"wdZ" = ( +/obj/structure/surface/table, +/obj/item/folder/white, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"wfl" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) -"wfB" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor/shiva/north, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"wes" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) +"wet" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/shiva/interior/colony/medseceng) +"wfF" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "wfH" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -11 @@ -22672,12 +22515,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"wfO" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) "wfP" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -16; @@ -22695,48 +22532,38 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"wgp" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 1; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; - pixel_y = -5 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/research_hab) "wgM" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/lz1_valley) -"wgW" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"wgX" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" +"wgR" = ( +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/green/north, +/area/shiva/interior/colony/botany) +"whd" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) +"wht" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"whw" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/floor3, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"whG" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/botany) "whI" = ( /obj/item/weapon/gun/boltaction, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"whS" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"whU" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva/yellowfull/west, -/area/shiva/interior/colony/medseceng) -"wil" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) "wiy" = ( /obj/structure/barricade/snow{ dir = 4 @@ -22744,16 +22571,18 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"wiM" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva/radiator_tile, -/area/shiva/interior/colony/n_admin) "wje" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/medseceng_caves) +"wjw" = ( +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"wjy" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "wjD" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -22768,61 +22597,64 @@ /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"wjK" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/advanced/bruise_pack/upgraded{ - pixel_x = -3; - pixel_y = 14 - }, -/obj/item/stack/medical/advanced/ointment/upgraded{ - pixel_x = 4; - pixel_y = 5 +"wko" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/delivery, +/area/shiva/interior/telecomm/lz1_biceps) +"wkV" = ( +/turf/open/floor/shiva/yellowcorners/east, /area/shiva/interior/colony/research_hab) "wlj" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/central) -"wls" = ( -/obj/structure/largecrate/random/case/small, +"wlr" = ( +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +/area/shiva/exterior/lz2_fortress) "wlJ" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz2_northeast) -"wmc" = ( +"wlY" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"wmU" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"wnR" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/warehouse) +"wpq" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 8 }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/botany) -"wnK" = ( -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"woB" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +/area/shiva/interior/aerodrome) +"wpx" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/botany) -"wpl" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"wpG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Colony Security Checkpoint" +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"wpI" = ( +/turf/open/floor/darkbrown2/west, +/area/shiva/interior/valley_huts/disposals) +"wpP" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "wpW" = ( /obj/item/stack/rods, @@ -22833,16 +22665,51 @@ /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"wqQ" = ( -/obj/item/tool/screwdriver, +"wqv" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"wrg" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"wrp" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"wrI" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + start_charge = 0 + }, /turf/open/floor/shiva/north, -/area/shiva/interior/bar) +/area/shiva/interior/caves/s_lz2) "wsz" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) +"wsD" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"wsZ" = ( +/obj/structure/surface/table, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "wta" = ( /obj/item/stool{ pixel_x = 4; @@ -22850,21 +22717,60 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"wtC" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/n_admin) +"wtb" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"wtA" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"wtD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"wtR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) "wui" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"wum" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "wuu" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_3" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"wuv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "wvd" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8; @@ -22873,22 +22779,24 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_s_research) +"wvq" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "wvx" = ( /obj/structure/largecrate/random/case, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"wvF" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "wvS" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/research_caves) -"wvW" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) +"wwb" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) "wwl" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -22908,12 +22816,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"wwF" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) "wwZ" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -22921,25 +22823,20 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"wxs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/tool/soap{ - pixel_x = -7 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"wxu" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/wredfull, +"wxL" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/shiva/interior/colony/central) +"wxN" = ( +/turf/open/floor/shiva/wredcorners/north, /area/shiva/interior/colony/medseceng) "wxY" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) +"wzi" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/research_hab) "wAr" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/ice/layer1, @@ -22968,49 +22865,36 @@ /obj/structure/girder, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"wCh" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp{ - pixel_y = 4 - }, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) -"wCn" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -10; - pixel_y = 13 +"wBn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"wCl" = ( +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"wCJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"wCz" = ( -/turf/open/floor/chapel/north, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "wCP" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/colony/s_admin) -"wCU" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9; - pixel_y = 21 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "wCX" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/s_lz2) -"wFa" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +"wDH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/technology_scanner, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/shiva/red, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) "wFm" = ( /obj/structure/surface/rack, @@ -23023,72 +22907,56 @@ /obj/structure/coatrack, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"wFw" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva/greenfull, -/area/shiva/interior/colony/n_admin) -"wFB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/multi_tiles/east, -/area/shiva/interior/colony/research_hab) -"wGD" = ( -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/s_admin) -"wHi" = ( -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/central) -"wHr" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red, +"wFs" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"wHo" = ( +/turf/open/floor/shiva/yellowcorners/north, /area/shiva/interior/colony/medseceng) "wHx" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/landmark/objective_landmark/close, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"wHA" = ( -/turf/open/floor/shiva/blue/east, -/area/shiva/interior/colony/n_admin) +"wHU" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "clfship" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_colony_grounds) +"wHV" = ( +/obj/structure/machinery/optable, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "wHZ" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"wIf" = ( +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/central) "wIC" = ( /obj/structure/prop/invuln/minecart_tracks, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"wIS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 9 +"wJy" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" }, -/obj/item/toy/deck{ - pixel_x = -5; - pixel_y = 5 +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"wJI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + dir = 8; + pixel_y = 6 }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"wJd" = ( -/obj/effect/landmark/xeno_spawn, /turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) -"wJp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/n_admin) -"wKk" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/lz2_habs) +/area/shiva/interior/colony/research_hab) +"wKS" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/colony/research_hab) "wLM" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -23096,57 +22964,30 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"wLQ" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "wMh" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) "wMj" = ( /turf/closed/wall/shiva/prefabricated/pink, /area/shiva/exterior/lz2_fortress) -"wMq" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) -"wMC" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/colony/deck) -"wMR" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/botany) +"wNf" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "wNj" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating/icefloor, /area/shiva/interior/telecomm/lz1_biceps) -"wNB" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "hangar_ice_2"; - pixel_y = 28 - }, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) -"wOq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/red/southwest, -/area/shiva/interior/colony/medseceng) -"wOO" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +"wPg" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/central) "wPs" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer1, @@ -23157,15 +22998,27 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"wQr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +"wPK" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"wQB" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +/obj/structure/filingcabinet/filingcabinet{ + name = "mail bins"; + pixel_y = 14 }, -/turf/open/floor/plating, -/area/shiva/exterior/valley) +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "wQR" = ( /obj/structure/morgue{ dir = 8 @@ -23173,12 +23026,12 @@ /obj/structure/machinery/light/double, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"wRa" = ( +"wQX" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/valley_huts/no2) -"wRi" = ( -/turf/open/floor/shiva/yellow/northwest, -/area/shiva/interior/aux_power) +/area/shiva/interior/aerodrome) "wRm" = ( /turf/open/floor/plating, /area/shiva/interior/aerodrome) @@ -23189,32 +23042,19 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse/caves) -"wSI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/s_admin) "wTg" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"wTm" = ( +"wTh" = ( /obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/strata/floor2, -/area/shiva/interior/colony/research_hab) +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/garage) +"wTk" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "wTx" = ( /obj/effect/spawner/random/toolbox, /turf/open/auto_turf/snow/layer1, @@ -23230,6 +23070,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"wTC" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "wTP" = ( /obj/item/storage/surgical_tray, /obj/structure/surface/table/reinforced/prison, @@ -23245,53 +23090,66 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"wUy" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) -"wVJ" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 +"wUs" = ( +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) +"wVK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"wWb" = ( +/obj/structure/surface/rack, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/item/cell/hyper/empty, +/obj/item/cell/hyper/empty, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"wWu" = ( -/turf/open/floor/shiva/wred/northwest, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"wWY" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"wWF" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, /turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"wXh" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/colony/deck) +"wWI" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "wXs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/aerodrome) -"wXQ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/bar) -"wYd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ - pixel_x = 6; - pixel_y = 11 +"wXS" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"wYz" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) +"wYT" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) +"wZb" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/deck) "wZh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/slime{ @@ -23307,66 +23165,35 @@ /obj/structure/bed, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"wZY" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/s_admin) -"xar" = ( -/obj/structure/surface/table, -/obj/item/storage/box/syringes{ - pixel_y = 2 - }, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/medseceng) -"xaw" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +"xap" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "xbz" = ( /obj/structure/window/framed/shiva, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"xbP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"xbZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/cp_colony_grounds) -"xcE" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) "xde" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/bluepyjamas, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"xdk" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/shiva/north, +"xdm" = ( +/turf/open/floor/shiva/yellowcorners/west, /area/shiva/interior/garage) -"xdT" = ( +"xdX" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/yellow/west, -/area/shiva/interior/aux_power) +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"xek" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "xeq" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 4; @@ -23381,6 +23208,31 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"xeR" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"xeZ" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"xfa" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/deck) +"xfr" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"xfs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"xfR" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "xgc" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) @@ -23390,15 +23242,29 @@ "xha" = ( /turf/open/floor/plating, /area/shiva/interior/colony/central) -"xhn" = ( -/obj/structure/prop/souto_land{ - desc = "Someone has crudely rendered a face and the word 'souto'"; - health = 10000; - layer = 2.9; - name = "souto graffiti" +"xhd" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + start_charge = 0 }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"xhA" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/central) +"xhB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/ammo_magazine/rifle/m41aMK1, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) "xhJ" = ( /obj/item/tool/wet_sign, /turf/open/floor/wood, @@ -23408,75 +23274,118 @@ /obj/structure/surface/rack, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"xiu" = ( -/obj/structure/machinery/vending/cola/research, +"xhY" = ( /turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) +/area/shiva/interior/colony/central) +"xhZ" = ( +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"xig" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"xiz" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"xiB" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"xiL" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "xiY" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"xjg" = ( -/turf/open/floor/shiva/yellow, -/area/shiva/interior/colony/deck) -"xkf" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, +"xjN" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"xkV" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -5; - pixel_y = 11 - }, +"xjO" = ( +/obj/structure/closet, +/obj/item/newspaper, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva/floor3, -/area/shiva/interior/aux_power) +/area/shiva/interior/aerodrome) "xlg" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"xmS" = ( -/obj/structure/closet/emcloset, +"xlN" = ( +/obj/structure/barricade/metal{ + dir = 1 + }, +/obj/structure/barricade/metal{ + dir = 4 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"xnM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/botany) +"xlP" = ( +/obj/structure/machinery/light/double, +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) -"xoi" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"xnO" = ( +/obj/item/frame/firstaid_arm_assembly, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"xoy" = ( +/obj/structure/prop/ice_colony/ground_wire{ + layer = 2.98 }, -/turf/open/floor/shiva/wredfull, +/turf/open/floor/shiva/purple, +/area/shiva/interior/lz2_habs) +"xpk" = ( +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) +"xpw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"xqe" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 +"xpC" = ( +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 8; + pixel_y = -3 }, -/obj/item/paper_bin, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/s_admin) -"xqf" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"xpE" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/bar) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"xqb" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/botany) "xru" = ( /obj/structure/foamed_metal, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) +"xrD" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) +"xrM" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "xst" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -23485,10 +23394,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"xsD" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/shiva/north, +"xsR" = ( +/turf/open/floor/chapel/west, /area/shiva/interior/colony/central) +"xsS" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "xtc" = ( /obj/structure/platform/strata{ dir = 4 @@ -23496,10 +23408,22 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) +"xtF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellowcorners/north, +/area/shiva/interior/garage) "xtI" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) +"xtL" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "xui" = ( /obj/structure/platform/strata{ dir = 1 @@ -23517,23 +23441,38 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"xuD" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) "xvb" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"xvf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/bluefull, -/area/shiva/interior/colony/n_admin) "xvp" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"xvz" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "xvA" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/cp_bar) +"xvB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "xvQ" = ( /obj/structure/machinery/conveyor{ dir = 4; @@ -23544,30 +23483,30 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"xvS" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/research_hab) -"xwi" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) "xwk" = ( -/obj/item/lightstick/red/variant, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) -"xwo" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) +"xwt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/hotchili{ + pixel_y = 4 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"xwL" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/redfull, -/area/shiva/interior/colony/n_admin) +/obj/item/reagent_container/food/snacks/hotchili{ + pixel_y = 14 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"xwV" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"xxR" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "xxY" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -23583,6 +23522,25 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"xyl" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"xyX" = ( +/obj/item/tool/wirecutters{ + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "xyY" = ( /obj/structure/prop/invuln{ desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; @@ -23601,15 +23559,6 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"xzK" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/central) "xzO" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -23621,6 +23570,20 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) +"xAm" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/obj/item/tool/screwdriver, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"xAs" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "xAP" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, @@ -23638,20 +23601,25 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"xBo" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/wred, -/area/shiva/interior/colony/medseceng) -"xCj" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 +"xBt" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 }, /obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 + dir = 4; + pixel_y = -5 }, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) +"xBM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"xCd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "xCz" = ( /obj/effect/decal/warning_stripes{ @@ -23663,10 +23631,6 @@ }, /turf/open/floor/plating, /area/shiva/exterior/junkyard) -"xCA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "xCD" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -23674,16 +23638,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"xCN" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "xCW" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 1 @@ -23694,35 +23648,32 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"xDq" = ( -/obj/structure/closet/radiation, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva/purplefull, -/area/shiva/interior/colony/research_hab) -"xEd" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"xDa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) -"xEu" = ( -/obj/structure/morgue, /turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) -"xEw" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/wred/southeast, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/bar) +"xDh" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/botany) "xEB" = ( /obj/item/tool/warning_cone, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"xFp" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 4 +"xEL" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"xFx" = ( +/obj/structure/surface/table, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/shiva/multi_tiles, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "xFM" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -23735,24 +23686,36 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"xFR" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/shiva/interior/colony/n_admin) -"xGR" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva/wred/west, -/area/shiva/interior/colony/medseceng) -"xHu" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) +"xGZ" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"xHg" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "xHv" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/aerodrome) -"xIL" = ( -/obj/item/powerloader_clamp, -/turf/open/floor/shiva/floor3, +"xIj" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) +"xIu" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_y = 2 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"xIy" = ( +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) +"xID" = ( +/obj/structure/foamed_metal, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "xIO" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -23761,20 +23724,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"xIU" = ( -/obj/structure/prop/souto_land/streamer{ +"xKc" = ( +/obj/structure/machinery/light/double{ dir = 1; - pixel_y = 24 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) -"xJA" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 + pixel_y = 9 }, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "xLy" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -23791,24 +23747,20 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"xMv" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "xMz" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/lz1_valley) -"xMC" = ( -/obj/item/bananapeel, -/turf/open/floor/shiva/north, -/area/shiva/interior/bar) -"xMH" = ( +"xME" = ( /obj/structure/machinery/power/apc{ dir = 1; start_charge = 0 }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/deck) -"xMQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) "xMS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -23818,50 +23770,68 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"xMX" = ( -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, +"xNk" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) +"xNF" = ( +/obj/structure/prop/structure_lattice{ + dir = 8; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) +"xNJ" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) +"xNO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 + }, /turf/open/floor/shiva/floor3, -/area/shiva/interior/caves/cp_camp) -"xNe" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) +/area/shiva/interior/lz2_habs) "xOb" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"xPd" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/shiva/interior/bar) -"xQa" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/bluefull/west, -/area/shiva/interior/aerodrome) -"xQj" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 6 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_lz2) -"xQJ" = ( +"xOe" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) -"xQQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - name = "\improper Colony Dormitories" +"xOQ" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, /turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"xPx" = ( +/turf/open/floor/shiva/green/northeast, /area/shiva/interior/colony/botany) -"xRg" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva/yellowfull, -/area/shiva/interior/telecomm/lz1_biceps) -"xRi" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva/yellow/north, +"xPX" = ( +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) +"xQb" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"xQe" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/turf/open/floor/plating, +/area/shiva/exterior/junkyard/cp_bar) +"xQj" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_lz2) "xRy" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/plating/plating_catwalk/shiva, @@ -23878,9 +23848,24 @@ "xRY" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/cp_colony_grounds) -"xSk" = ( +"xSc" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/exterior/cp_lz2) +"xTc" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/garage) +"xTv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"xTE" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) +"xTH" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, /turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "xTK" = ( @@ -23888,51 +23873,61 @@ /obj/structure/girder, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/research_caves) -"xTZ" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 +"xTY" = ( +/obj/structure/filingcabinet/filingcabinet{ + name = "mail bins" }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/central) -"xUm" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard, -/turf/open/floor/shiva/wred/north, -/area/shiva/interior/colony/medseceng) +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "xUt" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"xVo" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/blue/west, -/area/shiva/interior/colony/n_admin) +"xVN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "xVZ" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"xXv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +"xWh" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 5 +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"xWF" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"xWZ" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"xXh" = ( +/obj/item/shard{ + icon_state = "large" }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 8 +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"xXA" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "xXM" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 9 @@ -23943,11 +23938,16 @@ /obj/structure/inflatable, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"xXV" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/north, -/area/shiva/interior/garage) +"xXT" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"xYt" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "xYx" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) @@ -23957,37 +23957,65 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"xZW" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison/kitchen, +"xZB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/russianRed{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 9 + }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) -"ycc" = ( -/turf/open/floor/shiva/red/northwest, -/area/shiva/interior/colony/medseceng) -"ydz" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +"xZM" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_x = 5; + pixel_y = 5 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"yac" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"yaf" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/signaller, +/obj/item/circuitboard/airlock, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"ycn" = ( +/obj/structure/machinery/landinglight/ds2/spoke, /turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/bar) -"ydP" = ( -/obj/structure/girder/displaced, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/area/shiva/interior/colony/botany) +"ycB" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"ydu" = ( +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) "yer" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"yeu" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva/redfull/west, -/area/shiva/interior/colony/medseceng) "yez" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Underground Security Showers" @@ -23995,63 +24023,44 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"yfE" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/wredfull, -/area/shiva/interior/colony/medseceng) +"yeH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"yfk" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "yfY" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"ygn" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/colony/medseceng) -"ygp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - pixel_y = 5 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/lz2_habs) "yhA" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"yhX" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench{ - pixel_x = -5; - pixel_y = -2 +"yiu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"yiw" = ( -/turf/open/floor/shiva/wredcorners/east, -/area/shiva/interior/colony/medseceng) -"yiS" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/shiva/interior/colony/research_hab) -"yjh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"yjn" = ( +"yjk" = ( +/obj/structure/surface/table, +/obj/item/device/defibrillator, /obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 + dir = 4; + pixel_x = 24 }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "yjM" = ( /obj/structure/barricade/handrail/wire, /obj/structure/barricade/handrail/wire{ @@ -24060,21 +24069,29 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"yjY" = ( -/obj/structure/surface/table, -/obj/item/storage/bag/plants, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/n_admin) -"ykq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/obj/item/storage/box/evidence{ - pixel_x = 5; - pixel_y = 10 +"ykE" = ( +/obj/structure/kitchenspike, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"ykS" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) +"yld" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) +"ylh" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "ylz" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -24086,26 +24103,15 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"ylO" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 32 - }, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/medseceng) -"ylP" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "ylU" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"ylZ" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva/red, -/area/shiva/interior/colony/medseceng) +"yme" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/shiva/interior/colony/botany) (1,1,1) = {" puZ @@ -24445,21 +24451,21 @@ puZ puZ puZ aac -cce -uLq -cce -cce -uLq -sXP -cce -uLq -cce -cce -uLq -cce +rej +suW +rej +rej +suW +loi +rej +suW +rej +rej +suW +rej aac -pTC -xMQ +cxR +nom aac aac aac @@ -24607,30 +24613,30 @@ puZ puZ puZ aac -amR -tyL -acq -amR -hpb -acq -amR -sBN -acq -amR -ygp -acq -xQJ -chq -xQJ +xoy +sQn +iHA +xoy +nNs +iHA +xoy +lJI +iHA +xoy +dwE +iHA +umy +qoO +umy aac aac -vZj -wil +bUp +uzS aac -pth -liD -pth -sPn +keK +xhd +keK +xIu aac aac puZ @@ -24769,30 +24775,30 @@ puZ puZ puZ aac -etm -vYU -jZF -cce -eoO -cce -cce -vYU -cce -jZF -vYU -cce -xQJ -xQJ -aiJ -mrY -mrY -xQJ -xQJ -xQJ -xQJ -xQJ -xQJ -cOX +xNO +crb +qYc +rej +qsK +rej +rej +crb +rej +qYc +crb +rej +umy +umy +tlw +tQY +tQY +umy +umy +umy +umy +umy +umy +sXL aac aac fEU @@ -24931,30 +24937,30 @@ puZ puZ aac aac -bhY +vwY byG -xQJ -xQJ +umy +umy odz -xQJ -kLv +umy +nFQ odz -xQJ -chq +umy +qoO odz -xQJ -xQJ -xQJ -xQJ -mrY -mrY -xQJ -xQJ -xQJ -xQJ -xQJ -xQJ -cce +umy +umy +umy +umy +tQY +tQY +umy +umy +umy +umy +umy +umy +rej aac fEU fEU @@ -25092,31 +25098,31 @@ puZ puZ puZ aac -aPg -rVF +awd +wvq odz -uwv -xQJ +pxW +umy odz -xQJ -xQJ +umy +umy odz -xQJ -xQJ +umy +umy odz -xQJ -xQJ -aBB -xQJ -mrY -mrY -xQJ -xQJ -xQJ -xQJ -xQJ -xQJ -cce +umy +umy +mOr +umy +tQY +tQY +umy +umy +umy +umy +umy +umy +rej aac fEU fEU @@ -25254,31 +25260,31 @@ caS caS caS aac -iVT -pME -cce -xQJ -cce -cce -cce -cce -cce -cce -cce -cce -cce -xQJ -xQJ -lpX +ptw +uUn +rej +umy +rej +rej +rej +rej +rej +rej +rej +rej +rej +umy +umy +poE aac aac -ijq -xQJ -xQJ -xQJ -xQJ -xQJ -mgA +syE +umy +umy +umy +umy +umy +rjo aac aac fEU @@ -25298,9 +25304,9 @@ tTi fEU eET tTi -slC -kMg -uKB +cJB +wYz +qBB eET hRQ eET @@ -25416,17 +25422,17 @@ caS caS caS aac -reV -fZP -nBB -xQJ -cce -mrY -mrY -eBp -aPi -mrY -mBW +jEb +gSk +oeB +umy +rej +tQY +tQY +dbY +ieZ +tQY +pzn aac aac mKr @@ -25434,13 +25440,13 @@ mKr mKr aac aac -jwa -fkP -xQJ -xQJ -xQJ -xQJ -bNN +hHv +dwF +umy +umy +umy +umy +cZO aac aac lnR @@ -25572,37 +25578,37 @@ puZ caS caS caS -dsD -gpn +wBn +kzF caS caS caS aac aac -tQN -upp -mrY -mrY -tQN +fQu +fub +tQY +tQY +fQu aac aac -laD -wKk -guA +uBA +xOe +gQz aac aac -mnD -mnD -mnD +kIC +kIC +kIC aac aac -bnk -tQN -mrY -mrY -mrY -tQN -cce +iaF +fQu +tQY +tQY +tQY +fQu +rej aac aac lnR @@ -25733,19 +25739,19 @@ puZ puZ caS caS -dsD -dsD -mFm +wBn +wBn +wCl caS caS caS aac aac -lYf -lYf -lYf -lYf -lYf +luL +luL +luL +luL +luL aac aac mKr @@ -25753,17 +25759,17 @@ mKr mKr aac aac -acn -acn -acn +gUf +gUf +gUf aac aac aac -lYf -ubG -ubG -ubG -lYf +luL +vbw +vbw +vbw +luL aac aac aac @@ -25895,12 +25901,12 @@ puZ puZ caS caS -gpn -dsD -gpn -mFm -mFm -sXF +kzF +wBn +kzF +wCl +wCl +xpC aac aac odz @@ -25910,22 +25916,22 @@ odz odz aac aac -mnD -mnD -mnD +kIC +kIC +kIC aac aac -dOo -mFm -mFm -mFm +nBI +wCl +wCl +wCl aac aac -xQJ -xQJ -xQJ -xQJ -xQJ +umy +umy +umy +umy +umy aac aac vUR @@ -26059,39 +26065,39 @@ caS caS caS caS -mFm -mFm -mFm -mFm +wCl +wCl +wCl +wCl aac aac -lYf -lYf -lYf -lYf -lYf +luL +luL +luL +luL +luL aac aac -iuX -acn -acn +bEt +gUf +gUf aac aac -mFm -mFm -mFm -mFm +wCl +wCl +wCl +wCl aac aac -lYf -ubG -ubG -lYf -lYf +luL +vbw +vbw +luL +luL aac aac -pch -qRb +wJy +fmk sVJ fEU lrt @@ -26221,42 +26227,42 @@ caS caS caS caS -mFm -mFm -mFm -mFm -mFm -mFm -slj -hnc -hnc -hnc -slj -mFm -asU -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -slj -hnc -hnc -hnc -slj -mFm -mFm -mFm +wCl +wCl +wCl +wCl +wCl +wCl +rki +nXu +nXu +nXu +rki +wCl +dHH +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +rki +nXu +nXu +nXu +rki +wCl +wCl +wCl uzM jRI jRI -oHI +qni caS caS caS @@ -26381,11 +26387,11 @@ puZ puZ caS caS -aiK -aXa -mFm -mFm -mFm +rla +eMz +wCl +wCl +wCl mhP mhP mhP @@ -26409,15 +26415,15 @@ mhP mhP mhP mhP -mFm -mFm -uRn -mFm -mFm +wCl +wCl +qZC +wCl +wCl xYx -mFm +wCl nNd -pyp +uQC nNd caS caS @@ -26430,10 +26436,10 @@ kOV eni eni lnR -hpc -grd -kMg -hpc +frl +wrI +wYz +frl fEU eET hRQ @@ -26543,46 +26549,46 @@ puZ puZ caS caS -dsD -mFm -mFm -mFm +wBn +wCl +wCl +wCl mhP mhP -cYR -jBN -lBC -mQl -bjP -jBN -lBC -nlG -kLa -eVa -pBl -mQl -bjP -jBN -lBC -mQl -bjP -jBN -lBC -mQl -aWv +kRc +aVu +pKl +bQm +gPG +aVu +pKl +uKF +vsM +xtL +pme +bQm +gPG +aVu +pKl +bQm +gPG +aVu +pKl +bQm +kFm mhP mhP -mFm -mFm -fOE -mFm -mFm -mFm -mFm +wCl +wCl +ktQ +wCl +wCl +wCl +wCl xYx -mFm -mFm -mFm +wCl +wCl +wCl caS caS mMK @@ -26595,7 +26601,7 @@ lnR rdh bQZ rdh -kMg +wYz fEU eET uIC @@ -26707,43 +26713,43 @@ caS caS caS caS -mFm -mFm +wCl +wCl mhP -hZu -mFm -sxD -mFm -mFm -mFm -mFm -mFm -mFm -iuK -iuK -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -sxD -mFm -wpl +ked +wCl +exO +wCl +wCl +wCl +wCl +wCl +wCl +fbT +fbT +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +exO +wCl +rab mhP -mFm -iuK -iuK -mFm -mFm +wCl +fbT +fbT +wCl +wCl xYx -mFm -mFm -mFm -mFm +wCl +wCl +wCl +wCl xYx caS caS @@ -26757,7 +26763,7 @@ lnR lnR lnR rdh -pVo +hPd iIP eET gNw @@ -26869,42 +26875,42 @@ caS caS caS caS -mFm -mFm +wCl +wCl mhP -sZx -sxD -mFm -mFm -mFm -mFm +naZ +exO +wCl +wCl +wCl +wCl gkY gkY gkY -iuK -iuK -mFm -aar -mFm -mFm +fbT +fbT +wCl +hHP +wCl +wCl gkY gkY gkY gkY -mFm -mFm -sxD -cBF +wCl +wCl +exO +aPB mhP -mFm -iuK -iuK -mFm -mFm -mFm +wCl +fbT +fbT +wCl +wCl +wCl xYx -mFm -mFm +wCl +wCl caS caS caS @@ -26919,7 +26925,7 @@ lnR lnR lnR rdh -slC +cJB fEU tTi tTi @@ -27029,16 +27035,16 @@ puZ puZ caS caS -mFm -mFm -mFm -mFm +wCl +wCl +wCl +wCl mhP -jLc -mFm -mFm -aar -mFm +hDg +wCl +wCl +hHP +wCl gkY gkY gkY @@ -27048,25 +27054,25 @@ gkY gkY gkY gkY -mFm +wCl gkY gkY gkY gkY -mFm -aar +wCl +hHP gkY -kiv +vsk mhP -mFm -iuK -imq -mFm -mFm -mFm +wCl +fbT +eFX +wCl +wCl +wCl xYx -mFm -mFm +wCl +wCl caS caS caS @@ -27191,16 +27197,16 @@ puZ puZ caS caS -aiK -mFm -mFm -mFm +rla +wCl +wCl +wCl mhP -mEp -mFm -mFm -mFm -mFm +dMc +wCl +wCl +wCl +wCl gkY gkY gkY @@ -27216,21 +27222,21 @@ gkY gkY gkY gkY -mFm +wCl gkY -ylP +eWi mhP -mFm -axq -jSb -tEr -mFm -mFm -mFm -mFm -fOE -mFm -mFm +wCl +rTe +oSr +aFY +wCl +wCl +wCl +wCl +ktQ +wCl +wCl caS caS mMK @@ -27355,10 +27361,10 @@ caS caS caS caS -mFm -mFm +wCl +wCl mhP -iUk +eaH gkY gkY gkY @@ -27380,19 +27386,19 @@ gkY gkY gkY gkY -pGg +tIC mhP -mFm -iuK -bHN -tEr -mFm -mFm -mFm -mFm -mFm -uRn -mFm +wCl +fbT +tzS +aFY +wCl +wCl +wCl +wCl +wCl +qZC +wCl caS caS mMK @@ -27517,10 +27523,10 @@ caS caS caS caS -mFm -mFm +wCl +wCl mhP -sZx +naZ gkY gkY gkY @@ -27540,19 +27546,19 @@ gkY gkY gkY gkY -iuK -iuK -rXp +fbT +fbT +qTh mhP -mFm -rSL -irt -tEr -mFm -mFm -fOE -mFm -mFm +wCl +bJX +psQ +aFY +wCl +wCl +ktQ +wCl +wCl caS caS caS @@ -27679,10 +27685,10 @@ caS caS caS caS -mFm -mFm +wCl +wCl mhP -jLc +hDg gkY gkY gkY @@ -27702,19 +27708,19 @@ gkY gkY gkY gkY -iuK -iuK -lvj +fbT +fbT +fuv mhP -mFm -iuK -eRk -mFm +wCl +fbT +lAz +wCl wMj wMj -uRn -mFm -mFm +qZC +wCl +wCl mJA caS caS @@ -27841,10 +27847,10 @@ caS caS caS caS -mFm -mFm +wCl +wCl mhP -mEp +dMc gkY gkY gkY @@ -27864,25 +27870,25 @@ gkY gkY gkY gkY -iuK -iuK -gkK +fbT +fbT +moK mhP -mFm -iuK -iuK -mFm +wCl +fbT +fbT +wCl wMj wMj -mFm -mFm -mFm -qWS +wCl +wCl +wCl +bWa hHY -tEr -mFm +aFY +wCl mhP -slj +rki waE ntc ntc @@ -28003,10 +28009,10 @@ caS caS caS caS -mFm -mFm +wCl +wCl mhP -iUk +eaH gkY gkY gkY @@ -28028,23 +28034,23 @@ gkY gkY gkY gkY -pGg +tIC mhP -otV -iuK -iuK -iuK -iuK -iuK -iuK -iuK -sxm -uFA +rwX +fbT +fbT +fbT +fbT +fbT +fbT +fbT +wlr +ocC dkP -tEr -mFm +aFY +wCl mhP -rOv +hxJ vYm vYm ntc @@ -28163,16 +28169,16 @@ puZ puZ caS caS -aiK -mFm -mFm -mFm +rla +wCl +wCl +wCl mhP -sZx -mFm -mFm -mFm -mFm +naZ +wCl +wCl +wCl +wCl gkY gkY gkY @@ -28188,25 +28194,25 @@ gkY gkY gkY gkY -mFm +wCl gkY -cBF +aPB mhP -apY -iuK -iuK -iuK -iuK -wck -iuK -iuK -iuK -rOv +sdo +fbT +fbT +fbT +fbT +nVm +fbT +fbT +fbT +hxJ vom -mFm -mFm +wCl +wCl mhP -rOv +hxJ vYm vYm vYm @@ -28325,16 +28331,16 @@ puZ puZ caS caS -mFm -mFm -mFm -mFm +wCl +wCl +wCl +wCl mhP -jLc -mFm -mFm -aar -mFm +hDg +wCl +wCl +hHP +wCl gkY gkY gkY @@ -28344,31 +28350,31 @@ gkY gkY gkY gkY -mFm +wCl gkY gkY gkY gkY -mFm -aar +wCl +hHP gkY -kiv +vsk mhP -mFm -iuK -iuK -mFm -uRn -vbA -mFm -mFm -mFm -iLf +wCl +fbT +fbT +wCl +qZC +vAz +wCl +wCl +wCl +cLR mhP -mFm -mFm +wCl +wCl mhP -slj +rki gRx ntc vYm @@ -28388,9 +28394,9 @@ eET eET eET eET -hpc -fLX -hpc +frl +cGk +frl eET wMh wMh @@ -28413,8 +28419,8 @@ wMh wMh aFO wMh -jOi -ecx +ngi +mXC uir uir wMh @@ -28489,42 +28495,42 @@ caS caS caS caS -mFm -mFm +wCl +wCl mhP -mEp -sxD -mFm -mFm -mFm -mFm +dMc +exO +wCl +wCl +wCl +wCl gkY gkY gkY -iuK -iuK -mFm -aar -mFm -mFm +fbT +fbT +wCl +hHP +wCl +wCl gkY gkY gkY gkY -mFm -mFm -sxD -ylP +wCl +wCl +exO +eWi mhP -mFm -qyC -irt -tEr -mFm -mFm -mFm -ftm -mFm +wCl +sur +psQ +aFY +wCl +wCl +wCl +cME +wCl las caS caS @@ -28550,9 +28556,9 @@ bmv fEU fEU fEU -hpc -pul -hpc +frl +fDs +frl fEU wMh pcY @@ -28575,9 +28581,9 @@ xAS wMh eFI wMh -jOi -jOi -xMX +ngi +ngi +frS uir wMh wMh @@ -28651,42 +28657,42 @@ caS caS caS caS -mFm -mFm +wCl +wCl mhP -lgx -mFm -sxD -mFm -mFm -mFm -mFm -mFm -mFm -iuK -iuK -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -sxD -mFm -hpN +rVd +wCl +exO +wCl +wCl +wCl +wCl +wCl +wCl +fbT +fbT +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +exO +wCl +dKF mhP -mFm -wgX -wgX -mFm -mFm -mFm -aWb -hlO -jMD +wCl +pOS +pOS +wCl +wCl +wCl +xID +lOr +qwU caS caS caS @@ -28712,9 +28718,9 @@ fEU fEU fEU fEU -hpc -hpc -hpc +frl +frl +frl fEU wMh pcY @@ -28738,8 +28744,8 @@ wMh wMh wMh wMh -jOi -kHG +ngi +qcR uir wMh ntJ @@ -28811,46 +28817,46 @@ puZ puZ caS caS -mFm -mFm -mFm -mFm +wCl +wCl +wCl +wCl mhP mhP -ujV -kIH -aHQ -luR -xEd -kIH -aHQ -fxw -hSq -wfO -kcB -luR -xEd -fLz -aHQ -luR -xEd -kIH -aHQ -luR -agF +mAl +cAw +fSA +ske +thy +cAw +fSA +nRk +uLw +bee +waf +ske +thy +vxU +fSA +ske +thy +cAw +fSA +ske +dMz mhP mhP -mFm -iuK -iuK -mFm -slj -crk -hum -qUw -mFm -mFm -cBB +wCl +fbT +fbT +wCl +rki +wTC +iHx +qph +wCl +wCl +lbC wMj wMj mMK @@ -28899,8 +28905,8 @@ ilW xAS xAS wMh -jOi -jOi +ngi +ngi wMh uir wMh @@ -28973,11 +28979,11 @@ puZ puZ caS caS -mFm -mFm -mFm -mFm -mFm +wCl +wCl +wCl +wCl +wCl mhP mhP mhP @@ -29001,18 +29007,18 @@ mhP mhP mhP mhP -mFm +wCl wMj wMj -iuK -mFm -kEh -jMD -jMD -rOv -vbA -mFm -cBB +fbT +wCl +gws +qwU +qwU +hxJ +vAz +wCl +lbC wMj wMj mMK @@ -29137,44 +29143,44 @@ caS caS caS caS -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -iuK -iuK -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -iuK +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +fbT +fbT +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +fbT wMj wMj -iuK -mFm -hjx -vbA -mFm -rOv -mFm -ftm -slj +fbT +wCl +paN +vAz +wCl +hxJ +wCl +cME +rki wMj wMj wMj @@ -29299,44 +29305,44 @@ caS caS caS caS -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -iuK -iuK -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -iuK -iuK -sWt -pJp -ftm -umj -hjx -vOd -slj -mFm -hlO -kAp +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +fbT +fbT +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +fbT +fbT +mQm +rUb +cME +nkj +paN +xNk +rki +wCl +lOr +icP wMj wMj wMj @@ -29459,46 +29465,46 @@ puZ puZ caS caS -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -aqb -iuK -iuK -mFm -arB -kdd -mFm -mFm -mFm -mFm -mFm -uDZ -bFP -mFm -aqb -iuK -iuK -mFm -arB -uTM -jMD -ftm -mFm -ftm -jMD -jMD -jMD +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +wCl +ttM +fbT +fbT +wCl +spr +hHr +wCl +wCl +wCl +wCl +wCl +uZh +tXo +wCl +ttM +fbT +fbT +wCl +spr +pLm +qwU +cME +wCl +cME +qwU +qwU +qwU wMj wMj mMK @@ -29621,46 +29627,46 @@ puZ puZ caS caS -mFm -mFm -mFm +wCl +wCl +wCl caS caS -mFm -mFm +wCl +wCl caS caS -mFm -lTL +wCl +fFU caS voH -slj -vOd -vOd -slj +rki +xNk +xNk +rki las caS -mFm -mFm +wCl +wCl wMj wMj -mFm -mFm +wCl +wCl caS voH -slj -vFq -ghK -slj +rki +kIj +gAN +rki las caS -gPZ -mFm -ftm -jMD -jMD -sJs -jMD +pxr +wCl +cME +qwU +qwU +ems +qwU wMj wMj mMK @@ -29784,16 +29790,16 @@ puZ caS caS caS -mFm -mFm +wCl +wCl caS caS -mFm -mFm +wCl +wCl caS caS -mFm -mFm +wCl +wCl caS caS mhP @@ -29802,12 +29808,12 @@ mhP mhP caS caS -mFm -mFm +wCl +wCl wMj wMj -mFm -mFm +wCl +wCl caS caS xRy @@ -29816,12 +29822,12 @@ mhP xru caS caS -cZE -cZE -slj -qjZ -jMD -jMD +iUn +iUn +rki +wjw +qwU +qwU wMj wMj wMj @@ -29958,10 +29964,10 @@ wMj wMj caS caS -mFm -mFm -mFm -mFm +wCl +wCl +wCl +wCl caS caS wMj @@ -29972,17 +29978,17 @@ wMj wMj caS caS -jMD -jMD -jMD -jMD +qwU +qwU +qwU +qwU caS caS wMj wMj wMj wMj -hDo +kuw wMj wMj wMj @@ -30120,10 +30126,10 @@ wMj wMj caS caS -mFm -mFm -mFm -mFm +wCl +wCl +wCl +wCl caS caS wMj @@ -30134,17 +30140,17 @@ wMj wMj caS caS -jMD -jMD -hlO -jMD +qwU +qwU +lOr +qwU caS caS wMj wMj wMj wMj -hDo +kuw wMj wMj wMj @@ -30444,10 +30450,10 @@ eni eni caS mBM -slj -vOd -vOd -slj +rki +xNk +xNk +rki mJA caS ocb @@ -30458,10 +30464,10 @@ mMK eni caS mBM -slj -ghK -vOd -slj +rki +gAN +xNk +rki mJA caS eni @@ -30537,16 +30543,16 @@ uji uji uji uKZ -fRg -fRg -fRg -bfy -fRg +fdo +fdo +fdo +vDu +fdo uKZ uji -dMo -ibP -dMo +uTC +pXp +uTC uji uji kLM @@ -30618,7 +30624,7 @@ mMK mMK eni mMK -tnU +lGa ntc aqD vYm @@ -30693,8 +30699,8 @@ pcY pcY pcY uji -oYH -ahe +hka +aqo pvv sKi pvv @@ -30708,7 +30714,7 @@ pvv pvv pvv pvv -fRg +fdo uji ofw kop @@ -30855,8 +30861,8 @@ pcY pcY pcY uji -dtr -oYH +xKc +hka pvv aTn pvv @@ -30870,12 +30876,12 @@ pvv pvv pvv pvv -fRg +fdo hGj tHd xvp kop -xwk +dkc kop kyD kyD @@ -30886,7 +30892,7 @@ kyD tHd kop tHd -que +bqt ofw huz kys @@ -31017,8 +31023,8 @@ wMh pcY pcY uji -fRg -oYH +fdo +hka pvv pvv aTh @@ -31032,7 +31038,7 @@ pvv pvv pvv pvv -fRg +fdo hGj tHd kyD @@ -31179,8 +31185,8 @@ ntJ wMh wMh uKZ -fRg -oYH +fdo +hka pvv pvv aUw @@ -31194,7 +31200,7 @@ aVx dbH pvv pvv -gxK +wlY hGj kyD kyD @@ -31341,8 +31347,8 @@ wMh ntJ ntJ uKZ -aQg -oYH +hki +hka pvv aTh aUx @@ -31356,7 +31362,7 @@ bYO aWQ dbH fhv -fRg +fdo hGj tHd tHd @@ -31373,8 +31379,8 @@ kyD kyD kyD kyD -tpg -exX +car +wnR qIr axJ axJ @@ -31503,8 +31509,8 @@ wMh ntJ ntJ uKZ -aQg -oYH +hki +hka pvv aTi aUy @@ -31518,7 +31524,7 @@ clp aVU aUA gIQ -fRg +fdo hGj kop kop @@ -31529,14 +31535,14 @@ dyt kyD kyD kyD -rNY +wwb kyD kyD kyD kyD kyD -eSN -akF +vxi +aqY alS aMW wHx @@ -31665,8 +31671,8 @@ wMh wMh wMh uKZ -fRg -oYH +fdo +hka pvv aTj aUz @@ -31680,7 +31686,7 @@ cbk aWU deV eVG -fRg +fdo hGj kop tHd @@ -31697,8 +31703,8 @@ kyD kyD kyD kyD -tpg -exX +car +wnR qIr rdS axJ @@ -31827,8 +31833,8 @@ uji uKZ uKZ uji -dtr -oYH +xKc +hka pvv fhv aUA @@ -31842,7 +31848,7 @@ aVN deV dKR pvv -fRg +fdo hGj tHd kyD @@ -31859,8 +31865,8 @@ kyD kyD kyD kyD -tpg -exX +car +wnR qIr aut rdS @@ -31986,11 +31992,11 @@ pcY pcY pcY uKZ -cHB -xSk -afd -fRg -oYH +trE +kvD +xTH +fdo +hka aSA gIQ aTj @@ -32004,7 +32010,7 @@ pvv pvv pvv pvv -fRg +fdo hGj kyD kyD @@ -32052,15 +32058,15 @@ puZ puZ puZ puZ -anc -anc -anc -anc -anc -ceM -fnx -fnx -ceM +eoC +eoC +eoC +eoC +eoC +bQh +xSc +xSc +bQh ntc aEJ mMK @@ -32148,11 +32154,11 @@ pcY pcY pcY uKZ -xSk -aNq -oYH -fRg -oYH +kvD +opw +hka +fdo +hka pvv pvv pvv @@ -32166,7 +32172,7 @@ pvv pvv pvv pvv -fRg +fdo hGj kyD xvp @@ -32180,7 +32186,7 @@ kyD kyD kyD kyD -pKK +gRe kyD xvp tHd @@ -32213,16 +32219,16 @@ puZ puZ puZ puZ -anc -anc -iXC -ukU -iPU -anc -edw -bsM -iVj -qII +eoC +eoC +hce +qKe +pyA +eoC +jTt +mRr +lNk +nob ntc ntc eni @@ -32310,11 +32316,11 @@ pcY pcY pcY uKZ -hsw -aNp -bfR -oYH -oYH +oAs +adr +mLR +hka +hka pvv pvv pvv @@ -32328,13 +32334,13 @@ pvv pvv pvv pvv -gqe +gTC uji -wNB -khx -jac -khx -iHu +rHE +rbu +gvC +rbu +vVN jXD tHd kyD @@ -32375,16 +32381,16 @@ puZ puZ puZ puZ -anc -tYm -cJu -cJu -nTC -pBL -bsM -edw -edw -qII +eoC +eBk +gPX +gPX +mWG +hnC +mRr +jTt +jTt +nob ntc vYm ntc @@ -32480,10 +32486,10 @@ uji qLA uji uKZ -aVT -fRg -fRg -oYH +pjZ +fdo +fdo +hka uKZ bFS ail @@ -32496,7 +32502,7 @@ iMA iMA iMA uKZ -ehV +itz ofw aQJ kyD @@ -32504,7 +32510,7 @@ kyD tHd kop huz -cio +dYv ieD aKR aDu @@ -32537,16 +32543,16 @@ puZ puZ puZ puZ -anc -uot -cJu -cJu -nTC -pBL -uCO -bsM -edw -ceM +eoC +czR +gPX +gPX +mWG +hnC +jrK +mRr +jTt +bQh ntc aHP ntc @@ -32632,13 +32638,13 @@ pcY pcY uji uji -fRg -aMs -bYV -lJh -loH -ppI -aMs +fdo +nJt +krq +ahG +xVN +vji +nJt bKV bKV uKZ @@ -32647,25 +32653,25 @@ bKV bKV bKV iDW -bzh -fRg -fRg -fRg -fRg -aKS -fRg -ohq -mKB -cLq +aUQ +fdo +fdo +fdo +fdo +uaK +fdo +sMz +gyd +ifz iMA -avx -voo +gEW +vww tHd kyD kyD tHd -tpg -exX +car +wnR qIr azS qny @@ -32698,19 +32704,19 @@ puZ puZ puZ puZ -anc -anc -wls -cJu -emy -nTC -qkt -pBL -pBL -anc -anc -anc -anc +eoC +eoC +jgG +gPX +rcY +mWG +bIO +hnC +hnC +eoC +eoC +eoC +eoC lFX ntc ntc @@ -32794,13 +32800,13 @@ xgH gQJ uji uji -fRg -fRg -fRg -fRg -fRg -fRg -fRg +fdo +fdo +fdo +fdo +fdo +fdo +fdo bKV bKV iMA @@ -32817,17 +32823,17 @@ pvv pvv pvv pvv -fRg -xQa +fdo +vqd iMA -avx +gEW kop tHd kyD kyD tHd -tpg -exX +car +wnR alW arW anJ @@ -32860,19 +32866,19 @@ puZ puZ puZ puZ -anc -jWL -nTC -nTC -nTC -nTC -nTC -nTC -pFJ -anc -xkV -fxJ -frV +eoC +eqt +mWG +mWG +mWG +mWG +mWG +mWG +lnJ +eoC +hax +olN +pKp gNM aMu azy @@ -32949,13 +32955,13 @@ aFO xAS aFO pcY -aGc +mqI qkC tzo qkC tGv -dtr -fRg +xKc +fdo bKV bKV bKV @@ -32979,10 +32985,10 @@ pvv pvv pvv pvv -fRg +fdo uKZ uKZ -vqV +bBL tHd tHd kyD @@ -33022,19 +33028,19 @@ puZ puZ puZ puZ -anc -nED -mCn -uRi -cJu -qZa -cJu -qZa -cJu -nTC -tzu -mae -anc +eoC +qrv +rJt +pCP +gPX +oTf +gPX +oTf +gPX +mWG +kBT +gUP +eoC mHP ntc azB @@ -33111,13 +33117,13 @@ aFO aFO aFO xAS -aGd +mvt aHd aIG tzo -aJk -fRg -fRg +kbW +fdo +fdo bKV bKV aMK @@ -33133,18 +33139,18 @@ bKV bKV bKV hDW -bAX -fRg -fRg -fRg -qXk -fRg +wQX +fdo +fdo +fdo +nKF +fdo pvv khz -fRg +fdo iMA nIA -scp +jhx tHd kyD kyD @@ -33184,19 +33190,19 @@ puZ puZ puZ puZ -anc -lnk -wRi -ffn -ffn -ffn -ffn -ffn -xdT -ryZ -txS -kRR -anc +eoC +iQE +luz +eHo +eHo +eHo +eHo +eHo +ojj +fsr +jwh +cGI +eoC gJI aEJ ntc @@ -33273,13 +33279,13 @@ xAS aFO aFO aFO -aGd +mvt tzo qkC tzo -aGd -fRg -fRg +mvt +fdo +fdo bKV bKV bKV @@ -33290,17 +33296,17 @@ bKV ohE bKV uKZ -ahe -fRg -fRg -oYH +aqo +fdo +fdo +hka uKZ bwk cex cex cex uKZ -xHu +uhj pvv pvv oCG @@ -33346,19 +33352,19 @@ puZ puZ puZ puZ -anc -nED -mCn -ctz -cJu -qZa -hKS -qZa -kLB -qhJ -qZa -uGw -anc +eoC +qrv +rJt +cNg +gPX +oTf +lWm +oTf +oDm +rsT +oTf +kQV +eoC kXx eni ntc @@ -33435,13 +33441,13 @@ tlB xAS aFO xAS -aGb +rvv tzo qkC tzo -aGd -fRg -fRg +mvt +fdo +fdo bKV bKV pzj @@ -33451,18 +33457,18 @@ bKV bKV bKV bKV -oYH +hka bKV bKV bKV bKV -oYH +hka bKV bKV bKV bKV iMA -sFR +xjO pvv pvv oCG @@ -33471,7 +33477,7 @@ oCG kyD kyD kyD -szU +tRO tHd kyD kyD @@ -33508,19 +33514,19 @@ puZ puZ puZ puZ -anc -nTC -nhl -bwJ -bwJ -bwJ -bwJ -bwJ -nrU -rZj -txS -kRR -aEd +eoC +mWG +vdL +bfU +bfU +bfU +bfU +bfU +vae +htO +jwh +cGI +iDT ayc qta azy @@ -33597,13 +33603,13 @@ aFO tlB xAS uji -aGe +xNF tzo tzo aJj -aGd -fRg -fRg +mvt +fdo +fdo bKV bKV aMK @@ -33613,24 +33619,24 @@ aPn bKV bKV bKV -fRg +fdo bKV bKV bKV bKV -uHA +bJZ bKV bKV rfd bKV iMA -hFJ -fRg -dZN -fRg +mIN +fdo +nLj +fdo iMA tLC -hye +dUN tHd kyD tHd @@ -33670,19 +33676,19 @@ puZ puZ puZ puZ -anc -nED -mCn -ctz -cJu -qZa -cJu -qZa -cJu -nTC -rSr -aIv -anc +eoC +qrv +rJt +cNg +gPX +oTf +gPX +oTf +gPX +mWG +ucF +sbi +eoC ayj eni iDn @@ -33764,8 +33770,8 @@ qkC tzo qkC mhS -dtr -fRg +xKc +fdo bKV bKV bKV @@ -33775,12 +33781,12 @@ bKV bKV bKV bKV -fRg +fdo bKV bKV bKV bKV -fRg +fdo bKV bKV bKV @@ -33792,7 +33798,7 @@ iMA iMA uKZ uKZ -ehV +itz tHd kyD kyD @@ -33832,19 +33838,19 @@ puZ puZ puZ puZ -anc -rUN -nTC -nTC -nTC -nTC -nTC -nTC -pFJ -anc -gYd -kWP -anc +eoC +lIN +mWG +mWG +mWG +mWG +mWG +mWG +lnJ +eoC +pkV +xZM +eoC eni eni ntc @@ -33928,21 +33934,21 @@ dsx waS uji uji -fRg -fRg -pgh -fRg -fRg -fRg -lro +fdo +fdo +rvK +fdo +fdo +fdo +jlk bKV bKV -oYH +hka bKV meg bKV bbi -beP +jKY bKV meg bKV @@ -33954,7 +33960,7 @@ ftr obb vHX iMA -ehV +itz tHd kyD kyD @@ -33994,19 +34000,19 @@ puZ puZ puZ puZ -anc -anc -ctz -cJu -cJu -nTC -pBL -pBL -pBL -anc -anc -anc -anc +eoC +eoC +cNg +gPX +gPX +mWG +hnC +hnC +hnC +eoC +eoC +eoC +eoC eni vYm vYm @@ -34078,7 +34084,7 @@ wMh wMh wMh wMh -vXw +uDY wMh xAS aFO @@ -34100,10 +34106,10 @@ uji iMA iMA uKZ -oYH -gxK -fRg -oYH +hka +wlY +fdo +hka uKZ iMA iMA @@ -34116,13 +34122,13 @@ bKV krm iXx iMA -ehV +itz kop tHd kyD -nAs +fES kop -ajE +qEj huz qSW arZ @@ -34157,16 +34163,16 @@ puZ puZ puZ puZ -anc -kbl -cJu -nrB -nTC -pBL -bsM -edw -iVj -ceM +eoC +rqQ +gPX +dIP +mWG +hnC +mRr +jTt +lNk +bQh eni ntc vYm @@ -34235,10 +34241,10 @@ aFO xAS aFO wMh -fGb +oJa wMh wMh -fGb +oJa wMh hPp pcY @@ -34252,25 +34258,25 @@ uji uji uji uji -aLk +oNF bKV bKV aNg bKV -aOb +qvy uji -snX -fRg -aKS -fRg -fRg -dLk -fRg -aKS -fRg -fRg -fRg -rIj +qXf +fdo +uaK +fdo +fdo +uJi +fdo +uaK +fdo +fdo +fdo +dTK uKZ giH uji @@ -34278,13 +34284,13 @@ iMA iMA iMA uKZ -ehV +itz kop tHd kyD kyD tHd -ajd +bEo huz fjS anJ @@ -34319,16 +34325,16 @@ puZ puZ puZ puZ -anc -dxh -cJu -cJu -nTC -pBL -edw -bsM -iVj -qII +eoC +khj +gPX +gPX +mWG +hnC +jTt +mRr +lNk +nob eni ntc vYm @@ -34414,11 +34420,11 @@ ntJ ntJ wMh iMA -aKQ +sTT bKV bKV -omu -aFr +rHB +dWB uji uji pvv @@ -34434,20 +34440,20 @@ pvv pvv pvv eGs -fRg +fdo uji -xwo -jhm -bHC -bHC -iKW +nIv +eUR +pGP +pGP +sFD tHd kyD kyD kyD kyD qIr -oWk +tqc qIr anG axJ @@ -34481,16 +34487,16 @@ puZ puZ puZ puZ -anc -anc -uBz -mYm -lHK -anc -bsM -edw -edw -qII +eoC +eoC +kNG +nBk +uzo +eoC +mRr +jTt +jTt +nob eni ntc eni @@ -34576,13 +34582,13 @@ ntJ ntJ wMh iMA -aJM +ozs aJU bKV -aLk -bMK +oNF +nWm uji -snX +qXf pvv aSA pvv @@ -34596,7 +34602,7 @@ pvv pvv pvv pvv -fRg +fdo hvZ tHd xvp @@ -34609,7 +34615,7 @@ kyD kyD kyD qIr -oWk +tqc qIr ans ans @@ -34644,15 +34650,15 @@ puZ puZ puZ puZ -anc -anc -anc -anc -anc -ceM -fnx -fnx -ceM +eoC +eoC +eoC +eoC +eoC +bQh +xSc +xSc +bQh eni ntc mMK @@ -34721,10 +34727,10 @@ aFO gJe xAS aFO -fGb +oJa wMh wMh -fGb +oJa wMh pcY jmW @@ -34744,7 +34750,7 @@ uji uji uji uji -fRg +fdo pvv pvv aTh @@ -34758,7 +34764,7 @@ pvv pvv aSA pvv -fRg +fdo hvZ tHd kyD @@ -34771,7 +34777,7 @@ kyD kyD kyD qIr -akF +aqY alS ans axJ @@ -34905,8 +34911,8 @@ wMh hBq lRJ uKZ -fRg -gxK +fdo +wlY pvv pvv aUw @@ -34920,7 +34926,7 @@ aVN dbH wTz pvv -fRg +fdo hvZ kyD tHd @@ -34933,7 +34939,7 @@ tHd kyD kyD qIr -exX +wnR qIr rdS rdS @@ -35067,8 +35073,8 @@ upK hBq hBq uKZ -fRg -fRg +fdo +fdo pvv aTh aUx @@ -35082,7 +35088,7 @@ bYO aWQ dbH wvx -fRg +fdo hvZ tHd kyD @@ -35229,8 +35235,8 @@ lAN nyc tlB uKZ -wUy -fRg +wpq +fdo pvv aTi aUy @@ -35244,7 +35250,7 @@ aVL aVL dCS eoH -fRg +fdo hvZ kyD kyD @@ -35269,8 +35275,8 @@ qsN iYC huz huz -dWO -hbB +lsI +djM kAw hrk kAw @@ -35391,8 +35397,8 @@ tlB hBq tlB uKZ -xHu -fRg +uhj +fdo pvv aTj cov @@ -35406,7 +35412,7 @@ fXp aWU deV uyI -fRg +fdo hvZ kyD kyD @@ -35431,8 +35437,8 @@ huz huz huz huz -nNX -hbB +pTz +djM kAw kAw kAw @@ -35553,8 +35559,8 @@ xCD hBq tlB uKZ -uwS -fRg +unp +fdo pvv pvv aUw @@ -35568,7 +35574,7 @@ aUA deV pti pvv -fRg +fdo hvZ tHd kyD @@ -35593,8 +35599,8 @@ huz huz huz huz -dWO -hbB +lsI +djM kAw kAw kAw @@ -35715,8 +35721,8 @@ cps tlB tlB uKZ -oIR -fRg +fXv +fdo pvv pvv aTj @@ -35730,7 +35736,7 @@ gIQ oXM pvv pvv -fRg +fdo hvZ tHd tHd @@ -35877,8 +35883,8 @@ aFO hBq hBq uKZ -rIj -wCn +dTK +uJz pvv pvv pvv @@ -35892,7 +35898,7 @@ uaa pvv pvv pvv -fRg +fdo hvZ tHd xvp @@ -36039,8 +36045,8 @@ xCD xAS hBq uKZ -rIj -ohq +dTK +sMz pvv pvv pvv @@ -36054,9 +36060,9 @@ pvv pvv hZI pvv -fWq +nvO uji -iOA +rIm ofw jMf tHd @@ -36203,20 +36209,20 @@ oRH uKZ uKZ uKZ -fRg -fRg -fRg -fRg -fRg -fRg -oZR -fRg -iXc -fRg -bxL -bxL -gGc -rzR +fdo +fdo +fdo +fdo +fdo +fdo +slu +fdo +xwV +fdo +jko +jko +gFI +tQk uji qrY qrY @@ -36367,9 +36373,9 @@ hBq uKZ uKZ uji -gpF -oYH -fUP +vta +hka +fOe uji uKZ iMA @@ -36692,7 +36698,7 @@ aFO aFO wwZ qnJ -jOi +ngi qnJ mkC kyD @@ -36854,7 +36860,7 @@ aFO aFO wLM ajy -jOi +ngi ajy ppS kyD @@ -37016,7 +37022,7 @@ aFO aFO wLM ajy -jOi +ngi ajy ppS kyD @@ -37178,7 +37184,7 @@ aFO aFO wLM ajy -jOi +ngi ajy ppS tHd @@ -37340,7 +37346,7 @@ aFO aFO lCg ajy -jOi +ngi ajy lGT jMf @@ -38088,10 +38094,10 @@ vYm vYm vYm vYm -uhe -fnx -fnx -uhe +ted +xSc +xSc +ted ntc vYm vYm @@ -38100,10 +38106,10 @@ vYm vYm vYm vYm -uhe -jAg -bsM -uhe +ted +jHf +mRr +ted ntc uee vYm @@ -38111,11 +38117,11 @@ mAK pWf eni ntc -uhe -jAg -edw -iVj -uhe +ted +jHf +jTt +lNk +ted eni eni eni @@ -38250,10 +38256,10 @@ vYm vYm vYm vYm -ceM -bsM -uCO -ceM +bQh +mRr +jrK +bQh vYm vYm vYm @@ -38262,10 +38268,10 @@ vYm vYm ntc vYm -ceM -jAg -bsM -ceM +bQh +jHf +mRr +bQh vYm eni ntc @@ -38273,11 +38279,11 @@ pWf pWf pWf eni -ceM -edw -edw -jAg -ceM +bQh +jTt +jTt +jHf +bQh vYm eni eni @@ -38412,10 +38418,10 @@ vYm ntc ntc ntc -ceM -iVj -jAg -ceM +bQh +lNk +jHf +bQh vYm ntc eni @@ -38424,10 +38430,10 @@ eni mMK kOV ntc -ceM -bsM -uCO -ceM +bQh +mRr +jrK +bQh eni vYm pWf @@ -38435,11 +38441,11 @@ pWf pWf pWf ntc -ceM -iVj -jAg -edw -ceM +bQh +lNk +jHf +jTt +bQh vYm vYm vYm @@ -38575,8 +38581,8 @@ ntc wag hLf hLf -uCO -jAg +jrK +jHf hLf hLf kOV @@ -38587,8 +38593,8 @@ mMK mMK rBH rBH -jAg -jAg +jHf +jHf rBH rBH dtq @@ -38598,9 +38604,9 @@ pWf pWf akG vfc -edw -jAg -jAg +jTt +jHf +jHf vfc akG eni @@ -38760,9 +38766,9 @@ dtq dtq dtq rBH -xQQ -gVh -xQQ +oVG +shh +oVG aOW eni eni @@ -38893,38 +38899,38 @@ vYm toD vYm ntc -uhe -ceM -ceM +ted +bQh +bQh hLf hLf -wiM -xFR -tnh -jhq -qlQ -emd -tGS -asJ -dDo -emd -atT -ire -emd -fZR -fZR -nKO +kUg +vhS +bsv +dVA +xxR +nXU +ycn +tQp +ePV +nXU +utY +sXn +nXU +caC +caC +urv rBH uCp wZW rBH -hYT -uxV -igr +ddb +uSN +yfk rBH -gjY -lUF -gjY +yme +xDh +yme aOW wCP vjy @@ -39055,38 +39061,38 @@ toD vYm vYm vYm -qII -bsM -bsM -uCO +nob +mRr +mRr +jrK lDx -tnh -tnh -duv -wtC -ejt -hju -fZR -fZR -fZR -fZR -fZR -aoB -bJF -gjY -fZR -bJF +bsv +bsv +bNl +rwP +uLs +nnD +caC +caC +caC +caC +caC +kpw +gtq +yme +caC +gtq tFk fiK gQL rBH -hYT -uxV -tnM +ddb +uSN +taN rBH -jgz -hju -jCe +jhy +nnD +kKN aOW wCP eni @@ -39217,38 +39223,38 @@ vYm toD vYm vYm -qII -edw -uCO -edw +nob +jTt +jrK +jTt uGq -duv -tnh -tnh -wtC -ejt -hju -fZR -fZR -fZR -fZR -cKE -fZR -bJF -uJk -lod -bJF +bNl +bsv +bsv +rwP +uLs +nnD +caC +caC +caC +caC +vNH +caC +gtq +jAl +jFd +gtq rBH rBH rBH rBH -cyd -ejt -lmL -bJF -lod -gjY -fZR +cZo +uLs +jMg +gtq +jFd +yme +caC nOd wCP eni @@ -39283,9 +39289,9 @@ dYp pqe tnu tnu -aUc -aVc -aUc +tlD +xTv +tlD tnu tnu tnu @@ -39379,38 +39385,38 @@ toD vYm arR eni -uhe -ceM -ceM +ted +bQh +bQh hLf hLf -jhq -iPg -iPg -jhq -ejt -hju -fZR -fZR -fZR -fZR -fZR -gDz -iDN -gjY -gjY -bJF +dVA +jHU +jHU +dVA +uLs +nnD +caC +caC +caC +caC +caC +xqb +esg +yme +yme +gtq tFk uCp wZW rBH -hYT -ejt -lmL -bJF -lUF -fZR -gjY +ddb +uLs +jMg +gtq +xDh +caC +yme nOd wCP wCP @@ -39445,9 +39451,9 @@ dYp pqe tnu tnu -aUn -aVm -aUn +xDa +tBg +xDa tnu tnu tnu @@ -39539,40 +39545,40 @@ mMK mMK kOV jCk -uhe +ted ntc ntc ntc ntc hLf -kdR -wtC -mdx -mdx -wtC -ejt -emd -woB -woB -fSt -emd -rRb -gOj -emd -hju -hju -nKO +pDl +rwP +jlb +jlb +rwP +uLs +nXU +tIi +tIi +wPK +nXU +fqR +jMm +nXU +nnD +nnD +urv rBH fiK oKM rBH -lmL -ejt -lmL -vXk -gjY -vHM -gjY +jMg +uLs +jMg +jjd +yme +nqn +yme nOd wCP wCP @@ -39606,11 +39612,11 @@ dYp dYp pqe tnu -xPd -oaI +pQy +wFs xOb -xMC -xPd +cgg +pQy tnu hcH pqe @@ -39701,40 +39707,40 @@ kOV aNX eni ntc -ceM +bQh vYm vYm vYm vYm wag -anX -wtC -mdx -mdx -wtC -pFI -pFI -tJn -pFI +fVb +rwP +jlb +jlb +rwP +lef +lef +uZC +lef rBH rBH rBH rBH rBH -sjo -uSe +kUd +dcD rBH rBH rBH rBH rBH -iFr -ejt -lmL -bJF -fZR -gjY -gjY +whG +uLs +jMg +gtq +caC +yme +yme nOd wCP wCP @@ -39747,10 +39753,10 @@ wCP wCP nOd nOd -aSc -dZb -eOG -aeN +elk +tsh +mpB +lLp nOd kop kop @@ -39768,11 +39774,11 @@ dYp dYp pqe tnu -xPd -oaI +pQy +wFs xOb -oaI -xPd +wFs +pQy tnu hcH pqe @@ -39858,45 +39864,45 @@ ntc vYm eni aNX -edw -uCO -edw +jTt +jrK +jTt aEq ntc -ceM +bQh vYm vYm vYm vYm wag -nhB -jhq -iPg -iPg -jhq -stN -gwq -mkK -mqt +xBt +dVA +jHU +jHU +dVA +wsD +pJN +gKA +tCI rBH fmi fiK rBH -gsK -hKR -sLV -qNt -tQR -hBN -qCM +wQB +bpP +mik +bLi +aJm +ddo +ewK onc -vmy -uxV -fbI +gEb +uSN +qnn rBH -jgz -hju -jCe +jhy +nnD +kKN nOd wCP wCP @@ -39908,11 +39914,11 @@ wCP wCP wCP nOd -aNb -uhL -uhL -uhL -eHk +agG +baO +baO +baO +cMo nOd jMf bhB @@ -39931,9 +39937,9 @@ dYp pqe tnu tnu -aUc -aVc -aUc +tlD +xTv +tlD tnu tnu tnu @@ -40020,9 +40026,9 @@ ntc vYm eni mMK -edw -epp -nFg +jTt +eFK +khp hDE wag lJx @@ -40033,32 +40039,32 @@ lJx wag hLf hLf -stN -peQ -stN -stN +wsD +ifW +wsD +wsD rNZ -mHA -pFI +iMf +lef rBH fPA enG iJr -vmy -anV -oeQ -fHH -bXC -vnX -pUZ +gEb +qHB +tCG +brq +dcm +viZ +aNU vFi -vmy -rwQ -ect +gEb +qPt +swM rBH -sjo -rZD -uSe +kUd +djq +dcD nOd nOd nOd @@ -40071,10 +40077,10 @@ nOd nOd nOd nOd -uhL -uhL -uhL -eHk +baO +baO +baO +cMo nOd mdV jMf @@ -40093,9 +40099,9 @@ pqe pqe tnu tnu -viF -oaI -mxn +eSx +wFs +idf tnu tnu tnu @@ -40177,65 +40183,65 @@ pWf mMK mMK axe -uhe +ted ntc vYm -uhe +ted wag -edw -epp -eVX +jTt +eFK +nmr wag wag -qXm -akA -wFw -cCI -axf -cCI -yjY +oCy +nwF +bJN +xpk +eSm +xpk +pvg hLf -stN -mdx -mdx -stN -pFI -pFI -pFI +wsD +jlb +jlb +wsD +lef +lef +lef rBH rBH rBH rBH mCV -hKR -vNJ +bpP +mtG nur -hul -kxv -pSM +lOg +bUN +dxT rBH rBH rBH rBH rBH -sjo -rZD -uSe +kUd +djq +dcD aOW -mqd -nZM -lHA -wSI -lkP -san -hyu -kzr -swF -flV +aVp +eeE +bAP +eqz +oeF +rDU +lCr +fJT +bgl +uOJ nOd -qNn -qNn -qNn +wNf +wNf +wNf nOd nOd nOd @@ -40255,9 +40261,9 @@ tnu tnu tnu tnu -aUn -aVm -aUn +xDa +tBg +xDa tnu tnu tnu @@ -40339,68 +40345,68 @@ kOV mMK kOV kOV -ceM +bQh vYm vYm -ceM +bQh wag -dAi -ePS -hxf +iYS +uVg +rmB wag hLf -kJi -cCI -axf -cCI -fKx -cCI -axf +mFP +xpk +eSm +xpk +iJy +xpk +eSm gZG -stN -mdx -mdx -amO -amO -stN +wsD +jlb +jlb +qaV +qaV +wsD beF rBH rBH rBH rBH vDD -hKR -vNJ +bpP +mtG qRJ -uVK -shP -vDB +vKJ +xlN +tyr rBH rBH rBH rNZ -ejt -sjo -rZD -uSe +uLs +kUd +djq +dcD aOW -hyu -rGg -vrm -rGg -hyu -hyu -rGg -vrm -rGg -hyu +lCr +hRg +tWf +hRg +lCr +lCr +hRg +tWf +hRg +lCr nOd -uhL -uhL -uhL -uhL -gIq -jny +baO +baO +baO +baO +ddl +kUo nOd kop tHd @@ -40416,11 +40422,11 @@ jPU kEx kEx jlQ -xPd -wqQ +pQy +gdu gqp -oaI -xPd +wFs +pQy tnu hcH pqe @@ -40484,8 +40490,8 @@ axz aaY axz axz -qrz -dkC +lCa +gmJ axz axz pWf @@ -40501,68 +40507,68 @@ mMK kOV mMK aHb -tMY +uGn vYm vYm -tMY +uGn wag wag wag wag wag hLf -nFB -cCI -axf -cCI -axf -cCI +mYn +xpk +eSm +xpk +eSm +xpk hLf hLf -stN -mdx -tKd -bxb -bTV -anm +wsD +jlb +gTW +tjl +kcL +sPB fcy doJ -sjo -eqD -pmI -lxl -uYa -otL -rZD -rZD -rZD -ovh -iYF -uSe +kUd +kmg +toR +sas +jnM +nHO +djq +djq +djq +ruZ +rVH +dcD doJ wjD -ejt -hKR -ejt -vNJ +uLs +bpP +uLs +mtG tEl -hyu -rbo -uuZ -wZY -nGv -hyu -rbo -rbM -iCr -hyu +lCr +sOj +bZu +slL +xXh +lCr +sOj +mUZ +kEp +lCr nOd -uhL -hyu -uKN -bVb -goh -okz +baO +lCr +lwH +tCQ +wrg +aYw nOd jMf tHd @@ -40576,13 +40582,13 @@ pqe tnu bfn qDg -dXp +cMK tnu -xPd -tYa +pQy +dCK xOb -oaI -xPd +wFs +pQy tnu hcH pqe @@ -40640,15 +40646,15 @@ aad aad axz axz -sdG +oXI axz axz aaY axz -qrz -qrz -qrz -qrz +lCa +lCa +lCa +lCa axz pWf pWf @@ -40674,57 +40680,57 @@ hLf hLf hLf hLf -cCI -fBg -pUx -fBg -aZw +xpk +mPI +fDb +mPI +eNU hLf -fMG -stN -stN -aAc -bxb -bTV -anm +qlx +wsD +wsD +geI +tjl +kcL +sPB beF doJ -hKR +bpP dOD -tOG -iiy -vmy -msd -vAT -vmy -vmy -vmy +xyX +jNc +gEb +mTI +xPx +gEb +gEb +gEb dOD -vNJ +mtG doJ aDz -ejt -sjo -rZD -uSe +uLs +kUd +djq +dcD tEl -hyu -thB -cYc -kyG -hyu -hyu -thB -lGZ -kec -aJE +lCr +pXG +mwa +pax +lCr +lCr +pXG +eef +xWh +uUJ nOd -fhh -ksY -fFd -uFr -tds -uhL +hMj +uHt +nMv +hvg +vwZ +baO nOd kop wta @@ -40741,9 +40747,9 @@ pKQ vOv tnu tnu -aUc -aVc -aUc +tlD +xTv +tlD tnu tnu tnu @@ -40801,16 +40807,16 @@ aad aad aad axz -prU -ndR -prU +bSv +mxw +bSv axz aaY axz -qrz -qrz -qrz -qrz +lCa +lCa +lCa +lCa axz pWf pWf @@ -40826,15 +40832,15 @@ toD mMK axz axz -qrz -dkC +lCa +gmJ axz hLf hLf hLf -vsi -djJ -gQx +hYE +qWW +aTv hLf bRD hLf @@ -40844,49 +40850,49 @@ hLf hLf hLf hLf -stN -mdx -arL -oXz -stN +wsD +jlb +mip +eBS +wsD dWw rBH -hKR -vmy +bpP +gEb sKf tfQ pxl -hKR -tIR +bpP +ljt kZj hWK sKf -vmy -vNJ +gEb +mtG rBH aDz -ejt -sjo -rZD -jIF +uLs +kUd +djq +nGf aOW -mCs -rGg -hwg -rGg -hyu -hyu -rGg -hwg -rGg -hyu +wpP +hRg +wmU +hRg +lCr +lCr +hRg +wmU +hRg +lCr aRb -uhL -hyu -lVb -glG -tds -uhL +baO +lCr +hsU +vcV +vwZ +baO nOd kop aQJ @@ -40903,9 +40909,9 @@ tnu tnu tnu tnu -aUn -aVm -aUn +xDa +tBg +xDa tnu tnu tnu @@ -40963,15 +40969,15 @@ aad axz axz axz -qrz -qrz -ndR +lCa +lCa +mxw axz axz axz axz -qrz -dkC +lCa +gmJ axz axz axz @@ -40987,68 +40993,68 @@ pWf toD toD axz -vqq -jmq -jmq -vqq +lrV +hkO +hkO +lrV hLf hLf hLf -qYp -jru -jru -jru -jru +dxK +xTE +xTE +xTE +xTE hLf -azZ -sCc -uzP -ivS -xwL +ogW +kcM +jzy +pPH +dOd hLf -stN -stN -stN -stN -stN -bHf +wsD +wsD +wsD +wsD +wsD +gxP rBH -mIt -vmy +uld +gEb hWK -gVJ -rZD -hKR -vNJ -rZD -uSe +ikH +djq +bpP +mtG +djq +dcD fzF -vmy -tKk +gEb +lcC rBH -djy -uZl -sjo -rZD -uSe +mVf +cYO +kUd +djq +dcD tEl -hyu -eBU -rGg -rGg -hyu -tTW -rGg -rGg -rGg -hyu +lCr +cCG +hRg +hRg +lCr +hZn +hRg +hRg +hRg +lCr aRb -uhL -hyu -hyu -tWn -hyu -uhL +baO +lCr +lCr +eKf +lCr +baO nOd kop oiH @@ -41060,16 +41066,16 @@ dYp dYp pqe tnu -apz -eIa -eIa -tRT -lxn -oaI -oaI -oaI -aHr -dCo +gzx +kAI +kAI +jaz +vvi +wFs +wFs +wFs +osX +qbu tnu pqe gss @@ -41120,23 +41126,23 @@ puZ (106,1,1) = {" aad axz -aAn -dEH -dHg -eKY +whw +sYM +hEG +aUs mXS -qrz -qrz -ndR -xTZ -uJg -aPy -ndR -jqY -jqY -qrz -qxv -tSt +lCa +lCa +mxw +kod +pee +cIU +mxw +xhY +xhY +lCa +sDQ +oGK ahh aEY aEY @@ -41149,68 +41155,68 @@ pWf pWf pWf axz -vqq -jmq -jmq -vqq +lrV +hkO +hkO +lrV hLf hLf -xiu -jru -jru -wJp -wJp -jru +hdY +xTE +xTE +kEn +kEn +xTE qpu -uzP -jBp -lSz -jBp -uzP +jzy +fXH +uwk +fXH +jzy hLf -oyc -jIK +vYw +gkU noi noi -jIK -stN -blP -uYa -vmy +gkU +wsD +qiS +jnM +gEb sKf -iCs -sjo -teD -mQL -uSe -vNJ +wgR +kUd +vSN +gfk +dcD +mtG sKf -vmy -otL -sVV -uZl -sjo -ejt -ejt -vNJ +gEb +nHO +knU +cYO +kUd +uLs +uLs +mtG tEl -hyu -rGg -jBu -rGg -hyu -hyu -rGg -rGg -rGg -bVb +lCr +hRg +jrV +hRg +lCr +lCr +hRg +hRg +hRg +tCQ pbY -kdK -hyu -hyu -hyu -uKN -uhL +xYt +lCr +lCr +lCr +lwH +baO nOd kop tHd @@ -41222,16 +41228,16 @@ dYp dYp pqe tnu -iWu -xhn -aLG -xIU -uYl -oaI -oaI -oaI -cGW -rym +szS +fiL +grE +lCU +rPd +wFs +wFs +wFs +ugd +crW tnu pqe gss @@ -41282,23 +41288,23 @@ puZ (107,1,1) = {" aad axz -vvb -qrz -qrz -qrz +vaC +lCa +lCa +lCa jFy -qrz -qrz -qrz -qrz -qrz -qrz -mTK -jqY -jqY -qrz -nfe -lWr +lCa +lCa +lCa +lCa +lCa +lCa +bCN +xhY +xhY +lCa +dRv +mWo ahh aEY aEY @@ -41312,88 +41318,88 @@ aad aad axz axz -qrz -dkC +lCa +gmJ axz hLf -uTN -ujJ -jru -kIq -qgp -dBK -ile +xek +iRA +xTE +lry +eMG +lkj +qKA hLf -eHp -uzP -uzP -isr -uzP +rpK +jzy +jzy +dRR +jzy hLf -stN +wsD noi -mdx -mdx +jlb +jlb noi -stN -hKR -ejt -vhL -rZD -rZD -vAT -cUS -hqh -vhL -rZD -rZD -vAT -ejt -vNJ -sjo -ejt -ejt -ejt -tKk +wsD +bpP +uLs +vzC +djq +djq +xPx +nJX +vsp +vzC +djq +djq +xPx +uLs +mtG +kUd +uLs +uLs +uLs +lcC aOW -mCs -rGg -vrm -rGg -hyu -hyu -rGg -vrm -rGg -hyu +wpP +hRg +tWf +hRg +lCr +lCr +hRg +tWf +hRg +lCr aRb -iuz -rVK -tkb -rMe -hyu +jcu +qeG +oPg +elv +lCr nOd nOd hcH -btM -dXp -dXp -dXp -uhO +sHI +cMK +cMK +cMK +umg hcH pqe pqe mEJ -ueG -iek -wCU -xCN -qiu -oaI -rBr -oaI -lxn -boT +rTF +nPj +hwG +iWN +oUs +wFs +kva +wFs +vvi +nHZ tnu hcH gGT @@ -41444,23 +41450,23 @@ puZ (108,1,1) = {" aad axz -aFZ -qrz -qrz -qrz +xOQ +lCa +lCa +lCa ajr -qrz -qrz -qrz -qrz -qrz -qrz -ndR -jqY -jqY -qrz -qrz -tSt +lCa +lCa +lCa +lCa +lCa +lCa +mxw +xhY +xhY +lCa +lCa +oGK tLP lVF hpn @@ -41470,21 +41476,21 @@ lVF lVF lVF aad -lKJ -jqY +mXa +xhY aaY aaY -jmq -jmq +hkO +hkO aaY wag -iPg -iPg -iPg -iPg -mXq -iPg -iPg +jHU +jHU +jHU +jHU +myG +jHU +jHU hLf lJx lJx @@ -41492,70 +41498,70 @@ baN tdR lJx hLf -stN +wsD noi -mdx -mdx +jlb +jlb noi -stN -hKR -ejt -uSe -aUM -aUM -kGn -lKQ -uYa -bUX -aUM -aUM -sjo -ejt -vNJ -vAT -ejt -ejt -ejt -vNJ +wsD +bpP +uLs +dcD +llT +llT +prx +bIy +jnM +tav +llT +llT +kUd +uLs +mtG +xPx +uLs +uLs +uLs +mtG tEl -hyu -rbo -rbM -wZY -hyu -hyu -rbo -rbM -wZY -gGB +lCr +sOj +mUZ +slL +lCr +lCr +sOj +mUZ +slL +lNq nOd -uig -hyu -vCv -lYX -hyu -uhL -rKo -lFP -jPj -jPj -jPj -jPj -jPj -pnd -dXp -lxn -dQp -vpZ -lxn -lxn -lxn -lxn -oaI -oaI -oaI -lxn -lxn +tDd +lCr +uJT +jTJ +lCr +baO +fai +iMq +fCk +fCk +fCk +fCk +fCk +kEw +cMK +vvi +jHK +vUK +vvi +vvi +vvi +vvi +wFs +wFs +wFs +vvi +vvi tnu aGl tHd @@ -41606,118 +41612,118 @@ puZ (109,1,1) = {" aad axz -qrz -qrz -qrz -qrz +lCa +lCa +lCa +lCa jFy -ndR -ndR -ndR -xTZ -aPy -aPy -ndR -jqY -jqY -qrz -qrz -qrz -anA -anA -gHA -pAO -anA -tZs -anA -anA -vfd -vfd -qrz -vfd -fel -gNF -gNF -fel -wtC -stN -mdx -stN -mdx -stN -mdx -stN -wtC -stN -stN -stN -stN -stN -kWG -stN -jIK +mxw +mxw +mxw +kod +cIU +cIU +mxw +xhY +xhY +lCa +lCa +lCa +dZn +dZn +qcw +bbC +dZn +cUy +dZn +dZn +pzH +pzH +lCa +pzH +hfQ +dZe +dZe +hfQ +rwP +wsD +jlb +wsD +jlb +wsD +jlb +wsD +rwP +wsD +wsD +wsD +wsD +wsD +bra +wsD +gkU noi noi -jIK -stN -apL -hqh -vmy +gkU +wsD +erW +vsp +gEb sKf -hKR -vAT -eoG -apT -aoL -vNJ +bpP +xPx +xWZ +hzG +uia +mtG sKf -vmy -cUS -rzz -uZl -vAT -ejt -ejt -vNJ +gEb +nJX +gzJ +cYO +xPx +uLs +uLs +mtG tEl -hyu -thB -lGZ -kec -hyu -hyu -thB -lGZ -kec -hyu +lCr +pXG +eef +xWh +lCr +lCr +pXG +eef +xWh +lCr nOd -uhL -hyu -hyu -tWn -kJN -hyu +baO +lCr +lCr +eKf +oPU +lCr cvs -vxb -jPj -jPj -jPj -jPj -jPj -pAV -oaI -oaI -vpZ -oaI -oaI -whS -bAv -oGb -oGb -lxn -lxn -lxn -dXp +kMU +fCk +fCk +fCk +fCk +fCk +mLP +wFs +wFs +vUK +wFs +wFs +hya +qNc +dmx +dmx +vvi +vvi +vvi +cMK aFA kyD kop @@ -41768,118 +41774,118 @@ puZ (110,1,1) = {" aad axz -aTT -qrz -qrz -qrz +qmy +lCa +lCa +lCa axz -qrz -qrz -ndR -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -vfd -vxE -aJB -vfd -wtC -stN -mdx -stN -mdx -stN -mdx -stN -wtC -stN -mdx -mdx -mdx -stN -mdx -stN -stN -stN -stN -stN -bHf +lCa +lCa +mxw +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +pzH +pIm +dGS +pzH +rwP +wsD +jlb +wsD +jlb +wsD +jlb +wsD +rwP +wsD +jlb +jlb +jlb +wsD +jlb +wsD +wsD +wsD +wsD +wsD +gxP rBH -mIt -vmy +uld +gEb hWK -vAT -aFu -hKR -vNJ -aUM -vhL +xPx +oMo +bpP +mtG +llT +vzC hWK -vmy -tKk +gEb +lcC rBH -djy -uZl -vAT -aUM -vhL +mVf +cYO +xPx +llT +vzC aOW -hyu -rGg -hwg -rGg -hyu -hyu -rGg -hwg -rGg -hyu +lCr +hRg +wmU +hRg +lCr +lCr +hRg +wmU +hRg +lCr nOd -uhL -hyu -hyu -hyu -iuM -olI +baO +lCr +lCr +lCr +bmj +fAX cvs -vxb -jPj -jPj -jPj -jPj -jPj -pAV -oaI -oaI -lxn -lxn -lxn -lxn -lxn -lxn -bAv -bAv -oaI -oaI -oaI +kMU +fCk +fCk +fCk +fCk +fCk +mLP +wFs +wFs +vvi +vvi +vvi +vvi +vvi +vvi +qNc +qNc +wFs +wFs +wFs aFC kyD kyD @@ -41935,113 +41941,113 @@ axz axz axz axz -agx -agx -ndR -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -oqt -jqY -jqY -jqY -jqY -jqY -jqY -jqY -vfd -nqu -twG -vfd -wtC -stN -mdx -stN -mdx -stN -mdx -stN -wtC -stN -mdx -mdx -mdx -stN -mdx -stN -mdx -amE -amE -stN +bXe +bXe +mxw +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +kPz +xhY +xhY +xhY +xhY +xhY +xhY +xhY +pzH +oro +wxL +pzH +rwP +wsD +jlb +wsD +jlb +wsD +jlb +wsD +rwP +wsD +jlb +jlb +jlb +wsD +jlb +wsD +jlb +bTD +bTD +wsD beF rBH -hKR -vmy +bpP +gEb sKf sKf pxl -hKR -vNJ +bpP +mtG fzF hWK sKf -vmy -vNJ +gEb +mtG rBH rNZ -ejt -vAT -aUM -vhL +uLs +xPx +llT +vzC aOW -nLn -aAj -pEh -hyu -aBt -hyu -rpv -hyu -hyu -uxH +keq +vWR +mpH +lCr +xXA +lCr +oak +lCr +lCr +fXA nOd -uhL -hyu -hyu -hyu -hyu -hyu +baO +lCr +lCr +lCr +lCr +lCr cvs -vxb -jPj -jPj -jPj -jPj -jPj -pAV -oaI -oaI -oaI -oaI -lxn -oaI -oaI -lxn -oaI -oaI -oaI -fTX -oaI +kMU +fCk +fCk +fCk +fCk +fCk +mLP +wFs +wFs +wFs +wFs +vvi +wFs +wFs +vvi +wFs +wFs +wFs +ebp +wFs aFC kyD kyD @@ -42097,74 +42103,74 @@ axz axz axz axz -jqY -jqY -aBl -jqY -jqY -ndR -xmS +xhY +xhY +fOp +xhY +xhY +mxw +uTO jVx wlj odg -xsD +edl qCn -qrz -ydP -kFJ -qrz -qrz -izt -jqY -jqY -mGn -vfd -qrz -vfd -vqq -gNF -gNF -vqq -wtC -stN -mdx -stN -mdx -stN -mdx -qrq -wtC -stN -stN -amO -amO -stN -mdx -stN -tKd -bTV -bTV -anm +lCa +rWg +rGm +lCa +lCa +pne +xhY +xhY +dhc +pzH +lCa +pzH +lrV +dZe +dZe +lrV +rwP +wsD +jlb +wsD +jlb +wsD +jlb +oHX +rwP +wsD +wsD +qaV +qaV +wsD +jlb +wsD +gTW +kcL +kcL +sPB fcy doJ -hKR +bpP dOD -vmy -vmy -vmy -uSe -sjo -vmy -vmy -wmc +gEb +gEb +gEb +dcD +kUd +gEb +gEb +mZR dOD -vNJ +mtG doJ wjD -ejt -vAT -aUM -vhL +uLs +xPx +llT +vzC nOd aOW aOW @@ -42172,38 +42178,38 @@ aOW aOW aOW nOd -kQX -aLB -aLB -rGg +qoE +jZf +jZf +hRg nOd -akX -opM -puN -mKk -uhL -uhL -rKo -kEK -jPj -jPj -jPj -jPj -jPj -ydz -dXp -lxn -lxn -lxn -lxn -dXc -lxn -lxn -lxn -lxn -lxn -tsR -dXp +cak +gGN +qLn +qYq +baO +baO +fai +ljv +fCk +fCk +fCk +fCk +fCk +jMA +cMK +vvi +vvi +vvi +vvi +vGK +vvi +vvi +vvi +vvi +vvi +qTG +cMK aFI kyD tHd @@ -42259,13 +42265,13 @@ beQ beQ ffj axz -aiE -aAg -pTG -jqY -jqY -ndR -aAi +lWl +drP +rga +xhY +xhY +mxw +xfr aaY jVx naN @@ -42278,66 +42284,66 @@ jFy jFy axz tfd -ivr +aMe axz jFy jFy aaY -gNF -gNF -gNF -gNF +dZe +dZe +dZe +dZe wag -azO -pad -gHr -xaw -dQZ -nRy +bUg +gbv +raM +eKz +bCg +cTR wag wag beF -tKd -lXE -yjh -anm -mdx -stN -tKd -yjh -bTV -anm +gTW +kWz +qtE +sPB +jlb +wsD +gTW +qtE +kcL +sPB dWw doJ -vAT -aUM -mZH -aUM -hqh -cUS -aUM -iAt -nUn -aUM -aUM -vhL +xPx +llT +gdX +llT +vsp +nJX +llT +jco +pmQ +llT +llT +vzC doJ rNZ -ejt -hKR -ejt -vNJ +uLs +bpP +uLs +mtG aOW -hCt +tsL aAl mgL mBf -iyP +rRq aOW -vdC -wGD -wGD -vdC +vUq +tbg +tbg +vUq nOd aOW aOW @@ -42347,25 +42353,25 @@ nOd nOd nOd hcH -bHx -dXp -dXp -dXp -aJF +keE +cMK +cMK +cMK +hUX hcH -dwf -dwf -cBG -mLG +rzH +rzH +wWI +gMl tnu -wgW -soE +bzz +rDF tnu tnu -cFa -lxn -lxn -mWK +cHM +vvi +vvi +xXT tnu aGu tHd @@ -42421,13 +42427,13 @@ bfc beY gnZ axz -ayo -aBe -ndR -jqY -jqY -ndR -qSe +nEN +sCF +mxw +xhY +xhY +mxw +iQW axz axz wlj @@ -42436,47 +42442,47 @@ mqD wlj axz axz -rnz +ozt tfd -uPo +ooG tfd tfd -uPo +ooG tfd -rnz +ozt jFy -qrz -jqY -jqY -qrz +lCa +xhY +xhY +lCa wag -gSb -cOa -mdx -guz -nHj -guz -mdx +uxG +ufr +jlb +rhh +wCJ +rhh +jlb wag wag -tKd -qUe -yjh -anm -mdx -stN -stN -arL -arL -stN +gTW +nho +qtE +sPB +jlb +wsD +wsD +mip +mip +wsD dWw rBH rBH rBH rBH vDD -hKR -vNJ +bpP +mtG vDD rBH rBH @@ -42485,26 +42491,26 @@ rBH rBH rBH aDz -ejt -vAT -aUM -vhL +uLs +xPx +llT +vzC aOW -otA +iKb sKO inJ inJ -kVA +nzp aOW -tqL -aQb -aLB -rGg +xiB +dhQ +jZf +hRg aOW -pmz -eBZ -kaT -kqH +tbl +lMN +bnF +dig aOW aQi cZk @@ -42582,14 +42588,14 @@ bfc bfc bfc tmV -kLz -anE -anE -cTY -jqY -jqY -ndR -qSe +gCM +dLg +dLg +fEI +xhY +xhY +mxw +iQW axz axz wlj @@ -42599,36 +42605,36 @@ tKg axz axz tfd -wCz -lWW -wCz -lWW -wCz -lWW +aKV +xsR +aKV +xsR +aKV +xsR tfd jFy -gNF -jqY -jqY -kxb +dZe +xhY +xhY +kjZ wag -ajq -mdx -wHA -mdx -wHA -mdx -wHA -eFm +neR +jlb +nqz +jlb +nqz +jlb +nqz +glY wag -kwc -yjh -bTV -anm -stN -stN -mdx -stN +hBW +qtE +kcL +sPB +wsD +wsD +jlb +wsD rBH rBH rBH @@ -42637,8 +42643,8 @@ rBH rBH rBH fiK -hKR -vNJ +bpP +mtG fiK rBH rBH @@ -42648,25 +42654,25 @@ rBH rBH rBH rBH -vAT -aUM -vhL +xPx +llT +vzC aOW -ofK +bVh gdU oEk rAq -rLD +sVW aOW -lJt -aLB -aLB -rGg +oXK +jZf +jZf +hRg oAo inJ fKy fGw -xqe +iwK aOW daD cZk @@ -42744,14 +42750,14 @@ bfc beY bfc bfc -qrz -anE -anE -hmI -jqY -jqY -ndR -qSe +lCa +dLg +dLg +udf +xhY +xhY +mxw +iQW axz axz opa @@ -42761,36 +42767,36 @@ ssf axz axz tfd -nCo -kRK -nCo -kRK -nCo -kRK +mcW +idi +mcW +idi +mcW +idi tfd aaY -ilo -jqY -jqY -jqY +mnw +xhY +xhY +xhY hZS -stN -stN -stN -stN -stN -stN -stN -stN +wsD +wsD +wsD +wsD +wsD +wsD +wsD +wsD aGC -stN -arL -arL -stN -mdx -stN -mdx -stN +wsD +mip +mip +wsD +jlb +wsD +jlb +wsD tFk fiK khB @@ -42798,37 +42804,37 @@ rBH eOK fiK tFk -vmy -hKR -vNJ -vmy +gEb +bpP +mtG +gEb egr fiK pNy rBH -iaj -mqe -rFA +pZa +hUd +vqy rBH -joh -iHN -krM +sEx +hDG +ffu nOd nOd -wpG +uNK nOd -rey -sPA +uVw +teb nOd -fYm -aLB -aLB -rGg +vLn +jZf +jZf +hRg aOW -akX -aKv -vxW -owD +cak +iGb +ttX +tMB aOW awr cZk @@ -42839,13 +42845,13 @@ bFg bIV cZk hcH -wxs -apZ -taq +tFQ +iAY +mlQ hcH hcH -sGI -oXf +eTG +geo hcH hcH aVr @@ -42906,14 +42912,14 @@ bfc beY bfc bfc -qrz -anE -anE -ncY -jqY -jqY -ndR -qSe +lCa +dLg +dLg +gzZ +xhY +xhY +mxw +iQW axz axz ssf @@ -42923,36 +42929,36 @@ ssf axz axz tfd -wCz -lWW -wCz -lWW -wCz -lWW +aKV +xsR +aKV +xsR +aKV +xsR tfd jFy -gNF -gNF -gNF -gNF +dZe +dZe +dZe +dZe lJx -mdx -mdx -mdx -mdx -mdx -mdx -mdx -mdx +jlb +jlb +jlb +jlb +jlb +jlb +jlb +jlb lJx -mdx -mdx -mdx -stN -mdx -stN -stN -aow +jlb +jlb +jlb +wsD +jlb +wsD +wsD +pzZ rBH gKQ wZW @@ -42960,32 +42966,32 @@ rBH rZC gKQ rBH -qng -hKR -vNJ -hmQ +bta +bpP +mtG +xTY rBH gKQ wZW rBH -ejt -ejt -ejt +uLs +uLs +uLs doJ -hju -hju -hju +nnD +nnD +nnD wpW -owx -rGg -oNo -rGg -rGg +dbk +hRg +nVO +hRg +hRg mKA -owx -aLB -aLB -rGg +dbk +jZf +jZf +hRg nOd aOW aOW @@ -43001,14 +43007,14 @@ bFg bFg cZk gWk -xXv -aLG -hbu -fYW -lWR -aLG -aLG -pMK +wuv +grE +qrj +xwt +mMt +grE +grE +tuI gWk aVs fIW @@ -43068,14 +43074,14 @@ bfc bfc bfc bfc -qrz -anE -anE -ndR -jqY -jqY -ndR -qWu +lCa +dLg +dLg +mxw +xhY +xhY +mxw +ePa aaY aaY jVx @@ -43085,35 +43091,35 @@ jVx aaY aaY tfd -nCo -kRK -nCo -kRK -nCo -kRK +mcW +idi +mcW +idi +mcW +idi tfd jFy -jqY -jqY -jqY -jqY +xhY +xhY +xhY +xhY hZS -stN -stN -stN -stN -stN -stN -stN -stN +wsD +wsD +wsD +wsD +wsD +wsD +wsD +wsD aGC -stN -amO -amO -stN -stN -stN -stN +wsD +qaV +qaV +wsD +wsD +wsD +wsD rBH rBH rBH @@ -43123,36 +43129,36 @@ rBH rBH rBH rBH -hKR -vNJ +bpP +mtG rBH rBH rBH rBH rBH -pBy -ejt -ejt +noQ +uLs +uLs doJ -gjY -vHM -gjY -jjm -jIR -jIR -jIR -jIR -jIR -jjm -jIR -wGD -wGD -rGg +yme +nqn +yme +iSH +vmK +vmK +vmK +vmK +vmK +iSH +vmK +tbg +tbg +hRg aOW -iXE -oLr -vbb -hBI +hgb +uHu +csF +lPp aOW kgI cZk @@ -43163,14 +43169,14 @@ bFg bFg cZk gWk -xXv -aLG -iyk -xZW -aLG -bBs -aLG -mLo +wuv +grE +eUr +agq +grE +qXp +grE +fol tnu aVt sgl @@ -43231,13 +43237,13 @@ bfc beY gpT axz -ayG -ael -tQK -jqY -jqY -ndR -qrz +rBU +mia +qZV +xhY +xhY +mxw +lCa aaY xha xha @@ -43247,35 +43253,35 @@ gPg xha axz tfd -wCz -lWW -wCz -lWW -wCz -lWW +aKV +xsR +aKV +xsR +aKV +xsR tfd jFy -gNF -jqY -jqY -gNF +dZe +xhY +xhY +dZe lJx -xVo -mdx -guz -mdx -guz -mdx -guz -qps +rqv +jlb +rhh +jlb +rhh +jlb +rhh +cDI lJx -tKd -bTV -yjh -anm -mdx -mdx -stN +gTW +kcL +qtE +sPB +jlb +jlb +wsD tFk fiK fiK @@ -43285,36 +43291,36 @@ xde fiK fiK tFk -hKR -vNJ +bpP +mtG egr fiK fiK gxW rBH -auM -ejt -ejt -tGU -lod -gjY -fZR -rGg -jIR -jIR -jIR -jIR -jIR -rGg -jIR -wGD -wGD -rGg +pfd +uLs +uLs +pXg +jFd +yme +caC +hRg +vmK +vmK +vmK +vmK +vmK +hRg +vmK +tbg +tbg +hRg aOW hnw inJ fBJ -nVM +myk aOW daD cZk @@ -43325,14 +43331,14 @@ bFg bIV cZk gWk -lbF -aLG -kMO -lDI -aLG -aLG -aLG -wYd +ows +grE +nOG +kkX +grE +grE +grE +obQ tnu aVw vxg @@ -43393,13 +43399,13 @@ bJz bJz gMv axz -aFZ -qrz -ndR -jqY -jqY -ndR -qrz +xOQ +lCa +mxw +xhY +xhY +mxw +lCa vWt xha xha @@ -43409,35 +43415,35 @@ aaX xha axz tfd -jMZ -gvz -jMZ -gvz -jMZ -gvz +bou +grM +bou +grM +bou +grM tfd axz -kFJ -jqY -jqY -kFJ +rGm +xhY +xhY +rGm lJx -mdx -wHA -wWY -wHA -mdx -ieo -mdx -kQi +jlb +nqz +wXS +nqz +jlb +sIl +jlb +eEx lJx -tKd -yjh -bTV -anm -mdx -mdx -stN +gTW +qtE +kcL +sPB +jlb +jlb +wsD rBH gKQ fiK @@ -43447,36 +43453,36 @@ wZW fiK gKQ rBH -hKR -vNJ +bpP +mtG rBH fiK gKQ wZW rBH -auS -ejt -ejt -ejt -lUF -fZR -gjY +oRs +uLs +uLs +uLs +xDh +caC +yme tEl -meG -rGg -rGg -rGg -jwk +gLe +hRg +hRg +hRg +gyz tEl -rGg -rGg -rGg -rGg +hRg +hRg +hRg +hRg oAo inJ inJ inJ -sxb +vSv aOW daD cZk @@ -43487,14 +43493,14 @@ bFg bIV sbj gWk -wIS -aLG -aLG -aLG -tZM -aLG -aLG -nrf +jeA +grE +grE +grE +iAs +grE +grE +tOI tnu uiI sgl @@ -43532,9 +43538,9 @@ puZ puZ puZ hcJ -cUl -cUl -cUl +fbq +fbq +fbq hcJ puZ puZ @@ -43555,13 +43561,13 @@ axz axz axz axz -jqY -jqY -ndR -jqY -vIL -ndR -vzy +xhY +xhY +mxw +xhY +bNM +mxw +thd aaY axz bLf @@ -43577,7 +43583,7 @@ dqW bMn cRP tfd -sQt +kEu aaY axz xha @@ -43585,21 +43591,21 @@ cLx axz wag wag -tWE -qfe -xvf -xvf -wMq -rRp +qqy +wqv +tmy +tmy +kbR +cHt wag wag -tKd -bTV -bTV -anm -stN -stN -stN +gTW +kcL +kcL +sPB +wsD +wsD +wsD rBH rBH rBH @@ -43609,38 +43615,38 @@ rBH rBH rBH rBH -hju -hju +nnD +nnD rBH rBH rBH rBH rBH -auT -ejt -ejt +snn +uLs +uLs doJ -gjY -vHM -gjY +yme +nqn +yme aOW -fkF -pyV -pNx -pyV -vdC +wtD +iNh +rBp +iNh +vUq aOW -oSU -nEZ -cbC -fkF +arV +qOC +hdv +wtD aOW -akX -uhL -jny -jny +cak +baO +kUo +kUo aOW -raQ +xQe cZk cZk bFg @@ -43649,14 +43655,14 @@ bFg bIV uTu gWk -lxn +vvi qXS qXS qXS slU frj qXS -wXQ +vJN aUt vxg sgl @@ -43694,9 +43700,9 @@ puZ puZ puZ hcJ -cUl -cUl -cUl +fbq +fbq +fbq hcJ hcJ puZ @@ -43712,22 +43718,22 @@ puZ (122,1,1) = {" aad axz -qrz -qrz -qrz -qrz +lCa +lCa +lCa +lCa axz -jqY -jqY -ndR -jqY -jqY -ndR -qrz +xhY +xhY +mxw +xhY +xhY +mxw +lCa jFy -btQ -lQa -jsA +klB +dWV +qKy axz xha xha @@ -43739,12 +43745,12 @@ jvT djn djn tfd -aeA +ije axz -pMs -bsp -bsp -icC +oQR +xfa +xfa +wWF wag wag lJx @@ -43755,36 +43761,36 @@ lJx lJx wag wag -nSI -arL -arL -stN -stN -stN -stN +nhX +mip +mip +wsD +wsD +wsD +wsD gBH -ecZ -ecZ -uzU +rWx +rWx +mhL rBH dun fiK fiK tFk -gjY -fZR +yme +caC egr fiK fiK pNy rBH -fDd -ejt -ejt +buj +uLs +uLs doJ -fZR -gjY -gjY +caC +yme +yme aOW aOW aOW @@ -43811,14 +43817,14 @@ bFg bIV sbj tnu -lxn -lxn -oET -lxn -cFa -hDd -wXQ -ogd +vvi +vvi +bqr +vvi +cHM +kCs +vJN +vwF tnu aZA vxg @@ -43858,8 +43864,8 @@ cXk wNj qcT gzM -cUl -xRg +fbq +xGZ hcJ puZ puZ @@ -43874,22 +43880,22 @@ puZ (123,1,1) = {" aad axz -qrz -jqY -jqY -qrz +lCa +xhY +xhY +lCa axz -qgz -qrz -ndR -jqY -jqY -ndR -qrz +tZN +lCa +mxw +xhY +xhY +mxw +lCa jFy -qer -qrz -bYS +eKb +lCa +eAW axz xha hYb @@ -43900,13 +43906,13 @@ axz axz axz axz -hwJ +aIp axz aaY -hWh -bsp -bsp -rAF +jxf +xfa +xfa +rHr oWG gzc gzc @@ -43917,36 +43923,36 @@ arX qep hLf hLf -stN -stN -stN -stN -stN -stN -stN +wsD +wsD +wsD +wsD +wsD +wsD +wsD rBH -ecZ -ecZ -ecZ +rWx +rWx +rWx rBH wZW fiK gKQ rBH -hju -hju +nnD +nnD rBH fiK gKQ wZW rBH -byH -wMR -viy +dDx +ffC +rJj rBH -jgz -hju -jCe +jhy +nnD +kKN aOW aOW aOW @@ -43974,9 +43980,9 @@ bFg aoZ tnu tnu -aMz -aMT -lEJ +rQh +mpM +jcR tnu tnu tmh @@ -44019,9 +44025,9 @@ sod sod wNj gzM -blI -blI -lnY +fsW +fsW +bbI hcJ puZ puZ @@ -44035,40 +44041,40 @@ puZ "} (124,1,1) = {" aad -aag -jqY -jqY -jqY -qrz +jvx +xhY +xhY +xhY +lCa aaY -adJ -ndR -ndR -vIL -jqY -ndR -qrz +kvg +mxw +mxw +bNM +xhY +mxw +lCa ufA -plm -qrz -tmI +pTR +lCa +wPg axz xha xha axz -xEu -xEu -uHa -xEu -xEu +tdw +tdw +nKk +tdw +tdw axz -ndR -iwn +mxw +xFx axz -hWh -bsp -bsp -rAF +jxf +xfa +xfa +rHr oWG stT nbk @@ -44084,19 +44090,19 @@ lJx lJx lJx hLf -mdx -aBs +jlb +eTP rBH -ecZ -umC -ecZ +rWx +ubE +rWx rBH rBH rBH rBH rBH -aki -aZR +jjG +cqv rBH rBH rBH @@ -44106,9 +44112,9 @@ rBH rBH rBH rBH -xQQ -gVh -xQQ +oVG +shh +oVG aOW aOW aOW @@ -44146,8 +44152,8 @@ xOb tnu kPZ aWE -aLG -baV +grE +nHp tnu bnS tHd @@ -44180,10 +44186,10 @@ cXk sod rKk uYC -pOM -blI -blI -jLn +wko +fsW +fsW +oac hcJ puZ puZ @@ -44197,23 +44203,23 @@ puZ "} (125,1,1) = {" aad -hab -qrz -jqY -jqY -jqY -czH -jqY -jqY -jqY -jqY -jqY -ndR -qrz +gZp +lCa +xhY +xhY +xhY +rJz +xhY +xhY +xhY +xhY +xhY +mxw +lCa jFy -itW -qrz -xzK +wIf +lCa +xhA axz xha xha @@ -44224,13 +44230,13 @@ xha xha xha vBg -ndR -iRh +mxw +gfv axz -hWh -bsp -bsp -rAF +jxf +xfa +xfa +rHr eOM eOM pKF @@ -44245,20 +44251,20 @@ arX lwo qep sYu -dYm -nvS -nvS -dYm -ecZ -xbZ -ecZ +vum +dfV +dfV +vum +rWx +vfK +rWx qGN arX arX eOM pzJ -fcL -nvS +amF +dfV pzJ oOV arX @@ -44296,7 +44302,7 @@ bIV bFg bFg bFg -aKJ +gCk jeg mZb ejF @@ -44308,8 +44314,8 @@ xOb tnu msu aKK -xCA -eCg +vZH +luM tnu boA tHd @@ -44341,10 +44347,10 @@ cXk sod sod rKk -tQG -cUl -blI -blI +hMN +fbq +fsW +fsW bTC hcJ puZ @@ -44359,23 +44365,23 @@ puZ "} (126,1,1) = {" aad -aAi -qrz -jqY -jqY -jqY -qrz -jqY -sAe -jqY -jqY -jqY -ndR -kFJ +xfr +lCa +xhY +xhY +xhY +lCa +xhY +jJT +xhY +xhY +xhY +mxw +rGm hxk -qow -gtZ -nnG +jeX +fXG +tkW axz xha xha @@ -44386,13 +44392,13 @@ xha bPu xha vBg -ndR -lHX +mxw +hpg axz -xMH -bsp -bsp -rAF +mIf +xfa +xfa +rHr eOM sYu sYu @@ -44407,21 +44413,21 @@ arX lwo lwo lwo -dYm -nvS -nvS -dYm -ecZ -xbZ -ecZ +vum +dfV +dfV +vum +rWx +vfK +rWx lwo lwo eOM sYu -dYm -fcL -nvS -dYm +vum +amF +dfV +vum sYu lwo lwo @@ -44458,22 +44464,22 @@ bFg lpD lpD bFg -aKJ +gCk jeg kuJ kZK oNZ -aPj +svQ aRn tmh xOb tnu pEe elR -eNv -moV +tOO +nHJ tnu -qEt +xME tHd tHd kyD @@ -44504,9 +44510,9 @@ foa rKk sod uYC -cUl -blI -blI +fbq +fsW +fsW gBc hcJ puZ @@ -44521,18 +44527,18 @@ puZ "} (127,1,1) = {" aad -afw -jqY -jqY -jqY -qrz +jUA +xhY +xhY +xhY +lCa axz axz axz -aNd -oaH -aMx -isU +uNm +imc +gXz +had axz axz axz @@ -44548,13 +44554,13 @@ xha xha xha vBg -ndR -fJw +mxw +lYt axz -hWh -bsp -bsp -rAF +jxf +xfa +xfa +rHr eOM eOM eOM @@ -44569,10 +44575,10 @@ arX arX lwo lwo -rFp -nvS -nvS -rFp +lQN +dfV +dfV +lQN sYu fSj wPz @@ -44580,10 +44586,10 @@ xXM tUe cGJ eOM -dYm -nvS -htC -dYm +vum +dfV +hfa +vum sYu eOM eOM @@ -44620,20 +44626,20 @@ bFg bFg bFg bIV -aKJ +gCk jlv kgr oNZ nIN -avu -kvu -bwb -jDp +jVn +xZB +icc +mgc tnu kPZ fKE -aLG -baW +grE +ykE tnu ofw kop @@ -44666,8 +44672,8 @@ sod rKk cXk wNj -cUl -nTv +fbq +dlm vnF hgL hcJ @@ -44684,10 +44690,10 @@ puZ (128,1,1) = {" aad sCi -cTu -jqY -jqY -qrz +lbA +xhY +xhY +lCa axz axz axz @@ -44710,13 +44716,13 @@ bks bks wQR axz -ndR -fKT +mxw +wsZ axz -mQs -bsp -bsp -rAF +slD +xfa +xfa +rHr eOM mtU dLe @@ -44742,10 +44748,10 @@ kWa khw dnv lwo -rFp -fcL -fcL -rFp +lQN +amF +amF +lQN sYu eOM eOM @@ -44794,8 +44800,8 @@ sFu tnu kPZ gTe -tnz -baW +pdv +ykE tnu ofw kop @@ -44846,20 +44852,20 @@ puZ (129,1,1) = {" aad aan -qrz -jqY -fVR -qrz +lCa +xhY +jHh +lCa aaY -amG -qrz -yjn -qrz -cZb -qrz -qrz -qrz -cZb +uei +lCa +kfA +lCa +rai +lCa +lCa +lCa +rai esf xha xha @@ -44872,13 +44878,13 @@ dWD rWt xha vBg -ndR -ndR -ord -bsp -bsp -bsp -rAF +mxw +mxw +nsg +xfa +xfa +xfa +rHr eOM sYu oMG @@ -44984,9 +44990,9 @@ sod rEV sod sod -rkS -rVM -sGR +iBJ +kxo +jCP cXk sod sod @@ -45008,20 +45014,20 @@ puZ (130,1,1) = {" aad amx -mSR -jqY -jqY -qrz +jZb +xhY +xhY +lCa jFy -nfe -qrz +dRv +lCa aoX aqC ayY qfh cXM -qrz -qSe +lCa +iQW axz xha xha @@ -45034,13 +45040,13 @@ xha vyM xha vBg -ndR -fcq +mxw +onx axz -mQs -bsp -bsp -rAF +slD +xfa +xfa +rHr eOM eOM eOM @@ -45112,7 +45118,7 @@ fse jhR oNZ ihp -lXM +ghd bAn aMB oNZ @@ -45146,9 +45152,9 @@ sod cXk cXk sod -bai +jiD rXt -acW +vSX sod sod sod @@ -45169,21 +45175,21 @@ puZ "} (131,1,1) = {" aad -aag -jqY -jqY -jqY -qrz +jvx +xhY +xhY +xhY +lCa jFy -nfe -qrz +dRv +lCa apa arh tfd tfd fFG -qrz -qSe +lCa +iQW axz xha lYL @@ -45196,17 +45202,17 @@ xha xha xha vBg -ndR -gcF +mxw +cCm axz -sqy -bsp -bsp -mms -bbw -bbw -bbw -kiS +ugu +xfa +xfa +cOF +rEK +rEK +rEK +ooL eOM sYu sYu @@ -45308,9 +45314,9 @@ sod sod sod sod -rAm -acC -sKH +bJq +pDi +uDi sod sod sod @@ -45331,21 +45337,21 @@ puZ "} (132,1,1) = {" aad -aAi -qrz -fVR -gdk -jqY -akE -qmA -qrz +xfr +lCa +jHh +tRp +xhY +tZu +fup +lCa apc arq azc jOP oqy -qrz -qSe +lCa +iQW axz hQW xha @@ -45358,17 +45364,17 @@ hTk nCx gPN vBg -ndR -sII +mxw +cwj axz -lNf -bsp -bsp -bsp -bsp -bsp -bsp -rAF +uLH +xfa +xfa +xfa +xfa +xfa +xfa +rHr eOM sYu sYu @@ -45493,21 +45499,21 @@ puZ "} (133,1,1) = {" aad -vhp -qrz -jqY -jqY -jqY -adf -qrz -qrz +uwq +lCa +xhY +xhY +xhY +pUU +lCa +lCa apc tfd tfd tfd xeE -qrz -qSe +lCa +iQW axz dug xha @@ -45523,14 +45529,14 @@ axz hJH axz aaY -sXr -dMy -hWh -hWh -hWh -hWh -bsp -rAF +pfj +tpF +jxf +jxf +jxf +jxf +xfa +rHr eOM sYu sYu @@ -45568,11 +45574,11 @@ eOM lwo ktd ktd -tmi -aAp -xXV -oCr -ver +cGi +jca +bJE +qmL +oNO ktd fGl bIV @@ -45655,21 +45661,21 @@ puZ "} (134,1,1) = {" aad -afw -jqY -jqY -jqY -qrz +jUA +xhY +xhY +xhY +lCa jFy -nfe -qrz +dRv +lCa apc tfd tfd tfd xeE -qrz -qSe +lCa +iQW axz csu xha @@ -45690,9 +45696,9 @@ axz axz axz aaY -hWh -bsp -rAF +jxf +xfa +rHr eOM sYu sYu @@ -45729,12 +45735,12 @@ lwo lwo ktd ktd -azF -ver -ver -aBf -ver -aBK +fij +oNO +oNO +aFD +oNO +eLo aCp bIV bIV @@ -45818,20 +45824,20 @@ puZ (135,1,1) = {" aad ami -cTu -jqY -jqY -qrz +lbA +xhY +xhY +lCa jFy -nfe -qrz +dRv +lCa apc tfd tfd tfd xeE -qrz -qSe +lCa +iQW axz csu xha @@ -45852,9 +45858,9 @@ muN ivl ixo axz -hWh -bsp -rAF +jxf +xfa +rHr sYu eOM sYu @@ -45890,13 +45896,13 @@ lwo lwo qep ktd -ulm -ver -ver -ver -aAh -ver -vhQ +qJt +oNO +oNO +oNO +nDY +oNO +oPR ktd bFg bFg @@ -45924,7 +45930,7 @@ qXS iZX ocF qXS -lxn +vvi qXS oZE tnu @@ -45980,20 +45986,20 @@ puZ (136,1,1) = {" aad aeD -qrz -gdk -jqY -qrz +lCa +tRp +xhY +lCa jFy -nfe -qrz +dRv +lCa apd arx aBE arx lzQ -qrz -aub +lCa +msS aaY axz axz @@ -46014,9 +46020,9 @@ kvB djn wFq axz -hWh -bsp -rAF +jxf +xfa +rHr nOi rnB sYu @@ -46052,13 +46058,13 @@ eOM arX qep ktd -aze -ver -ver -ver -ver -ver -ver +oVo +oNO +oNO +oNO +oNO +oNO +oNO aCt bFg bFg @@ -46086,7 +46092,7 @@ gWk tnu tnu qXS -bwb +icc mJJ tnu tnu @@ -46142,31 +46148,31 @@ puZ (137,1,1) = {" aad amx -mSR -jqY -jqY -qrz +jZb +xhY +xhY +lCa jFy -nfe -qrz +dRv +lCa apc tfd tfd tfd xeE -qrz -qSe +lCa +iQW axz -lsk -vdb -lmQ -dQF -dQF -aZp -uAq -cXm -cXm -gbC +iLj +vbP +lkf +klo +klo +lOq +xfs +sho +sho +wht axz xha xha @@ -46176,10 +46182,10 @@ tfd djn djn gFe -bsp -bsp -mms -iWg +xfa +xfa +cOF +rnk tDr sYu sYu @@ -46214,13 +46220,13 @@ arX arX arX ktd -azf -ver -ver -ver -ver -ver -pFd +vnj +oNO +oNO +oNO +oNO +oNO +ezp ktd kOW bFg @@ -46247,9 +46253,9 @@ daD daD daD gWk -dtZ -xqf -rTG +eHJ +pyP +uFy gWk ofw jMf @@ -46303,32 +46309,32 @@ puZ "} (138,1,1) = {" aad -iWO -jqY -jqY -jqY -qrz +fBZ +xhY +xhY +xhY +lCa jFy -nfe -qrz +dRv +lCa apc tfd tfd tfd xeE -qrz -qSe +lCa +iQW axz -dQF -dQF -dQF -dQF -dQF -dQF -dQF -dQF -dQF -dQF +klo +klo +klo +klo +klo +klo +klo +klo +klo +klo axz xha xha @@ -46338,9 +46344,9 @@ jsn tfd hin axz -hWh -bsp -pEs +jxf +xfa +rQo uQy gkG sYu @@ -46376,13 +46382,13 @@ arX qep arX ktd -azg -kjt -kjt -ver -ver -aBk -aBU +mFe +vnt +vnt +oNO +oNO +wum +eQO ktd bIV bIV @@ -46465,32 +46471,32 @@ puZ "} (139,1,1) = {" aad -mtA -qrz -jqY -hYf -jqY -akE -qrz -qrz +dSB +lCa +xhY +kCc +xhY +tZu +lCa +lCa apc tfd tfd tfd xeE -qrz -qSe +lCa +iQW axz -dQF -uDb -lVf -puT -kNf -uDb -amA -sNZ -kNf -dQF +klo +jJW +loC +oaJ +pPS +jJW +vpa +rJU +pPS +klo axz xha xha @@ -46500,9 +46506,9 @@ axz axz axz aaY -mQs -bsp -pEs +slD +xfa +rQo sNi sYu sYu @@ -46627,32 +46633,32 @@ puZ "} (140,1,1) = {" aad -agg -qrz +gUy +lCa apG apG -iXZ -adf -qrz -qrz +iYE +pUU +lCa +lCa ape ary azc cMs oKc -qrz -qSe +lCa +iQW axz -sKa -uDb -pOI -tNm -kNf -uDb -tNm -lVf -kNf -dQF +jUE +jJW +nRB +ukn +pPS +jJW +ukn +loC +pPS +klo axz xha xha @@ -46662,9 +46668,9 @@ muN ivl ixo axz -hWh -bsp -pEs +jxf +xfa +rQo sNi sYu sYu @@ -46699,15 +46705,15 @@ arX qep ktd ktd -ayx -azk -dgb -kAT -ver -ver -kAT -aBV -aCv +jOI +mAX +aXW +hBm +oNO +oNO +hBm +xHg +jwl ktd bIV bFg @@ -46789,32 +46795,32 @@ puZ "} (141,1,1) = {" aad -ajD +rSU apF apG pmj apG jFy -nfe -qrz +dRv +lCa apc tfd tfd tfd xeE -qrz -qSe +lCa +iQW axz -uHH -uDb -lVf -irk -kNf -uDb -irx -tNm -kNf -ves +gmN +jJW +loC +tdx +pPS +jJW +omi +ukn +pPS +xap axz hQW xha @@ -46824,9 +46830,9 @@ kvB djn wFq axz -hWh -bsp -pEs +jxf +xfa +rQo hEa rnB sYu @@ -46847,7 +46853,7 @@ eOM sYu sYu sYu -sYu +wHU sYu lwo lwo @@ -46860,16 +46866,16 @@ arX arX arX ktd -axH -ayy -ver -ver -ver -ver -ver -ver -ver -bYd +nPE +xtF +oNO +oNO +oNO +oNO +oNO +oNO +oNO +bWD ktd ktd bFg @@ -46957,26 +46963,26 @@ gHu iji apG jFy -nfe -qrz +dRv +lCa apf arz aRS cse dlk -qrz -qSe +lCa +iQW axz -iEi -dQF -dQF -dQF -dQF -dQF -dQF -dQF -dQF -dQF +bPE +klo +klo +klo +klo +klo +klo +klo +klo +klo axz xha xha @@ -46986,10 +46992,10 @@ tfd djn djn gFe -bsp -bsp -mms -iWg +xfa +xfa +cOF +rnk tDr lwo sYu @@ -47022,17 +47028,17 @@ arX arX tVZ ktd -axI -ver -ver -ver -ver -ver -ver -aAh -ver -fEO -oDM +buM +oNO +oNO +oNO +oNO +oNO +oNO +nDY +oNO +xdm +iUY aCH bFg bFg @@ -47114,20 +47120,20 @@ puZ (143,1,1) = {" aad agc -awj +oFj apG iNX apG aaY -kFJ -qrz -qrz -qrz -qrz -qrz -qrz -qrz -kFJ +rGm +lCa +lCa +lCa +lCa +lCa +lCa +lCa +rGm axz jFy axz @@ -47148,9 +47154,9 @@ euZ tfd hin axz -hWh -bsp -rAF +jxf +xfa +rHr gCW gkG lwo @@ -47163,9 +47169,9 @@ lwo sYu sYu eOM -dYm -xbZ -ecZ +vum +vfK +rWx lwo lwo eOM @@ -47184,17 +47190,17 @@ arX arX uJj ktd -toA -ver -oTh -azI -ver -ver -azI -ver -ver -ver -pSD +igT +oNO +vEU +mCq +oNO +oNO +mCq +oNO +oNO +oNO +iYl ktd bFg bFg @@ -47276,9 +47282,9 @@ puZ (144,1,1) = {" aad sCi -qrz -gRG -jqY +lCa +hLZ +xhY iNX aaY aaY @@ -47291,16 +47297,16 @@ jFy jFy aaY aaY -qrz +lCa nPW -aju -aju -kqs -kqs -aju -aju +cee +cee +bub +bub +cee +cee nPW -qrz +lCa cqb xha xha @@ -47310,9 +47316,9 @@ axz axz axz aaY -hWh -bsp -rAF +jxf +xfa +rHr sYu arX arX @@ -47325,9 +47331,9 @@ lwo sYu sYu lwo -cPK -xbZ -ecZ +ahV +vfK +rWx arX lwo eOM @@ -47346,17 +47352,17 @@ vSL uJj qep ktd -toA -ver -oTh -azI -ver -iZF -azI -ver -ver -ver -pSD +igT +oNO +vEU +mCq +oNO +oMZ +mCq +oNO +oNO +oNO +iYl aCK bFg bFg @@ -47437,44 +47443,44 @@ puZ "} (145,1,1) = {" aad -aag -jqY -jqY -jqY -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -aju -aju -qrz -qrz -aju -aju -qrz -qrz -qrz -qrz -qrz -qrz -ibN +jvx +xhY +xhY +xhY +lCa +lCa +lCa +lCa +lCa +lCa +lCa +lCa +lCa +lCa +lCa +lCa +lCa +lCa +cee +cee +lCa +lCa +cee +cee +lCa +lCa +lCa +lCa +lCa +lCa +kcO axz -mQs -hWh -hWh -hWh -bsp -rAF +slD +jxf +jxf +jxf +xfa +rHr arX arX arX @@ -47487,9 +47493,9 @@ sYu sYu sYu lwo -cPK -tsZ -ecZ +ahV +tFH +rWx qep lwo iCF @@ -47504,21 +47510,21 @@ eOM eOM eOM arX -ecZ -ecZ -ecZ +rWx +rWx +rWx ktd -prb -ver -oTh -azI -ver -ver -azI -hIC -ver -ver -pSD +grx +oNO +vEU +mCq +oNO +oNO +mCq +fFY +oNO +oNO +iYl aCK bFg bIV @@ -47599,44 +47605,44 @@ puZ "} (146,1,1) = {" aad -lvq -qrz -jqY -jqY -jGZ -jqY -jqY -jqY -jGZ -jqY -jqY -jqY -jqY -jqY -jqY -jqY -aju -aju -jqY -jqY -aju -aju -jqY -jqY -aju -aju -jqY -jqY -jqY -jqY -jqY -czH -bsp -bsp -bsp -bsp -bsp -rAF +qgb +lCa +xhY +xhY +ies +xhY +xhY +xhY +ies +xhY +xhY +xhY +xhY +xhY +xhY +xhY +cee +cee +xhY +xhY +cee +cee +xhY +xhY +cee +cee +xhY +xhY +xhY +xhY +xhY +rJz +xfa +xfa +xfa +xfa +xfa +rHr arX eOM eOM @@ -47649,9 +47655,9 @@ sYu sYu lwo lwo -dYm -lpn -wwF +vum +xuD +egj tUo tUo tUo @@ -47666,21 +47672,21 @@ tUo tUo tUo tUo -wwF -byK -ecZ +egj +vLa +rWx aCH -toA -ver -oTh -azI -ver -ver -azI -aBm -ver -oTh -ngx +igT +oNO +vEU +mCq +oNO +oNO +mCq +ylh +oNO +vEU +jdm lHl dgS bIV @@ -47761,59 +47767,59 @@ puZ "} (147,1,1) = {" aad -ajN -qrz -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jGZ -jqY -jqY -jqY -aju -aju -jqY -jqY -aju -aju -jqY -jqY -aju -aju -jqY -jqY -jqY -jqY -jqY -qrz -bsp -bsp -bsp -bsp -bsp -rAF -adZ -adZ -sYu -lwo -eOM -lwo -lwo -sYu -sYu -sYu -lwo -lwo -syK -syK -dYm +wLQ +lCa +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +xhY +ies +xhY +xhY +xhY +cee +cee +xhY +xhY +cee +cee +xhY +xhY +cee +cee +xhY +xhY +xhY +xhY +xhY +lCa +xfa +xfa +xfa +xfa +xfa +rHr +otw +otw +sYu +lwo +eOM +lwo +lwo +sYu +sYu +sYu +lwo +lwo +rZF +rZF +vum qep lwo hIz @@ -47828,21 +47834,21 @@ eOM eOM eOM lwo -ecZ -tsZ -ecZ +rWx +tFH +rWx ktd -axK -ver -azo -azI -ver -ver -azI -aBm -ver -oTh -pSD +vRD +oNO +vXi +mCq +oNO +oNO +mCq +ylh +oNO +vEU +iYl aCK bFg bIV @@ -47923,45 +47929,45 @@ puZ "} (148,1,1) = {" aad -afw -jqY -jqY -jqY -qrz -qrz -qrz -kFJ -qrz -qrz -qrz -qrz -qrz -kFJ -qrz -qrz -qrz -qrz -kFJ -qrz -qrz -qrz -qrz -qrz -qrz -qrz -kFJ -qrz -qrz -qrz -ibN +jUA +xhY +xhY +xhY +lCa +lCa +lCa +rGm +lCa +lCa +lCa +lCa +lCa +rGm +lCa +lCa +lCa +lCa +rGm +lCa +lCa +lCa +lCa +lCa +lCa +lCa +rGm +lCa +lCa +lCa +kcO axz -qkr -tzH -tzH -tzH -tzH -vJh -adZ +nVh +vca +vca +vca +vca +epe +otw eOM aec lwo @@ -47990,21 +47996,21 @@ qep arX arX arX -ecZ -tsZ -ecZ +rWx +tFH +rWx ktd -lUQ -ver -oTh -azI -ver -ver -azI -aBm -oTh -oTh -pSD +qkj +oNO +vEU +mCq +oNO +oNO +mCq +ylh +vEU +vEU +iYl lwG bFg bFg @@ -48094,9 +48100,9 @@ oGg oGg oGg tTd -qrz -qrz -qrz +lCa +lCa +lCa tTd acT aek @@ -48108,9 +48114,9 @@ acT acT acT aDn -wHi -wHi -wHi +ebS +ebS +ebS aDn acT acT @@ -48123,7 +48129,7 @@ cKb cKb cKb cKb -hDs +aRP iXS sLs lwo @@ -48152,21 +48158,21 @@ arX qep qep arX -ecZ -pjV -ecZ +rWx +iic +rWx ktd -axM -ver -oTh -azI -aAh -ver -azI -hIC -aBZ -aCw -aCA +lIk +oNO +vEU +mCq +nDY +oNO +mCq +fFY +hVi +ewn +eOR ktd bFg bFg @@ -48198,9 +48204,9 @@ asz asz asz ndb -pCI -gmV -vTc +lVK +uSv +rkm asz asz asz @@ -48261,29 +48267,29 @@ xbz uYR oGg acT -rsa -vXh -vXh -mEV +exM +efO +efO +ryc acT -eqY -amP -pVm +fmJ +xPX +fkx aDn arA aek arA aDn -ycc -ujm -hwA -rTk +fwq +dUM +soa +ogc acT lwo qep kSh hyw -ade +qkY qep eOM eOM @@ -48318,16 +48324,16 @@ lwo arX qep ktd -axO -ver -azp -azK -ver -pKb -azK -ver -ver -aCx +ndm +oNO +mJh +rXF +oNO +nGx +rXF +oNO +oNO +gEd ktd ktd bIV @@ -48358,18 +48364,18 @@ pLf pLf asz crF -aXH -tHD +uGX +qrD crF crF -tHD -uEx +qrD +fpQ crF fNE -qud -tZA -ctC -ctC +bvY +hfT +uAZ +uAZ asz ayz ayz @@ -48418,34 +48424,34 @@ akM aoK aoK acT -iJY -agh -agh +wci +wvF +wvF oGg -agh -agh -agh -agh -ykq -acT -hrB -amP -sHc -acT -iJY -agh -agh +wvF +wvF +wvF +wvF +pkR +acT +vvs +xPX +ihF +acT +wci +wvF +wvF mMg -vey -hGH -hGH -rtv +seV +kfw +kfw +nvB acT qep lwo qep uSd -ade +qkY qep arX lwo @@ -48480,16 +48486,16 @@ lwo arX arX ktd -axP -vUL -vUL -ohb -ohb -ohb -ohb -vUL -vUL -aCA +xTc +iim +iim +ezJ +ezJ +ezJ +ezJ +iim +iim +eOR ktd cZk bIV @@ -48520,18 +48526,18 @@ pLf pLf asz crF -aXH -bJi +uGX +lCk crF crF -tHD -uEx +qrD +fpQ crF fNE -hyx -xFp -xFp -sHL +gBl +fAE +fAE +gAC asz kAd kVd @@ -48580,23 +48586,23 @@ akR aoK aoK acT -iJY -agh -agh +wci +wvF +wvF oGg -agh -agh -agh -agh -jUj -acT -amP -eZX -amP +wvF +wvF +wvF +wvF +gWb +acT +xPX +aXz +xPX afc -iJY -agh -agh +wci +wvF +wvF aDn acT acT @@ -48607,7 +48613,7 @@ qep eOM hIz eOM -ade +qkY aDm lwo eOM @@ -48645,10 +48651,10 @@ ktd ktd ktd ktd -ctJ -ctJ -ctJ -ctJ +ewu +ewu +ewu +ewu ktd ktd ktd @@ -48683,17 +48689,17 @@ pLf asz asz asz -tpL -orO -orO -tJY +sdO +rGx +rGx +bQf asz asz asz -gSJ -bJi -bJi -bJi +shG +lCk +lCk +lCk asz ltA dnj @@ -48742,9 +48748,9 @@ akS aoK aoK api -iJY -agh -agh +wci +wvF +wvF oGg oGg oGg @@ -48752,18 +48758,18 @@ wfL oGg oGg oGg -aef -aef -fkq +fsL +fsL +guS acT -iJY -agh -agh +wci +wvF +wvF acT -cRs -hwA -hwA -wOq +eYl +soa +soa +ihP acT eOM lwo @@ -48804,16 +48810,16 @@ arX lwo arX ktd -axQ -ayB -azq -ohb -ohb -ohb -ohb -kAT -aBV -aCz +wTh +osA +pBh +ezJ +ezJ +ezJ +ezJ +hBm +xHg +dCI ktd cZk bIV @@ -48844,11 +48850,11 @@ pLf asz asz asz -ahu -uEx -bJi -bJi -aXH +rWu +fpQ +lCk +lCk +uGX rZt asz asz @@ -48904,28 +48910,28 @@ ncB aoK iqC acT -iJY -agh -skG +wci +wvF +oRx acT -axG -yeu -axG -axG -axG +kIY +mGR +kIY +kIY +kIY oGg acT acT acT acT -axG -axG -axG +kIY +kIY +kIY acT -iJY -agh -agh -pFt +wci +wvF +wvF +nUP anZ lwo eOM @@ -48966,16 +48972,16 @@ arX arX arX ktd -axR -ver -ver -ver -ver -ver -ver -ver -ver -bYd +wrp +oNO +oNO +oNO +oNO +oNO +oNO +oNO +oNO +bWD ktd ktd bIV @@ -49004,22 +49010,22 @@ asz asz asz asz -ufb -wnK -jaU -uEx -bJi -bJi -aXH +bYc +xQb +sWq +fpQ +lCk +lCk +uGX rZt rZt rZt fNE -mWA +hJz rZt iEF -etV -tNN +kOD +hvw fNE xgc xgc @@ -49066,28 +49072,28 @@ acT acT acT aDn -vkq -axG -axG +bRj +kIY +kIY aek -axG +kIY aoK hUM aoK -axG +kIY xbz -fMe -yeu -aAM +vgb +mGR +kBU acT -iJY -agh -agh -vWf -iJY -agh -agh -ahU +wci +wvF +wvF +qCh +wci +wvF +wvF +sQk acT arX arX @@ -49128,17 +49134,17 @@ eOM arX eOM aCH -toA -ver -ver -ver -ver -ver -ver -ver -ver -fEO -bws +igT +oNO +oNO +oNO +oNO +oNO +oNO +oNO +oNO +xdm +mYa ktd bFg bIV @@ -49166,22 +49172,22 @@ abF abF acg asz -aUY -vjs -aXw -kaL -wnK -wnK -aXH +ycB +oru +qag +ugZ +xQb +xQb +uGX rZt rZt rZt fNE -ril +dAn rZt iEF -far -nVL +knW +qCm fNE kVd xgc @@ -49228,34 +49234,34 @@ akL aoK aoK acT -asd -agh -agh +rNv +wvF +wvF aek -axG +kIY onl aNn aTZ -rgu +cer xbz -pId -agh -agh +hKe +wvF +wvF mMg -iJY -agh -agh -axG -iJY -agh -agh -lvW +wci +wvF +wvF +kIY +wci +wvF +wvF +cYD acT psl eOM arX arX -ade +qkY aOg arX lwo @@ -49290,17 +49296,17 @@ eOM arX qep ktd -toA -ver -ver -ver -ver -ver -ver -ver -ver -ver -ffo +igT +oNO +oNO +oNO +oNO +oNO +oNO +oNO +oNO +oNO +tzy ktd cZk bIV @@ -49328,13 +49334,13 @@ abJ abG acj asz -aUX -aWB -gTU -wnK -wnK -wnK -aXH +eNi +mDE +xeZ +xQb +xQb +xQb +uGX rZt rZt rZt @@ -49390,34 +49396,34 @@ vHT amJ aoK acT -ase -agh -agh +vza +wvF +wvF aek -axG +kIY aoK aVR aoK -axG +kIY xbz -fMe -axG -nIB -acT -iJY -agh -wfB -axG -iJY -agh -agh -wHr +vgb +kIY +cCn +acT +wci +wvF +mkF +kIY +wci +wvF +wvF +wpx acT cOU arX eOM arX -ade +qkY eOM eOM sYu @@ -49452,17 +49458,17 @@ arX arX qep qzv -toA -ver -ver -ver -ver -oTh -oTh -ver -ver -ver -pSD +igT +oNO +oNO +oNO +oNO +vEU +vEU +oNO +oNO +oNO +iYl rke bIV bFg @@ -49490,13 +49496,13 @@ abJ abJ aSK aTR -rMI -oZs +bPd +kxE azm -bJi +lCk rZt -wnK -aXH +xQb +uGX rZt rZt rZt @@ -49552,34 +49558,34 @@ akT amK anP acT -fBQ -agh -agh +efE +wvF +wvF acT -axG -axG -axG -axG -axG +kIY +kIY +kIY +kIY +kIY oGg acT acT acT acT -iJY -agh -agh -axG -iJY -agh -agh -hif +wci +wvF +wvF +kIY +wci +wvF +wvF +kYe acT qep uSd eOM eOM -ade +qkY eOM lwo arX @@ -49614,17 +49620,17 @@ arX qep qep qzv -toA -ver -ver -ver -ver -ver -oTh -ver -ver -ver -pSD +igT +oNO +oNO +oNO +oNO +oNO +vEU +oNO +oNO +oNO +iYl rke bFg bFg @@ -49652,13 +49658,13 @@ abG abJ abJ rZt -kxx -oZs -bJi -bJi -ahZ -eRG -aXH +lLR +kxE +lCk +lCk +kIA +fhQ +uGX rZt rZt rZt @@ -49714,9 +49720,9 @@ aoK aoK aoK acT -atS -agh -agh +jxV +wvF +wvF acT acT acT @@ -49724,18 +49730,18 @@ acN acT oGg oGg -axG -axG -yeu -axG -axG -vBm -axG -acT -iJY -agh -agh -azY +kIY +kIY +mGR +kIY +kIY +mdw +kIY +acT +wci +wvF +wvF +vIT aDn acT acT @@ -49776,17 +49782,17 @@ arX arX arX qzv -toA -ver -ver -ver -aAh -ver -wfl -ver -ver -ver -pSD +igT +oNO +oNO +oNO +nDY +oNO +ocE +oNO +oNO +oNO +iYl rke bFg bFg @@ -49814,13 +49820,13 @@ abG abJ abJ rZt -kxx -oZs -bJi -bJi -bJi -wnK -bQx +lLR +kxE +lCk +lCk +lCk +xQb +oaT asz asz qkL @@ -49876,37 +49882,37 @@ aoK aoK aoK apj -iJY -agh -agh -agh -agh -agh -agh -agh -xbP +wci +wvF +wvF +wvF +wvF +wvF +wvF +wvF +lUU agr -axG -agh -agh -agh -iJY -agh -agh +kIY +wvF +wvF +wvF +wci +wvF +wvF acT -iJY -agh -agh -sJP +wci +wvF +wvF +mAu acT -axG -pyI -axG +kIY +qZW +kIY acT -aYU -odb -hwA -lOT +kMs +dPI +soa +wYT acT lwo arX @@ -49938,17 +49944,17 @@ arX amQ qep qzv -toA -ver -ver -ver -ver -ver -ver -ver -htb -ver -pSD +igT +oNO +oNO +oNO +oNO +oNO +oNO +oNO +eme +oNO +iYl rke bFg bFg @@ -49976,16 +49982,16 @@ abJ abJ abJ rZt -rMI -acY +bPd +bOq rZt -bJi +lCk rZt -wnK -aXH +xQb +uGX rkc -wnK -wnK +xQb +xQb asz asz dTj @@ -50038,37 +50044,37 @@ aoK aoK aoK acT -iJY -agh -agh -agh -agh -kbJ -agh -agh -xbP +wci +wvF +wvF +wvF +wvF +sid +wvF +wvF +lUU ajO -axG -agh -agh -agh -iJY -agh -agh -acT -iJY -agh -agh -lvW -acT -eNr -axG -uxO -acT -msN -agh -agh -gul +kIY +wvF +wvF +wvF +wci +wvF +wvF +acT +wci +wvF +wvF +cYD +acT +cnO +kIY +cPL +acT +pER +wvF +wvF +jpb acT tLW arX @@ -50100,17 +50106,17 @@ arX arX arX axN -toA -aAh -ver -mVl -ver -ver -aAh -ver -ver -ver -nJu +igT +nDY +oNO +gXO +oNO +oNO +nDY +oNO +oNO +oNO +sJz ktd cZk bFg @@ -50138,17 +50144,17 @@ abJ abG ach asz -aWC -aWs -qkR -eRG -sbd -wnK -aXH +ubD +may +myC +fhQ +xMv +xQb +uGX rkc -wnK +xQb rZt -fir +kQy rqK asz rZt @@ -50200,37 +50206,37 @@ ala ala acT aDn -iJY -agh -agh -tvo +wci +wvF +wvF +tGI acT acT aSz acT buJ aDn -axG -axG -axG -axG -axG -axG -mWw -acT -aMw -agh -agh -wHr +kIY +kIY +kIY +kIY +kIY +kIY +cvI +acT +phX +wvF +wvF +wpx aDn acT aiQ acT acT -igl -agh -agh -jAv +nle +wvF +wvF +jVv acT arX arX @@ -50262,17 +50268,17 @@ arX arX arX ktd -axI -ver -ver -ver -htb -ver -ver -ver -ver -pNf -oDJ +buM +oNO +oNO +oNO +eme +oNO +oNO +oNO +oNO +shp +fsU ktd gJo lTc @@ -50300,17 +50306,17 @@ abM abM ack asz -aUU -aXh -mYX -bVr -aXh -aXh -bJf +msp +lXd +xhB +tut +lXd +lXd +yeH rkc -wnK +xQb rZt -hMY +xvz asz asz crF @@ -50361,10 +50367,10 @@ acT acT acT acT -piW -iJY -agh -agh +raH +wci +wvF +wvF acT acT gvT @@ -50376,25 +50382,25 @@ aek aek aek aDn -iJY -agh -tvo +wci +wvF +tGI acT -kIs -agh -agh -hif +vqS +wvF +wvF +kYe acT -jop -hwA -pHz +uLp +soa +dmH acT -bPJ -agh -agh -wCh +iQZ +wvF +wvF +rju acT -edW +iGf arX eOM lwo @@ -50424,16 +50430,16 @@ eOM arX arX ktd -axK -ver -ver -ver -htb -ver -ver -ver -ver -bYd +vRD +oNO +oNO +oNO +eme +oNO +oNO +oNO +oNO +bWD ktd ktd gJo @@ -50470,11 +50476,11 @@ bDx asz kXt asz -wnK +xQb rZt asz asz -kPX +cBw rZt rZt asz @@ -50523,38 +50529,38 @@ acT acT acT acT -fWb -iJY -agh -agh -axG +gsa +wci +wvF +wvF +kIY aek lGq fGG lNV buJ aDn -fSm -aes -aeM +olE +ofH +xvB aDn aek aek aDn aDn -cgQ -agh -agh -pFt +iEN +wvF +wvF +nUP aiu -iJY -agh -gLu +wci +wvF +aWf acT -tMS -agh -agh -jAv +qls +wvF +wvF +jVv acT arX eOM @@ -50586,16 +50592,16 @@ eOM lwo bjv ktd -axP -smy -smy -lOO -qfq -ohb -ohb -smy -smy -gCy +xTc +mju +mju +byM +ekg +ezJ +ezJ +mju +mju +vjO ktd oQl gJo @@ -50618,9 +50624,9 @@ gik gik wXs asz -aNN -afN -afP +otn +uFc +txh fNE rZt rZt @@ -50630,13 +50636,13 @@ gGf rZt rZt qVo -wnK -wnK -wnK +xQb +xQb +xQb rZt asz asz -hLB +qeS rZt rZt asz @@ -50681,42 +50687,42 @@ acT aKq ajO acT -aim -ale -amL +hmp +aAw +uQb acT aDn -iJY -agh -agh -axG +wci +wvF +wvF +kIY aek oYw oYw lGq xbz -agh -agh -agh -agh -acT -adY -agh -adp -acT -igl -agh -agh -pFt +wvF +wvF +wvF +wvF +acT +tNQ +wvF +jan +acT +nle +wvF +wvF +nUP ajO -iJY -agh -rRO +wci +wvF +xlP aDn -qeH -agh -agh -gul +irB +wvF +wvF +jpb acT arX eOM @@ -50752,9 +50758,9 @@ ktd ktd ktd ktd -tXd -ado -pSD +saj +vGC +iYl ktd ktd ktd @@ -50780,9 +50786,9 @@ gik xHv wXs bXo -kxx +lLR bIh -afQ +eTc fNE rZt rZt @@ -50792,13 +50798,13 @@ rZt rZt rZt rkc -wnK +xQb rZt rZt rZt asz asz -hMY +xvz rZt rZt asz @@ -50843,42 +50849,42 @@ acT ajO aQX acT -ahO -agh -agh -anR +jOr +wvF +wvF +vsK acT -iJY -agh -agh -axG +wci +wvF +wvF +kIY aek oYw oYw goS xbz -agh -agh -agh -fIz -acT -age -agh -ipY -acT -pCJ -agh -agh -ylZ -acT -iJY -agh -pFt +wvF +wvF +wvF +jRQ +acT +jGP +wvF +fMR +acT +tos +wvF +wvF +rbz +acT +wci +wvF +nUP nej -iJY -agh -agh -jAv +wci +wvF +wvF +jVv acT arX eOM @@ -50913,11 +50919,11 @@ oQl oQl oQl ktd -xdk -tXd -aAh -pSD -xdk +eZV +saj +nDY +iYl +eZV ktd oQl oQl @@ -50942,17 +50948,17 @@ xHv goe wXs lSU -aNL -nmi -afP +mmR +hjT +txh asz asz aTQ asz asz -wnK -dTU -wnK +xQb +nTk +xQb asz asz qkL @@ -51005,42 +51011,42 @@ ags ajO ajO acT -ahP -ald -agh -anU +jor +ocx +wvF +vSK acT -iJY -agh -agh -axG +wci +wvF +wvF +kIY aek oYw oYw npi xbz -syV -agh -agh -pxi -acT -afv -agh -jOA -acT -sxp -hCX -ahD -fEf -acT -uhV -hGH -bpH +bov +wvF +wvF +gzg +acT +dtb +wvF +hpD +acT +vCf +gMG +kJO +etZ +acT +dpg +kfw +xwk aDn -rjw -vTh -hGH -pLy +ryV +jqB +kfw +iCh acT eOM eOM @@ -51075,11 +51081,11 @@ oQl oQl oQl ktd -xdk -ush -vUL -aCA -xdk +eZV +rkh +iim +eOR +eZV ktd oQl oQl @@ -51105,23 +51111,23 @@ xHv wXs lSU lSU -afF -sBW -xDq -aSI -afF -aUT +fSp +sQr +sFN +mNx +fSp +jsM asz -rMI -rMI -rMI +bPd +bPd +bPd asz -emq -wnK -dTU -wnK -dTU -hfm +nTf +xQb +nTk +xQb +nTk +fUf asz rZt rZq @@ -51167,14 +51173,14 @@ ajO ajO ajO aDn -aim -nfg -agh -anY +hmp +aOh +wvF +mRw acT -cpb -agh -agh +vhT +wvF +wvF acT acT lGq @@ -51238,9 +51244,9 @@ oQl oQl ktd ktd -xdk -xdk -xdk +eZV +eZV +eZV ktd ktd oQl @@ -51267,23 +51273,23 @@ xHv wXs lSU lSU -tSI +oGp rZt gLv rZt gLv -afF +fSp wBf -wnK -dTU -wnK +xQb +nTk +xQb asz -kbZ -chU -gTv -sHf -tRq -chU +eyb +pzV +rpV +dAg +dse +pzV ogu rZt rZt @@ -51329,31 +51335,31 @@ ajO ajO ajO aSa -maW -maW -agh -nfg +ewd +ewd +wvF +aOh acT -iJY -agh -agh -adR +wci +wvF +wvF +bGf acT aSz acT acT -mNK -lPC +nql +pSk acT -nHt -cYa -jnW -iJA -cYa -vcU +qSN +gwW +bkp +qWI +gwW +sEH acT -nXG -nXG +cZr +cZr acT acT lNV @@ -51429,23 +51435,23 @@ mIL bme lSU lSU -aOv -afF +jQD +fSp rZt rZt gLv -afF +fSp wBf -wnK -dTU -pkK +xQb +nTk +fJP asz -emq -chU -kbZ -chU -gTv -chU +nTf +pzV +eyb +pzV +rpV +pzV fNE uvU rZt @@ -51473,7 +51479,7 @@ bJj bJj qMc bJj -rbq +bxG osE gpz gpz @@ -51491,32 +51497,32 @@ ajV ajV aDn aDn -agh -maW -agh -nfg +wvF +ewd +wvF +aOh acT -iJY -agh -agh -axG +wci +wvF +wvF +kIY acT ajO aDn -bvC -agh -agh +ogI +wvF +wvF acT -umm -agh -agh -agh -agh -uXQ +gDc +wvF +wvF +wvF +wvF +knt acT -xCj -kFd -bnm +gqN +sti +rfH acT acT acT @@ -51592,22 +51598,22 @@ bme lSU lSU lSU -aSI -aRs -uRt +mNx +cKv +pGA flN -sBW +sQr rZt -nOB -rMI -rMI +dDU +bPd +bPd asz -tRq -wdy -dTU -bZZ -dTU -twc +dse +pwh +nTk +hAv +nTk +luX fNE rZt uvU @@ -51652,35 +51658,35 @@ acH amX wHZ acT -afx -agh -maW -agh +eIj +wvF +ewd +wvF aDn aDn -iJY -agh -agh -axG +wci +wvF +wvF +kIY acT ajO aDn -cbt -agh -agh +iJl +wvF +wvF bFC -umm -agh -hqC -hqC -agh -uXQ +gDc +wvF +duD +duD +wvF +knt aek -agh -agh -med -wvW -agh +wvF +wvF +iFn +vNA +wvF aek qep sYu @@ -51771,8 +51777,8 @@ tDg iWX wZh asz -rMI -kdy +bPd +hqO asz asz asz @@ -51814,35 +51820,35 @@ acH anq bVS acT -afx -agh -maW -agh +eIj +wvF +ewd +wvF aDn -axG -axG -axG -axG -axG +kIY +kIY +kIY +kIY +kIY aSa ajO aSa -agh -agh -evY -acT -ilt -eFG -ihh -pnK -ceS -uXQ +wvF +wvF +jcC +acT +oUT +sVR +xig +bvM +xpE +knt fkb -agh -agh -agh -agh -agh +wvF +wvF +wvF +wvF +wvF fkb sYu sYu @@ -51922,22 +51928,22 @@ kEs kEs flN eit -vTc +rkm asz -coj -coj +vvV +vvV asz -dtE -goj -goj -goj -goj -goj -goj -aiD -goj +qiB +nyt +nyt +nyt +nyt +nyt +nyt +jnh +nyt asz -agz +sCx asz asz asz @@ -51959,9 +51965,9 @@ gpz bJj bJj gpz -rbq +bxG fXX -rbq +bxG mwJ fXX fXX @@ -51976,35 +51982,35 @@ acH anF ajO acT -afx -agh -maW -maW +eIj +wvF +ewd +ewd qgj -iJY -agh -agh -agh -axG +wci +wvF +wvF +wvF +kIY acT aSz acT -ifN -awA +wWb +iNH acT acT -umm -agh -cTo -cLi -agh -uXQ +gDc +wvF +aup +bOg +wvF +knt aek -vrM -agh -agh -auB -tLz +mcV +wvF +wvF +xyl +uUa aek arX sYu @@ -52085,25 +52091,25 @@ eit kEs kEs flN -rMI -dTU -dTU -rMI -goj -chU -goj -chU -chU -chU -goj -chU -aiD +bPd +nTk +nTk +bPd +nyt +pzV +nyt +pzV +pzV +pzV +nyt +pzV +jnh asz -twt -agY -aha -arK -arU +paE +thZ +aQF +dKU +cMy asz asz pLf @@ -52139,32 +52145,32 @@ ajV ajV aDn aDn -agh -maW -maW +wvF +ewd +ewd ajO -iJY -agh -agh -agh -axG -axG -axG +wci +wvF +wvF +wvF +kIY +kIY +kIY acT aek aek acT -whU -umm -eFG -ukv -cTo -ceS -uXQ +lsG +gDc +sVR +xAm +aup +xpE +knt acT -ylO -hzZ -jxJ +hJU +hwz +iCM acT acT acT @@ -52246,27 +52252,27 @@ flN kEs flN flN -vTc -rMI -dTU -dTU -rMI -goj -wnK -goj -wnK -wnK -wnK -goj -wnK -goj +rkm +bPd +nTk +nTk +bPd +nyt +xQb +nyt +xQb +xQb +xQb +nyt +xQb +nyt fNE -aud +bug rZt rZt rZt -nBh -ajg +ioH +cWc asz qfZ jrg @@ -52301,31 +52307,31 @@ ajO ajO ajO acT -miW -all -axG -acT -iJY -agh -agh -agh -agh -agh -axG -acT -iEp -iEp -jbE -hRK -tcG -nMP -uZJ -uZJ -agh -uXQ -acT -rKW -med +iPl +jzE +kIY +acT +wci +wvF +wvF +wvF +wvF +wvF +kIY +acT +qCN +qCN +rjH +lnm +lMY +pJO +xpw +xpw +wvF +knt +acT +frY +iFn acT acT qep @@ -52408,12 +52414,12 @@ kEs kEs fgB kEs -kOi +uid lSU -coj -coj +vvV +vvV lSU -dtE +qiB rZt rZt rZt @@ -52421,14 +52427,14 @@ rZt mgT rZt uvU -goj +nyt fNE -aud -miD -ptr -ptr +bug +oJr +ofp +ofp rZt -aCB +qPF aeU fXX bJj @@ -52463,28 +52469,28 @@ ajO aQX ajO acT -kHB -agh -amN -acT -axG -axG -axG -axG -xkf -axG -axG +dnO +wvF +sga +acT +kIY +kIY +kIY +kIY +lAg +kIY +kIY ijP -jbE -jbE -jbE -osh -hnf -cBe -cBe -cBe -cBe -dWp +rjH +rjH +rjH +dwa +xiz +gBW +gBW +gBW +gBW +xIy acT acT acT @@ -52570,30 +52576,30 @@ flN flN kEs flN -kOi +uid lSU lSU lSU lSU -bxW -wnK -goj -aNf -rZt -nBs -goj -txU -goj +sHs +xQb +nyt +jFA +rZt +qSi +nyt +bgc +nyt fNE -aud -ptr -miD -miD +bug +ofp +oJr +oJr rZt -ava +pbz asz qfZ -dVw +rrb gpz gpz bJj @@ -52607,9 +52613,9 @@ bJj jrg jrg amu -rbq -rbq -rbq +bxG +bxG +bxG amu sax sax @@ -52625,28 +52631,28 @@ ajO ajO ajO acT -amh -aly -amh +gZK +pUn +gZK acT -bdT -maW -bdT +bqd +ewd +bqd acT acT acT acT aDn -acx -jbE -jbE -tlX -osh -osh -osh -osh -osh -cKB +jNv +rjH +rjH +kjh +dwa +dwa +dwa +dwa +dwa +sZJ acT acT acT @@ -52732,27 +52738,27 @@ kEs agw agw kEs -wXh +oQn lSU cvn lSU -wOO -goj -chU -goj -lfk -rZt -uII -aiD -chU -goj +iKI +nyt +pzV +nyt +uFO +rZt +eCM +jnh +pzV +nyt fNE -aud +bug rZt rZt -mRU -ptr -aue +wKS +ofp +gNH asz jrg bJj @@ -52769,9 +52775,9 @@ bJj osE jrg iTQ -rbq -rbq -rbq +bxG +bxG +bxG amu sax puZ @@ -52791,38 +52797,38 @@ acT acT acT aDn -axG -maW -axG +kIY +ewd +kIY aDn -sOg -lPh -cYa -aVF -cYa -cYa -cYa -xnM -rMc -xnM -cYa -cYa -cYa -nNj -acT -acT -ahl -ahE -ahW -aiv -aiL -aiT +mGa +vRr +gwW +oYi +gwW +gwW +gwW +koS +jSd +koS +gwW +gwW +gwW +knH +acT +acT +pKs +uJP +rbG +iLY +ofi +qjw aDn aDn aDn aDn -ajU -ajX +dsH +jWx aDn aDn sYu @@ -52891,28 +52897,28 @@ lSU ehO jis lSU -acU -acU +mGz +mGz lSU lSU lSU fgH lSU -bYk -goj -chU -dsY -uKo -rZt -wjK -goj -vTj -goj +mBq +nyt +pzV +lUA +iVe +rZt +emV +nyt +aNu +nyt asz -agm +nzD rZt rZt -ard +beD asz asz asz @@ -52953,39 +52959,39 @@ ajO ajO ajO aSa -axG -maW -axG +kIY +ewd +kIY aek -vhG -agh -agh -vcx -agh -agh -agh -afh -agh -afh -agh -agh -agh -uXQ -acT -agJ -jay -kce -agh -aji -agh -lXj -aiZ -acT -ajJ -qJa -jay -uXQ -iuR +cJA +wvF +wvF +uZn +wvF +wvF +wvF +ddp +wvF +ddp +wvF +wvF +wvF +knt +acT +wDH +wHo +lFJ +wvF +iHE +wvF +eEW +kRC +acT +nwo +cRv +wHo +knt +mSU aDn eOM sYu @@ -53060,21 +53066,21 @@ lSU lSU dwQ lSU -qRo -goj -wnK -goj -kMJ -rZt -neS -goj -wnK -oag +uvF +nyt +xQb +nyt +tjU +rZt +fLw +nyt +xQb +fVh asz -agl +tgu rZt rZt -apk +oFm asz jrg jrg @@ -53115,38 +53121,38 @@ aQX ajO ajO aDn -axG -maW -axG +kIY +ewd +kIY aek -laK -agh -agh -dcV -agh -agh -agh -aff -afh -aff -agh -tCi -agh -feR -acT -xRi -agh -fzA -agh -aji -agh -agh -uXQ -acT -umm -agh -agh -uXQ +tua +wvF +wvF +rwh +wvF +wvF +wvF +bMV +ddp +bMV +wvF +wjy +wvF +tVy +acT +nTK +wvF +xrD +wvF +iHE +wvF +wvF +knt +acT +gDc +wvF +wvF +knt aDn aDn eOM @@ -53222,21 +53228,21 @@ rRP lSU cvn lSU -exm -goj -rWS -fVI +csW +nyt +hyf +mua rZt rZt rZt -goj -chU -goj +nyt +pzV +nyt aeU rZt rZt rZt -aCB +qPF asz jrg jrg @@ -53277,38 +53283,38 @@ acT acT acT acT -tWv -axG -bdT +oTO +kIY +bqd aek -cJy -agh -agh -agh -agh -agh -agh -afM -agh -ahy -agh -agh -agh -uXQ -acT -agK -agh -aix -agh -aix -agh -agh -uXQ +fim +wvF +wvF +wvF +wvF +wvF +wvF +tdn +wvF +plk +wvF +wvF +wvF +knt +acT +cQP +wvF +isW +wvF +isW +wvF +wvF +knt ajw -umm -agh -agh -uXQ +gDc +wvF +wvF +knt ajw sYu sYu @@ -53385,20 +53391,20 @@ lSU lSU lSU lSU -bxW -chU -goj +sHs +pzV +nyt rZt rZt rZt -goj -chU -oag +nyt +pzV +fVh asz -aud +bug rZt rZt -tiw +lNP asz jrg jrg @@ -53433,44 +53439,44 @@ puZ acH aDn acT -wWu -afE -aiy -alz -pGf +hYR +gvU +ejm +bAS +wUs acT -wWu -apv -pGf +hYR +nzK +wUs aDn -rfc -agh -tCi -kEy -agh -agh -agh -aff -afh -aff -agh -agh -tCi -uXQ +nCr +wvF +wjy +qPe +wvF +wvF +wvF +bMV +ddp +bMV +wvF +wvF +wjy +knt ajw -umm -agh -agh -agh -agh -agh -agh -uXQ +gDc +wvF +wvF +wvF +wvF +wvF +wvF +knt ajO -umm -agh -agh -uXQ +gDc +wvF +wvF +knt ajO sYu sYu @@ -53547,20 +53553,20 @@ dwQ dwQ bXo rZt -goj -vuj -goj -eaz +nyt +lFF +nyt +aHs rZt -nwd -goj -wnK -goj +dtK +nyt +xQb +nyt fNE -aud +bug rZt rZt -ahT +iDf asz jrg jrg @@ -53595,44 +53601,44 @@ puZ acH aDn acT -gWF -amP -amP -amP -amU +fFk +xPX +xPX +xPX +xhZ acT -bhS -amP -amU +hAC +xPX +xhZ aek -vCl -agh -agh -agh -agh -agh -agh -afh -agC -afh -agh -agh -agh -uXQ +yaf +wvF +wvF +wvF +wvF +wvF +wvF +ddp +dXS +ddp +wvF +wvF +wvF +knt ajO -vKx -cBe -cBe -cBe -mfr -agh -agh -uXQ -acT -bzZ -uzs -ajK -uXQ +hhH +gBW +gBW +gBW +wet +wvF +wvF +knt +acT +tHO +dHW +nBg +knt aDn aDn sYu @@ -53676,10 +53682,10 @@ fQX iMb fIT fIT -tPz -aDF -aDR -aDR +omE +vdo +kOC +kOC fIT fIT fQX @@ -53709,20 +53715,20 @@ dwQ dwQ lSU lQm -goj -chU -goj -dqH -rZt -sCl -onM -chU -goj +nyt +pzV +nyt +vyi +rZt +nVZ +rhc +pzV +nyt fNE -afX +rAB rZt rZt -ahS +ddk asz jrg jrg @@ -53757,45 +53763,45 @@ puZ acH aDn acT -aeq -amP -aiG -amP -amU +tvX +xPX +wHV +xPX +xhZ aoe -bhS -amP -amU +hAC +xPX +xhZ aek -scN -eIe -cBe -iQP -cBe -ofU -cBe -kEB -rjQ -kEB -cBe -cBe -cBe -dWp +niG +fnd +gBW +hyU +gBW +qqC +gBW +rLl +aOF +rLl +gBW +gBW +gBW +xIy acT acT acT acT acT -oHz -agh -agh -uXQ +epO +wvF +wvF +knt acT -umm -agh -agh -lXj -qpq +gDc +wvF +wvF +eEW +rVS acT sYu sYu @@ -53837,12 +53843,12 @@ cKL fQX iMb fIT -aDo -wRa -wRa -wRa -aJc -tPz +lDu +hTJ +hTJ +hTJ +iXW +omE fIT fQX iMb @@ -53871,20 +53877,20 @@ lSU lSU lSU lSU -goj -chU -dsY -hTb +nyt +pzV +lUA +jqU pRH -lpA -goj -chU -goj +sDv +nyt +pzV +nyt fNE -afV +kFr rZt rZt -aCB +qPF asz jrg jrg @@ -53919,45 +53925,45 @@ puZ acH aDn acT -aet -amP -aiH -amP -anb +kyj +xPX +cvh +xPX +njK acT -bhS -amP -amU +hAC +xPX +xhZ acT acT acT acT acT -rzI -osh -pNM -osh -osh -osh -osh -osh -osh -ljS +mny +dwa +bKC +dwa +dwa +dwa +dwa +dwa +dwa +mdz acT -aii -uVa -ahQ +gcq +bJT +sGt acT -umm -agh -agh -feR +gDc +wvF +wvF +tVy acT -aeh -agh -agh -agh -kdW +cWP +wvF +wvF +wvF +oDV acT sYu sYu @@ -53999,12 +54005,12 @@ cKL fQX iMb fIT -aDq -wRa -wRa -wRa -aDW -aXZ +bOu +hTJ +hTJ +hTJ +nWv +wTk fIT fQX iMb @@ -54033,20 +54039,20 @@ gpb adC adC lSU -goj -wnK -goj -gKE +nyt +xQb +nyt +rVB pue -iYc -onM -wnK -goj +uVZ +rhc +xQb +nyt asz -afz -azH -agZ -aUS +qBs +idJ +qNx +tWO asz jrg jrg @@ -54068,7 +54074,7 @@ sUD hXH apD hXH -czI +gBS puZ puZ puZ @@ -54081,45 +54087,45 @@ puZ acH aDn acT -aev -hms -hMn -hms -xEw +biz +iMj +nhp +iMj +bwo acT -bhS -amP -oFX -pGf +hAC +xPX +fOD +wUs acT aFJ kmM acT -pLn -agh -agh -agh -agh -agh -agh -agh -agh -uyJ -acT -aia -tCi -agh +dZA +wvF +wvF +wvF +wvF +wvF +wvF +wvF +wvF +aZz +acT +mmt +wjy +wvF mah -umm -agh -agh -uXQ +gDc +wvF +wvF +knt acT -ygn -ajL -ajL -agh -akl +ocf +eUY +eUY +wvF +sUF acT lwo sYu @@ -54162,10 +54168,10 @@ jAL iMb fIT fIT -aDE -aDG -wRa -vIi +pYq +lwV +hTJ +uPB fIT fIT iMb @@ -54195,7 +54201,7 @@ dwQ dwQ dwQ lSU -dtE +qiB rZt rZt iXr @@ -54203,7 +54209,7 @@ pue wui rZt rZt -goj +nyt asz asz asz @@ -54249,39 +54255,39 @@ acT alQ acT acT -bhS -amP -amP -amU +hAC +xPX +xPX +xhZ acT qDT eAZ acT npM -cso -agh +kvS +wvF npM npM npM npM -agh -cso +wvF +kvS npM acT -aii -agh -tCi +gcq +wvF +wjy acT -umm -agh -agh -uXQ +gDc +wvF +wvF +knt acT -vKx -cBe -mfr -nAY -clz +hhH +gBW +wet +aqj +trM acT eOM sYu @@ -54357,15 +54363,15 @@ adj dwQ adH lSU -goj -wnK -goj -wnK -wnK -wnK -goj -txU -goj +nyt +xQb +nyt +xQb +xQb +xQb +nyt +bgc +nyt rZt rZt flN @@ -54404,45 +54410,45 @@ puZ (188,1,1) = {" acH acT -adX -wWu -afL -aiO -apv -apv -aor -gjg -amP -amP -oah +kSU +hYR +cij +opE +nzK +nzK +uyp +wxN +xPX +xPX +pAx aDn eAZ eAZ aDn npM -cso -agh -cso -cso -cso -cso -agh -cso +kvS +wvF +kvS +kvS +kvS +kvS +wvF +kvS npM acT acT -aii -ahR +gcq +axh acT -uTB -cBe -cBe -dWp +frw +gBW +gBW +xIy acT acT acT -ajW -ajY +eFs +wtR aDn aDn lwo @@ -54519,15 +54525,15 @@ ada dwQ dwQ adI -goj -chU -goj -chU -chU -chU -goj -chU -aiD +nyt +pzV +nyt +pzV +pzV +pzV +nyt +pzV +jnh rZt flN rZt @@ -54566,42 +54572,42 @@ puZ (189,1,1) = {" acH acT -adX -bhS -amP -amP -amP -amP -aos -amP -amP -amP -gBr +kSU +hAC +xPX +xPX +xPX +xPX +xEL +xPX +xPX +xPX +rOY aek oYw eAZ aek -eXL -cso -agh +aZy +kvS +wvF npM npM npM npM -agh -cso -qdd -qAL +wvF +kvS +rMs +rgF acT acT acT acT acT -kuM -jVp -jVp -wMC -ixX +fFu +poV +poV +lbf +wZb aDn aDn aDn @@ -54643,11 +54649,11 @@ oQl oQl jAL iMb -foc -jjX -jjX -jjX -vip +bsz +ihl +ihl +ihl +fPX iMb pqj pqj @@ -54681,17 +54687,17 @@ ada ady adE lSU -goj -goj -goj -goj -goj -goj -goj -goj -goj -wnK -wnK +nyt +nyt +nyt +nyt +nyt +nyt +nyt +nyt +nyt +xQb +xQb dwQ flN fXX @@ -54728,45 +54734,45 @@ puZ (190,1,1) = {" acH acT -adX -bhS -amP -amP -amP -amP -amP -amP -amP -amP -amU +kSU +hAC +xPX +xPX +xPX +xPX +xPX +xPX +xPX +xPX +xhZ aek oYw oYw aek -vOP -mfr -agh -agh -agh -agh -agh -agh -nAY -dWp -osh +uVp +wet +wvF +wvF +wvF +wvF +wvF +wvF +aqj +xIy +dwa acT jVI kQF kzE acT -qOD +bnP kTZ -iLS -mms -xjg +gld +cOF +hdP aek -vBl -itG +hSC +hpz aDn lwo eOM @@ -54805,11 +54811,11 @@ iMb iMb iMb iMb -nqK -vRW -cwU -wQr -pAx +qIm +ikr +pxQ +fUk +maO pqj pqj iMb @@ -54843,10 +54849,10 @@ lSU lSU lSU lSU -shO -gAV -gAV -chU +hLa +iba +iba +pzV rZt rZt kmO @@ -54875,9 +54881,9 @@ jrg jrg jrg pxA -mwF -chU -mwF +dub +pzV +dub pxA puZ puZ @@ -54890,30 +54896,30 @@ puZ (191,1,1) = {" acH acT -adX -bhS -amP -amP -amP -amP -amP -amP -amP -amP -amU +kSU +hAC +xPX +xPX +xPX +xPX +xPX +xPX +xPX +xPX +xhZ aek oYw eAZ aDn aDn -qpv -mfr -agh -agh -agh -agh -nAY -hHV +eFa +wet +wvF +wvF +wvF +wvF +aqj +ePy aDn fSc aDn @@ -54921,14 +54927,14 @@ qbh ovc fMO pji -qOD -iLS -mms -mms -xjg +bnP +gld +cOF +cOF +hdP aek -iJY -ylZ +wci +rbz aDn lwo lwo @@ -54967,11 +54973,11 @@ iMb iMb jAL jAL -nqK -kxN -ttN -mgt -ivU +qIm +tTB +gsp +vte +cbs pqj pqj iMb @@ -54981,8 +54987,8 @@ fQX iMb pQE pQE -klP -vkZ +nzG +aJT pQE pQE mIL @@ -55003,21 +55009,21 @@ dwQ dwQ bXo rZt -dTU -dTU +nTk +nTk rZt -gAV -gAV -chU +iba +iba +pzV asz asz asz asz asz -wnK -wnK +xQb +xQb dwQ -wnK +xQb dwQ bJj bJj @@ -55037,9 +55043,9 @@ jrg jrg jrg pxA -xcE -ggL -xcE +sZr +rdL +sZr pxA puZ puZ @@ -55053,28 +55059,28 @@ puZ acH acT acT -gWF -amP -amP -alZ -amP -sBh -sBh -sef -dkI -qyy +fFk +xPX +xPX +ioX +xPX +wes +wes +tRw +gPL +cbU acT eAZ eAZ mnS aDn aDn -fPD -eln -bUO -fZz -fZz -pvk +apA +iob +ehv +ejI +ejI +mXe aDn aDn eAZ @@ -55083,14 +55089,14 @@ mLT ovc ovc aVQ -qOD -mms -mms -mms -xjg +bnP +cOF +cOF +cOF +hdP nMZ -ivy -wFa +vVR +wtA aDn hkC sYu @@ -55129,11 +55135,11 @@ jAL jAL jAL jAL -nqK -kxN -jbK -mgt -dPW +qIm +tTB +mtN +vte +eNS pqj pqj pqj @@ -55142,10 +55148,10 @@ iMb iMb kri pQE -eiT -qVq -qVq -lRI +dyF +rnO +rnO +qbf pQE mIL ood @@ -55164,17 +55170,17 @@ rHO rHO fgK lSU -chU -gAV -gAV -gAV -gAV -gAV -chU +pzV +iba +iba +iba +iba +iba +pzV fNE -aeP -miD -aiV +nca +oJr +mXK asz rZt rZt @@ -55192,16 +55198,16 @@ bJj bJj osE pxA -wnK -wnK +xQb +xQb pxA pxA pxA pxA pxA -mwF -chU -mwF +dub +pzV +dub pxA puZ puZ @@ -55215,16 +55221,16 @@ puZ acH aDn acT -afi -hms -aje -ama -anz -aov -yiw -amP -amP -amU +rGI +iMj +fcK +muz +kBt +tir +jwB +xPX +xPX +xhZ acT aFK eAZ @@ -55245,14 +55251,14 @@ hDw ovc fMO pcC -qOD -mms -mms -mms -xjg +bnP +cOF +cOF +cOF +hdP aek -vey -txA +seV +ozF aDn sYu sYu @@ -55291,11 +55297,11 @@ iMb jAL jAL iMb -tDb -qXx -laL -cWG -gNJ +pLX +omC +deK +pkE +lwQ pqj iMb iMb @@ -55304,10 +55310,10 @@ iMb iMb iMb aEW -qVq -qVq -qVq -aJe +rnO +rnO +rnO +lbo pQE mIL mIL @@ -55326,23 +55332,23 @@ lSU lSU lSU lSU -chU -gAV +pzV +iba rZt -dTU -dTU -dTU +nTk +nTk +nTk rZt fNE -aeC +lVw rZt -aeR +oWT asz -wnK +xQb dwQ -wnK -wnK -wnK +xQb +xQb +xQb dwQ bJj bJj @@ -55354,16 +55360,16 @@ jrg jrg jrg pxA -wnK -wnK +xQb +xQb pxA pxA pxA pxA pxA -vKu -vKu -vKu +nSA +nSA +nSA pxA puZ puZ @@ -55383,10 +55389,10 @@ acT acT acT acT -uKV -yfE -qpZ -aJn +bYZ +asF +tzp +tbC acT qlk eAZ @@ -55395,10 +55401,10 @@ eAZ eAZ eAZ acT -crN -iRa -rsa -crN +psE +jXh +exM +psE acT eAZ qDT @@ -55407,11 +55413,11 @@ aoK ovc ovc acT -qOD -mms -mms -mms -xjg +bnP +cOF +cOF +cOF +hdP aDn uYg aDn @@ -55443,7 +55449,7 @@ jAN jAN jAN jAN -awq +rjB jAN jAN jAN @@ -55453,11 +55459,11 @@ iMb iMb iMb aiz -mRa -lCB -lCB -lCB -wVJ +kpy +seK +seK +seK +oCH iMb iMb iMb @@ -55466,9 +55472,9 @@ fQX iMb aEC pQE -aFs -vkZ -vkZ +hCq +aJT +aJT pQE pQE mIL @@ -55488,17 +55494,17 @@ oQl oQl oQl asz -chU -gAV -chU +pzV +iba +pzV asz asz aed asz asz -aez -mRU -aeQ +ilA +wKS +oRv asz asz rZt @@ -55516,16 +55522,16 @@ jrg jrg jrg pxA -wnK -wnK +xQb +xQb pxA pxA pxA pxA pxA -mwF -chU -mwF +dub +pzV +dub pxA puZ puZ @@ -55539,16 +55545,16 @@ puZ acH aDn acT -axG -axG -yeu -wWu -apv -apv -gjg -dbQ -amP -amU +kIY +kIY +mGR +hYR +nzK +nzK +wxN +tuV +xPX +xhZ aDn aDn eAZ @@ -55557,10 +55563,10 @@ eAZ oYw oYw gQR -agh -agh -agh -agh +wvF +wvF +wvF +wvF gQR aSi aSi @@ -55569,18 +55575,18 @@ aoK ovc ovc gQR -ljM -dOf -mms -mms -rDn -jVp -joP -mms -mms -pfg -pfg -kiS +kdN +mmU +cOF +cOF +uTw +poV +bYF +cOF +cOF +hmS +hmS +ooL owB rnB sYu @@ -55603,12 +55609,12 @@ fQX iMb jAN asK -aty -auU -gxN -auf -axt -axS +fOK +iMY +eBu +wpI +ibR +jmX jAN iMb iMb @@ -55650,24 +55656,24 @@ oQl oQl oQl asz -rZH -gAV -chU -adW -aeb -rZt -miD -miD -adi -aCB +deG +iba +pzV +lab +fpa +rZt +oJr +oJr +wkV +qPF asz asz asz asz -wnK -wnK -wnK -wnK +xQb +xQb +xQb +xQb dwQ flN jrg @@ -55678,16 +55684,16 @@ jrg pxA pxA pxA -wnK -wnK -vKu -wnK -hfw -wnK -rZt -mwF -chU -mwF +xQb +xQb +nSA +xQb +upI +xQb +rZt +dub +pzV +dub pxA puZ puZ @@ -55701,16 +55707,16 @@ puZ acH acT acT -axG -maW -axG -bhS -qGq -amP -amP -amP -amP -amU +kIY +ewd +kIY +hAC +pVn +xPX +xPX +xPX +xPX +xhZ knC aSi aSi @@ -55719,10 +55725,10 @@ oYw aSi eAZ acT -ufd -oJe -bQR -tvo +uPS +seT +dsN +tGI acT qlk eAZ @@ -55732,18 +55738,18 @@ pkp fuj acT bjb -ljM -igN -igN -igN -igN -joP -mms -mms -mms -mms -mms -iWg +kdN +sNc +sNc +sNc +sNc +bYF +cOF +cOF +cOF +cOF +cOF +rnk tDr sYu sYu @@ -55765,12 +55771,12 @@ fQX mIL jAN asL -atB -auV -gxN -gxN -gxN -axT +pld +kBg +eBu +eBu +eBu +kQI jAN mIL iMb @@ -55812,16 +55818,16 @@ jAL iMb oQl asz -chU -gAV -chU -adV +pzV +iba +pzV +oxr rZt rZt rZt rZt rZt -mOu +pUE asz asz asz @@ -55838,18 +55844,18 @@ pxA jrg jrg pxA -mWE +ngK pJA -wnK -mwF -mwF -mwF -mwF -vKu -bJi -bJi -chU -mwF +xQb +dub +dub +dub +dub +nSA +lCk +lCk +pzV +dub pxA flN puZ @@ -55861,18 +55867,18 @@ puZ "} (197,1,1) = {" acH -axG -axG -axG -iWa -axG -bhS -amP -amP -amP -amP -amP -amU +kIY +kIY +kIY +iGF +kIY +hAC +xPX +xPX +xPX +xPX +xPX +xhZ ajO aSi aSi @@ -55900,11 +55906,11 @@ jQy acT acT acT -mms -mms -mms -mms -mms +cOF +cOF +cOF +cOF +cOF uQy gkG sYu @@ -55927,12 +55933,12 @@ fQX mIL jAN asO -atC -auV -gxN -gxN -gxN -axU +lTK +kBg +eBu +eBu +eBu +iCY jAN mIL iMb @@ -55974,44 +55980,44 @@ jDv jDv oQl asz -chU -gAV -chU -adT +pzV +iba +pzV +lxy rZt rZt rZt rZt -mRU -aex +wKS +sRy asz -nVn -iCJ +wtb +wJI pxA pxA pxA -wnK -wnK -wnK -wnK -jXM -wnK +xQb +xQb +xQb +xQb +iFz +xQb pxA jrg jrg pxA nHH -pDp -wnK +egJ +xQb flN flN flN flN flN -mwF +dub rZt rZt -mwF +dub pxA kTd kTd @@ -56023,18 +56029,18 @@ puZ "} (198,1,1) = {" acH -axG -axG -axG -axG -axG -bhS -amP -amP +kIY +kIY +kIY +kIY +kIY +hAC +xPX +xPX tTd -amP -amP -amU +xPX +xPX +xhZ acT aDn oYw @@ -56043,30 +56049,30 @@ aSi oYw eAZ acT -geS -rpL -azd -acT -rZV -rBy -fun -rBy -qid -rBy -owt -aPh -acT -ksu -apv -apv -qCa -qEC -acT -mms -mms -mms -mms -mms +oCx +oRr +pjv +acT +ttV +kZU +fWK +kZU +pFw +kZU +lPB +eFw +acT +lVu +nzK +nzK +sQh +gmf +acT +cOF +cOF +cOF +cOF +cOF sNi sYu sYu @@ -56089,12 +56095,12 @@ mIL mIL jAN asR -atD -auV -gxN -gxN -gxN -axV +kzt +kBg +eBu +eBu +eBu +ezb jAN mIL mIL @@ -56136,44 +56142,44 @@ asz asz asz asz -chU -gAV -chU -adS -aea -ptr -aew -aew -aex +pzV +iba +pzV +vPZ +xNJ +ofp +cfu +cfu +sRy asz asz -lXy -nxA -vKu -vKu +aSd +yiu +nSA +nSA bUe rZt -chU +pzV rZt -chU +pzV dwQ -wnK +xQb pxA pxA pxA pxA nzf -wnK -wnK +xQb +xQb aQm aXc aXI bbG flN -mwF -chU -bJi -bJi +dub +pzV +lCk +lCk wBf flN kTd @@ -56185,18 +56191,18 @@ puZ "} (199,1,1) = {" acH -anI -cRX -hfN -cRX -kJL -bhS -amP -amP -acT -amP -amP -amU +hqW +iXB +mVU +iXB +uZS +hAC +xPX +xPX +acT +xPX +xPX +xhZ acT eAZ eAZ @@ -56205,30 +56211,30 @@ aSi oYw eAZ acT -bhS -amP -amU -acT -bhS -amP -iNS -amP -amP -amP -amU -adR -acT -vAw -amP -amP -amP -amU +hAC +xPX +xhZ +acT +hAC +xPX +tXY +xPX +xPX +xPX +xhZ +bGf +acT +oRa +xPX +xPX +xPX +xhZ knC -mms -mms -mms -mms -mms +cOF +cOF +cOF +cOF +cOF hEa rnB sYu @@ -56251,12 +56257,12 @@ mIL mIL jAN asT -atF -auV -gxN -gxN -gxN -axZ +muq +kBg +eBu +eBu +eBu +eBH jAN gaz mIL @@ -56298,9 +56304,9 @@ dAt sNX dAt rZt -chU -gAV -chU +pzV +iba +pzV asz asz asz @@ -56310,31 +56316,31 @@ asz asz asz pxA -vdS -wnK -vKu +eOj +xQb +nSA pxA pxA -ahu -wnK -wnK -wnK -wnK -jXM -uYt +rWu +xQb +xQb +xQb +xQb +iFz +ssJ pxA pxA nrr -wnK -wnK +xQb +xQb aPe act acA bah flN -mwF -chU -bJi +dub +pzV +lCk rZt flN flN @@ -56347,18 +56353,18 @@ puZ "} (200,1,1) = {" acH -bhS -dbQ -amP -dbQ -xBo -bhS -amP -sHc -acT -xoi -amP -amU +hAC +tuV +xPX +tuV +kFw +hAC +xPX +ihF +acT +xAs +xPX +xhZ aek eAZ oYw @@ -56367,31 +56373,31 @@ aSi eAZ ajT acT -lyw -hms -bhI +bxo +iMj +ydu acT -gWF -amP -iNS -amP -amP -amP -gcP +fFk +xPX +tXY +xPX +xPX +xPX +gpY acT acT -wxu -bhI -pNq -amP -amU +lZH +ydu +kAU +xPX +xhZ ajO -mms -mms -mms -mms -mms -iWg +cOF +cOF +cOF +cOF +cOF +rnk tDr sYu lwo @@ -56413,12 +56419,12 @@ mIL ecj jAN cAW -atD -auV -gxN -gxN -axv -ayb +kzt +kBg +eBu +eBu +nIr +uti jAN ood ood @@ -56460,43 +56466,43 @@ gha rZt sNX rZt -chU -gAV -chU +pzV +iba +pzV rZt asz wqc tOq hXQ asz -goj -goj +nyt +nyt pxA -vKu -wnK -wnK -cSn +nSA +xQb +xQb +jGD pxA pxA sIX -chU +pzV rZt -chU +pzV rZt -wnK +xQb pxA pxA nmT -pve -wnK +svg +xQb aPd aRz aXi bag flN -mwF -chU -mwF +dub +pzV +dub flN wBf pxA @@ -56509,18 +56515,18 @@ puZ "} (201,1,1) = {" acH -aoy -amP -amP -amP -kRI -bhS -amP -amP +pEg +xPX +xPX +xPX +cYN +hAC +xPX +xPX uZU -amP -amP -amU +xPX +xPX +xhZ aek eAZ eAZ @@ -56529,24 +56535,24 @@ aSi oYw aDn aDn -axG -axG -axG -axG -bhS -amP -vwv -amP -amP -amP -amU +kIY +kIY +kIY +kIY +hAC +xPX +ghp +xPX +xPX +xPX +xhZ knC -bhS -amP -pGf -wWu -amP -jEa +hAC +xPX +wUs +hYR +xPX +hTy acT acT acT @@ -56575,11 +56581,11 @@ ecj ecj jAN jAN -atG -auZ -awc -lTN -axw +pMy +smU +dFK +qOS +tyG jAN jAN gaz @@ -56622,43 +56628,43 @@ dAt sNX dAt rZt -chU -gAV -chU +pzV +iba +pzV rZt bXo biM biM biM -goj -xJA -goj +nyt +nBy +nyt bXo -vKu -soj -wnK -wnK -cSn +nSA +vDP +xQb +xQb +jGD pxA pxA pxA -wnK -wnK -wnK -wnK -wnK +xQb +xQb +xQb +xQb +xQb pxA -kRV +sBt pEv -wnK +xQb flN flN flN flN flN -mwF -chU -fww +dub +pzV +txK sNX dAt rZt @@ -56671,18 +56677,18 @@ puZ "} (202,1,1) = {" acH -bhS -amP -amP -amP -acT -bhS -amP -amP +hAC +xPX +xPX +xPX +acT +hAC +xPX +xPX tTd -amP -amP -amU +xPX +xPX +xhZ aek eAZ eAZ @@ -56691,28 +56697,28 @@ aSi aSi aSi knC -maW -maW -maW -axG -bhS -amP -uZf -hms -hms -hms -bhI +ewd +ewd +ewd +kIY +hAC +xPX +qrR +iMj +iMj +iMj +ydu ajO -bhS -amP -amP -amP -amP -ryI -acT -aka -aka -apv +hAC +xPX +xPX +xPX +xPX +nWs +acT +iDB +iDB +nzK ajO ajO acT @@ -56784,43 +56790,43 @@ rZt bgC rZt rZt -chU -gAV -chU +pzV +iba +pzV rZt asz biM biM biM -goj -lpA -uWA +nyt +sDv +cHm pxA -tNP -lFp -jcv -fqJ -cSn +snz +tul +qeg +tAn +jGD pxA pxA pxA -rZH +deG rZt -chU +pzV rZt rZt pxA pxA pxA -wnK -mwF -mwF -mwF -mwF -vKu -mwF -chU -uOR +xQb +dub +dub +dub +dub +nSA +dub +pzV +rHk uuN acP flN @@ -56833,18 +56839,18 @@ puZ "} (203,1,1) = {" acH -pNq -dIF -hms -hms -acT -bhS -amP -sHc -acT -xoi -amP -amU +kAU +rCQ +iMj +iMj +acT +hAC +xPX +ihF +acT +xAs +xPX +xhZ aek eab oYw @@ -56853,30 +56859,30 @@ aSi aSi aSi ajO -uqS -maW -maW -qvr -mFD -hms -bhI +xjN +ewd +ewd +uDR +oct +iMj +ydu acT acT acT acT acT -tcI -hms -yiw -uZf -hms -xEw +hpG +iMj +jwB +qrR +iMj +bwo acT wHZ -amP -amP -amP -amP +xPX +xPX +xPX +xPX amj acT qep @@ -56946,17 +56952,17 @@ eaa rZt rZt rZt -chU -gAV -chU +pzV +iba +pzV iaK -kTI +cVT biM xtI qOd -goj -wnK -goj +nyt +xQb +nyt pxA pxA pxA @@ -56966,23 +56972,23 @@ pxA pxA pxA pxA -wnK -wnK -wnK -wnK -wnK +xQb +xQb +xQb +xQb +xQb pxA rZt -vKu -vKu -wnK -vKu -wnK -vKu -wnK -bJi -chU -fww +nSA +nSA +xQb +nSA +xQb +nSA +xQb +lCk +pzV +txK sNX dAt flN @@ -57000,13 +57006,13 @@ dOu aSz acT acT -oIh -amP -amP +gwy +xPX +xPX acT -amP -amP -amU +xPX +xPX +xhZ acT eAZ eAZ @@ -57020,24 +57026,24 @@ rOG acT acT acT -fyF +lcH acT acT -qyd -uLn -vno +kVy +jCT +vJB acT aek aek -xUm -paZ +xeR +mbp acT acT acT ajO akr -amP -amP +xPX +xPX ajO amj acT @@ -57108,43 +57114,43 @@ rZt byr rZt rZt -chU -gAV -chU +pzV +iba +pzV iaK -feA +hMW biM biM biM -uuv -yhX -goj +xrM +jeF +nyt pxA rZt -dTU -osV -dTU -dTU -dTU +nTk +uLd +nTk +nTk +nTk rZt -kap +rXN rZt crF crF crF -wnK -vKu -wnK -chU +xQb +nSA +xQb +pzV rZt -chU +pzV rZt -chU +pzV rZt -chU +pzV rZt -chU -mwF +pzV +dub bgC flN flN @@ -57157,18 +57163,18 @@ puZ "} (205,1,1) = {" acH -aoz -axG -axG -axG -axG -bhS -amP -amP +eop +kIY +kIY +kIY +kIY +hAC +xPX +xPX uZU -amP -amP -amU +xPX +xPX +xhZ acT eAZ aDn @@ -57177,31 +57183,31 @@ oYw aDn acT acT -gkL -apv -kbf +gvF +nzK +vqm acT -gHh -apv -pAE -apv -gjg -amP -amU +pMR +nzK +fQV +nzK +wxN +xPX +xhZ acT -gMP -gSG -hQU -jDB +vJm +mcF +dZm +mVW nKc ajO ajO ajO aks -akH -alt -amP -amk +cRD +cwB +xPX +xsS acT nSO mib @@ -57266,47 +57272,47 @@ oQl oQl oQl asz -wFB -eSt -wFB -dTU +gWf +xIj +gWf +nTk rZt -gAV +iba rZt -txX -kRj +ykS +dkQ qOZ cEj qOZ -goj -fwv -goj +nyt +khl +nyt bXo -chU -kQJ -vKu -wnK -vKu -wnK -vKu -kap +pzV +fmH +nSA +xQb +nSA +xQb +nSA +rXN rZt crF crF crF -wnK -vKu -wnK -chU +xQb +nSA +xQb +pzV rZt -chU +pzV rZt -chU +pzV rZt -chU +pzV rZt -chU -mwF +pzV +dub byr rZt rZt @@ -57319,18 +57325,18 @@ puZ "} (206,1,1) = {" acH -apB -maW -maW -alV -axG -bhS -amP -amP -amP -amP -amP -amU +jnj +ewd +ewd +iDd +kIY +hAC +xPX +xPX +xPX +xPX +xPX +xhZ acT acT aDn @@ -57339,31 +57345,31 @@ cGS aDn acT acT -dWM -amP -amU +xiL +xPX +xhZ acT -apO -amP -amP -amP -amP -amP -amU +vqb +xPX +xPX +xPX +xPX +xPX +xhZ nKc -bhS -mCg -pQt -mhx +hAC +jSB +uAS +lim aDn gXS ajO ajO akt -akI -alx -amP -amP +qER +gXZ +xPX +xPX acT nSO nSO @@ -57432,43 +57438,43 @@ gha uuN sNX rZt -chU -gAV -chU +pzV +iba +pzV rZt asz dnH jft ghS asz -goj -goj +nyt +nyt pxA -rZH -vKu -ghU +deG +nSA +uUd pxA -vQm -vFX +dWF +nYm pxA pxA -wnK -wnK -wnK -wnK -wnK +xQb +xQb +xQb +xQb +xQb pxA rZt -vKu -vKu -wnK -vKu -wnK -vKu -wnK -bJi -chU -fww +nSA +nSA +xQb +nSA +xQb +nSA +xQb +lCk +pzV +txK gaJ dAt rZt @@ -57481,42 +57487,42 @@ puZ "} (207,1,1) = {" acH -apE -axG -axG -axG -axG -bhS -amP -amP -amP -amP -amP -amU -iPG -xar +wVK +kIY +kIY +kIY +kIY +hAC +xPX +xPX +xPX +xPX +xPX +xhZ +bPp +udd aDn -maW -maW +ewd +ewd aDn acT acT -bhS -eep -amU +hAC +pTr +xhZ acT -afp -amP -amP -amP -amP -amP -cEk +knj +xPX +xPX +xPX +xPX +xPX +yac acT -geh -uRK -hms -bhI +wdZ +uor +iMj +ydu aae gXS ajO @@ -57524,8 +57530,8 @@ ajO ajO ajO ajO -amP -amP +xPX +xPX gXS wje nSO @@ -57590,47 +57596,47 @@ jAL iMb rib asz -wFB -eSt -wFB -dTU +gWf +xIj +gWf +nTk rZt -gAV +iba rZt -dTU +nTk asz asz asz asz asz -goj -goj +nyt +nyt fNE -chU -wnK +pzV +xQb pxA pxA pxA pxA pxA pxA -mcw +puq rZt -chU +pzV rZt -chU +pzV pxA pxA pxA -wnK -mwF -mwF -mwF -mwF -vKu -mwF -chU -uOR +xQb +dub +dub +dub +dub +nSA +dub +pzV +rHk rZt acP flN @@ -57644,36 +57650,36 @@ puZ (208,1,1) = {" acH acT -wWu -apv -pGf -axG -pNq -hms -hms -hms -hms -hms -bhI -axG -axG -axG -axG -axG -axG -acT -acT -cQB -amP -kDJ -acT -apW -amP -amP -amP -amP -amP -cEk +hYR +nzK +wUs +kIY +kAU +iMj +iMj +iMj +iMj +iMj +ydu +kIY +kIY +kIY +kIY +kIY +kIY +acT +acT +lIK +xPX +llu +acT +taF +xPX +xPX +xPX +xPX +xPX +yac acT aDn aDn @@ -57687,7 +57693,7 @@ ajO ajO ajO ajO -amn +pMW gXS nSO nSO @@ -57756,43 +57762,43 @@ asz asz asz asz -wnK -wnK -wnK -wnK -wnK +xQb +xQb +xQb +xQb +xQb rZt rZt asz -wTm +qGF biM biM fNE -chU -vKu -vQm +pzV +nSA +dWF pxA rZt iQe -wnK -gFb +xQb +obv nMk -chU +pzV rZt -chU +pzV rZt fNE -mWE +ngK pDu -wnK +xQb flN flN flN flN flN -mwF -chU -fww +dub +pzV +txK sNX dAt flN @@ -57806,36 +57812,36 @@ puZ (209,1,1) = {" acH acT -afm -amP -amU -axG -axG -axG -tef -wJd -tef -axG -okM -axG -axG -axG -axG -axG -axG -acT -acT -oFG -hMn -lDv -acT -fFH -fjI -veo -eWn -twD -sGs -nsI +uJW +xPX +xhZ +kIY +kIY +kIY +eQX +bVK +eQX +kIY +iVt +kIY +kIY +kIY +kIY +kIY +kIY +acT +acT +iFq +nhp +hWy +acT +vbY +nyE +yjk +pLq +yld +ifR +oYe acT aOu aOu @@ -57849,7 +57855,7 @@ ajO gXS ajO alR -amr +cDW acT nSO kPl @@ -57918,43 +57924,43 @@ oQl asz asz asz -goj -goj -djO -goj -wnK +nyt +nyt +dwq +nyt +xQb rZt rZt fNE -nPH +lbV biM biM fNE -chU -wnK -vFX +pzV +xQb +nYm pxA iQe qaF -chU -kyu -drx +pzV +xdX +cFP rZt -chU +pzV rZt -chU +pzV fNE mHU -pDp -wnK +egJ +xQb aQm aXc aXI bbG flN -mwF -chU -mwF +dub +pzV +dub rZt flN rZt @@ -57968,23 +57974,23 @@ puZ (210,1,1) = {" acH acT -eIH -amP -amU -axG -wWu -amP -akh -amP -akh -amP -amP -amP -amP -amP -amP -pGf -mWw +tAT +xPX +xhZ +kIY +hYR +xPX +rIh +xPX +rIh +xPX +xPX +xPX +xPX +xPX +xPX +wUs +cvI acT acT acT @@ -58078,45 +58084,45 @@ oQl oQl oQl asz -iqt +bDN rZt -goj +nyt axa hVs -djO -dBB +dwq +eKr rZt rZt fNE -sdF +jMF biM biM fNE rZt -vKu +nSA pxA pxA rZt hEE -chU -gFb +pzV +obv sfM -oHF -wnK -wnK -wnK +sum +xQb +xQb +xQb pxA lYG -wnK -wnK +xQb +xQb aPe aSJ aXn bah flN -mwF -chU -mwF +dub +pzV +dub flN rZt rZt @@ -58130,23 +58136,23 @@ puZ (211,1,1) = {" acH acT -afp -amP -amU -axG -amP -wWu -aeo -xGR -ilh -apv -apv -apv -apv -pQt -pGf -amP -axG +knj +xPX +xhZ +kIY +xPX +hYR +vzK +ixr +xCd +nzK +nzK +nzK +nzK +uAS +wUs +xPX +kIY aDn aOu aOu @@ -58240,45 +58246,45 @@ oQl oQl oQl asz -bNu +bLw rZt -djO +dwq qCs pPt -goj -wnK -qyE -wnK +nyt +xQb +gQk +xQb asz fNE fNE fNE pxA -xvS -xvS +mqR +mqR pxA pxA iQe qaF -chU +pzV pxA pxA pxA -vKu -vKu -vKu +nSA +nSA +nSA pxA lGU -wnK -wnK +xQb +xQb aPd aRz aXi bag flN -mwF -chU -mwF +dub +pzV +dub rZt flN flN @@ -58292,23 +58298,23 @@ puZ (212,1,1) = {" acH acT -apW -amP -amU -axG -amP -amP -akj -amP -axd -amP -amP -amP -amP -amP -amP -amP -axG +taF +xPX +xhZ +kIY +xPX +xPX +tIp +xPX +jLR +xPX +xPX +xPX +xPX +xPX +xPX +xPX +kIY aDn aOu wje @@ -58402,45 +58408,45 @@ oQl oQl oQl asz -iIe +grV rZt -goj +nyt fHM rZt -goj -wnK -rZt -vKu -vKu -vKu -vKu -vKu -vKu -vKu -toN -vKu -vKu +nyt +xQb +rZt +nSA +nSA +nSA +nSA +nSA +nSA +nSA +oIQ +nSA +nSA dgF hEE -wnK +xQb pxA pxA pxA -wnK -wnK -wnK +xQb +xQb +xQb pxA hQO -pve -wnK +svg +xQb flN wAP flN dJS flN -mwF -chU -mwF +dub +pzV +dub rZt rZt wBf @@ -58454,23 +58460,23 @@ puZ (213,1,1) = {" acH acT -fze -amP -amU -axG -amP -bhS -aeo -akh -aeo -amP -amP -amP -amP -amP -amU +nrz +xPX +xhZ +kIY +xPX +hAC +vzK +rIh +vzK +xPX +xPX +xPX +xPX +xPX +xhZ gXS -axG +kIY mKf wje wje @@ -58566,43 +58572,43 @@ oQl asz asz rZt -goj +nyt rZt rZt -goj -wnK +nyt +xQb xEB -vKu -wnK +nSA +xQb rZt rZt -eFQ +vSn rZt rZt -wnK -vKu -vKu -vKu -vKu -vKu -jqT +xQb +nSA +nSA +nSA +nSA +nSA +cfR pxA -ctk -cVy -chU -mwF +bNG +pea +pzV +dub pxA -kRV +sBt kVe -wnK -mwF -mwF -yiS -mwF -vKu -mwF -chU -mwF +xQb +dub +dub +kHg +dub +nSA +dub +pzV +dub rZt flN flN @@ -58616,22 +58622,22 @@ puZ (214,1,1) = {" acH acT -afR -amP -amU -mfe -amP -bhS -akh -aoA -akh -amP -amP -amP -amP +dPp +xPX +xhZ +xnO +xPX +hAC +rIh +oSq +rIh +xPX +xPX +xPX +xPX gXS -amU -amP +xhZ +xPX gXS fjs aah @@ -58726,45 +58732,45 @@ oQl oQl oQl asz -tqs +qto rZt -goj +nyt rZt fHM -goj -wnK +nyt +xQb rZt -vKu -wnK +nSA +xQb rZt rZt -wnK +xQb rZt rZt -wnK -vKu -vKu -vKu -vKu -vKu -bqy +xQb +nSA +nSA +nSA +nSA +nSA +wzi pxA -ugP -mwF -chU -mwF +qvw +dub +pzV +dub pxA pxA pxA pxA -wnK -vKu -xIL -vKu -wnK -bJi -chU -bJi +xQb +nSA +rFQ +nSA +xQb +lCk +pzV +lCk rZt twi flN @@ -58778,23 +58784,23 @@ puZ (215,1,1) = {" acH acT -afT -amP -amU -axG -amP -amP -aeo -akh -aeo -amP -amP -amP -amP -amP -amP -amP -axG +hNb +xPX +xhZ +kIY +xPX +xPX +vzK +rIh +vzK +xPX +xPX +xPX +xPX +xPX +xPX +xPX +kIY fjs nSO kPl @@ -58888,45 +58894,45 @@ puZ puZ puZ asz -wgp +rBf rZt -goj +nyt qNK hrb -goj -wnK -rZt -vKu -lkX -ift -sQU -vKu -sQU -ift -lkX -rhS -oqQ -oqQ -lNm -vKu +nyt +xQb +rZt +nSA +wfF +vua +xBM +nSA +xBM +vua +wfF +bZg +bxF +bxF +pHp +nSA pxA pxA -ctk -mwF -chU -bJi -euA -euA -euA -bJi -euA -euA -euA -euA -bJi -bJi -chU -mwF +bNG +dub +pzV +lCk +whd +whd +whd +lCk +whd +whd +whd +whd +lCk +lCk +pzV +dub rZt twi kue @@ -58940,23 +58946,23 @@ puZ (216,1,1) = {" acH acT -aga -amP -amU -axG -amP -pNq -amP -hms -hms -hms -hms -hms -cnk -amP -bhI +gFO +xPX +xhZ +kIY +xPX +kAU +xPX +iMj +iMj +iMj +iMj +iMj +rSH +xPX +ydu gXS -fHQ +prR fjs aah nSO @@ -59050,45 +59056,45 @@ puZ puZ puZ asz -fjd +qxS rZt -djO +dwq kts wAM -djO +dwq asz pxA pxA -ift -smI -hUG -vKu -udJ -euA -ift -pKP -nNN -kZy -pKP -vKu -uLu +vua +uaQ +uMD +nSA +rdo +whd +vua +oKo +qQO +rFZ +oKo +nSA +egL pxA pxA -bJi +lCk rZt -dTU -dTU -dTU -dTU +nTk +nTk +nTk +nTk rZt -dTU -dTU -dTU -dTU +nTk +nTk +nTk +nTk rZt -dTU +nTk rZt -mwF +dub rZt pxA kTd @@ -59102,22 +59108,22 @@ puZ (217,1,1) = {" acH acT -agb -amP -amU -axG -pNq -amP -amP -aoi -aop -amP -amP -amP -amP -amP -amP -bhI +rgn +xPX +xhZ +kIY +kAU +xPX +xPX +aIu +pjQ +xPX +xPX +xPX +xPX +xPX +xPX +ydu gXS mKf nSO @@ -59214,43 +59220,43 @@ puZ asz asz asz -goj -djO -goj -goj +nyt +dwq +nyt +nyt asz pxA pxA -lkX -ffw -uim -vKu -uim -ffw -lkX -vKu -vKu -vKu -vKu -vKu -uLu +wfF +xWF +kJf +nSA +kJf +xWF +wfF +nSA +nSA +nSA +nSA +nSA +egL pxA pxA -bJi -bJi -euA -vPR -euA -euA -bJi -euA -euA -vPR -euA -bJi -euA -euA -bJi +lCk +lCk +whd +iSj +whd +whd +lCk +whd +whd +iSj +whd +lCk +whd +whd +lCk rZt pxA puZ @@ -59264,23 +59270,23 @@ puZ (218,1,1) = {" acH acT -ajb -hMn -ant -axG -axG -axG -axG -xNe -aot -axG -axG -axG -axG -axG -xkf -axG -axG +jlr +nhp +dqy +kIY +kIY +kIY +kIY +xfR +ewP +kIY +kIY +kIY +kIY +kIY +lAg +kIY +kIY aDn wje wje @@ -59383,32 +59389,32 @@ asz asz puZ pxA -ueu -mMa -euA -vKu -euA -euA -vKu -rhS -oqQ -oqQ -rhS -ueu +wbL +jBY +whd +nSA +whd +whd +nSA +bZg +bxF +bxF +bZg +wbL pxA pxA pxA pxA pxA -sym -ctk -ugP +ijR +bNG +qvw pxA pxA -xwi -thc -ckI -dTn +ekG +epB +tOi +nat pxA pxA rZt @@ -59430,15 +59436,15 @@ acT acT acT acT -any -any -any +sPQ +sPQ +sPQ acT acT acT -aoP -aoP -aoP +nVY +nVY +nVY acT acT acT diff --git a/maps/map_files/Ice_Colony_v3/standalone/clfship.dmm b/maps/map_files/Ice_Colony_v3/standalone/clfship.dmm new file mode 100644 index 000000000000..f0ec213c18a6 --- /dev/null +++ b/maps/map_files/Ice_Colony_v3/standalone/clfship.dmm @@ -0,0 +1,3513 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"ap" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/heavy_barrel, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"ar" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"av" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"aA" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"aH" = ( +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"aN" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/plating/panelscorched, +/area/shiva/interior/colony/medseceng) +"aT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"bd" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"bn" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/lv624/lazarus/crashed_ship) +"bt" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"bP" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"bR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bunk Beds" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"bU" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_white_t_up" + }, +/area/lv624/lazarus/crashed_ship) +"cb" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan21" + }, +/area/shiva/interior/colony/deck) +"cc" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"cq" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = -3; + pixel_y = 20 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/lv624/lazarus/crashed_ship) +"cw" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"cA" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/lv624/lazarus/crashed_ship) +"cI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"cN" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + dir = 4; + density = 1; + closed = 0 + }, +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/medseceng) +"cW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Side Entrance" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"dp" = ( +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"dr" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Underground Security" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"dF" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan21" + }, +/area/lv624/lazarus/crashed_ship) +"dP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 3 + }, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"dW" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"dY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/east, +/area/lv624/lazarus/crashed_ship) +"em" = ( +/obj/item/circuitboard/apc{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/cell{ + pixel_x = -2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"en" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/snow/layer1, +/area/lv624/lazarus/crashed_ship) +"eu" = ( +/obj/structure/bed, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"fb" = ( +/turf/closed/shuttle/ert, +/area/lv624/lazarus/crashed_ship) +"fc" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"fd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp, +/obj/item/tool/pen/blue{ + pixel_x = 5 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"fq" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"fG" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"fK" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3" + }, +/area/lv624/lazarus/crashed_ship) +"fQ" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_3" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"gd" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_colony_grounds) +"gg" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"gr" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"gu" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_3" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"gJ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"hf" = ( +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"ht" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = -3 + }, +/turf/open/floor/almayer/green/southwest, +/area/lv624/lazarus/crashed_ship) +"hu" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/lv624/lazarus/crashed_ship) +"id" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"ii" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"ip" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/panelscorched, +/area/shiva/interior/colony/medseceng) +"iu" = ( +/obj/item/stool, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"iv" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 3; + pixel_y = 20 + }, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"iy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"iC" = ( +/obj/structure/flora/tree/dead/tree_3, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"iG" = ( +/obj/item/clipboard, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"iH" = ( +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"iM" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"iQ" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/snow/layer2, +/area/lv624/lazarus/crashed_ship) +"iV" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"iW" = ( +/turf/open/floor/plating/panelscorched, +/area/shiva/interior/colony/medseceng) +"jf" = ( +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/medseceng) +"jg" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1" + }, +/area/lv624/lazarus/crashed_ship) +"jJ" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/central) +"jT" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"jU" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer0, +/area/lv624/lazarus/crashed_ship) +"ka" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/blue/north, +/area/lv624/lazarus/crashed_ship) +"kd" = ( +/obj/structure/bedsheetbin{ + pixel_y = 9 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"kj" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"kl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bridge" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ko" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"kq" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Underground Administration Office" + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"ku" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"ky" = ( +/obj/structure/flora/tree/dead/tree_2, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"kM" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"kT" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/colony/central) +"kU" = ( +/turf/open/floor/carpet, +/area/shiva/interior/colony/central) +"lc" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/lv624/lazarus/crashed_ship) +"le" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_3_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"lo" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/adv, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"lr" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"ly" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"lD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"lH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"lV" = ( +/obj/structure/girder, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"lZ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"mf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Underground Security Armory" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"mu" = ( +/obj/item/stack/rods, +/turf/open/floor/panelscorched, +/area/shiva/exterior/cp_colony_grounds) +"mz" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "clf_umbilical_1"; + pixel_x = 1; + pixel_y = 28; + range = 20 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"mG" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"mY" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) +"nf" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"nn" = ( +/obj/structure/flora/bush/snow, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"nH" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"nJ" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/medseceng) +"nW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"nZ" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/plating, +/area/shiva/interior/colony/deck) +"oY" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"pa" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"pi" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"po" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"pz" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"pE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -4 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"pI" = ( +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"pK" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/item/paper/research_notes, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"pP" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"qc" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"qk" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"qu" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"qv" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_right" + }, +/area/lv624/lazarus/crashed_ship) +"qG" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/clothing/accessory/storage/webbing, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"qP" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/shiva/exterior/cp_colony_grounds) +"qU" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"qY" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/central) +"qZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan8" + }, +/area/lv624/lazarus/crashed_ship) +"ra" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"rf" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_colony_grounds) +"rg" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_r_w" + }, +/area/lv624/lazarus/crashed_ship) +"rh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/orange/southwest, +/area/lv624/lazarus/crashed_ship) +"rr" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"rt" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2" + }, +/area/lv624/lazarus/crashed_ship) +"rz" = ( +/turf/open/floor/plating, +/area/shiva/interior/colony/central) +"rH" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"rR" = ( +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"rU" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_colony_grounds) +"rV" = ( +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"rY" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_2_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"rZ" = ( +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"sk" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" + }, +/area/lv624/lazarus/crashed_ship) +"sl" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"sB" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan2" + }, +/area/lv624/lazarus/crashed_ship) +"sO" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"sW" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass{ + icon_state = "lavendergrass_2" + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"tc" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"td" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/lv624/lazarus/crashed_ship) +"tl" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 + }, +/obj/item/storage/backpack/general_belt, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"tn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"tD" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Underground Security Custodial Closet"; + req_access_txt = "100" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"tH" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"tL" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"tM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"tV" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"ud" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"ug" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"ul" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_2_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"uq" = ( +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"ut" = ( +/obj/item/stool, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"uu" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"uy" = ( +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"uB" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing fifty reposessed USCM MRE packets."; + name = "\improper CLF Supply MRE crate (x50)" + }, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"uJ" = ( +/turf/open/floor/shiva/north, +/area/lv624/lazarus/crashed_ship) +"uT" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"uU" = ( +/turf/open/floor/almayer/greencorner/north, +/area/lv624/lazarus/crashed_ship) +"uY" = ( +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/deck) +"vj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/incendiary{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"vn" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 + }, +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2"; + pixel_y = 10 + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/colony/central) +"vE" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"vG" = ( +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"vJ" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"vQ" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"vU" = ( +/obj/structure/girder/displaced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"vW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/emerald/northeast, +/area/lv624/lazarus/crashed_ship) +"wd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Dining Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"wl" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/panelscorched, +/area/shiva/interior/colony/deck) +"wq" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"wA" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"wC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/transmitter/clf_net/rotary{ + phone_category = "CR-116"; + phone_color = "yellow"; + phone_id = "Engineering" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"wH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"wT" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -10 + }, +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"xb" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"xf" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"xi" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/lv624/lazarus/crashed_ship) +"xn" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer/green/northwest, +/area/lv624/lazarus/crashed_ship) +"xq" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_4_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"xD" = ( +/obj/structure/surface/table, +/obj/item/storage/box/trackimp, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) +"xG" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"xR" = ( +/obj/structure/coatrack, +/turf/open/floor/carpet, +/area/shiva/interior/colony/central) +"yl" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"yn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Staff Canteen"; + req_access_txt = "100" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/central) +"yC" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"yJ" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"yT" = ( +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_colony_grounds) +"yW" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"zg" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/shiva/exterior/cp_colony_grounds) +"zu" = ( +/turf/closed/shuttle/ert, +/area/shiva/exterior/cp_colony_grounds) +"zw" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/central) +"zy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Engineering Storage" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"zz" = ( +/obj/structure/machinery/power/smes/buildable/charged, +/turf/open/floor/almayer/orange/north, +/area/lv624/lazarus/crashed_ship) +"zE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_y = 1 + }, +/obj/item/stack/sheet/plasteel{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/orange/southeast, +/area/lv624/lazarus/crashed_ship) +"Aa" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Ab" = ( +/turf/open/floor/shiva/bluefull, +/area/lv624/lazarus/crashed_ship) +"Am" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Ao" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/lv624/lazarus/crashed_ship) +"AE" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"AU" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"AW" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"Bi" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/storage/bag/trash, +/obj/item/tool/screwdriver, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Bm" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"Bu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper General Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"By" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_6_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Bz" = ( +/turf/open/floor/almayer/greencorner, +/area/lv624/lazarus/crashed_ship) +"BD" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"BK" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"BS" = ( +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"BV" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_1" + }, +/area/lv624/lazarus/crashed_ship) +"BW" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/central) +"Cg" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"Ci" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"Cl" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/turf/open/floor/almayer/orange/northeast, +/area/lv624/lazarus/crashed_ship) +"Cv" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/central) +"CE" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/plating, +/area/shiva/interior/colony/central) +"CH" = ( +/obj/item/weapon/gun/rifle/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"CO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"CV" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/interior/colony/central) +"Db" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"Dd" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Df" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Dv" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Dw" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/lv624/lazarus/crashed_ship) +"DA" = ( +/obj/item/storage/box/bodybags, +/obj/structure/surface/table, +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/medseceng) +"DH" = ( +/turf/open/floor/shiva/floor3, +/area/lv624/lazarus/crashed_ship) +"DQ" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"DX" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"DZ" = ( +/obj/structure/flora/tree/dead/tree_6, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"Ef" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_left" + }, +/area/lv624/lazarus/crashed_ship) +"EP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"EU" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"EV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"Fa" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"Fd" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/deck) +"Fi" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 1; + name = "\improper Underground Security Interrogation Observation" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"Fy" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_colony_grounds) +"FD" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/toy/katana, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"FE" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/crashed_ship) +"FI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" + }, +/obj/item/paper/prison_station/pirate_note/clfship, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"FL" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + icon_state = "plasteel_closed_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"FP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Medical Bay" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"FQ" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"FT" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_colony_grounds) +"GB" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"GE" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"GG" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/central) +"GI" = ( +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"GQ" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"GS" = ( +/turf/open/floor/plating, +/area/shiva/interior/colony/deck) +"GT" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/central) +"GX" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Hu" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/redfull/west, +/area/shiva/exterior/cp_colony_grounds) +"HA" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_2" + }, +/area/lv624/lazarus/crashed_ship) +"HL" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"Ib" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"Ii" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"Ij" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Ik" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 8; + closed = 0; + density = 1 + }, +/turf/open/floor/panelscorched, +/area/shiva/interior/colony/deck) +"Io" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Iq" = ( +/obj/structure/machinery/light/double, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"Is" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"It" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"Iv" = ( +/turf/closed/wall/shiva/prefabricated, +/area/shiva/interior/colony/medseceng) +"Iz" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_color = "green"; + phone_id = "Medical Bay"; + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"IB" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"IE" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"IJ" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"IM" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"IU" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"IV" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"Ja" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"Jl" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp{ + pixel_y = 4 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"Jy" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_colony_grounds) +"JI" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"JL" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_s_w" + }, +/area/lv624/lazarus/crashed_ship) +"Kb" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"KK" = ( +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"KZ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"Lc" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Lf" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_medic, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Ln" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Lo" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"LS" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"LX" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/lv624/lazarus/crashed_ship) +"LY" = ( +/turf/open/auto_turf/snow/layer1, +/area/lv624/lazarus/crashed_ship) +"Mg" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 + }, +/obj/structure/flora/bush/snow{ + pixel_y = 10 + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/colony/central) +"Mm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -8 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 9 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"Mp" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/crashed_ship) +"Mx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ME" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"ML" = ( +/obj/item/storage/donut_box, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"MM" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"MP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"MQ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"MR" = ( +/obj/structure/machinery/computer/communications{ + icon_state = "commb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/lv624/lazarus/crashed_ship) +"MW" = ( +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Nk" = ( +/obj/item/stack/rods, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Nn" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"Nu" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = -3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3 + }, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"Nw" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"NJ" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/deck) +"NY" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + density = 1; + closed = 0 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"NZ" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_colony_grounds) +"Of" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Cargo Bay"; + pixel_y = 32 + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Oi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/backpack/general_belt{ + pixel_y = 3 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Oo" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"OC" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"OR" = ( +/turf/open/floor/shiva/red/west, +/area/shiva/interior/colony/medseceng) +"OU" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"OW" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/panelscorched, +/area/shiva/interior/colony/medseceng) +"OY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"OZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Cargo Hold" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Pp" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/restraint/handcuffs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/green/southeast, +/area/lv624/lazarus/crashed_ship) +"Px" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"PB" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/toolbox, +/obj/item/toy/deck/uno{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"PF" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"PP" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"PQ" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"PR" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"PZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/rifle/mar40/lmg{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Qa" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"Qf" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"Qk" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/turf/open/floor/plating/platingdmg1, +/area/shiva/interior/colony/medseceng) +"Qo" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Qu" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"QE" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"QH" = ( +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"QK" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"QO" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_colony_grounds) +"Ra" = ( +/obj/item/stack/rods, +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Rb" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/lv624/lazarus/crashed_ship) +"Rk" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"RC" = ( +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"RE" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"RT" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_colony_grounds) +"RW" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Sf" = ( +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"Sg" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan9" + }, +/area/lv624/lazarus/crashed_ship) +"Sn" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"SC" = ( +/obj/structure/flora/tree/dead/tree_5, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_colony_grounds) +"SF" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"SH" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"SU" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"TN" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"TT" = ( +/turf/open/auto_turf/snow/layer2, +/area/lv624/lazarus/crashed_ship) +"Ub" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"Ur" = ( +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Uv" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"UF" = ( +/turf/open/floor/panelscorched, +/area/shiva/interior/colony/medseceng) +"UI" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/medseceng) +"UL" = ( +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"UW" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Vd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Brig"; + req_access_txt = "100" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"Vh" = ( +/obj/structure/machinery/computer/station_alert{ + icon_state = "atmosb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Vq" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"Vw" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Vz" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"VA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"VC" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"VE" = ( +/turf/open/floor/panelscorched, +/area/shiva/interior/colony/central) +"VJ" = ( +/obj/effect/vehicle_spawner/van/fixed{ + color = "#4a9eed"; + desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; + name = "CLF Van" + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"VN" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"VV" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"VX" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) +"We" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"Wv" = ( +/obj/item/stool, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"WW" = ( +/turf/open/floor/platingdmg1, +/area/shiva/interior/colony/central) +"Xa" = ( +/obj/item/device/taperecorder, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"Xg" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"Xj" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/lv624/lazarus/crashed_ship) +"Xr" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"Xy" = ( +/turf/open/floor/panelscorched, +/area/shiva/interior/colony/deck) +"XC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/emerald/northwest, +/area/lv624/lazarus/crashed_ship) +"XF" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"XQ" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/turf/open/floor/plating/platingdmg1, +/area/shiva/interior/colony/medseceng) +"XY" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Armoury"; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"Ya" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Underground Maintenance" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/central) +"Yd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/attached_gun/flamer, +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"Yj" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"Yk" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/plating/panelscorched, +/area/shiva/interior/colony/medseceng) +"Yq" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_9_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Yv" = ( +/turf/closed/wall/shiva/prefabricated, +/area/shiva/interior/colony/central) +"Zf" = ( +/obj/item/restraint/handcuffs, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"Zh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"Zr" = ( +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/cp_colony_grounds) +"Zw" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"ZA" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/central) +"ZG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"ZM" = ( +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_colony_grounds) +"ZQ" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"ZV" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/interior/colony/medseceng) +"ZX" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) + +(1,1,1) = {" +jJ +rz +rz +rz +rz +rz +CV +Yv +Yv +Yv +Yv +CV +uY +GS +nZ +yT +ZM +lc +fb +fb +rg +fb +fb +Ao +vQ +id +yC +ZM +ZM +dp +Jy +dp +rR +ZM +ZM +yT +ZM +ZM +"} +(2,1,1) = {" +rz +rz +rz +rz +rz +rz +Ya +AU +fd +xb +AW +Yv +Xy +uY +uY +ZM +yT +dF +Oo +rh +BV +XC +Fa +qZ +Ao +vQ +id +yC +ZM +ZM +FT +RT +dp +ZM +ZM +yT +ZM +ZM +"} +(3,1,1) = {" +Yv +Yv +Yv +CV +rz +rz +Yv +cw +mG +kU +xR +Yv +Ik +Fd +wl +zg +zu +cA +cq +xi +BV +MP +It +Xr +qZ +hu +ZM +ZM +ZM +yT +Db +RT +dp +ZM +yT +ZM +ZM +ZM +"} +(4,1,1) = {" +iy +iy +LS +Yv +rz +rz +Yv +xf +Sf +kU +kU +kq +NJ +uY +VX +cb +qP +em +xG +Ur +BV +qU +GI +av +tM +qv +fb +fb +fb +fb +fb +hu +dp +ZM +ZM +ZM +ZM +ZM +"} +(5,1,1) = {" +UL +UL +UL +Yv +rz +rz +Yv +pK +GE +Sf +OC +Yv +lc +Ab +VA +MW +zz +Ur +oY +wC +BV +Iz +Ur +Ur +FI +BV +uB +XF +sl +ku +Ub +qZ +Ao +vQ +id +yC +ZM +ZM +"} +(6,1,1) = {" +GB +wH +UL +Yv +rz +rz +CV +Yv +Yv +Yv +lc +qu +cA +rV +fq +BV +Cl +Ur +Ii +zE +BV +cI +av +Ur +yW +BV +nf +fc +VJ +rV +fc +QH +qZ +Ao +vQ +id +yC +ZM +"} +(7,1,1) = {" +Nw +wH +UL +Yv +rz +rz +Ya +AU +fd +xb +lV +Bi +bP +QH +BS +bU +HA +zy +HA +HA +JL +We +Dw +Lf +lZ +BV +MQ +fc +nf +rV +Ib +DQ +QH +qZ +Ao +vQ +id +yC +"} +(8,1,1) = {" +qk +wH +lr +Yv +qY +rz +Yv +cw +lc +vU +JL +Aa +DH +BS +rV +rV +Ur +Ur +wT +ht +BV +tl +av +Ur +GI +OZ +Mp +ME +Mp +FE +Nn +bd +rY +QH +qZ +fb +fb +hu +"} +(9,1,1) = {" +UL +UL +UL +Yv +GT +BW +Yv +xf +cA +uu +Ra +rV +ZQ +Lc +QH +BV +Vq +Ur +Ur +Nu +BV +vW +dY +Ur +Ur +Ur +QH +Vw +Nk +bt +QE +ra +fQ +gu +SF +Zw +QH +sB +"} +(10,1,1) = {" +yn +Yv +CE +Yv +GG +VE +Yv +lc +BS +rV +BV +BS +rV +Zw +Qu +BV +GX +GI +Ur +KK +bU +HA +HA +Ur +FP +JL +Io +rZ +Zw +ul +iV +Qu +Zw +rV +iQ +rV +BS +sB +"} +(11,1,1) = {" +kT +Mg +VE +vn +VE +rz +Qo +MR +Wv +BS +qu +lD +BS +rV +Zw +MM +Ij +IM +Ur +Ur +Bu +Ur +Ur +Ur +Kb +BV +mz +rV +SH +rV +Df +QH +BS +TT +BS +ZQ +fc +wq +"} +(12,1,1) = {" +rz +rz +VE +Ci +zw +WW +ZQ +BS +uJ +CO +bU +gr +BS +Zw +HA +JL +Bm +uq +uq +uy +GI +Kb +Ur +Kb +aH +sO +Dd +le +QH +Zw +By +QH +en +LY +rV +BS +rV +nW +"} +(13,1,1) = {" +rz +VE +WW +IU +VE +WW +MM +QH +ZQ +rV +kl +QH +rV +ZQ +Oi +bU +HA +HA +HA +HA +JL +tn +Ur +pP +PQ +BV +yJ +iM +rV +aA +NY +Zw +Zw +BS +Zw +jU +fc +VC +"} +(14,1,1) = {" +IB +rz +WW +IU +nH +WW +Px +Vh +ut +QH +rV +Mx +Zw +Zw +IM +BV +OU +EP +lo +ZG +BV +Kb +PZ +Mm +aH +sO +QH +pa +xq +Zw +NY +TT +rV +yl +LY +LY +fc +nW +"} +(15,1,1) = {" +PP +PP +WW +SU +Cv +Cv +LX +bn +QH +Zw +BV +BS +Zw +rV +Dv +MM +ug +vj +PB +ZG +BV +gJ +ae +pE +PQ +BV +Of +QH +QH +BS +Ln +rV +TT +TT +BS +TT +TT +tV +"} +(16,1,1) = {" +ZA +ZA +ZA +ZV +Iv +Iv +lH +LX +bn +ly +sO +Zw +GI +Ur +GI +BV +tH +uu +uu +uu +BV +XY +PF +VV +aH +BV +GQ +FL +pi +QH +Vz +SF +QH +BS +rV +rV +BS +sB +"} +(17,1,1) = {" +dr +QK +dr +ZV +pI +ip +jf +DA +sO +fG +BV +Lo +GI +Ur +Ur +wd +Ur +Ur +Ur +Ur +wd +Ur +Ur +ZX +PQ +Px +rV +TN +CH +kM +Qf +rr +rr +Uv +SF +QH +Zw +sB +"} +(18,1,1) = {" +RC +Yj +Yj +Fi +hf +UF +jf +xD +LX +td +JL +UW +Lo +Ur +GI +GI +uu +uu +uu +uu +GI +GI +Ur +Kb +aH +gr +QH +bP +Vw +RW +BS +IE +Yq +QH +Sg +td +td +Rb +"} +(19,1,1) = {" +RC +Yj +Yj +ZV +Iv +Iv +tD +Iv +ZV +Zr +BV +EU +rH +Ur +GI +bU +HA +HA +HA +HA +JL +ka +Ur +pP +PQ +BV +Io +rV +BK +BS +IJ +Vw +TN +Sg +Xj +fK +rt +jg +"} +(20,1,1) = {" +RC +Yj +Yj +Iv +OY +OR +OR +OW +Iv +yT +LX +td +bn +Ur +GI +BV +xn +FD +dP +uU +bR +GI +Ur +Kb +aH +BV +DX +QH +iH +rV +po +QH +Sg +Xj +fK +rt +jg +yT +"} +(21,1,1) = {" +ko +ko +ko +Iv +RC +Yj +hf +hf +mf +dp +yT +NZ +LX +QH +cW +JL +aT +IM +iu +Ur +Ur +Am +Ur +Ur +ap +BV +cc +Zw +BS +Zw +JI +Sg +Xj +fK +rt +jg +yT +yT +"} +(22,1,1) = {" +RC +Yj +Yj +Zf +RC +Yj +Yj +Zh +Iv +RT +RT +rf +FQ +dp +yT +dF +Rk +AE +uy +Bz +BV +ar +bn +GI +Yd +Ef +td +td +td +td +td +Rb +yT +ZM +ZM +yT +yT +dp +"} +(23,1,1) = {" +RC +Yj +Yj +ko +RC +Yj +Yj +dW +Iv +nn +yT +rf +RT +Hu +KZ +LX +td +bn +iv +PR +BV +Xg +BV +vE +Sg +Rb +ZM +dp +dp +yT +yT +yT +yT +ZM +yT +yT +yT +yT +"} +(24,1,1) = {" +RC +Yj +gg +ko +RC +Yj +Yj +tc +Iv +ky +RT +NZ +RT +mu +yT +yT +ZM +dF +qG +Pp +BV +Cg +BV +Sg +Xj +fK +rt +jg +yT +dp +dp +dp +dp +yT +yT +yT +yT +yT +"} +(25,1,1) = {" +RC +Yj +Yj +ko +RC +Yj +Yj +EV +Iv +Zr +Qa +Fy +yT +mu +yT +dp +RT +LX +td +td +sk +td +sk +Xj +fK +rt +jg +yT +dp +dp +dp +yT +dp +yT +dp +dp +dp +dp +"} +(26,1,1) = {" +ko +iG +ko +Iv +RC +Yj +Yj +VN +ZV +Iv +Iv +Iv +ZV +Yk +iW +aN +iW +Qk +rU +RT +dp +yT +yT +ZM +ZM +yT +dp +dp +dp +yT +dp +dp +dp +yT +dp +dp +dp +dp +"} +(27,1,1) = {" +RC +Yj +Yj +Iv +RC +Yj +Yj +Iq +Iv +ko +IV +ko +Iv +UI +qc +nJ +cN +XQ +dp +RT +dp +dp +yT +ZM +ZM +yT +dp +dp +sW +dp +SC +ii +dp +iC +dp +dp +dp +dp +"} +(28,1,1) = {" +RC +Yj +Yj +Iv +RC +Yj +Yj +dW +Iv +kj +ko +eu +Iv +kd +UF +ud +BD +hf +gd +RT +dp +dp +yT +ZM +dp +yT +sW +dp +dp +dp +vJ +dp +dp +dp +dp +dp +dp +yT +"} +(29,1,1) = {" +ko +ko +RE +Iv +tL +Yj +Yj +tc +ZV +Iv +pz +Iv +Iv +Ja +UF +jf +jT +Iv +RT +RT +yT +yT +ZM +ZM +yT +dp +dp +sW +dp +dp +dp +dp +dp +dp +dp +yT +dp +yT +"} +(30,1,1) = {" +RC +Yj +HL +Iv +ML +Yj +Yj +EV +Iv +uT +OR +mY +Iv +wA +jf +UF +Jl +Iv +QO +RT +yT +dp +ZM +ZM +yT +dp +dp +dp +dp +sW +dp +sW +dp +dp +yT +yT +dp +yT +"} +(31,1,1) = {" +QK +QK +ZV +ZV +Xa +Yj +Yj +vG +Vd +RC +Yj +Is +Iv +Sn +Yj +UF +jT +Iv +RT +yT +yT +dp +ZM +ZM +dp +sW +DZ +dp +sW +dp +sW +dp +dp +dp +dp +dp +Zr +RT +"} diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm index ab9ccc4c399e..e707427dce1f 100644 --- a/maps/map_files/Kutjevo/Kutjevo.dmm +++ b/maps/map_files/Kutjevo/Kutjevo.dmm @@ -5,12 +5,19 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) +"aaL" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/lz_dunes) "aaN" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"aaS" = ( +/obj/structure/largecrate/black_market/confiscated_equipment, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "aaT" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -53,10 +60,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"acN" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/interior/oob) "adD" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/lz_dunes) @@ -69,6 +72,10 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"aeX" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "afS" = ( /obj/structure/monorail, /obj/structure/platform/kutjevo/smooth{ @@ -76,6 +83,11 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"agi" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med) "agG" = ( /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/foremans_office) @@ -99,6 +111,27 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"ahY" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/triage) +"aiD" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/roller, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med/operating) +"ajg" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) +"ajl" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "akH" = ( /obj/item/weapon/gun/rifle/mar40/carbine, /turf/open/floor/kutjevo/multi_tiles, @@ -123,6 +156,9 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"alv" = ( +/turf/open/floor/plating/kutjevo/platingdmg1, +/area/kutjevo/interior/complex/Northwest_Dorms) "alL" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -164,6 +200,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"anv" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/kutjevo/platingdmg3, +/area/kutjevo/interior/complex/Northwest_Dorms) "anE" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -171,18 +211,12 @@ /obj/item/stack/sandbags/large_stack, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"anF" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -30 - }, -/obj/structure/machinery/light{ +"anP" = ( +/obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/locks) -"aog" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/runoff_dunes) +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/colony_north) "aoh" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 @@ -192,8 +226,8 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"aor" = ( -/turf/open/floor/kutjevo/colors/orange/edge/northeast, +"aol" = ( +/turf/open/floor/kutjevo/colors/orange/edge/northwest, /area/kutjevo/interior/power_pt2_electric_boogaloo) "aoJ" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -208,13 +242,13 @@ /obj/structure/bed/chair, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"apD" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/kutjevo/exterior/lz_river) "aqC" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/operating) +"aqH" = ( +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "aqI" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -231,24 +265,10 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"arh" = ( -/obj/item/prop/alien/hugger, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) -"arr" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "arA" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"arG" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "arM" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -267,6 +287,12 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) +"arV" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "arW" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/sand/layer0, @@ -275,6 +301,18 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"asz" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) +"asP" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/complex/botany/east) "asQ" = ( /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/kutjevo/colors/cyan, @@ -293,16 +331,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"atz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"atC" = ( -/obj/item/stack/rods, -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) "atQ" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/floor/kutjevo/colors/orange, @@ -342,17 +370,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"awJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/Northwest_Dorms) -"axi" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -4; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/spring) "axK" = ( /obj/item/trash/cigbutt/bcigbutt, /obj/structure/stairs/perspective/kutjevo{ @@ -367,41 +384,55 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) +"axQ" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/interior/colony_north) +"ayn" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "ayB" = ( /obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/cells) +"ayI" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, +/area/kutjevo/interior/construction) +"ayP" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/construction) "azb" = ( /obj/structure/machinery/chem_dispenser/soda/beer{ icon_state = "dispenser" }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/construction) -"aze" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon7_0, -/area/kutjevo/interior/construction) -"azo" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/sign/nosmoking_1{ - pixel_x = 28 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med) -"azO" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) -"aAe" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 16 +"azv" = ( +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/lz_pad) +"azS" = ( +/obj/structure/platform/kutjevo{ + dir = 1 }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/construction) "aAg" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/kutjevo/multi_tiles, @@ -410,6 +441,15 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/auto_doc) +"aBb" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/exterior/lz_river) +"aBz" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/colony_central) +"aCi" = ( +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) "aCn" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -417,36 +457,42 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"aCo" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) "aCD" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/triage) +"aCF" = ( +/obj/structure/machinery/photocopier, +/obj/structure/window/reinforced/tinted{ + dir = 1; + pixel_y = 10 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med) +"aCT" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/lz_pad) +"aCY" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/runoff_bridge) +"aDg" = ( +/obj/structure/largecrate, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) +"aDs" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"aDA" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "aEU" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"aEZ" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_8, -/area/kutjevo/interior/construction) -"aFc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "aFf" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/kutjevo/colors/green, @@ -477,10 +523,6 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east) -"aHg" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/interior/oob) "aHl" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) @@ -490,6 +532,9 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"aHN" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "aHW" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/power) @@ -500,10 +545,6 @@ "aIw" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/med/operating) -"aIy" = ( -/obj/structure/largecrate/black_market/confiscated_equipment, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) "aIF" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer1, @@ -515,6 +556,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) +"aJC" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/lz_river) "aJU" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -554,6 +598,24 @@ }, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/construction) +"aMt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) +"aMU" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"aNf" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "aNn" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/power/comms) @@ -570,10 +632,32 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) +"aPf" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/platform/kutjevo/smooth, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"aPt" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/foremans_office) "aPA" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"aPC" = ( +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon7_0, +/area/kutjevo/interior/colony_north) +"aQc" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/kutjevo/interior/complex/med/auto_doc) "aQw" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, @@ -585,16 +669,9 @@ /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"aRu" = ( -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/exterior/lz_dunes) -"aRB" = ( -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/west, +"aRQ" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "aRS" = ( /obj/structure/bed{ @@ -607,10 +684,35 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"aRZ" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "aSu" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"aSH" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"aTj" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) +"aTO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/power/comms) "aTQ" = ( /obj/structure/bed/chair{ dir = 8 @@ -627,15 +729,14 @@ }, /turf/open/gm/dirt2, /area/kutjevo/exterior/complex_border/med_park) -"aWt" = ( +"aWC" = ( /turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/lz_river) -"aWR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"aWI" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/exterior/construction) +/area/kutjevo/interior/oob) "aXU" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -647,37 +748,31 @@ /obj/structure/machinery/colony_floodlight_switch, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power/comms) +"aYp" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/interior/construction) "aYr" = ( /obj/item/stack/rods, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"baC" = ( -/obj/effect/spawner/random/toolbox{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/gm/dirtgrassborder2/wall3, -/area/kutjevo/exterior/complex_border/med_park) -"baL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +"baA" = ( /obj/structure/platform/kutjevo/smooth, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "bbc" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/lz_dunes) +"bbj" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/spring) "bbL" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/almayer/research/containment/floor1, @@ -691,27 +786,10 @@ }, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/complex/botany/east_tech) -"bcl" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) -"bcG" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_8, -/area/kutjevo/interior/construction) "bcO" = ( /obj/item/stack/rods, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"bdd" = ( -/obj/structure/largecrate, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/exterior/lz_pad) "bde" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -725,15 +803,26 @@ /obj/item/card/id/silver/cl, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) +"bdY" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "beo" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"bex" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med/auto_doc) +"bev" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "beR" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -748,6 +837,17 @@ "bfg" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/power/comms) +"bfY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med) +"bgl" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) +"bgE" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "bhg" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -757,10 +857,25 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) +"bhC" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/interior/oob) "bhH" = ( /obj/structure/machinery/chem_master, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) +"bhI" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/interior/oob) +"bhT" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/spring) "bhZ" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -788,9 +903,6 @@ /obj/structure/machinery/colony_floodlight_switch, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power) -"bjc" = ( -/turf/open/gm/river/desert/shallow_corner/north, -/area/kutjevo/exterior/runoff_river) "bjj" = ( /obj/structure/machinery/light{ dir = 4 @@ -818,33 +930,24 @@ /obj/item/stack/sheet/metal/med_small_stack, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) -"bmZ" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) -"bne" = ( -/obj/structure/prop/dam/crane{ - icon_state = "tractor"; - name = "tractor" - }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) +"bmN" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) "bng" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) +"bnq" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/med/locks) "bny" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"bnF" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/kutjevo/exterior/runoff_bridge) "bnK" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -855,15 +958,6 @@ /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"bnQ" = ( -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/complex/botany) -"boa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/power) "boR" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) @@ -917,13 +1011,13 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) +"bsC" = ( +/turf/open/floor/plating/kutjevo/platingdmg1, +/area/kutjevo/interior/complex/botany/east_tech) "bsP" = ( /obj/item/device/flash, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"btI" = ( -/turf/open/floor/plating/kutjevo/panelscorched, -/area/kutjevo/interior/complex/botany/east_tech) "buo" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -931,30 +1025,23 @@ }, /turf/open/floor/kutjevo/colors/orange/inner_corner, /area/kutjevo/interior/foremans_office) -"bux" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/auto_doc) "buG" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"bvT" = ( -/obj/structure/machinery/light{ +"bwq" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/exterior/construction) -"bwt" = ( -/obj/structure/prop/dam/truck/cargo, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/Northwest_Colony) -"bwT" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/obj/structure/platform/kutjevo/smooth{ + dir = 8 }, -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/runoff_river) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) +"bxz" = ( +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, +/area/kutjevo/interior/construction) "byl" = ( /obj/structure/blocker/invisible_wall, /obj/structure/window/framed/kutjevo/reinforced/hull, @@ -974,6 +1061,9 @@ "byH" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/colony_S_East) +"bzd" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/exterior/runoff_river) "bzj" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/kutjevo, @@ -984,22 +1074,25 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) -"bzY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/obj/structure/machinery/light{ - dir = 8 +"bzI" = ( +/obj/structure/machinery/door_control/brbutton{ + health = null; + id = "kutjevo_medlock_west"; + idle_power_usage = 0; + indestructible = 1; + name = "Medical West Lock Override"; + pixel_y = 22; + range = 15 }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/operating) -"bAe" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) -"bBf" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/runoff_river) +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) +"bAU" = ( +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/exterior/scrubland) +"bBb" = ( +/turf/open/mars_cave/mars_cave_5, +/area/kutjevo/exterior/scrubland) "bBS" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = -6; @@ -1007,10 +1100,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"bDg" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "bDl" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -1031,10 +1120,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"bDW" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/interior/oob/dev_room) "bDX" = ( /obj/structure/machinery/sensortower, /turf/open/floor/kutjevo/grey/plate, @@ -1043,19 +1128,9 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/locks) -"bEn" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/lz_pad) "bEp" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/scrubland) -"bEt" = ( -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "bEH" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_north) @@ -1075,34 +1150,34 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"bFz" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +"bFq" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, +/area/kutjevo/interior/construction) +"bFK" = ( /turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/interior/oob) +/area/kutjevo/exterior/runoff_river) "bGg" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"bGi" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) +"bGk" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/lz_river) "bGv" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"bGw" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/interior/oob/dev_room) "bGD" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/lz_dunes) +"bGI" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/complex/botany) "bGV" = ( /obj/structure/bed/chair{ dir = 8 @@ -1117,6 +1192,14 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"bHx" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/structure/platform_decoration/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "bHA" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) @@ -1140,9 +1223,6 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"bJf" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) "bKi" = ( /obj/structure/pipes/unary/freezer{ icon_state = "freezer_1" @@ -1163,12 +1243,6 @@ "bKH" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"bKJ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) "bKO" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer2, @@ -1183,30 +1257,24 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/colony_central/mine_elevator) -"bMu" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) +"bLG" = ( +/turf/open/mars_cave/mars_cave_23, +/area/kutjevo/exterior/scrubland) "bNG" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) -"bNN" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 16 - }, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "bOc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) +"bOi" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_bridge) "bPf" = ( /obj/structure/platform_decoration/kutjevo, /obj/effect/landmark/survivor_spawner, @@ -1220,14 +1288,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/foremans_office) -"bQk" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "bQy" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -1240,13 +1300,10 @@ }, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/complex/botany/east_tech) -"bRl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/foremans_office) +"bRy" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "bRF" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand/layer0, @@ -1267,12 +1324,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"bTt" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/edge/north, -/area/kutjevo/interior/construction) "bTN" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null; @@ -1289,11 +1340,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"bVB" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "bVK" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 9; @@ -1311,12 +1357,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) -"bWA" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) "bXc" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, @@ -1335,14 +1375,22 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) +"bXx" = ( +/turf/open/mars_cave/mars_cave_10, +/area/kutjevo/exterior/scrubland) +"bXD" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_dunes) +"bYU" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "caj" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"cal" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) "cau" = ( /obj/item/bodybag/tarp/reactive, /obj/item/bodybag/tarp/reactive, @@ -1358,37 +1406,35 @@ "cbg" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) -"cbv" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "cbz" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_north) -"ccs" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"ccu" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge/west, -/area/kutjevo/interior/complex/med) -"cdE" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, +"cbX" = ( /obj/structure/bed/chair{ - dir = 4 + pixel_y = 8 }, -/turf/open/floor/kutjevo/colors/purple/inner_corner/east, -/area/kutjevo/interior/construction) +/obj/structure/sign/safety/medical{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) +"cct" = ( +/turf/open/mars_cave/mars_cave_23, +/area/kutjevo/exterior/lz_dunes) +"cdt" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "cek" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) +"cel" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "cey" = ( /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/kutjevo/tan, @@ -1403,6 +1449,14 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"cfn" = ( +/obj/item/stack/sheet/wood, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"cgl" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/scrubland) "cgE" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer0, @@ -1417,6 +1471,15 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) +"cgN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"chj" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/triage) "cht" = ( /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -1435,31 +1498,29 @@ /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"cjC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge/northeast, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"cjL" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/complex/botany) "cjO" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/med) -"ckC" = ( -/obj/structure/platform_decoration/kutjevo/rock{ +"ckx" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/mars_cave/mars_cave_10, -/area/kutjevo/exterior/scrubland) -"ckF" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/kutjevo/interior/complex/med) +"cll" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/interior/oob/dev_room) -"clo" = ( -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_dunes) -"cmG" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/east, -/area/kutjevo/interior/complex/med/triage) +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) +"clM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 + }, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "cnb" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/kutjevo/colors, @@ -1470,18 +1531,6 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"cou" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"coF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "coL" = ( /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/kutjevo/colors/cyan, @@ -1514,32 +1563,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"cpj" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) -"cpD" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) -"cqc" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/orange/inner_corner/east, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"cqk" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany/east) "cqX" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -1566,16 +1589,22 @@ /obj/structure/girder, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) -"ctA" = ( -/obj/structure/largecrate, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) +"cto" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/power) "ctD" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_30" }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"ctE" = ( +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "ctG" = ( /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan, @@ -1598,21 +1627,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_rec) -"ctV" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "cum" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/oob) -"cun" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) "cuF" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -1625,15 +1643,6 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"cvm" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) -"cvF" = ( -/obj/structure/reagent_dispensers/watertank{ - desc = "A watertank. The label has been written over with the sequence 2---" - }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/Northwest_Colony) "cvV" = ( /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/kutjevo/multi_tiles, @@ -1655,6 +1664,10 @@ /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"cwU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east_tech) "cyc" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_central/mine_elevator) @@ -1662,23 +1675,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) +"cza" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "cAt" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) +"cAG" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "cAK" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"cBd" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/kutjevo/colors/purple/inner_corner/north, -/area/kutjevo/interior/construction) -"cBi" = ( -/obj/structure/platform_decoration/kutjevo{ +"cAO" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "cBq" = ( /obj/structure/flora/bush/ausbushes/ausbush{ icon_state = "pointybush_2"; @@ -1702,6 +1720,12 @@ "cCa" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_north) +"cCE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "cDf" = ( /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/complex/med) @@ -1715,6 +1739,24 @@ "cDx" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/stonyfields) +"cDE" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/red, +/area/kutjevo/interior/oob) +"cDR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet, +/obj/item/clothing/under/kutjevo, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "cDU" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -1745,19 +1787,10 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany) -"cFJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany/east_tech) -"cFT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"cEP" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/interior/oob/dev_room) "cFY" = ( /obj/item/stool, /obj/item/frame/firstaid_arm_assembly, @@ -1793,6 +1826,9 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power) +"cIM" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/spring) "cIZ" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -1806,13 +1842,13 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) +"cJm" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_bridge) "cJn" = ( /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) -"cKi" = ( -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/runoff_dunes) "cKH" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -1841,13 +1877,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"cLr" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) -"cLQ" = ( -/turf/open/mars_cave/mars_cave_7, -/area/kutjevo/exterior/lz_dunes) "cMc" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/stairs/perspective/kutjevo{ @@ -1857,6 +1886,10 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"cMo" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/foremans_office) "cMv" = ( /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, @@ -1867,14 +1900,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"cMI" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "cMJ" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -1887,6 +1912,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/lz_river) +"cNG" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) "cOh" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib2" @@ -1896,15 +1925,6 @@ "cOt" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_dunes) -"cOx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med) -"cPn" = ( -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/exterior/lz_dunes) "cPt" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -1923,14 +1943,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"cQt" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "cQz" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/green/tile, @@ -1946,9 +1958,16 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"cRu" = ( +/turf/open/floor/kutjevo/colors/orange/edge/southeast, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "cRI" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/runoff_river) +"cRJ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Dorms) "cRO" = ( /obj/structure/monorail, /obj/structure/platform/kutjevo/smooth{ @@ -1956,6 +1975,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) +"cRW" = ( +/obj/structure/window/framed/kutjevo/reinforced/hull, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/oob) "cSb" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibhead" @@ -1973,6 +1996,13 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) +"cSQ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/spring) "cTj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -1982,16 +2012,6 @@ "cTz" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"cTG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "cTW" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -2008,12 +2028,6 @@ /obj/structure/bed/sofa/vert/white/bot, /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/complex/med/auto_doc) -"cUl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "cUm" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) @@ -2030,6 +2044,13 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"cVf" = ( +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) +"cVs" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "cVD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, @@ -2057,6 +2078,9 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) +"cWO" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "cWV" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/lz_dunes) @@ -2066,15 +2090,11 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"cXA" = ( -/obj/structure/flora/bush/ausbushes/ppflowers{ - icon_state = "lavendergrass_1" - }, -/mob/living/simple_animal/cat/Runtime{ - name = "Garry" - }, -/turf/open/gm/dirtgrassborder2/west, -/area/kutjevo/exterior/complex_border/med_park) +"cXE" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "cXL" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) @@ -2087,24 +2107,13 @@ /obj/item/clipboard, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"cYb" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) -"cZt" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door_control/brbutton{ - health = null; - id = "kutjevo_medlock_east"; - idle_power_usage = 0; - indestructible = 1; - name = "Medical East Lock Override"; - pixel_y = 22; - range = 15 +"cZD" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/med) +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_river) "dax" = ( /obj/structure/sink{ pixel_y = 32 @@ -2122,6 +2131,9 @@ /obj/item/spacecash/c1000, /turf/open/floor/carpet, /area/kutjevo/interior/oob) +"dbd" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/spring) "dbg" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -2148,9 +2160,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"dcC" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/spring) "ddi" = ( /obj/structure/platform/kutjevo, /turf/open/gm/river/desert/deep, @@ -2182,12 +2191,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"deo" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/kutjevo/interior/complex/med) "dew" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz2_north) @@ -2204,13 +2207,6 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"dfY" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/lz_river) -"dga" = ( -/obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "dgs" = ( /obj/item/toy/crayon/rainbow{ desc = "I bet you main observer."; @@ -2225,15 +2221,20 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"dhr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/exterior/lz_pad) "dht" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/Northwest_Colony) -"dhL" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +"dhZ" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibarm" }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "dib" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_river) @@ -2262,25 +2263,27 @@ "dkW" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"dlf" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "dlT" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) -"dml" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"dmy" = ( -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/exterior/lz_pad) -"dnd" = ( -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/spring) +"dmN" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/runoff_river) "dnl" = ( /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"dnn" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/exterior/lz_dunes) "dnF" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand/layer0, @@ -2306,52 +2309,19 @@ "dob" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/lz_river) -"dox" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_river) -"dpt" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"dpH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/tan, +"don" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/lz_pad) "dql" = ( /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"dqp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_bridge) -"dqH" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/platform/kutjevo/smooth, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "dqK" = ( /obj/structure/flora/grass/desert/lightgrass_1, /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) -"dsi" = ( -/turf/open/floor/coagulation/icon7_0, -/area/kutjevo/exterior/scrubland) -"dsp" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/scrubland) "dsN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -2366,19 +2336,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"dte" = ( -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/runoff_river) -"dtM" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) +"dtg" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/spring) "dtV" = ( /obj/structure/machinery/blackbox_recorder, /obj/item/prop/almayer/flight_recorder/colony{ @@ -2401,6 +2361,9 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"dvl" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) "dvL" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced/prison, @@ -2414,18 +2377,6 @@ "dwf" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_bridge) -"dwx" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -32 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med) -"dwP" = ( -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "dxc" = ( /obj/structure/machinery/light{ dir = 8 @@ -2435,30 +2386,17 @@ "dxF" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/oob) -"dxL" = ( -/obj/structure/prop/dam/truck/cargo, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) -"dyz" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_river) "dyB" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) -"dyU" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"dyS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/turf/open/gm/river/desert/shallow_corner/east, -/area/kutjevo/exterior/lz_river) -"dyW" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/lz_pad) +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "dzd" = ( /obj/item/storage/briefcase, /turf/open/auto_turf/sand/layer0, @@ -2480,33 +2418,16 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"dzH" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/lz_dunes) "dzN" = ( /obj/item/stack/rods, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) -"dAB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "dAH" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/runoff_bridge) -"dAM" = ( -/turf/open/gm/river/desert/shallow_corner/west, -/area/kutjevo/exterior/runoff_river) -"dBj" = ( -/turf/open/floor/kutjevo/plate, -/area/kutjevo/exterior/lz_pad) -"dBt" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/spring) +"dBF" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med/auto_doc) "dBO" = ( /obj/structure/ladder, /obj/structure/blocker/invisible_wall, @@ -2539,16 +2460,19 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/exterior/runoff_bridge) -"dDm" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/runoff_dunes) "dDq" = ( /obj/item/stack/sheet/metal, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/Northwest_Colony) -"dDL" = ( -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/lz_pad) +"dEc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "dEI" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/delayone, @@ -2558,9 +2482,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) -"dFk" = ( -/turf/open/mars_cave/mars_cave_7, -/area/kutjevo/exterior/scrubland) "dFx" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand/layer1, @@ -2581,12 +2502,21 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/operating) -"dGy" = ( +"dGF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/complex/med/auto_doc) +"dGG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/construction) +"dHg" = ( /obj/structure/platform_decoration/kutjevo{ - dir = 4 + dir = 8 }, -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1/east, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/kutjevo/exterior/runoff_river) "dHj" = ( /obj/structure/machinery/door_control/brbutton/alt{ @@ -2602,6 +2532,12 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) +"dHt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "dHF" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand/layer0, @@ -2613,10 +2549,10 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"dIc" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_river) +"dIf" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "dIo" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 @@ -2627,6 +2563,22 @@ /obj/effect/spawner/random/tool, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"dIW" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) +"dIZ" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/scrubland) "dJk" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/tan, @@ -2646,15 +2598,6 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"dKu" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/runoff_river) -"dKz" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/interior/colony_north) "dKO" = ( /obj/structure/bed/chair{ dir = 4 @@ -2671,12 +2614,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"dLZ" = ( -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/interior/power/comms) -"dNc" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/runoff_river) "dNg" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -2688,28 +2625,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"dOj" = ( -/turf/open/gm/river/desert/shallow_corner/north, -/area/kutjevo/exterior/spring) "dOJ" = ( /obj/structure/barricade/deployable, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) -"dOU" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 14 - }, -/turf/open/desert/desert_shore/desert_shore1, -/area/kutjevo/exterior/lz_pad) "dQq" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"dQs" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med/locks) "dQv" = ( /obj/structure/girder, /turf/open/floor/plating/kutjevo, @@ -2725,9 +2650,12 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power) -"dRj" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/exterior/runoff_bridge) +"dRN" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "dRX" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -2748,16 +2676,6 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"dTn" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/Northwest_Colony) -"dTp" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/lz_river) -"dTJ" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/runoff_river) "dTL" = ( /obj/structure/bed/chair{ dir = 4 @@ -2775,10 +2693,9 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/spring) -"dUy" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) +"dUr" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/spring) "dUE" = ( /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/auto_turf/sand/layer0, @@ -2797,6 +2714,16 @@ /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, /area/kutjevo/interior/complex/botany) +"dVu" = ( +/obj/structure/bed/sofa/vert/white/top{ + pixel_y = 17 + }, +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) +"dVy" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "dWb" = ( /obj/structure/machinery/light{ dir = 8 @@ -2846,6 +2773,15 @@ "dYB" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) +"dYT" = ( +/turf/open/mars_cave/mars_cave_7, +/area/kutjevo/exterior/scrubland) +"dZv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med) "eaB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -2866,22 +2802,22 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"ebv" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/spring) +"ebu" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "ebB" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"ebP" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ +"ebJ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/interior/oob) +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "ebZ" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 @@ -2898,10 +2834,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"ecO" = ( -/obj/structure/machinery/light, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/exterior/construction) "ecV" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -2912,25 +2844,27 @@ /obj/structure/platform/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) -"eem" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/runoff_bridge) +"edD" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med/triage) +"eek" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/lz_river) "eeP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 }, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) -"efr" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) -"efF" = ( -/obj/structure/bed/chair{ - dir = 8 +"eeX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/kutjevo/colors/purple/edge/north, -/area/kutjevo/interior/construction) +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"efs" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/spring) "efS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -2942,52 +2876,12 @@ /obj/item/spacecash/c200, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"egf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) -"egu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist/kutjevo/burst, -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med/operating) "egx" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"egL" = ( -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/complex/Northwest_Dorms) "egZ" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/botany) @@ -2995,6 +2889,13 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"ehH" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/item/device/radio, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "ehJ" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, @@ -3006,9 +2907,9 @@ }, /turf/open/floor/kutjevo/colors/purple/inner_corner, /area/kutjevo/interior/construction) -"eiX" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 +"eji" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_pad) @@ -3025,32 +2926,20 @@ /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, /area/kutjevo/interior/complex/med/operating) -"ekw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = null - }, -/turf/open/floor/kutjevo/tan/alt_inner_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "ekJ" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"ekV" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "ele" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"elo" = ( -/turf/open/floor/coagulation/icon8_3, -/area/kutjevo/exterior/scrubland) +"elI" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "emi" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -3062,16 +2951,14 @@ /obj/item/weapon/gun/revolver/cmb, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"emU" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) +"emq" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/operating) +"enw" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Dorms) "enK" = ( /obj/structure/window{ dir = 1 @@ -3099,13 +2986,6 @@ /obj/structure/machinery/chem_dispenser/medbay, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) -"epb" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.05 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "epd" = ( /obj/item/reagent_container/food/drinks/cans/thirteenloko, /turf/open/auto_turf/sand/layer1, @@ -3116,9 +2996,17 @@ /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"epG" = ( -/turf/open/gm/dirtgrassborder2/wall2, -/area/kutjevo/exterior/complex_border/med_park) +"epm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 3 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "epQ" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/tan, @@ -3126,21 +3014,10 @@ "epR" = ( /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"epV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/exterior/construction) "eqJ" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"eqQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) "era" = ( /obj/structure/closet/crate/freezer/rations, /obj/item/defenses/handheld/tesla_coil, @@ -3162,6 +3039,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) +"erN" = ( +/turf/open/mars_cave/mars_cave_11, +/area/kutjevo/exterior/lz_dunes) "erX" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, @@ -3174,6 +3054,9 @@ /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"etq" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/botany/east_tech) "etu" = ( /obj/structure/machinery/door_control/brbutton/alt{ health = null; @@ -3187,13 +3070,6 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) -"etY" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) "eud" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer1, @@ -3201,27 +3077,30 @@ "euj" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"eur" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"euI" = ( -/obj/item/clipboard, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "evr" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) +"evx" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Dorms) +"evD" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "evZ" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) "ewl" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/spring) +"ews" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "ewF" = ( /obj/item/phone{ pixel_x = 1; @@ -3242,14 +3121,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"exj" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = 5; - pixel_y = 12 - }, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/runoff_bridge) +"exC" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east) "exD" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/bed{ @@ -3279,27 +3153,45 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_north) -"eyU" = ( -/turf/open/gm/river/desert/shallow_corner/north, -/area/kutjevo/exterior/lz_river) -"ezg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +"eyO" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 17 }, -/obj/structure/largecrate/random/case/small{ - pixel_y = 7 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 17 }, -/turf/open/floor/kutjevo/colors/purple/inner_corner/east, -/area/kutjevo/interior/construction) +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "ezm" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"ezA" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/surgery, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/operating) +"ezU" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/interior/construction) "ezX" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power/comms) +"eAe" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/plate, +/area/kutjevo/exterior/lz_pad) "eAC" = ( /obj/structure/closet/secure_closet/medical2, /obj/structure/machinery/light{ @@ -3322,6 +3214,12 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) +"eAV" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "eBH" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, @@ -3351,14 +3249,27 @@ /obj/item/paper/crumpled/bloody, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) +"eCM" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "eCY" = ( /obj/structure/machinery/cryo_cell, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/cells) -"eDQ" = ( +"eDn" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/interior/oob/dev_room) +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/power) "eDS" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -3374,9 +3285,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"eFy" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/lz_pad) "eFX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -3396,10 +3304,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"eGL" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) +"eHa" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) "eHX" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/telecomm/lz1_south) @@ -3407,31 +3315,34 @@ /obj/item/tool/hatchet, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"eIL" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/east, -/area/kutjevo/interior/complex/med/auto_doc) "eIZ" = ( /obj/item/stack/rods, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"eJg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) -"eJi" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) +"eJf" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "eJo" = ( /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"eKr" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/red, -/area/kutjevo/interior/oob) +"eJK" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/colony_South/power2) +"eKx" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_river) +"eKB" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/exterior/scrubland) +"eKL" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/runoff_river) +"eLe" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "eLO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -3464,26 +3375,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"eNK" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_sn_full_cap"; - pixel_y = 16 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) -"eOc" = ( -/turf/open/floor/kutjevo/colors/orange/edge/northwest, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"eOt" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "eOy" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, @@ -3513,13 +3404,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) -"ePq" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon8_0, -/area/kutjevo/interior/colony_north) "ePx" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) @@ -3536,10 +3420,9 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"eQK" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/interior/oob/dev_room) +"eQn" = ( +/turf/open/floor/coagulation/icon7_0, +/area/kutjevo/exterior/scrubland) "eQQ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/kutjevo/colors/purple, @@ -3570,12 +3453,6 @@ /obj/structure/machinery/body_scanconsole, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"eSq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/locks) "eSH" = ( /turf/open/floor/kutjevo/colors/orange/inner_corner, /area/kutjevo/interior/power_pt2_electric_boogaloo) @@ -3590,10 +3467,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_river) -"eTy" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "eTP" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -3605,36 +3478,33 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"eUA" = ( -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/construction) -"eUJ" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) -"eVv" = ( -/obj/structure/machinery/light{ +"eUf" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/filtrationside/north, +/area/kutjevo/interior/power) +"eUT" = ( +/obj/structure/platform/kutjevo/smooth/stair_plate, +/obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"eUY" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "eVy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"eVO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/clipboard, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "eVR" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/spring) +"eVT" = ( +/obj/structure/largecrate, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_pad) "eWP" = ( /obj/effect/landmark/corpsespawner/colonist/kutjevo, /turf/open/floor/kutjevo/multi_tiles, @@ -3647,6 +3517,9 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) +"eYj" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/spring) "eYN" = ( /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/multi_tiles, @@ -3657,6 +3530,11 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) +"eZM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link/green, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/operating) "eZP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/kutjevo/grey/plate, @@ -3671,6 +3549,9 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"fbm" = ( +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/exterior/scrubland) "fbG" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -3679,12 +3560,15 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) -"fbK" = ( -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/colony_central) "fbZ" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_central) +"fcg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/operating) "fcB" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_2"; @@ -3700,19 +3584,16 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"fdr" = ( +"fdE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 }, +/obj/structure/largecrate/random/barrel, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) -"fdF" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "fdH" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/auto_turf/sand/layer0, @@ -3733,11 +3614,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"feQ" = ( -/obj/structure/closet, -/obj/item/clothing/under/kutjevo/drysuit, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "feR" = ( /obj/structure/surface/rack, /obj/item/clothing/head/welding, @@ -3763,12 +3639,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power) -"ffv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/defibrillator, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/auto_doc) "ffP" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 @@ -3795,10 +3665,12 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east) -"fiq" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) +"fhP" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "fiE" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood/xeno{ @@ -3831,6 +3703,10 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) +"fkE" = ( +/obj/effect/landmark/corpsespawner/colonist/kutjevo, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) "fkK" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ @@ -3847,15 +3723,6 @@ /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"flp" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) -"flP" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/red, -/area/kutjevo/interior/oob) "flW" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer2, @@ -3868,45 +3735,17 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"fmN" = ( -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) -"fmR" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/kutjevo/colors/purple/inner_corner/east, -/area/kutjevo/interior/construction) "fne" = ( /obj/item/trash/barcardine, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"foE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/clipboard, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) -"foI" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) +"fns" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/med/locks) "fpj" = ( /obj/item/trash/hotdog, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/construction) -"fpJ" = ( -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/locks) "fpM" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -3916,6 +3755,9 @@ "fpO" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"fqc" = ( +/turf/open/floor/kutjevo/colors/orange/edge/northwest, +/area/kutjevo/interior/foremans_office) "fqm" = ( /obj/structure/largecrate/random, /obj/item/toy/deck, @@ -3954,6 +3796,13 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) +"fsP" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/runoff_dunes) +"fsQ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "fto" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) @@ -3973,9 +3822,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"fui" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/scrubland) "fuz" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/power) @@ -3983,9 +3829,19 @@ /obj/structure/surface/rack, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"fwF" = ( -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/colony_central) +"fuU" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) +"fxG" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "fxL" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -3993,10 +3849,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) -"fyB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "fyD" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) @@ -4006,19 +3858,10 @@ "fyT" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/complex_border/med_rec) -"fyZ" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "fAE" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"fAF" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/interior/oob) "fAT" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer0, @@ -4029,16 +3872,13 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"fDY" = ( -/obj/structure/platform/kutjevo/smooth/stair_plate, -/obj/structure/platform/kutjevo/smooth{ +"fEf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) -"fEu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras, /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "fEz" = ( @@ -4062,17 +3902,14 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"fFJ" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/nuclear, -/obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/colony_South/power2) "fGk" = ( /obj/item/clipboard, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"fGE" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/lz_pad) "fHX" = ( /obj/structure/bed/stool, /turf/open/auto_turf/sand/layer1, @@ -4102,25 +3939,10 @@ }, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/interior/power) -"fKD" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"fKJ" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 8 - }, -/obj/structure/machinery/light, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/strata/multi_tiles/west, -/area/kutjevo/interior/complex/med/operating) +"fKv" = ( +/obj/item/cell/high, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "fKL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffeecup{ @@ -4134,12 +3956,21 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) +"fKU" = ( +/turf/open/gm/dirtgrassborder2/east, +/area/kutjevo/exterior/complex_border/med_park) "fLE" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) +"fMb" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_bridge) "fMd" = ( /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/kutjevo/tan, @@ -4150,12 +3981,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"fNc" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) "fNe" = ( /obj/effect/landmark/nightmare{ insert_tag = "cleaningprog_botany" @@ -4168,6 +3993,9 @@ }, /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) +"fNr" = ( +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "fOO" = ( /obj/structure/flora/grass/desert{ icon_state = "heavygrass_6" @@ -4181,15 +4009,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"fPH" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) -"fQg" = ( -/turf/open/gm/dirtgrassborder2/west, -/area/kutjevo/exterior/complex_border/med_park) "fQn" = ( /obj/structure/girder, /turf/open/floor/kutjevo/grey/plate, @@ -4207,22 +4026,23 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) -"fQC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/power/comms) "fQJ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"fQV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/auto_doc) "fRu" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer0, @@ -4237,31 +4057,16 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"fRZ" = ( +"fTp" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, /obj/structure/platform/kutjevo/smooth{ dir = 4 }, /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) -"fSm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/roller, -/turf/open/floor/kutjevo/colors/cyan/edge/east, -/area/kutjevo/interior/complex/med/operating) -"fSK" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/handcard/aceofspades, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) -"fTk" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "fTR" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/item/reagent_container/glass/watertank, @@ -4281,15 +4086,35 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"fVm" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/turf/open/floor/kutjevo/tan/alt_inner_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"fUP" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) +"fUV" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"fUZ" = ( +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "fVv" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"fVA" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "fWl" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/grey/plate, @@ -4304,6 +4129,9 @@ /obj/structure/prop/dam/gravestone, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) +"fYl" = ( +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/complex/botany) "fYr" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -4312,35 +4140,26 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"fYE" = ( +"fYV" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/kutjevo/tan/alt_edge/northeast, -/area/kutjevo/exterior/lz_pad) -"fYF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) -"fYI" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/kutjevo/exterior/runoff_river) -"fZT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/runoff_bridge) +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"gaF" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med) +"gbi" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/applecakeslice, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) "gbv" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/exterior/runoff_dunes) -"gby" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "gce" = ( /obj/item/device/radio, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -4355,21 +4174,15 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) +"gcD" = ( +/obj/structure/machinery/light, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "gdb" = ( /obj/structure/blocker/invisible_wall, /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"gde" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "gdX" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -4386,38 +4199,53 @@ /obj/structure/surface/table/gamblingtable, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"gfK" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +"gft" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 16 }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/interior/oob/dev_room) +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"gfz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"gfI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "ggC" = ( /obj/structure/fence, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/Northwest_Colony) -"ghj" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner/west, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"ggZ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/interior/oob/dev_room) "ghk" = ( /obj/structure/bed/sofa/vert/white, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"ghR" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/lz_river) "gic" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"giM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/power/comms) "giY" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer1, @@ -4434,15 +4262,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) +"gjt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/atmospipes, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "gjK" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/auto_doc) -"gkU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/operating) "gld" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) @@ -4455,10 +4282,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"gmA" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) "gmS" = ( /obj/structure/machinery/shower{ dir = 1; @@ -4481,12 +4304,6 @@ "gnY" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_dunes) -"goa" = ( -/turf/open/floor/coagulation/icon0_0, -/area/kutjevo/exterior/scrubland) -"goh" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_dunes) "gok" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_2"; @@ -4494,6 +4311,17 @@ }, /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/spring) +"goS" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_river) "goT" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/runoff_dunes) @@ -4503,11 +4331,14 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"gpm" = ( -/obj/structure/bed/roller, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/triage) +"gqp" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"gqF" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_river) "gqQ" = ( /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/green, @@ -4515,6 +4346,9 @@ "grx" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) +"grG" = ( +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "grR" = ( /obj/structure/blocker/invisible_wall, /turf/closed/wall/kutjevo/colony/reinforced/hull, @@ -4523,41 +4357,18 @@ /obj/item/clipboard, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"gsn" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_y = 14 - }, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/spring) -"gsq" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted{ - dir = 1; - pixel_y = 10 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med) "gtr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) -"gtE" = ( +"gvb" = ( /obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/power) -"gtL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/interior/oob/dev_room) +"gvh" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8 + dir = 4 }, /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep/toxic, @@ -4568,52 +4379,35 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_dunes) -"gws" = ( -/obj/structure/machinery/light{ +"gvY" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/obj/structure/closet, -/obj/item/clothing/under/kutjevo, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) -"gwv" = ( -/obj/structure/machinery/light{ +/obj/structure/platform/kutjevo/smooth{ dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"gwC" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, /obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, /turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) +/area/kutjevo/interior/oob) "gwY" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med) -"gxs" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/scrubland) -"gxD" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 16 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "gxK" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) -"gyx" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibarm" +"gxM" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"gyd" = ( +/obj/structure/platform/kutjevo{ + dir = 1 }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/colony_central) "gzb" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/kutjevo/multi_tiles, @@ -4642,9 +4436,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"gAM" = ( -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/exterior/lz_dunes) "gBa" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand/layer0, @@ -4687,11 +4478,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"gCh" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) "gCt" = ( /obj/structure/morgue{ dir = 8 @@ -4704,14 +4490,17 @@ }, /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"gDN" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "gDP" = ( /obj/item/tool/wrench, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"gEc" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med/operating) "gEe" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibarm" @@ -4740,28 +4529,17 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"gFo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/alt_edge/southwest, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"gFt" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "gFA" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/spring) +"gGb" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/colony_central) "gHh" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"gHm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "gHp" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, @@ -4772,9 +4550,10 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"gJx" = ( -/turf/open/gm/river/desert/shallow_corner/east, -/area/kutjevo/exterior/spring) +"gIo" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "gJB" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -4782,12 +4561,27 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) +"gJW" = ( +/obj/item/clipboard, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "gKa" = ( /obj/structure/lattice, /obj/item/stack/rods, /obj/structure/surface/table/almayer, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"gKB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "gKG" = ( /obj/structure/flora/bush/ausbushes/ausbush{ icon_state = "pointybush_4" @@ -4828,9 +4622,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"gNI" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/operating) "gNZ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -4844,6 +4635,12 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) +"gOV" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/interior/colony_north) "gPW" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 @@ -4881,6 +4678,15 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) +"gSo" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, +/area/kutjevo/interior/construction) "gSr" = ( /obj/structure/flora/grass/desert/lightgrass_8, /obj/structure/blocker/invisible_wall, @@ -4892,12 +4698,9 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_dunes) -"gTl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_inner_edge/north, -/area/kutjevo/interior/complex/med) +"gSI" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/spring) "gTo" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/science, @@ -4915,10 +4718,9 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) -"gTO" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/plate, -/area/kutjevo/exterior/lz_pad) +"gTZ" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med/locks) "gUa" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -4947,20 +4749,24 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/foremans_office) +"gVb" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/colony_central) "gWd" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/lz_river) -"gWo" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/filtration/coagulation_arm, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/oob) +"gWu" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_dunes) "gWF" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) +"gWI" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "gXF" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8; @@ -4980,6 +4786,9 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"gXQ" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/lz_river) "gYa" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 4 @@ -4998,6 +4807,12 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) +"gYW" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) +"gYZ" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/med/auto_doc) "gZj" = ( /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/auto_turf/sand/layer1, @@ -5006,6 +4821,12 @@ /obj/structure/bed/chair, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) +"ham" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_23, +/area/kutjevo/exterior/scrubland) "han" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -5034,6 +4855,14 @@ }, /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"hbT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/item/clipboard, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "hbY" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, @@ -5045,13 +4874,16 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"hdF" = ( -/turf/open/floor/plating/kutjevo/platingdmg1, -/area/kutjevo/interior/complex/botany/east_tech) "hdQ" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"hec" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_dunes) +"hej" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/spring) "heL" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -5062,34 +4894,23 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"hfu" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med/triage) -"hhu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4 +"hgQ" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_0" }, -/turf/open/floor/kutjevo/tan/alt_inner_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/complex/botany) "hii" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_dunes) -"hiy" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "hiM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"hka" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "hkq" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/tan, @@ -5105,19 +4926,19 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"hmR" = ( -/turf/open/floor/kutjevo/colors/orange/edge/northwest, -/area/kutjevo/interior/foremans_office) "hnm" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"hnq" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"hnC" = ( +/obj/structure/filtration/coagulation_arm, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +/obj/structure/platform/kutjevo/smooth, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "hnE" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -5179,15 +5000,12 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_dunes) -"hrv" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/obj/structure/machinery/light{ - dir = 4 +"hru" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med) +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "hrz" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) @@ -5209,6 +5027,9 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) +"hsH" = ( +/turf/open/floor/plating/kutjevo/panelscorched, +/area/kutjevo/interior/complex/Northwest_Dorms) "htv" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "sedimentation" @@ -5242,19 +5063,20 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) +"hvH" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"hvS" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "hwf" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) -"hws" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) -"hwA" = ( -/turf/open/floor/plating/kutjevo/platingdmg3, -/area/kutjevo/interior/complex/botany/east_tech) "hwO" = ( /obj/structure/machinery/light{ dir = 1 @@ -5265,12 +5087,23 @@ /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"hyk" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/spring) "hyJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) +"hzk" = ( +/obj/structure/closet/radiation, +/obj/effect/spawner/random/toolbox{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/med/locks) "hzq" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/pillbottles, @@ -5308,6 +5141,16 @@ /obj/item/trash/cheesie, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"hBO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/case/small{ + pixel_y = 7 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, +/area/kutjevo/interior/construction) "hCc" = ( /turf/open/gm/river/desert/shallow_corner, /area/kutjevo/exterior/runoff_river) @@ -5336,27 +5179,10 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"hCl" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) -"hCu" = ( +"hDf" = ( +/obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/complex/botany/east) -"hDi" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) +/area/kutjevo/interior/power/comms) "hDu" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/red, @@ -5376,6 +5202,9 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) +"hEn" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/lz_dunes) "hEC" = ( /obj/structure/window_frame/kutjevo, /turf/open/floor/plating/kutjevo, @@ -5391,9 +5220,12 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"hET" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/spring) +"hFh" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "hFi" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -5418,26 +5250,36 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"hHi" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) +"hHk" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "hHo" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/construction) -"hIp" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +"hIg" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) +"hIu" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/complex/botany) +"hIT" = ( +/obj/structure/flora/bush/ausbushes/ppflowers{ + icon_state = "lavendergrass_1" }, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"hJN" = ( -/obj/structure/largecrate/random, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) +/mob/living/simple_animal/cat/Runtime{ + name = "Garry" + }, +/turf/open/gm/dirtgrassborder2/west, +/area/kutjevo/exterior/complex_border/med_park) +"hJD" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) +"hKs" = ( +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "hKE" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -5452,6 +5294,10 @@ }, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/complex/botany/east_tech) +"hLG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "hLH" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -5468,22 +5314,18 @@ "hMu" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany/east_tech) -"hOm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/m94, -/turf/open/floor/kutjevo/colors/purple/inner_corner/west, -/area/kutjevo/interior/construction) -"hOB" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) +"hNb" = ( +/obj/structure/machinery/autodoc_console, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/auto_doc) "hPf" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) +"hPp" = ( +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "hPD" = ( /obj/item/storage/toolbox/syndicate, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -5497,13 +5339,26 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"hQq" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) "hQS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/oob/dev_room) -"hRm" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/kutjevo/platingdmg3, -/area/kutjevo/interior/complex/Northwest_Dorms) +"hRt" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/spring) +"hRy" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/colony_central) "hRG" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer1, @@ -5539,12 +5394,36 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_park) +"hTL" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "hUk" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_north) -"hUy" = ( -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/botany/east_tech) +"hUw" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 8 + }, +/obj/structure/machinery/light, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) +"hUF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "hVg" = ( /obj/effect/spawner/random/tool, /turf/open/floor/kutjevo/tan, @@ -5556,13 +5435,6 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"hVQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med/auto_doc) "hWD" = ( /obj/structure/lattice, /obj/structure/surface/table/almayer, @@ -5586,10 +5458,21 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) +"hXy" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/complex/med/auto_doc) +"hXN" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/power/comms) "hXP" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) +"hXT" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "hYp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -5640,33 +5523,16 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/med/locks) -"iem" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/oob) -"ieA" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/kutjevo/tan/alt_edge/northeast, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"ieC" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/colony_central) +"ieW" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "ify" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/pano) -"ifE" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/construction) -"ifT" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/colony_South/power2) "ige" = ( /obj/structure/blocker/invisible_wall, /obj/structure/surface/table/reinforced/prison, @@ -5684,13 +5550,16 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) +"ihT" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/interior/colony_north) "iin" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) -"iiy" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) "iiG" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/interior/complex/botany/east_tech) @@ -5698,38 +5567,40 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) -"ikW" = ( -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) -"imG" = ( -/obj/structure/bed/sofa/vert/white/top{ - pixel_y = 17 +"ikN" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/kutjevo/interior/foremans_office) +"imo" = ( +/obj/item/stack/rods, +/obj/structure/barricade/deployable{ + dir = 8 }, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/med) +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) +"inI" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_river) "inR" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"iob" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/interior/oob) +"ipa" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "ips" = ( /obj/item/bodybag/tarp/reactive, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"ipy" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "ipz" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) +"ipX" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "iqw" = ( /obj/structure/surface/table/almayer, /obj/item/toy/handcard/aceofspades, @@ -5749,13 +5620,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"ird" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/oob) "irK" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -5771,9 +5635,6 @@ /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"iuz" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/runoff_river) "iuL" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light, @@ -5783,10 +5644,17 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) +"ivr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "ivW" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) +"iwg" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_river) "iwD" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -5798,9 +5666,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"iwV" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/complex/botany) "iwW" = ( /obj/item/stool{ pixel_y = 8 @@ -5811,23 +5676,9 @@ "ixP" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/runoff_river) -"iyd" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med/operating) -"iyP" = ( -/turf/open/floor/coagulation/icon7_8_2, -/area/kutjevo/exterior/scrubland) -"izS" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/triage) -"izY" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) -"iBa" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner/north, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"iyF" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/runoff_dunes) "iBd" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -5861,28 +5712,35 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"iCw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/alt_inner_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"iCG" = ( -/obj/structure/platform/kutjevo{ - dir = 8 +"iDy" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 16 }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/power) -"iCQ" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "iDz" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"iEa" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"iEp" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"iGr" = ( +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/lz_river) "iGz" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/pickaxe, @@ -5902,6 +5760,15 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"iHr" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/interior/construction) "iHw" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer2, @@ -5918,21 +5785,19 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/complex/botany/east_tech) -"iIT" = ( -/obj/structure/platform/kutjevo{ - dir = 4 +"iJi" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 }, -/turf/open/floor/coagulation/icon8_3, -/area/kutjevo/interior/construction) +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) "iJo" = ( /obj/structure/platform/kutjevo{ dir = 4 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"iJq" = ( -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/runoff_dunes) "iJx" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light{ @@ -5940,20 +5805,17 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/med/locks) -"iKf" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_8, -/area/kutjevo/interior/colony_north) "iKE" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/armband/hydro, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"iLa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power) "iLr" = ( /obj/structure/prop/dam/crane{ layer = 3.3 @@ -5975,16 +5837,21 @@ /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"iLU" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/sign/poster{ - pixel_y = 32 +"iLY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"iMk" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"iME" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/turf/open/floor/kutjevo/colors/purple/edge/east, /area/kutjevo/interior/construction) -"iMR" = ( -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/colony_central) "iNt" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/rollingpin, @@ -5998,12 +5865,6 @@ "iNI" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/spring) -"iNY" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "iPk" = ( /obj/item/prop/alien/hugger, /turf/open/floor/plating/kutjevo, @@ -6015,6 +5876,12 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"iQY" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "iSn" = ( /obj/structure/largecrate/random/secure, /obj/structure/machinery/light{ @@ -6028,9 +5895,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/oob) -"iSN" = ( -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/lz_river) "iTc" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/objective_landmark/close, @@ -6072,6 +5936,19 @@ /obj/item/reagent_container/food/drinks/jar, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"iVc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/power/comms) +"iVd" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/lz_dunes) "iVD" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -6082,6 +5959,9 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) +"iWj" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/botany/east_tech) "iWE" = ( /obj/structure/prop/dam/gravestone{ icon_state = "gravestone3" @@ -6109,33 +5989,13 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"iXj" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "iXz" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) -"iXD" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/scrubland) "iYo" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) -"iYO" = ( -/turf/open/floor/kutjevo/tan/grey_edge/northeast, -/area/kutjevo/interior/complex/Northwest_Dorms) -"iZi" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "iZu" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan, @@ -6153,6 +6013,11 @@ }, /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/spring) +"jat" = ( +/obj/structure/closet, +/obj/item/clothing/under/kutjevo/drysuit, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "jav" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/item/ammo_box/magazine/nailgun, @@ -6163,22 +6028,26 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"jcd" = ( -/obj/structure/bed/chair{ +"jbk" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted{ + dir = 1; + pixel_y = 10 + }, +/obj/structure/window/reinforced/tinted{ dir = 4 }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med) +"jbq" = ( /obj/structure/machinery/power/apc{ dir = 8; pixel_x = -24; start_charge = 0 }, -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med/auto_doc) -"jcl" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/alt_edge/northwest, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/construction) "jcI" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz1_south) @@ -6191,6 +6060,18 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_park) +"jdX" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/pill_bottle/tramadol/skillless, +/obj/structure/platform/kutjevo/smooth, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) "jec" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) @@ -6263,15 +6144,18 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"jiX" = ( -/turf/open/floor/kutjevo/tan/grey_edge/southeast, -/area/kutjevo/interior/complex/Northwest_Dorms) "jjt" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"jjQ" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/colony_north) "jkJ" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/item/reagent_container/glass/watertank, @@ -6286,6 +6170,16 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/construction) +"jlq" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) +"jlB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) "jlK" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer1, @@ -6294,17 +6188,13 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"jng" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "jnr" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"jns" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/operating) "jnx" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/kutjevo/tan, @@ -6330,20 +6220,13 @@ "jnV" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/Northwest_Dorms) -"jnY" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/runoff_river) "jog" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz1_south) -"joo" = ( -/obj/item/cell/high, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"joF" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/lz_river) "joL" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light{ @@ -6358,6 +6241,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) +"jps" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/triage) "jpS" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -6369,18 +6255,16 @@ "jqd" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/telecomm/lz1_south) +"jqm" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "jqt" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/lz_dunes) -"jqy" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_7, -/area/kutjevo/exterior/scrubland) -"jrk" = ( -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/complex/botany) +"jqZ" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) "jrs" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -6420,12 +6304,29 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"jtE" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/scrubland) "jtJ" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"juk" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) +"jun" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_river) "juz" = ( /obj/item/ammo_magazine/smg/nailgun, /obj/structure/surface/rack, @@ -6434,10 +6335,6 @@ /obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"juC" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) "juH" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 6; @@ -6485,9 +6382,6 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/complex/med/operating) -"jwx" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge/north, -/area/kutjevo/interior/complex/med) "jwA" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central) @@ -6502,13 +6396,13 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"jxc" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 8 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"jxy" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/interior/oob) +"jxJ" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/colony_central) "jxS" = ( /obj/structure/bed/chair{ dir = 8 @@ -6519,15 +6413,18 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) +"jyj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power) "jyq" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) -"jyz" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/lz_river) "jzb" = ( /obj/structure/prop/dam/truck/mining, /turf/open/asphalt/cement_sunbleached, @@ -6539,14 +6436,11 @@ "jzl" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med) -"jzm" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner/east, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"jzQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med) +"jAS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/tan/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) "jBe" = ( /obj/structure/closet/firecloset/full, /obj/effect/landmark/objective_landmark/close, @@ -6569,9 +6463,22 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"jEh" = ( -/turf/open/floor/plating/kutjevo/panelscorched, -/area/kutjevo/interior/complex/Northwest_Dorms) +"jDh" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -30 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) +"jDJ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "jEo" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -6599,21 +6506,6 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) -"jGo" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) -"jGF" = ( -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) "jGX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors, @@ -6650,41 +6542,36 @@ /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"jJo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"jJH" = ( +/obj/structure/largecrate/random, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "jKc" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/interior/power) -"jKm" = ( -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/colony_central) "jKI" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_South) "jKN" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"jLy" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"jMx" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_dunes) "jOe" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"jOx" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/runoff_dunes) -"jOA" = ( -/obj/item/prop/alien/hugger, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "jPb" = ( /obj/structure/monorail, /obj/structure/platform/kutjevo/smooth{ @@ -6701,6 +6588,16 @@ "jPD" = ( /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/complex/Northwest_Dorms) +"jPI" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"jPQ" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/kutjevo/exterior/lz_pad) "jPW" = ( /obj/structure/machinery/light, /obj/structure/machinery/camera/autoname{ @@ -6735,16 +6632,11 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"jSQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany/east) -"jUK" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +"jSU" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "jUP" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -6752,12 +6644,15 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"jWM" = ( -/obj/structure/platform/kutjevo{ - dir = 4 +"jWs" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/coagulation/icon8_3, -/area/kutjevo/interior/colony_north) +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"jWD" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Dorms) "jXo" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -6770,20 +6665,12 @@ "jYS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) -"jZT" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med/triage) "kah" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) -"kbg" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "kbL" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/stack/sheet/wood, @@ -6793,16 +6680,21 @@ /obj/structure/barricade/handrail/kutjevo, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) -"kcd" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/construction) +"kbR" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/lz_river) +"kcj" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Dorms) "kct" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib4" }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"kcB" = ( +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/exterior/scrubland) "kdf" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/scrubland) @@ -6812,9 +6704,10 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"kdY" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/power) +"kdZ" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/runoff_river) "kec" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 @@ -6822,13 +6715,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) -"keM" = ( -/obj/item/stack/rods, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) "keX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -6860,18 +6746,24 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) +"kgP" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "khI" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) -"khW" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "kie" = ( /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/shore_edge1, @@ -6881,10 +6773,6 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"kiE" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) "kiN" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -6895,63 +6783,43 @@ "kjk" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/colony_central) -"kjo" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland) +"kjI" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/kutjevo/exterior/lz_pad) "kkB" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"kkC" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon7_0, -/area/kutjevo/interior/colony_north) "kkH" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med/operating) -"kls" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med/operating) "klu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"klE" = ( -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "klN" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"klP" = ( -/obj/structure/machinery/photocopier, -/obj/structure/window/reinforced/tinted{ - dir = 1; - pixel_y = 10 - }, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med) "kma" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"kmm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 - }, -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) +"knd" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Dorms) "kne" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) +"knf" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/lz_dunes) "kni" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ name = "\improper Medical Stormlock Shutters" @@ -6962,10 +6830,17 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) +"kny" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/spring) "knP" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) +"koh" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/operating) "koX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -6973,6 +6848,11 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/auto_doc) +"kpv" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) "kpz" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32 @@ -6989,6 +6869,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"kqe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_30"; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "kqt" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -7004,14 +6891,22 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"kqE" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/tan/grey_edge/southeast, -/area/kutjevo/interior/complex/Northwest_Dorms) "kqY" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"krE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) +"krZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "ksb" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -7022,6 +6917,11 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"ksh" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/filtration/coagulation_arm, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "ksl" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/auto_turf/sand/layer1, @@ -7053,6 +6953,11 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"ktT" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pizza, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "kut" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -7061,10 +6966,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/exterior/Northwest_Colony) -"kuL" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/colors/purple/edge/north, -/area/kutjevo/interior/construction) "kuM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -7087,10 +6988,6 @@ }, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/triage) -"kvu" = ( -/obj/item/storage/briefcase, -/turf/open/floor/kutjevo/tan/grey_inner_edge/west, -/area/kutjevo/interior/complex/med) "kvI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, @@ -7104,6 +7001,12 @@ "kvU" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/lz_dunes) +"kwx" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "kwy" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/colony_South) @@ -7138,32 +7041,26 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) +"kyJ" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_river) "kzJ" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) +"kzQ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "kzZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) -"kAb" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) -"kAf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = null - }, -/turf/open/floor/kutjevo/tan/alt_inner_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "kAr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, @@ -7174,28 +7071,16 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) -"kBb" = ( -/obj/structure/machinery/door_control/brbutton{ - health = null; - id = "kutjevo_medlock_west"; - idle_power_usage = 0; - indestructible = 1; - name = "Medical West Lock Override"; - pixel_y = 22; - range = 15 - }, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/med) -"kBm" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) "kBz" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"kBN" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) +"kCS" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "kDl" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/survivor_spawner, @@ -7218,13 +7103,6 @@ }, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/exterior/scrubland) -"kDD" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/vending/snack/packaged{ - anchored = 0 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) "kDS" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) @@ -7238,6 +7116,15 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) +"kEP" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/lz_river) +"kFo" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "kFF" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -7258,21 +7145,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"kGM" = ( -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/botany/east_tech) +"kGQ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "kGU" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med/triage) "kHm" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"kHO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/kutjevo/colors/orange/inner_corner/west, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"kHV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east) "kIc" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -7280,9 +7166,20 @@ /obj/item/weapon/gun/revolver/cmb, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"kIe" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "kIn" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) +"kIH" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -4 + }, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "kIQ" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/auto_turf/sand/layer1, @@ -7300,6 +7197,10 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"kKj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east_tech) "kKq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 1 @@ -7315,8 +7216,16 @@ /obj/item/explosive/plastic, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"kMx" = ( -/turf/open/floor/coagulation/icon7_8_2, +"kLB" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "kMC" = ( /obj/structure/cable/heavyduty{ @@ -7324,17 +7233,11 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) -"kMP" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "kNn" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"kNq" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/lz_river) "kNx" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7366,12 +7269,25 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) +"kPn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "kPw" = ( /obj/effect/landmark/nightmare{ insert_tag = "trappedmonke_andclown" }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/oob) +"kPI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "kPM" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -7396,9 +7312,10 @@ /obj/structure/girder, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) -"kQD" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/spring) +"kQp" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/interior/oob/dev_room) "kQU" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -7408,22 +7325,10 @@ "kRM" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"kSh" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/complex/botany/east) -"kSo" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/interior/oob/dev_room) -"kSy" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/kutjevo/tan/grey_edge/southwest, -/area/kutjevo/interior/complex/Northwest_Dorms) +"kRW" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_river) "kSB" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7440,6 +7345,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) +"kUs" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "kUX" = ( /obj/structure/machinery/light, /obj/item/stack/sheet/wood, @@ -7452,10 +7361,6 @@ /obj/item/tool/wirecutters, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"kVA" = ( -/obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) "kVH" = ( /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/auto_turf/sand/layer1, @@ -7464,30 +7369,36 @@ /obj/structure/window/framed/kutjevo/reinforced/hull, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"kVX" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"kWd" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"kWX" = ( -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/lz_pad) -"kYb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/atmospipes, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"kWu" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/construction) +"kXy" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib4" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) +"kYM" = ( +/obj/item/prop/helmetgarb/spent_buckshot, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "kZm" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) +"kZn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/newspaper, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "kZt" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32 @@ -7509,10 +7420,6 @@ /obj/structure/prop/dam/torii, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"lac" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) "laf" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 @@ -7522,10 +7429,21 @@ "lah" = ( /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"laq" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/kutjevo/interior/construction) "laI" = ( /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) +"laO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flash, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "lbu" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7545,10 +7463,9 @@ /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"lcv" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) +"lcK" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/lz_pad) "lcS" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/med/pano) @@ -7567,14 +7484,18 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"lfb" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +"lep" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/locks) +/obj/structure/machinery/vending/cola, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"leI" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "lfm" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan, @@ -7606,25 +7527,30 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"lhu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/item/device/radio, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"lhD" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"lhF" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"lhT" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "lhY" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"lkp" = ( -/obj/structure/machinery/light{ - dir = 8 +"ljp" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "lkC" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/med/auto_doc) @@ -7652,27 +7578,17 @@ "lly" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/foremans_office) -"lmK" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/interior/oob/dev_room) +"lmL" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "loe" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) -"lok" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib4" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/exterior/runoff_bridge) -"lov" = ( -/obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "loI" = ( /obj/structure/surface/rack, /obj/item/stack/cable_coil/green, @@ -7691,14 +7607,9 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/complex_border/med_rec) -"lpF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/triage) +"lpI" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/lz_river) "lpJ" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) @@ -7707,6 +7618,18 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) +"lpP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/machinery/microwave{ + pixel_x = 1; + pixel_y = 15 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "lqG" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -7715,15 +7638,27 @@ /obj/structure/platform/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power/comms) -"lrx" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/lz_dunes) +"lqK" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/runoff_river) +"lqX" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "lry" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) +"lrC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "lrO" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -7734,10 +7669,9 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"lsy" = ( -/obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/power/comms) +"ltj" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/scrubland) "ltv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/kutjevo/colors/orange, @@ -7746,23 +7680,17 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/operating) -"luO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan/alt_edge/southwest, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "lvb" = ( /obj/structure/surface/table/almayer, /obj/item/card/id/pizza, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"lvv" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/kutjevo/interior/complex/med) "lvR" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/exterior/Northwest_Colony) -"lwL" = ( -/turf/open/gm/dirtgrassborder2/east, -/area/kutjevo/exterior/complex_border/med_park) "lxc" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) @@ -7787,10 +7715,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"lxN" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) +"lyl" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) "lyD" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -7808,18 +7736,21 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"lyJ" = ( -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/exterior/scrubland) -"lzb" = ( -/obj/structure/platform/kutjevo{ - dir = 8 +"lzi" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) +"lAi" = ( +/obj/item/storage/belt/marine, /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/power/comms) -"lzD" = ( -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/lz_pad) "lAn" = ( /obj/structure/machinery/light{ dir = 4 @@ -7879,9 +7810,6 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) -"lEf" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/spring) "lEA" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_central) @@ -7892,27 +7820,37 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"lFq" = ( -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "lFt" = ( /obj/structure/blocker/invisible_wall, /obj/item/device/radio, /turf/open/floor/carpet, /area/kutjevo/interior/oob) +"lFz" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/north, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "lGj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"lHi" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "lHs" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) +"lIl" = ( +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/lz_pad) +"lIt" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "lIB" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7928,20 +7866,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"lIM" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/foremans_office) -"lKk" = ( -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) -"lKR" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) -"lKV" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/runoff_river) "lLo" = ( /obj/structure/monorail, /obj/structure/machinery/door/poddoor/shutters/almayer, @@ -7961,15 +7885,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) -"lLH" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) "lMr" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -7994,12 +7909,17 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) -"lNl" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +"lMT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"lMX" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "lNt" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/stack/sheet/metal/medium_stack, @@ -8021,12 +7941,26 @@ /obj/structure/machinery/photocopier, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) +"lPj" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/botany) +"lPH" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/kutjevo/interior/complex/med) "lPR" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/construction) +"lRr" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "lRy" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/Northwest_Colony) +"lRO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east_tech) "lRV" = ( /obj/structure/machinery/light, /obj/structure/stairs/perspective/kutjevo{ @@ -8060,6 +7994,17 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"lTQ" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) +"lTS" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/lz_dunes) "lUg" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -8071,20 +8016,14 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow_corner, /area/kutjevo/interior/oob) -"lVo" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) +"lVs" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "lVt" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"lVO" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/runoff_dunes) "lVS" = ( /obj/structure/monorail, /obj/structure/machinery/door/poddoor/shutters/almayer, @@ -8097,16 +8036,14 @@ "lVZ" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/scrubland) -"lXe" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/interior/oob) +"lXj" = ( +/obj/item/weapon/wirerod, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"lXq" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "lXN" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz1_south) @@ -8114,14 +8051,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) -"lYI" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_corner/north, -/area/kutjevo/interior/oob) "lYW" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/med) +"lZf" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/lz_river) "lZz" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "kutjevo_medlock_south2"; @@ -8139,25 +8075,14 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"mao" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) -"mar" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/Northwest_Colony) -"maE" = ( -/turf/open/floor/kutjevo/tan/alt_edge, -/area/kutjevo/exterior/lz_dunes) -"mbc" = ( +"maC" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, +/obj/item/paper/janitor, /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"mbh" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/scrubland) +"maE" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/kutjevo/exterior/lz_dunes) "mbp" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -8173,18 +8098,11 @@ "mbS" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) -"mct" = ( -/turf/open/gm/river/desert/shallow_corner/west, -/area/kutjevo/exterior/spring) "mcv" = ( /obj/structure/window/framed/kutjevo/reinforced/hull, /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"mcA" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "mcZ" = ( /obj/structure/bed/chair{ pixel_y = 8 @@ -8195,10 +8113,15 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"mdr" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/triage) +"mdq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/item/clipboard, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "mdu" = ( /obj/structure/machinery/light/small, /turf/open/floor/kutjevo/tan, @@ -8235,24 +8158,16 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"mfk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) "mfD" = ( /obj/structure/prop/dam/truck/mining, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"mfY" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon0_0, -/area/kutjevo/interior/colony_north) "mgn" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/telecomm/lz2_south) +"mgv" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/operating) "mgP" = ( /obj/structure/machinery/light{ dir = 4 @@ -8265,14 +8180,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"mhf" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) "mhj" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -8282,9 +8189,13 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"mhJ" = ( -/turf/open/mars_cave/mars_cave_10, -/area/kutjevo/exterior/lz_dunes) +"mhm" = ( +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/exterior/scrubland) +"mhw" = ( +/obj/item/storage/briefcase, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/kutjevo/interior/complex/med) "mhN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -8296,6 +8207,18 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) +"mie" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"mil" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/colony_central) "mjd" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/auto_turf/sand/layer0, @@ -8303,20 +8226,13 @@ "mjg" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/telecomm/lz2_north) -"mjq" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/runoff_river) "mjN" = ( /obj/item/stack/barbed_wire, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/Northwest_Colony) -"mjP" = ( -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/interior/complex/botany/east_tech) -"mjW" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1/north, +"mka" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/lz_pad) "mkJ" = ( /obj/structure/machinery/light, @@ -8329,20 +8245,20 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"mkU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"mlL" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/runoff_dunes) +"mmb" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med/auto_doc) "mmH" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"mnk" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/lz_dunes) +"mmU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Dorms) "mnn" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -8363,26 +8279,35 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) +"mpq" = ( +/obj/structure/largecrate, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "mpW" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/complex_border/med_rec) -"mqu" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/lz_river) +"mqn" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/runoff_dunes) +"mqw" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/vending/snack/packaged{ + anchored = 0 + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "mqG" = ( /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/operating) -"mrI" = ( +"mru" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/runoff_bridge) +"msa" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/kutjevo/colors/purple/inner_corner/west, -/area/kutjevo/interior/construction) -"msF" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power) +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "msK" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) @@ -8390,10 +8315,12 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"mti" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/kutjevo/colors/orange/inner_corner/west, -/area/kutjevo/interior/foremans_office) +"mts" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "mtt" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/microwave{ @@ -8415,6 +8342,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) +"mup" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "muG" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -8422,6 +8355,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"mvl" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "mvt" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand/layer0, @@ -8441,11 +8378,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"mvM" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/med/locks) "mvX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, @@ -8469,9 +8401,10 @@ /obj/item/frame/rack, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) -"myk" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/spring) +"myv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "mzn" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -8488,9 +8421,6 @@ /obj/item/storage/pill_bottle/dexalin/skillless, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) -"mAb" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/lz_pad) "mAD" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -8523,14 +8453,17 @@ "mBD" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/exterior/stonyfields) -"mBG" = ( -/obj/item/weapon/wirerod, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"mBH" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/lz_river) "mBP" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"mBX" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "mCd" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -8539,10 +8472,6 @@ /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"mCo" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/interior/oob) "mCI" = ( /obj/structure/prop/dam/crane{ icon_state = "tractor"; @@ -8581,15 +8510,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"mDz" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/purple/edge/north, -/area/kutjevo/interior/construction) "mDA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -8629,15 +8549,6 @@ /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"mFd" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/interior/colony_central) "mFf" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -8668,14 +8579,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/triage) -"mGW" = ( -/obj/structure/closet/radiation, -/obj/effect/spawner/random/toolbox{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/med/locks) "mHo" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -8707,9 +8610,6 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"mIA" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/scrubland) "mIB" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 8; @@ -8718,10 +8618,13 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/auto_doc) -"mIT" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +"mJn" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/runoff_river) "mJq" = ( /obj/structure/machinery/computer/cameras/telescreen/entertainment{ icon_state = "ai_bsod"; @@ -8747,38 +8650,15 @@ "mLw" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"mLK" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/triage) -"mLY" = ( -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/Northwest_Dorms) "mMf" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/complex/botany/east_tech) -"mMF" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/multi_tiles/west, -/area/kutjevo/interior/colony_South/power2) "mMH" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) "mNa" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/telecomm/lz2_north) -"mNl" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/oob) -"mNv" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/spring) "mNM" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/exterior/runoff_bridge) @@ -8815,15 +8695,23 @@ "mQl" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/lz_river) -"mRP" = ( -/turf/open/floor/kutjevo/colors/purple/inner_corner/west, -/area/kutjevo/interior/construction) +"mRu" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/orange/inner_corner/north, +/area/kutjevo/interior/foremans_office) "mSd" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) +"mSk" = ( +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "mSm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer0, @@ -8832,9 +8720,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"mSv" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge/east, -/area/kutjevo/interior/complex/med/auto_doc) "mSG" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, @@ -8849,13 +8734,31 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"mTl" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/complex/botany/east) +"mTL" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/interior/colony_north) "mTV" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"mVr" = ( -/turf/open/gm/river/desert/shallow_corner/west, -/area/kutjevo/exterior/lz_river) +"mUg" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) +"mVj" = ( +/turf/open/mars_cave/mars_cave_11, +/area/kutjevo/exterior/scrubland) "mVC" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -8865,23 +8768,20 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) -"mWA" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "mWO" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_central) +"mWU" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/red, +/area/kutjevo/interior/oob) "mXZ" = ( /obj/structure/platform/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"mYj" = ( -/turf/open/floor/coagulation/icon0_8, -/area/kutjevo/exterior/scrubland) "mYt" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/colors, @@ -8898,9 +8798,13 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"mZE" = ( -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) +"mZJ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/spring) "nah" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -8910,6 +8814,9 @@ "naK" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/oob) +"nbd" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/construction) "nbp" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer0, @@ -8933,41 +8840,29 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"nct" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/runoff_river) "ndw" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap" }, /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_bridge) -"ndF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "neI" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"neV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/triage) "ngp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"ngK" = ( -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/colony_South/power2) +"ngD" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/lz_dunes) +"ngF" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) "ngX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -8978,6 +8873,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) +"nhm" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "nhT" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibleg" @@ -9012,30 +8911,22 @@ /obj/item/device/flashlight/on, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"nkZ" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder2/west, -/area/kutjevo/exterior/complex_border/med_park) "nlv" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_central) -"nlA" = ( -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/exterior/construction) "nlT" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"nmw" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper/janitor, -/turf/open/floor/kutjevo/tan/alt_edge/north, +"nlZ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) +"nmH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, /area/kutjevo/interior/complex/Northwest_Flight_Control) "nmK" = ( /obj/structure/bed/chair/comfy{ @@ -9047,12 +8938,12 @@ "nnf" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"nni" = ( -/obj/structure/machinery/light{ - dir = 8 +"nnn" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +/turf/open/mars_cave/mars_cave_7, +/area/kutjevo/exterior/scrubland) "nnx" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 6; @@ -9060,19 +8951,24 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) -"nnz" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/foremans_office) +"nnG" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/exterior/spring) +"nnZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "nps" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"npx" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"npv" = ( +/obj/item/stack/sheet/wood, +/obj/item/storage/belt/marine, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "npB" = ( /obj/structure/machinery/light, /turf/closed/wall/kutjevo/colony/reinforced, @@ -9091,6 +8987,9 @@ /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"nrH" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east) "nsa" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/kutjevo/colors/orange, @@ -9108,13 +9007,13 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) +"nsk" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "nsC" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany/east) -"nsF" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/med/locks) "nsU" = ( /obj/structure/machinery/light{ dir = 8 @@ -9159,6 +9058,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_rec) +"nuN" = ( +/turf/open/floor/coagulation/icon2_0, +/area/kutjevo/exterior/lz_river) "nvd" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "kutjevo_hydlock_west"; @@ -9166,12 +9068,12 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) -"nvi" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +"nvC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "nvG" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/red, @@ -9186,21 +9088,23 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) -"nyp" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/operating) +"nxm" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) +"nxI" = ( +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon7_0, +/area/kutjevo/interior/construction) "nyv" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"nyS" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/med) "nyY" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -9226,9 +9130,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"nzQ" = ( -/turf/open/floor/coagulation/icon8_8, -/area/kutjevo/exterior/scrubland) "nAc" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/med_rec) @@ -9248,6 +9149,10 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"nBE" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "nCt" = ( /obj/structure/machinery/computer/card{ dir = 4 @@ -9258,31 +9163,6 @@ "nCM" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) -"nDn" = ( -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/grey_edge/northeast, -/area/kutjevo/interior/complex/Northwest_Dorms) "nDH" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -9299,6 +9179,22 @@ }, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) +"nEq" = ( +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/lz_river) +"nEx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/clothing/glasses/thermal/syndi{ + icon_state = "kutjevo_goggles"; + pixel_y = -2 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"nFJ" = ( +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/complex/botany/east_tech) "nFM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -9336,19 +9232,18 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) +"nHw" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "nHO" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_central) -"nHU" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/oob) "nHV" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ @@ -9374,21 +9269,17 @@ /obj/structure/machinery/cm_vending/sorted/boozeomat, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"nJp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/newspaper, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"nJm" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "nJC" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/scrubland) +"nJI" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "nJY" = ( /obj/structure/machinery/light{ dir = 4 @@ -9410,9 +9301,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"nLc" = ( -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/complex/botany) "nLg" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -9454,13 +9342,20 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"nLT" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/kutjevo/exterior/lz_river) +"nMa" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "nMz" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"nNF" = ( +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "nOx" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32 @@ -9500,16 +9395,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) -"nPA" = ( -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/colony_central) "nPO" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/triage) -"nPX" = ( -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/spring) "nQc" = ( /obj/structure/platform_decoration/kutjevo/rock, /obj/structure/platform_decoration/kutjevo/rock{ @@ -9517,19 +9406,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"nQo" = ( -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/lz_river) "nQr" = ( /obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) -"nQy" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/coagulation/icon7_8_2, -/area/kutjevo/interior/construction) "nRd" = ( /obj/item/tool/wrench, /obj/item/prop/alien/hugger, @@ -9545,6 +9425,13 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med) +"nRA" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) "nRE" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -9566,6 +9453,10 @@ /obj/structure/machinery/computer/station_alert, /turf/open/floor/carpet, /area/kutjevo/interior/oob) +"nSU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "nTw" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/oob) @@ -9577,19 +9468,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"nVH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"nWo" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland) "nWu" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -9628,12 +9506,6 @@ /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"nZv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/power) "nZw" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/kutjevo/tan, @@ -9667,11 +9539,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"oca" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "ocd" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -9683,22 +9550,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"oce" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/runoff_river) "ocn" = ( /obj/structure/machinery/light, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"oeb" = ( -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "oex" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) -"oeE" = ( -/turf/open/mars_cave/mars_cave_11, -/area/kutjevo/exterior/scrubland) "ofn" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/auto_turf/sand/layer1, @@ -9718,21 +9576,9 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/power) -"ogf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/clipboard, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) -"ogo" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/operating) -"ogG" = ( -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/operating) +"ohI" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/spring) "oii" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -9743,6 +9589,11 @@ "oiJ" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) +"ojA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "ojH" = ( /obj/structure/machinery/light{ dir = 4 @@ -9759,6 +9610,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) +"okr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/operating) "okv" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/colony_South/power2) @@ -9818,21 +9675,28 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) +"omU" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "onk" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) -"onC" = ( -/turf/open/floor/kutjevo/tan/alt_edge/northwest, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "onP" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) +"onV" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med) "oor" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/large_stack, @@ -9850,13 +9714,26 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"oqg" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/lz_river) +"oqh" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "oqw" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) +"oqB" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "oqQ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -9885,6 +9762,9 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/oob/dev_room) +"osU" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/exterior/lz_pad) "otc" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -9892,14 +9772,13 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med) +"otn" = ( +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/power/comms) "oum" = ( /obj/item/storage/toolbox/antag, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"oun" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) "ouR" = ( /obj/structure/blocker/invisible_wall, /obj/structure/xenoautopsy/tank/larva, @@ -9926,6 +9805,13 @@ "ovG" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_bridge) +"ovN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/spring) "ovV" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 4 @@ -9946,29 +9832,15 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/operating) -"owz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"oxA" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/interior/oob/dev_room) "oxT" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"ozl" = ( -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/lz_river) -"ozq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) "ozs" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -9998,6 +9870,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"oBj" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/runoff_bridge) "oDe" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light{ @@ -10020,29 +9900,20 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"oFs" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/interior/oob/dev_room) -"oFz" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/complex/botany/east) -"oFX" = ( +"oFp" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) +"oGe" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +/obj/item/newspaper, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "oGw" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/machinery/light, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_South/power2) -"oGC" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/runoff_river) "oIb" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -10053,6 +9924,20 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/cells) +"oIk" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door_control/brbutton{ + health = null; + id = "kutjevo_medlock_east"; + idle_power_usage = 0; + indestructible = 1; + name = "Medical East Lock Override"; + pixel_y = 22; + range = 15 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) "oIq" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/kutjevo, @@ -10063,33 +9948,25 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) -"oIV" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) "oJj" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/smg/nailgun, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) -"oJE" = ( -/turf/open/floor/kutjevo/tan/alt_edge, -/area/kutjevo/exterior/lz_pad) "oJV" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"oKx" = ( -/turf/closed/wall/kutjevo/rock, -/area/kutjevo/exterior/lz_pad) "oKA" = ( /obj/item/storage/toolbox/electrical, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"oKJ" = ( +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/lz_pad) "oLs" = ( /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand/layer0, @@ -10110,17 +9987,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"oMW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/purple/edge/northeast, -/area/kutjevo/interior/construction) "oMZ" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/foremans_office) -"oNE" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) "oNG" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/construction) @@ -10132,12 +10001,6 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) -"oOd" = ( -/turf/open/floor/kutjevo/tan/alt_edge/northeast, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"oOl" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany/east) "oOs" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -10149,10 +10012,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) -"oOO" = ( -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/shallow_corner/west, -/area/kutjevo/exterior/lz_river) +"oOP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "oPb" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, @@ -10163,6 +10028,10 @@ /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/carpet, /area/kutjevo/interior/oob) +"oQa" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "oQb" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, @@ -10174,9 +10043,6 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"oQL" = ( -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/construction) "oQQ" = ( /obj/structure/window/framed/kutjevo/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -10190,21 +10056,16 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"oRE" = ( -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/complex/med/auto_doc) -"oRM" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/platform/kutjevo/smooth{ +"oSA" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) -"oRZ" = ( -/obj/structure/machinery/autodoc_console, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med/auto_doc) +/turf/open/gm/dirtgrassborder2/west, +/area/kutjevo/exterior/complex_border/med_park) "oSK" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/kutjevo/tan/grey_edge, @@ -10215,6 +10076,15 @@ }, /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) +"oSW" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"oTq" = ( +/obj/vehicle/powerloader/jd{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "oTF" = ( /obj/structure/sign/prop3, /turf/closed/wall/kutjevo/colony/reinforced/hull, @@ -10243,12 +10113,6 @@ "oVX" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) -"oWo" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/operating) "oXb" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -10287,13 +10151,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) -"pbP" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/tan/alt_inner_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"pbR" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) "pbY" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/complex/med) @@ -10309,25 +10166,10 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"peQ" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) "pfe" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"pfo" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "pfq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -10336,12 +10178,10 @@ "pfz" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/complex_border/med_rec) -"pfC" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/interior/construction) +"pfF" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/tan/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "pfK" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -10378,20 +10218,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/operating) -"phI" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 8 - }, +"pig" = ( /turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) +/area/kutjevo/interior/power/comms) "pih" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) -"pio" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge/west, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "piq" = ( /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, @@ -10414,21 +10247,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"pjH" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/lz_river) -"pkg" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon8_0, -/area/kutjevo/interior/construction) -"pks" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation/icon8_6, -/area/kutjevo/interior/oob) "pkP" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/exterior/Northwest_Colony) @@ -10442,16 +10260,25 @@ "plf" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/runoff_bridge) -"plQ" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany/east) +"plk" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) +"plS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "pma" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"pmo" = ( -/turf/open/floor/kutjevo/tan/alt_edge/southwest, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "pmu" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -10461,27 +10288,24 @@ "pmv" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/complex_border/med_rec) -"pmD" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/spring) "pmR" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"pnn" = ( -/obj/structure/bed/chair{ - dir = 4 +"pnB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/kutjevo/interior/complex/med) "pnM" = ( /obj/item/storage/belt/shotgun, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"pnX" = ( +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "pof" = ( /obj/structure/platform/kutjevo, /turf/open/floor/kutjevo/tan, @@ -10507,12 +10331,10 @@ /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/construction) -"ppn" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_bridge) -"ppB" = ( -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"ppc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon2_0, +/area/kutjevo/interior/oob) "ppM" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow_corner, @@ -10520,19 +10342,6 @@ "ppX" = ( /turf/open/floor/plating/kutjevo, /area/shuttle/drop2/kutjevo) -"pqs" = ( -/turf/open/mars_cave/mars_cave_23, -/area/kutjevo/exterior/scrubland) -"prv" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "prJ" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) @@ -10543,6 +10352,12 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) +"psf" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/defibrillator, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/auto_doc) "psu" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -10589,6 +10404,14 @@ }, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) +"puC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = null + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "pvk" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -10610,9 +10433,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) -"pxb" = ( -/turf/open/floor/kutjevo/colors/orange/edge/southeast, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "pxB" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -10629,6 +10449,10 @@ "pyp" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power) +"pyr" = ( +/obj/item/stack/rods, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "pyE" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -10638,12 +10462,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) -"pyZ" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"pzF" = ( +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/exterior/lz_pad) "pzG" = ( /obj/structure/sign/safety/medical{ pixel_x = -32 @@ -10654,19 +10475,10 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) -"pzH" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med) "pzL" = ( /obj/structure/bed/chair, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"pAu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/runoff_river) "pBi" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer0, @@ -10685,10 +10497,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_dunes) -"pCJ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/kutjevo/colors/purple/inner_corner/north, -/area/kutjevo/interior/construction) "pCS" = ( /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) @@ -10696,9 +10504,6 @@ /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"pDk" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge/north, -/area/kutjevo/interior/construction) "pDs" = ( /obj/effect/decal/cleanable/blood, /obj/structure/stairs/perspective/kutjevo{ @@ -10713,9 +10518,6 @@ }, /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"pEg" = ( -/turf/open/mars_cave/mars_cave_5, -/area/kutjevo/exterior/scrubland) "pEt" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -10737,6 +10539,12 @@ "pGc" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) +"pGt" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "pGv" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -10750,22 +10558,18 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) -"pGO" = ( -/obj/item/storage/briefcase, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med/auto_doc) +"pGG" = ( +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"pGP" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/scrubland) "pGY" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaltopleft" }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"pHm" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "pHv" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/multi_tiles, @@ -10789,17 +10593,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_north) -"pIE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_30"; - pixel_y = 9 - }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/med/locks) -"pIK" = ( -/obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "pJa" = ( /obj/structure/machinery/light{ dir = 1 @@ -10844,10 +10637,12 @@ /obj/item/clothing/suit/armor/vest/security, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"pLN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_inner_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"pLg" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "pLS" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/colors/red, @@ -10855,14 +10650,16 @@ "pMw" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/med/locks) -"pMS" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "pNi" = ( /obj/structure/window_frame/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) +"pNI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "pNM" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -10891,21 +10688,17 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"pOr" = ( +/obj/structure/closet, +/obj/item/clothing/head/helmet/marine/veteran/kutjevo, +/obj/item/clothing/glasses/kutjevo, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "pOI" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"pPn" = ( -/obj/item/stack/sheet/wood, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) -"pPz" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "pPJ" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/lz_dunes) @@ -10934,14 +10727,6 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) -"pRL" = ( -/obj/structure/largecrate, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) -"pRS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/colony_South/power2) "pSs" = ( /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) @@ -10968,12 +10753,12 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"pUB" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 14 - }, -/turf/open/floor/almayer/research/containment/floor2, +"pTS" = ( +/turf/open/floor/kutjevo/plate, +/area/kutjevo/exterior/lz_pad) +"pTU" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_pad) "pVd" = ( /obj/structure/platform/kutjevo{ @@ -11006,10 +10791,6 @@ /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/exterior/Northwest_Colony) -"pXf" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/filtrationside/north, -/area/kutjevo/interior/power) "pXF" = ( /obj/item/device/flashlight/on, /turf/open/floor/kutjevo/colors/orange, @@ -11035,17 +10816,13 @@ "qaI" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/construction) -"qaS" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany/east_tech) -"qaU" = ( -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/spring) -"qaY" = ( +"qcy" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/interior/oob/dev_room) +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "qcE" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -11057,26 +10834,14 @@ /obj/item/trash/chunk, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/construction) -"qfw" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"qeE" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east) "qgr" = ( /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"qgI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "qgW" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) @@ -11114,28 +10879,58 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/power) +"qir" = ( +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) +"qiA" = ( +/turf/open/floor/kutjevo/colors/orange/edge/northeast, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"qjj" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/runoff_river) "qjz" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"qjM" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib6" + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "qkj" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"qkO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) +"qlf" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 14 + }, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_bridge) +"qmw" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "clfship" + }, +/turf/closed/wall/kutjevo/rock, +/area/kutjevo/interior/oob) +"qmI" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/lz_pad) "qmR" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) -"qnd" = ( -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/exterior/lz_pad) -"qny" = ( -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/runoff_river) -"qnB" = ( -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) "qnU" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/exterior/lz_dunes) @@ -11189,26 +10984,20 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) -"qpZ" = ( -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/botany) +"qqc" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med) +"qqe" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) "qqM" = ( /obj/structure/surface/table/almayer, /obj/item/trash/candle, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"qqV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/machinery/microwave{ - pixel_x = 1; - pixel_y = 15 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "qrl" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 10; @@ -11223,9 +11012,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"qru" = ( -/turf/open/mars_cave/mars_cave_11, -/area/kutjevo/exterior/lz_dunes) +"qrX" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "qsY" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4" @@ -11241,19 +11031,26 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"quu" = ( -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "quy" = ( /turf/open/gm/dirtgrassborder2, /area/kutjevo/exterior/complex_border/med_park) +"quJ" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/spring) "quW" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central/mine_elevator) -"qwg" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) +"qvt" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_sn_full_cap"; + pixel_y = 16 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "qwT" = ( /obj/item/tool/wirecutters/clippers, /obj/structure/machinery/power/apc{ @@ -11276,15 +11073,12 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qyD" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" +"qxF" = ( +/obj/structure/reagent_dispensers/watertank{ + desc = "A watertank. The label has been written over with the sequence 2---" }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) "qyS" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -11307,14 +11101,6 @@ "qzY" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/lz_river) -"qAk" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power) -"qAP" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/oob) "qBa" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -11341,25 +11127,35 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"qCi" = ( -/turf/open/floor/kutjevo/colors/purple/edge/west, -/area/kutjevo/interior/construction) -"qCy" = ( -/obj/structure/barricade/handrail/kutjevo{ +"qCv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles/southeast, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"qCL" = ( +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"qDc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "qDu" = ( /obj/item/trash/kepler, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) -"qDH" = ( -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/exterior/lz_pad) -"qEq" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "qEA" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -11376,9 +11172,16 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"qFU" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/runoff_dunes) +"qFY" = ( +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"qFZ" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 14 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/lz_pad) "qGa" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer0, @@ -11390,16 +11193,6 @@ /obj/item/tool/wirecutters/clippers, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) -"qGJ" = ( -/turf/open/mars_cave/mars_cave_23, -/area/kutjevo/exterior/lz_dunes) -"qGQ" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "qHH" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_sn_full_cap" @@ -11422,12 +11215,6 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"qIN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "qIV" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/barricade/handrail/kutjevo{ @@ -11435,9 +11222,12 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"qJx" = ( -/turf/open/floor/kutjevo/colors/orange/edge/southwest, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"qJi" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "qKm" = ( /obj/structure/machinery/disposal, /obj/effect/decal/medical_decals{ @@ -11452,10 +11242,21 @@ /obj/structure/platform/kutjevo, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/complex/botany/east_tech) +"qLq" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/runoff_river) "qLV" = ( /obj/structure/tunnel, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) +"qLZ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/interior/oob/dev_room) +"qMp" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "qMC" = ( /obj/structure/machinery/light{ dir = 4 @@ -11469,25 +11270,15 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"qOw" = ( -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/runoff_river) -"qOy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/complex/med/auto_doc) +"qNZ" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/scrubland) "qOJ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) -"qOM" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/kutjevo/colors/purple/edge/northeast, -/area/kutjevo/interior/construction) "qOP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, @@ -11501,9 +11292,6 @@ /obj/item/reagent_container/food/snacks/meatballspagetti, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"qPz" = ( -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_river) "qPO" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) @@ -11520,10 +11308,6 @@ /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qRp" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/grey_edge/northwest, -/area/kutjevo/interior/complex/Northwest_Dorms) "qRq" = ( /obj/structure/machinery/light{ dir = 4 @@ -11536,30 +11320,22 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"qSs" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "qSy" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qTI" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +"qTu" = ( +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "qTN" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"qUC" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) -"qUZ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "qVc" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 @@ -11583,14 +11359,6 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qVU" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/complex/med/auto_doc) -"qVY" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_river) "qVZ" = ( /obj/structure/filtration/machine_96x96{ icon_state = "distribution" @@ -11609,6 +11377,22 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"qXS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/operating) +"qYm" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "qYn" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -11640,21 +11424,25 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/operating) +"rcy" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_cave_10, +/area/kutjevo/exterior/scrubland) +"rcz" = ( +/turf/open/floor/coagulation/icon8_6, +/area/kutjevo/exterior/runoff_river) "rdm" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_South/power2) -"rdx" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) "rej" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"rfz" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/lz_pad) +"reS" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "rfE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, @@ -11683,6 +11471,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"rhi" = ( +/turf/open/floor/plating/kutjevo/platingdmg3, +/area/kutjevo/interior/complex/botany/east_tech) "rhK" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/operating) @@ -11698,9 +11489,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"rih" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/lz_dunes) "riu" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/tiles, @@ -11731,16 +11519,6 @@ /obj/item/stack/sheet/wood/small_stack, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"rjS" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/red, -/area/kutjevo/interior/oob) "rkt" = ( /obj/structure/flora/grass/desert/lightgrass_9, /obj/structure/blocker/invisible_wall, @@ -11755,6 +11533,10 @@ }, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_central) +"rkE" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/kutjevo/colors/purple/edge/northeast, +/area/kutjevo/interior/construction) "rkO" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/light, @@ -11763,19 +11545,13 @@ "rlB" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/triage) -"rlI" = ( -/obj/vehicle/powerloader/jd{ - dir = 4 +"rmc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) -"rme" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) -"rmg" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/foremans_office) "rmo" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -11786,24 +11562,21 @@ "rmt" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_central) -"rmG" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/machinery/light{ - dir = 4 +"rmA" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/interior/oob/dev_room) "rmO" = ( /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"rno" = ( -/turf/open/mars_cave/mars_cave_10, -/area/kutjevo/exterior/scrubland) -"rnA" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/gm/dirtgrassborder2/north, -/area/kutjevo/exterior/complex_border/med_park) +"rnw" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon8_6, +/area/kutjevo/interior/oob) "rnM" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer0, @@ -11823,12 +11596,18 @@ "roS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_bridge) +"rpk" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_dunes) "rpB" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"rpN" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_river) "rqD" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/blood/gibs/limb, @@ -11837,38 +11616,22 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"rst" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) -"rsM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) -"rsV" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/scrubland) "rte" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) +"rux" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "ruM" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"rvt" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "rvA" = ( /obj/structure/girder, /turf/open/floor/kutjevo/grey/plate, @@ -11899,6 +11662,14 @@ /obj/item/frame/table/almayer, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"rwU" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "rwX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -11926,17 +11697,17 @@ "ryB" = ( /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/triage) +"ryM" = ( +/obj/item/storage/briefcase, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/auto_doc) +"ryU" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "ryY" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"rzb" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "rzc" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/runoff_dunes) @@ -11968,6 +11739,16 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"rAG" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) +"rBZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "rCp" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_bridge) @@ -11984,6 +11765,10 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/triage) +"rEi" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/kutjevo/plate, +/area/kutjevo/exterior/lz_pad) "rEo" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -11994,26 +11779,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"rEs" = ( -/turf/open/floor/plating/kutjevo/platingdmg1, -/area/kutjevo/interior/complex/Northwest_Dorms) -"rEI" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner/east, -/area/kutjevo/interior/foremans_office) "rES" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/locks) -"rFu" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 14 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 3 - }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"rFz" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/complex/med) "rFR" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -12042,17 +11813,15 @@ }, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/operating) +"rId" = ( +/turf/open/gm/dirtgrassborder2/wall2, +/area/kutjevo/exterior/complex_border/med_park) "rIn" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ name = "\improper North Power Shutters" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"rIo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/backpack/lightpack, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "rID" = ( /obj/structure/machinery/shower{ dir = 1; @@ -12066,9 +11835,14 @@ "rIL" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) -"rJU" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/runoff_dunes) +"rIT" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/auto_doc) +"rJX" = ( +/obj/structure/bed/roller, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "rKl" = ( /obj/item/storage/briefcase, /turf/open/floor/kutjevo/colors, @@ -12114,9 +11888,13 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_central) -"rNg" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/kutjevo/exterior/runoff_river) +"rNC" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/interior/oob) "rNG" = ( /obj/item/ammo_magazine/revolver/cmb, /turf/open/floor/kutjevo/tan, @@ -12131,11 +11909,21 @@ /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"rQa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link/green, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med/operating) +"rPx" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) +"rPZ" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"rQK" = ( +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "rQY" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/power_pt2_electric_boogaloo) @@ -12145,34 +11933,19 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) -"rRC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/clothing/glasses/thermal/syndi{ - icon_state = "kutjevo_goggles"; - pixel_y = -2 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) -"rRL" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/coagulation/icon7_8_2, -/area/kutjevo/interior/colony_north) "rSg" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"rSz" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power) "rSE" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"rSU" = ( -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/exterior/lz_pad) "rTi" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 @@ -12183,9 +11956,6 @@ /obj/structure/platform_decoration/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"rTF" = ( -/turf/open/floor/kutjevo/tan/grey_edge/southwest, -/area/kutjevo/interior/construction) "rTL" = ( /obj/structure/window{ dir = 1 @@ -12197,6 +11967,12 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) +"rTO" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) "rUi" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -12237,31 +12013,19 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) -"rWY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge/southeast, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "rXe" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"rXj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/pizza, -/turf/open/floor/kutjevo/colors/purple/inner_corner/north, -/area/kutjevo/interior/construction) +"rXR" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_river) "rYc" = ( /obj/item/toy/handcard/uno_reverse_yellow, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"rYs" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/interior/oob/dev_room) "rYF" = ( /obj/structure/flora/bush/ausbushes/reedbush{ pixel_x = 5; @@ -12283,23 +12047,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"rZV" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/complex/botany) +"rZx" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/construction) "rZW" = ( /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"sal" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/colony_central) -"saK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "sbb" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap" @@ -12310,31 +12063,44 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"sbF" = ( -/obj/structure/platform/kutjevo/smooth{ +"sbQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ dir = 8 }, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) "sbX" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_river) +"sca" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "scu" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"scw" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "scK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) +"scT" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "scY" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/tan, @@ -12352,9 +12118,22 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) +"sed" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "sef" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) +"seE" = ( +/turf/open/mars_cave/mars_cave_7, +/area/kutjevo/exterior/lz_dunes) +"sfl" = ( +/obj/item/clothing/mask/cigarette/pipe/cobpipe, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "sfz" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -12364,9 +12143,16 @@ }, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/complex/botany/east_tech) -"sgc" = ( -/turf/open/floor/kutjevo/tan/alt_edge/southeast, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"sfS" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"sfU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "sgF" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -12377,28 +12163,13 @@ /obj/structure/barricade/handrail/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"shn" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/foremans_office) -"shX" = ( -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/colony_South/power2) -"sit" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "siR" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"sjE" = ( -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/complex/Northwest_Dorms) +"siX" = ( +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/exterior/scrubland) "sjN" = ( /obj/structure/surface/rack, /obj/item/clothing/head/welding, @@ -12406,18 +12177,32 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) +"sko" = ( +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "skx" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) +"skR" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/red, +/area/kutjevo/interior/oob) "slb" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"slx" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) +"slv" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist/kutjevo/burst, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/operating) "slB" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 @@ -12466,6 +12251,9 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"sng" = ( +/turf/open/floor/kutjevo/colors/orange/edge/southwest, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "snn" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -12473,13 +12261,12 @@ "snr" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"snP" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 +"snW" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/runoff_bridge) +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) "soe" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -12511,11 +12298,18 @@ /obj/item/storage/fancy/cigarettes/lady_finger, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"spd" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) +"soU" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_river) +"sps" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"sqi" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/runoff_river) "sqr" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer2, @@ -12526,11 +12320,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"sre" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "srs" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light, @@ -12540,27 +12329,41 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"ssr" = ( +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "ssV" = ( /obj/structure/surface/rack, /obj/item/tool/wirecutters/clippers, /obj/item/tool/wirecutters/clippers, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) +"ssY" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_bridge) "stj" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/runoff_dunes) +"stm" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "str" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) -"stt" = ( -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"svd" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/runoff_river) "svp" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -12587,9 +12390,6 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/lz_dunes) -"sxy" = ( -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_river) "sxZ" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null @@ -12609,6 +12409,30 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) +"syX" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) +"szf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"szj" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/complex/botany/east) +"szn" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) "szC" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, @@ -12625,17 +12449,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"sAe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany/east_tech) -"sAf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "sAA" = ( /obj/structure/bed/chair{ dir = 8 @@ -12658,21 +12471,6 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/foremans_office) -"sBH" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation/icon2_0, -/area/kutjevo/interior/oob) -"sCw" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_river) "sCA" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -12683,15 +12481,34 @@ "sDG" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/lz_river) -"sEf" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) +"sEd" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/handcard/aceofspades, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) +"sEh" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/foremans_office) "sEG" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/exterior/construction) +"sFj" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"sFq" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/m94, +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, +/area/kutjevo/interior/construction) "sFL" = ( /obj/structure/machinery/light, /obj/structure/bed/chair{ @@ -12699,12 +12516,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"sFP" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_0" - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/complex/botany) "sGs" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/auto_doc) @@ -12714,21 +12525,16 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"sGS" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/spring) -"sHg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/operating) "sHu" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"sHI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) "sHQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, @@ -12740,25 +12546,42 @@ /obj/structure/barricade/wooden, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/locks) +"sIG" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_dunes) +"sIW" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/interior/oob/dev_room) "sJj" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/med/pano) -"sJM" = ( -/obj/structure/closet, -/obj/item/clothing/head/helmet/marine/veteran/kutjevo, -/obj/item/clothing/glasses/kutjevo, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) +"sJv" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "sKo" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) +"sKC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "sKG" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib2" @@ -12770,11 +12593,6 @@ /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"sLf" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "sLx" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/kutjevo/colors/orange, @@ -12801,6 +12619,17 @@ /obj/structure/machinery/power/smes/buildable/charged, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"sNu" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) +"sNB" = ( +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "sNZ" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) @@ -12811,12 +12640,18 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"sOF" = ( -/obj/item/stack/sheet/wood{ - pixel_x = -4 +"sOm" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/interior/oob) +"sOI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = null }, -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "sOJ" = ( /turf/open/gm/river/desert/shallow_corner, /area/kutjevo/exterior/lz_river) @@ -12824,12 +12659,24 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_South/power2) +"sPC" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 14 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "sPE" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) -"sPV" = ( -/turf/open/floor/kutjevo/colors/orange/edge/north, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"sQl" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) +"sQL" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) "sRb" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -12837,6 +12684,24 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_bridge) +"sRu" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/scrubland) +"sRL" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) +"sRO" = ( +/obj/structure/bed/chair, +/turf/open/gm/dirtgrassborder2/east, +/area/kutjevo/exterior/complex_border/med_park) "sSq" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -12863,6 +12728,23 @@ /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"sTb" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/interior/oob) +"sTs" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/interior/oob) "sTB" = ( /obj/structure/platform/kutjevo/rock{ dir = 8 @@ -12873,6 +12755,10 @@ /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) +"sTL" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "sTU" = ( /obj/structure/lattice, /turf/open/floor/plating/kutjevo, @@ -12887,22 +12773,9 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_central) -"sUt" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"sUC" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/filtration/coagulation_arm, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) -"sVc" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) +"sUv" = ( +/turf/open/mars_cave/mars_cave_10, +/area/kutjevo/exterior/lz_dunes) "sVx" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/complex/botany) @@ -12928,10 +12801,6 @@ /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) -"sWR" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/exterior/lz_pad) "sXj" = ( /obj/structure/largecrate/random/case/small, /obj/effect/spawner/random/toolbox{ @@ -12963,40 +12832,25 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"sYV" = ( -/obj/structure/blocker/invisible_wall, -/obj/item/toy/inflatable_duck, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) -"sZz" = ( -/obj/effect/landmark/corpsespawner/colonist/kutjevo, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/exterior/runoff_bridge) "sZO" = ( /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) -"sZY" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/colony_central) "sZZ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"tap" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/syndi_cakes, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "tax" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_dunes) -"tbk" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) "tbx" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -13027,10 +12881,6 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/cells) -"ten" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/colors/cyan/edge/north, -/area/kutjevo/interior/complex/med/operating) "ter" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/orange, @@ -13060,6 +12910,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) +"tgR" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_bridge) +"tgY" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_river) "tgZ" = ( /obj/structure/surface/table/almayer, /obj/item/weapon/gun/revolver/cmb, @@ -13072,6 +12928,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/operating) +"thi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_river) "thu" = ( /obj/structure/machinery/light{ dir = 8 @@ -13089,6 +12951,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/scrubland) +"tiq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "tiJ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -13113,13 +12982,21 @@ /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) +"tjF" = ( +/obj/structure/bed/chair, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) "tjJ" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"tjS" = ( -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/lz_river) +"tjV" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "tjZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -13143,10 +13020,13 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central/mine_elevator) -"tlK" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) +"tly" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/interior/oob) "tlN" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power/comms) @@ -13157,21 +13037,15 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"tnI" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/lz_pad) -"tnM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/med) "tob" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) +"tov" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "toD" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29" @@ -13199,6 +13073,12 @@ /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"tqe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "tql" = ( /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/stonyfields) @@ -13209,9 +13089,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) -"tqE" = ( -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany/east_tech) "trC" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -13239,6 +13116,10 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) +"tto" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/interior/oob/dev_room) "ttq" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, @@ -13249,21 +13130,23 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) -"tuW" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"tvF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) -"tvb" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med/operating) +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "tvJ" = ( /obj/structure/platform_decoration/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"tvX" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/lz_river) +"twj" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "twn" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -13271,19 +13154,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"twq" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/runoff_dunes) -"txe" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_23, -/area/kutjevo/exterior/scrubland) "txH" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) +"txR" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/kutjevo/interior/foremans_office) "tye" = ( /obj/structure/flora/bush/ausbushes/ppflowers{ icon_state = "sparsegrass_2" @@ -13294,6 +13172,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_north) +"tyI" = ( +/obj/structure/largecrate, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "tyJ" = ( /obj/structure/bed/chair/office/light, /turf/open/floor/kutjevo/grey/plate, @@ -13322,6 +13204,14 @@ /obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"tBv" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "tBB" = ( /obj/item/ammo_magazine/revolver/cmb{ pixel_x = 7; @@ -13347,12 +13237,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"tDj" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 14 - }, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/runoff_bridge) "tDP" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/red, @@ -13368,19 +13252,6 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) -"tEj" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "tEK" = ( /obj/structure/bed/sofa/vert/grey/bot{ pixel_y = 4 @@ -13396,12 +13267,11 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"tFh" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib6" - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) +"tFq" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/filtration/coagulation_arm, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "tFH" = ( /obj/item/toy/beach_ball, /turf/open/auto_turf/sand/layer0, @@ -13417,31 +13287,20 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/construction) -"tGi" = ( -/turf/open/floor/coagulation/icon8_6, -/area/kutjevo/exterior/runoff_river) "tGm" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"tGE" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/kutjevo/plate, -/area/kutjevo/exterior/lz_pad) -"tHh" = ( -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) -"tHI" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +"tGK" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"tIh" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/runoff_river) +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "tIy" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/weapon/gun/rifle/m16, @@ -13465,9 +13324,26 @@ /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"tIY" = ( -/turf/open/desert/desert_shore/shore_edge1, -/area/kutjevo/exterior/lz_pad) +"tJK" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -32 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) +"tJV" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) +"tKy" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power) "tKC" = ( /obj/structure/bed/sofa/vert/white, /turf/open/floor/kutjevo/tan, @@ -13475,12 +13351,12 @@ "tKY" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) -"tLD" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon0_0, +"tLv" = ( +/turf/open/gm/dirtgrassborder2/north, +/area/kutjevo/exterior/complex_border/med_park) +"tLN" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/colors/purple/edge/west, /area/kutjevo/interior/construction) "tLO" = ( /obj/effect/decal/cleanable/blood/oil, @@ -13530,20 +13406,27 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) +"tOE" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/lz_pad) "tPh" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/med_small_stack, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"tPm" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) +"tPJ" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/kutjevo/interior/construction) "tQi" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"tQB" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/runoff_dunes) "tQO" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -13571,10 +13454,24 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/cells) +"tSa" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_sn_full_cap"; + pixel_y = 16 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "tSi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) +"tSL" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_dunes) "tSZ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -13591,16 +13488,23 @@ /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) -"tUm" = ( -/turf/open/gm/dirtgrassborder2/north, -/area/kutjevo/exterior/complex_border/med_park) -"tUz" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/lz_river) +"tUf" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "tVs" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"tVu" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/interior/oob/dev_room) +"tWr" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "tWv" = ( /turf/open/gm/river, /area/kutjevo/interior/power_pt2_electric_boogaloo) @@ -13616,6 +13520,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"tYm" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_dunes) "tZc" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -13631,13 +13538,6 @@ "tZW" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz2_north) -"uah" = ( -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/exterior/construction) -"uaj" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/tan/alt_inner_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "uam" = ( /obj/structure/platform_decoration/kutjevo, /obj/structure/platform_decoration/kutjevo/rock{ @@ -13646,9 +13546,23 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) -"uaz" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/spring) +"uan" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) +"uaA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"uaU" = ( +/obj/structure/prop/dam/crane{ + icon_state = "tractor"; + name = "tractor" + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "ubm" = ( /obj/structure/machinery/light{ dir = 8 @@ -13661,6 +13575,9 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"ubF" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "ubR" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -13668,26 +13585,32 @@ "ubV" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_river) +"ucy" = ( +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "udm" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"udJ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) "ueJ" = ( /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"ueM" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/kutjevo/exterior/spring) "ueO" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_river) -"ufp" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/syndi_cakes, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/Northwest_Dorms) "ufN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -13716,9 +13639,6 @@ /obj/structure/barricade/handrail/kutjevo, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/runoff_bridge) -"uhD" = ( -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/construction) "uhM" = ( /obj/structure/blocker/invisible_wall, /obj/structure/extinguisher_cabinet, @@ -13740,6 +13660,14 @@ }, /turf/open/floor/carpet, /area/kutjevo/interior/oob) +"uis" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "uiz" = ( /obj/structure/lattice, /obj/structure/machinery/light/small{ @@ -13754,6 +13682,10 @@ "uiK" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) +"uiQ" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) "uiT" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_river) @@ -13796,6 +13728,13 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"ukW" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "ulo" = ( /obj/item/bodybag/tarp/reactive, /obj/item/bodybag/tarp/reactive, @@ -13818,10 +13757,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"uma" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "umo" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/kutjevo, @@ -13830,9 +13765,6 @@ /obj/item/trash/cigbutt/bcigbutt, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central) -"umQ" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/scrubland) "una" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -13846,6 +13778,26 @@ /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) +"uoi" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"uos" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/colony_central) "uoz" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/oob/dev_room) @@ -13854,33 +13806,51 @@ /obj/item/newspaper, /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"upp" = ( -/turf/open/floor/kutjevo/tan/grey_edge/southwest, -/area/kutjevo/interior/complex/Northwest_Dorms) +"upa" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"upj" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/operating) +"upH" = ( +/turf/open/gm/dirtgrassborder2/wall3, +/area/kutjevo/exterior/complex_border/med_park) "upY" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/triage) -"uqv" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med) -"uqL" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) "uqR" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"uqW" = ( +"uqV" = ( /obj/structure/platform/kutjevo{ dir = 1 }, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/colony_central) +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) +"uqZ" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/lz_pad) +"urb" = ( +/obj/structure/prop/wooden_cross{ + desc = "A wooden grave marker. The name 'Richard' is carved into the wood."; + pixel_x = -6; + pixel_y = 19 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "uri" = ( /obj/structure/flora/bush/ausbushes/ppflowers{ icon_state = "fullgrass_3" @@ -13909,15 +13879,6 @@ /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"usc" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_8, -/area/kutjevo/interior/colony_north) "usd" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 @@ -13929,6 +13890,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"usL" = ( +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "usP" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" @@ -13939,13 +13903,18 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) +"uuk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "uvj" = ( /obj/structure/largecrate/supply/medicine/iv, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"uwD" = ( -/obj/item/clothing/mask/cigarette/pipe/cobpipe, +"uwO" = ( /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany) "uwY" = ( @@ -13967,10 +13936,6 @@ /obj/structure/prop/dam/truck, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"uze" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/runoff_river) "uzp" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -13984,6 +13949,11 @@ "uzJ" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/spring) +"uzU" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/interior/oob/dev_room) "uAh" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/multi_tiles, @@ -14031,6 +14001,15 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) +"uCi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/item/clipboard, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "uCR" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -14054,49 +14033,16 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) -"uEk" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/surgery, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, -/area/kutjevo/interior/complex/med/operating) -"uEr" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 17 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 17 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"uEY" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) -"uGd" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/lz_river) -"uGB" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +"uFI" = ( +/obj/structure/platform/kutjevo{ + dir = 4 }, -/obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/interior/oob) +/area/kutjevo/exterior/runoff_river) "uGN" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"uHg" = ( -/turf/open/floor/kutjevo/tan/grey_edge/northwest, -/area/kutjevo/interior/complex/Northwest_Dorms) "uHo" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer1, @@ -14133,11 +14079,9 @@ }, /turf/open/gm/dirtgrassborder2, /area/kutjevo/exterior/complex_border/med_park) -"uJV" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"uJF" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_dunes) "uKx" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib5" @@ -14169,9 +14113,11 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo, /area/kutjevo/interior/oob/dev_room) -"uMg" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/lz_dunes) +"uMk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/backpack/lightpack, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "uML" = ( /obj/item/ammo_magazine/rifle/mar40/extended, /obj/item/ammo_magazine/rifle/mar40/extended, @@ -14186,6 +14132,9 @@ /obj/structure/closet/crate/secure/ammo, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) +"uMV" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/lz_pad) "uNC" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -14193,13 +14142,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/operating) -"uNI" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/oob) "uNJ" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -14230,6 +14172,19 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) +"uOz" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/spring) +"uPd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/colony_South/power2) +"uPh" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "uPu" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap_butt" @@ -14281,9 +14236,16 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"uRg" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "uRm" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/oob) +"uRw" = ( +/turf/open/floor/plating/kutjevo/panelscorched, +/area/kutjevo/interior/complex/botany/east_tech) "uRA" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -14297,50 +14259,91 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"uRT" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) "uSr" = ( /obj/item/stack/cable_coil/random, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"uSG" = ( -/obj/structure/window/framed/kutjevo/reinforced/hull, -/turf/open/floor/kutjevo/multi_tiles/southeast, +"uSL" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) +"uST" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) "uTa" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) +"uTe" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Dorms) "uTj" = ( /obj/item/clothing/suit/armor/vest/security, /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/complex/med) -"uTn" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_sn_full_cap"; - pixel_y = 16 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "uTo" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = -28 }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"uTr" = ( -/obj/structure/largecrate, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/lz_pad) -"uWk" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/interior/oob) +"uUl" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/nuclear, +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) "uWu" = ( /obj/effect/spawner/random/toolbox{ pixel_x = -2; @@ -14348,16 +14351,12 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) -"uXM" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/med) "uYi" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/complex/med/triage) +"uYm" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/lz_river) "uYx" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = -6; @@ -14379,10 +14378,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"vaa" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "vap" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib1" @@ -14417,15 +14412,9 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/colony_central/mine_elevator) -"vbA" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/runoff_dunes) -"vbV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) +"vbI" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) "vcs" = ( /obj/structure/machinery/computer/cameras{ dir = 4 @@ -14433,9 +14422,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"vcT" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/lz_river) "vcW" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -14449,11 +14435,6 @@ /obj/structure/platform/kutjevo/rock, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/colony_central) -"vcY" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "vdl" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -14515,18 +14496,25 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"vfr" = ( -/turf/open/floor/kutjevo/colors/purple/edge/north, -/area/kutjevo/interior/construction) +"vfq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) "vfZ" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) -"vgw" = ( -/turf/open/floor/kutjevo/colors/cyan/edge/east, -/area/kutjevo/interior/complex/med) +"vgT" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) "vgX" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibmid1" @@ -14555,9 +14543,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"vin" = ( -/turf/open/floor/coagulation/icon2_0, -/area/kutjevo/exterior/lz_river) "viU" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) @@ -14565,9 +14550,6 @@ /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"vkK" = ( -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/runoff_dunes) "vkV" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -14583,22 +14565,15 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) -"vls" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "vlt" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) -"vmB" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/kutjevo/exterior/runoff_river) +"vmD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "vmH" = ( /obj/structure/monorail, /obj/structure/platform/kutjevo/smooth{ @@ -14606,9 +14581,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) -"vmJ" = ( -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/med) "vnO" = ( /obj/structure/bed/chair{ dir = 8 @@ -14645,26 +14617,20 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) -"vrB" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) "vse" = ( /obj/structure/bed/stool, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"vsq" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) "vsP" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_N_East) -"vsS" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/lz_dunes) +"vth" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) "vtY" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/multi_tiles, @@ -14681,9 +14647,9 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"vxe" = ( -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/colony_South) +"vwh" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/spring) "vxM" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/shotgun/buckshot, @@ -14696,6 +14662,9 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) +"vyP" = ( +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/exterior/scrubland) "vzy" = ( /obj/structure/tunnel, /turf/open/gm/dirtgrassborder2, @@ -14715,6 +14684,16 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_rec) +"vzT" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/sign/nosmoking_1{ + pixel_x = 28 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) "vBr" = ( /obj/structure/prop/dam/gravestone{ icon_state = "gravestone2" @@ -14724,36 +14703,19 @@ "vBI" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/lz_dunes) -"vCx" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/applecakeslice, -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/complex/Northwest_Dorms) -"vCT" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/power) "vDi" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"vDu" = ( -/obj/structure/bed/chair{ - pixel_y = 8 - }, -/obj/structure/sign/safety/medical{ - pixel_y = 32 +"vDz" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/complex/botany) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "vDH" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -14793,10 +14755,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"vER" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/Northwest_Dorms) +"vED" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/lz_river) "vES" = ( /obj/item/tool/wirecutters, /turf/open/floor/kutjevo/tan, @@ -14830,15 +14792,6 @@ /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"vGx" = ( -/obj/structure/filtration/coagulation_arm, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "vHf" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/sodawater{ @@ -14851,16 +14804,6 @@ }, /turf/open/floor/kutjevo/colors/purple/inner_corner, /area/kutjevo/interior/construction) -"vHh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany/east) -"vHG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/runoff_river) "vHL" = ( /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) @@ -14869,6 +14812,33 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) +"vIw" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) +"vIQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"vJi" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) +"vJk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"vKi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "vKp" = ( /obj/structure/bed, /obj/structure/window/reinforced{ @@ -14943,13 +14913,14 @@ /obj/structure/fence, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) -"vNt" = ( -/obj/structure/bed/sofa/vert/white/top{ - pixel_y = 17 +"vOb" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/kutjevo/tan/grey_edge/north, -/area/kutjevo/interior/complex/med/auto_doc) +/obj/structure/machinery/camera/autoname, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "vOc" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-8" @@ -14962,6 +14933,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) +"vOA" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) "vOC" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles, @@ -14972,15 +14949,29 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"vPm" = ( -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/lz_pad) "vPE" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib1" }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"vPI" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/spring) +"vPV" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) +"vQf" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/colony_South) "vQg" = ( /obj/structure/bed/chair{ dir = 8 @@ -14998,6 +14989,19 @@ /obj/structure/platform_decoration/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"vSf" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power) +"vSu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/engineering_construction, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "vSE" = ( /obj/structure/cargo_container/grant/right, /turf/open/floor/kutjevo/colors/orange, @@ -15016,10 +15020,13 @@ /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"vTe" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/runoff_river) +"vTZ" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "vVr" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_S_East) @@ -15027,12 +15034,6 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"vXd" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) "vXo" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -15048,17 +15049,10 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"vXs" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/grey_edge/west, -/area/kutjevo/interior/complex/Northwest_Dorms) "vXK" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) -"vYC" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland) "vYD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/cyan, @@ -15083,19 +15077,15 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_river) -"vYW" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "wae" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"wax" = ( -/turf/closed/wall/kutjevo/colony, -/area/kutjevo/exterior/lz_pad) +"wam" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/lz_river) "waP" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap_butt" @@ -15113,6 +15103,15 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"wbb" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/interior/construction) "wbE" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/far, @@ -15171,9 +15170,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"wgK" = ( -/turf/open/floor/coagulation/icon8_0, -/area/kutjevo/exterior/scrubland) "wgT" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -15189,6 +15185,13 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"wiy" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "wiC" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/sand/layer0, @@ -15219,18 +15222,11 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"wlg" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/tan, +"wmb" = ( +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/lz_pad) -"wlq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/engineering_construction, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/southwest, +"wmB" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) "wnk" = ( /obj/structure/largecrate/random/case/small, @@ -15256,12 +15252,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"wnK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/Northwest_Dorms) "wpq" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow, @@ -15280,29 +15270,12 @@ "wqD" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power) -"wqR" = ( -/obj/structure/bed/chair, -/turf/open/gm/dirtgrassborder2/east, -/area/kutjevo/exterior/complex_border/med_park) -"wrk" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"wrO" = ( -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/spring) -"wrV" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/spring) -"wsf" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/interior/oob) +"wqH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "wsk" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -15311,14 +15284,6 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"wsq" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/orange/inner_corner/north, -/area/kutjevo/interior/foremans_office) "wtk" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -15333,6 +15298,9 @@ /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"wul" = ( +/turf/closed/wall/kutjevo/rock, +/area/kutjevo/exterior/lz_pad) "wuy" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/platform/kutjevo{ @@ -15348,10 +15316,6 @@ /obj/item/stack/rods, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"wvg" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/lz_pad) "wvr" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South) @@ -15368,22 +15332,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_bridge) -"wvX" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) -"wwc" = ( -/obj/structure/prop/wooden_cross{ - desc = "A wooden grave marker. The name 'Richard' is carved into the wood."; - pixel_x = -6; - pixel_y = 19 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 5; - pixel_y = -2 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) "wwd" = ( /obj/item/stool, /turf/open/floor/kutjevo/colors/green/tile, @@ -15398,12 +15346,6 @@ /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"wwq" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/runoff_river) "wwQ" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -15426,6 +15368,10 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) +"wzo" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) "wzC" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -15462,6 +15408,9 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_river) +"wBE" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "wCe" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -15475,15 +15424,12 @@ "wCU" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany/east_tech) -"wDk" = ( -/obj/structure/bed/chair{ +"wDb" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) "wDm" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -15498,28 +15444,35 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/foremans_office) -"wEh" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/runoff_river) -"wEU" = ( +"wEg" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/exterior/lz_dunes) +"wES" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) +"wET" = ( /obj/structure/barricade/wooden{ dir = 1; pixel_y = 13 }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/lz_pad) -"wFa" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/multi_tiles/west, -/area/kutjevo/interior/complex/med) "wFQ" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) +"wFX" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) +"wGe" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "wGD" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/green, @@ -15527,6 +15480,11 @@ "wGH" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"wHm" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "wHB" = ( /obj/item/trash/barcardine, /turf/open/auto_turf/sand/layer1, @@ -15535,6 +15493,16 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"wIQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "wJZ" = ( /obj/structure/flora/grass/desert/lightgrass_4, /obj/structure/blocker/invisible_wall, @@ -15558,17 +15526,10 @@ /obj/effect/landmark/corpsespawner/colonist/kutjevo, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"wLB" = ( -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"wMm" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "wMw" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, @@ -15588,16 +15549,12 @@ /obj/item/explosive/grenade/high_explosive/pmc, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"wOI" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +"wOx" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/lz_river) +"wON" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/purple/edge/northeast, /area/kutjevo/interior/construction) "wOU" = ( /obj/structure/flora/bush/ausbushes/ausbush{ @@ -15614,6 +15571,27 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"wPi" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power/comms) +"wQl" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) +"wQV" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/lz_river) "wQZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -15638,6 +15616,18 @@ "wTt" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"wTI" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "wUa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer1, @@ -15669,22 +15659,16 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"wWy" = ( -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/complex/med) "wXd" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_South) -"wXf" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) "wXy" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/telecomm/lz2_north) +"wXN" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/construction) "wXV" = ( /obj/structure/window/reinforced{ dir = 8 @@ -15731,34 +15715,21 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"xaB" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/runoff_bridge) "xaI" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/plastic, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"xca" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/tan/alt_inner_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"xcG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/kutjevo/colors/orange, +"xbF" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east) +"xcf" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_pad) -"xcI" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/colors/orange/edge/east, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "xdM" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/runoff_dunes) @@ -15767,6 +15738,13 @@ /obj/item/clothing/accessory/storage/black_vest, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) +"xem" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/spring) +"xfd" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/gm/dirtgrassborder2/north, +/area/kutjevo/exterior/complex_border/med_park) "xfW" = ( /obj/item/reagent_container/glass/bucket, /turf/open/auto_turf/sand/layer0, @@ -15774,6 +15752,13 @@ "xgl" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/operating) +"xgv" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/runoff_dunes) +"xgP" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "xgV" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/power) @@ -15786,30 +15771,9 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) -"xjf" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) -"xjg" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) +"xjX" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) "xjY" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/power) @@ -15842,6 +15806,18 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"xmf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) +"xmo" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/lz_river) "xms" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 10; @@ -15852,14 +15828,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"xnk" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) -"xnr" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) "xnT" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, @@ -15872,12 +15840,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"xoq" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan/grey_inner_edge/east, -/area/kutjevo/interior/complex/med) "xoM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ name = "\improper North Power Shutters" @@ -15885,16 +15847,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"xoV" = ( -/turf/open/desert/desert_shore/shore_corner2/east, -/area/kutjevo/exterior/runoff_dunes) "xpd" = ( /obj/structure/largecrate/guns/merc, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) -"xpk" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/lz_river) "xpz" = ( /obj/structure/bed/chair{ dir = 8 @@ -15905,6 +15861,10 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) +"xqi" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "xqM" = ( /obj/structure/machinery/light{ dir = 8 @@ -15927,6 +15887,12 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) +"xrh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "xrv" = ( /obj/structure/girder, /turf/open/floor/kutjevo/grey/plate, @@ -15944,10 +15910,6 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"xrT" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) "xti" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -15956,28 +15918,39 @@ /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"xtN" = ( -/obj/structure/bed/chair{ - dir = 4 +"xtZ" = ( +/obj/effect/spawner/random/toolbox{ + pixel_x = -2; + pixel_y = 5 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/gm/dirtgrassborder2/wall3, +/area/kutjevo/exterior/complex_border/med_park) +"xur" = ( +/obj/structure/bed/sofa/vert/white/top{ + pixel_y = 17 }, -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med/operating) -"xuN" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/spring) -"xuY" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/exterior/runoff_bridge) +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med/auto_doc) +"xuA" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/interior/oob) "xvg" = ( /obj/item/stool{ pixel_y = 8 }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/construction) +"xvh" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/interior/colony_north) "xvn" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -15986,6 +15959,12 @@ /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/pano) +"xwO" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/toy/inflatable_duck, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "xxf" = ( /turf/open/gm/river/desert/shallow_corner, /area/kutjevo/exterior/spring) @@ -15999,6 +15978,10 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"xyr" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "xyw" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, @@ -16018,10 +16001,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"xyY" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/exterior/runoff_bridge) "xzd" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river/desert/shallow, @@ -16029,6 +16008,14 @@ "xzI" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power) +"xzO" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/obj/item/prop/helmetgarb/spent_buckshot, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "xzS" = ( /obj/structure/lattice, /turf/open/floor/plating/kutjevo, @@ -16036,11 +16023,8 @@ "xzY" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"xAr" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/floor1, +"xAQ" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/exterior/lz_pad) "xBb" = ( /obj/structure/platform/kutjevo{ @@ -16053,15 +16037,18 @@ "xBm" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/Northwest_Colony) -"xCc" = ( -/turf/open/gm/dirtgrassborder2/wall3, -/area/kutjevo/exterior/complex_border/med_park) -"xDR" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +"xBI" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/botany) +"xBS" = ( +/obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/lz_pad) +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/power) "xDY" = ( /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/orange, @@ -16069,15 +16056,17 @@ "xEp" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/construction) +"xEZ" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/scrubland) "xFl" = ( /obj/structure/stairs/perspective/kutjevo, /turf/open/floor/kutjevo/grey, /area/kutjevo/interior/complex/med) -"xFN" = ( -/obj/structure/surface/rack, -/obj/item/packageWrap, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/lz_pad) +"xGE" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) "xGF" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -16098,6 +16087,13 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"xHo" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/interior/construction) "xHx" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/complex_border/botany_medical_cave) @@ -16119,9 +16115,35 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/stonyfields) +"xIO" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) +"xIQ" = ( +/obj/item/prop/alien/hugger, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"xJd" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/triage) "xJg" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) +"xJL" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "xKb" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -16146,14 +16168,15 @@ "xNG" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/telecomm/lz1_south) -"xOx" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 +"xNV" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"xNX" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/runoff_dunes) "xOU" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -16174,9 +16197,9 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"xQz" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, -/area/kutjevo/interior/complex/med/triage) +"xQv" = ( +/turf/open/gm/dirtgrassborder2/west, +/area/kutjevo/exterior/complex_border/med_park) "xQM" = ( /obj/item/tool/minihoe, /obj/item/tool/minihoe, @@ -16222,12 +16245,17 @@ "xTq" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/runoff_river) -"xTw" = ( +"xTG" = ( /obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/kutjevo/colors/orange/edge/west, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +/obj/item/packageWrap, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) +"xUD" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/spring) +"xVo" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/exterior/lz_pad) "xVt" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/stairs/perspective/kutjevo{ @@ -16243,9 +16271,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"xVZ" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/west, -/area/kutjevo/interior/colony_South/power2) +"xVQ" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east_tech) "xWK" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) @@ -16259,6 +16287,9 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"xXv" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_dunes) "xXI" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -16272,11 +16303,6 @@ "xYt" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/scrubland) -"xYR" = ( -/obj/item/stack/sheet/wood, -/obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "xZd" = ( /obj/structure/bed/chair{ dir = 4 @@ -16310,6 +16336,10 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) +"yae" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "yah" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/botany/east_tech) @@ -16329,15 +16359,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"yaI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/grey_edge/east, -/area/kutjevo/interior/complex/botany/east_tech) -"ybd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "ybh" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "sedimentation_A_1" @@ -16345,6 +16366,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"ybo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/botany/east_tech) "ybV" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer0, @@ -16355,24 +16380,25 @@ icon_state = "pwall" }, /area/kutjevo/interior/oob) +"yci" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) "ycq" = ( /obj/item/prop/alien/hugger, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"ycN" = ( -/turf/open/floor/kutjevo/tan/multi_tiles/east, -/area/kutjevo/interior/complex/botany) -"ydh" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/runoff_river) "yeY" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"yfc" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_pad) +"yfn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med/auto_doc) "yfo" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central) @@ -16421,13 +16447,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"yic" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_y = 14 - }, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/spring) "yir" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/botany/east) @@ -16443,9 +16462,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/cells) -"yjF" = ( -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/runoff_bridge) "yjI" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) @@ -16465,10 +16481,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"ykL" = ( -/obj/structure/largecrate/random, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "ykY" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -16484,18 +16496,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_rec) -"ylh" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/pill_bottle/tramadol/skillless, -/obj/structure/platform/kutjevo/smooth, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/west, -/area/kutjevo/interior/complex/med/operating) +"ylx" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"ylV" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "ymc" = ( /obj/structure/machinery/shower{ name = "automatic sprinkler"; @@ -17221,9 +17227,9 @@ dxF dxF dxF nTw -dmy -dmy -dmy +azv +azv +azv nTw dxF sWF @@ -17388,18 +17394,18 @@ dxF dxF dxF dxF -dmy -dmy -dmy -jGF +azv +azv +azv +qSs sWF sWF -nJp -sre -mkU +kZn +szf +dyS sWF sWF -xTw +hvS sWF sWF dxF @@ -17555,17 +17561,17 @@ dxF dxF dxF dxF -dmy -dmy -dmy -oun +azv +azv +azv +hIg wwQ -oca +kIe fKL opQ xpz sWF -kWd +jLy opQ oor sWF @@ -17722,17 +17728,17 @@ dxF dxF dxF dxF -dmy -dmy -dmy -oun +azv +azv +azv +hIg wwQ -oFX +ojA ugw ycq mtG sWF -npx +leI opQ akS sWF @@ -17889,12 +17895,12 @@ dxF dxF dxF dxF -dmy -dmy -dmy -oun +azv +azv +azv +hIg wwQ -oFX +ojA ugw opQ opQ @@ -18037,13 +18043,13 @@ dxF dxF dxF dxF -oNE -oNE -oNE -oNE -oNE -oNE -oNE +oQa +oQa +oQa +oQa +oQa +oQa +oQa dxF dxF dxF @@ -18056,12 +18062,12 @@ dxF dxF dxF dxF -dmy -dmy -dmy -jGF +azv +azv +azv +qSs sWF -bQk +oqB opQ opQ ksN @@ -18132,19 +18138,19 @@ wGH wGH wGH wGH -cPn -cPn -cPn +dnn +dnn +dnn wGH -cPn +dnn wGH wGH wGH vei wGH -cPn -cPn -cPn +dnn +dnn +dnn wGH wGH wGH @@ -18201,18 +18207,18 @@ dxF dxF dxF dxF -wwc -tHh -tbk -oNE -rmg -oNE -rmg -rmg -rmg -oNE -oNE -oNE +urb +cVf +rBZ +oQa +mBX +oQa +mBX +mBX +mBX +oQa +oQa +oQa dxF dxF dxF @@ -18223,12 +18229,12 @@ dxF dxF dxF dxF -dmy -dmy -dmy -jGF +azv +azv +azv +qSs qzj -sOF +kIH swq bsP opQ @@ -18361,26 +18367,26 @@ dxF dxF dxF dxF -tHh +cVf dxF dxF dxF dxF -tHh -tHh -tHh -tHh -tHh -tbk -eiX -eiX -eiX -eiX -eiX -eiX -eiX -eiX -nvi +cVf +cVf +cVf +cVf +cVf +rBZ +cCE +cCE +cCE +cCE +cCE +cCE +cCE +cCE +tvF dxF dxF dxF @@ -18390,12 +18396,12 @@ dxF dxF dxF dxF -dmy -dmy -dmy -jGF +azv +azv +azv +qSs qzj -qfw +sJv rwL opQ dKs @@ -18443,13 +18449,13 @@ dxF dxF dxF osB -bGw -eQK +cEP +qLZ kie ibm nPs osB -bFz +tly ppM fQB fQB @@ -18525,31 +18531,31 @@ dxF dxF dxF dxF -mjW -yfc -tIY -tHh +qmI +wmb +jPQ +cVf dxF dxF dxF -tHh -bWA -tHh -tHh -tHh -lKk -kWX -kWX -tHh -tHh -tHh -tHh -tHh -tHh -tHh -tHh -tHh -tHh +cVf +eji +cVf +cVf +cVf +rQK +lIl +lIl +cVf +cVf +cVf +cVf +cVf +cVf +cVf +cVf +cVf +cVf dxF dxF dxF @@ -18557,12 +18563,12 @@ dxF dxF dxF dxF -dmy -dmy -dmy -jGF +azv +azv +azv +qSs wwQ -eur +xzO opQ opQ swq @@ -18610,15 +18616,15 @@ dxF dxF nPs ibm -rYs +ggZ wpq uDP nPs ibm osB -uWk -aHg -acN +sTs +bhI +xuA ppM fQB loe @@ -18654,7 +18660,7 @@ nbV nbV qVc cWV -aRu +tYm wGH dxF dxF @@ -18665,7 +18671,7 @@ dxF dxF dxF vei -vsS +knf bGD oqQ sHu @@ -18692,50 +18698,50 @@ dxF dxF dxF dxF -eFy -dDL -dOU -tHh -tHh -tHh -tHh -tHh -tHh -lKk -lKk -lKk -lKk -lKk -kWX -kWX -tHh -tHh -rst -tHh -tHh -lKk -lKk -lKk -tHh -tHh -bWA -tHh +uqZ +oKJ +qFZ +cVf +cVf +cVf +cVf +cVf +cVf +rQK +rQK +rQK +rQK +rQK +lIl +lIl +cVf +cVf +cdt +cVf +cVf +rQK +rQK +rQK +cVf +cVf +eji +cVf dxF dxF dxF dxF -kWX -dmy -dmy -jGF +lIl +azv +azv +qSs sWF sWF -khW -dwP -xcI -pHm -dwP -kVX +laO +qCL +qYm +ljp +qCL +gxM sWF sWF dxF @@ -18777,16 +18783,16 @@ dxF fxL ibm gSr -eDQ -lmK -oFs +oxA +uzU +tVu nPs nPs fqR -kSo -ckF -bDW -fAF +sIW +kQp +tto +cNG fQB loe mxB @@ -18821,7 +18827,7 @@ lAI nbV usd cWV -aRu +tYm vei wGH kVH @@ -18832,7 +18838,7 @@ dxF dxF prJ wGH -dzH +lTS rHy prJ aIu @@ -18859,43 +18865,43 @@ dxF dxF dxF dxF -tnI -rfz -dyW -lKk -lKk -lKk -kWX -kWX -lKk -lKk -tHh -tHh -tHh -lKk -kWX -kWX -kWX -tHh -tHh -tHh -tHh -lKk -tHh -tHh -tHh -tHh -tHh -tHh -tHh -kWX -kWX -lKk -lKk -dmy -dmy -jGF -bEt +tOE +aCT +uMV +rQK +rQK +rQK +lIl +lIl +rQK +rQK +cVf +cVf +cVf +rQK +lIl +lIl +lIl +cVf +cVf +cVf +cVf +rQK +cVf +cVf +cVf +cVf +cVf +cVf +cVf +lIl +lIl +rQK +rQK +azv +azv +qSs +sps sWF sWF sWF @@ -18952,8 +18958,8 @@ rkt jBJ fOU ibm -rYs -fAF +ggZ +cNG fQB uam jhS @@ -18988,7 +18994,7 @@ lAI nbV slB cWV -aRu +tYm wGH wGH wGH @@ -18999,7 +19005,7 @@ dxF dxF prJ wGH -dzH +lTS kvU bGD prJ @@ -19027,50 +19033,50 @@ dxF dxF dxF dxF -kWX -tHh -tHh -tHh -tHh -lKk -tHh -tHh -tHh -kWX -tHh -tHh -tHh -tHh -tHh -tHh -tHh -lKk -lKk -lKk -lKk -lKk -lKk -lKk -tHh -tHh -tHh -tHh -tHh -lKk -lKk -lKk -dmy -dmy -dBj -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD +lIl +cVf +cVf +cVf +cVf +rQK +cVf +cVf +cVf +lIl +cVf +cVf +cVf +cVf +cVf +cVf +cVf +rQK +rQK +rQK +rQK +rQK +rQK +rQK +cVf +cVf +cVf +cVf +cVf +rQK +rQK +rQK +azv +azv +pTS +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi rzh dxF dxF @@ -19117,13 +19123,13 @@ osB dxF dxF mxB -gfK -eQK -qaY -fAF +rmA +qLZ +gvb +cNG fQB rYM -sBH +ppc kVJ prJ prJ @@ -19155,7 +19161,7 @@ lAI nbV aKl cWV -aRu +tYm qnU wGH wGH @@ -19166,7 +19172,7 @@ wGH prJ prJ wGH -dzH +lTS pPJ kvU bGD @@ -19195,49 +19201,49 @@ dxF dxF dxF dxF -tHh -tHh -kWX -lKk -qDH -qDH -qDH -kWX -kWX -kWX -kWX -kWX -lKk -qDH -qDH -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -qDH -qDH -qDH -lKk -lKk -dmy -dmy -lKk -lKk -lKk -kWX -kWX -kWX -lKk -lKk -lKk -lKk +cVf +cVf +lIl +rQK +osU +osU +osU +lIl +lIl +lIl +lIl +lIl +rQK +osU +osU +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +osU +osU +osU +rQK +rQK +azv +azv +rQK +rQK +rQK +lIl +lIl +lIl +rQK +rQK +rQK +rQK dxF dxF dxF @@ -19284,13 +19290,13 @@ dxF dxF dxF mxB -uGB -mCo -iob -lYI +rNC +jxy +sOm +bhC fQB rYM -sBH +ppc kVJ wGH wGH @@ -19322,7 +19328,7 @@ cBF nbV qVc cWV -aRu +tYm qnU qnU wGH @@ -19333,8 +19339,8 @@ vei wGH prJ wGH -uMg -rih +hEn +aaL pPJ rHy prJ @@ -19362,49 +19368,49 @@ dxF dxF dxF dxF -tHh -kWX -kWX -lKk -dBj -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -dBj -dmy -dmy -dmy -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk +cVf +lIl +lIl +rQK +pTS +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +pTS +azv +azv +azv +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK dxF dxF dxF @@ -19451,13 +19457,13 @@ dxF dxF dxF mxB -lXe -wsf +sTb +iJi fQB fQB fQB rYM -sBH +ppc kVJ wGH vei @@ -19489,7 +19495,7 @@ nbV nbV usd cWV -aRu +tYm qnU wGH qnU @@ -19501,9 +19507,9 @@ prJ wGH jqt prJ -uMg -lrx -mnk +hEn +iVd +ngD dxF dxF dxF @@ -19529,48 +19535,48 @@ dxF dxF dxF dxF -tHh -kWX -lKk -oJE -jGF -tGE -hnq -dhL -wrk -ccs -hnq -dhL -wrk -ccs -hnq -dhL -wrk -ccs -hnq -dhL -wrk -ccs -hnq -dhL -wrk -ccs -hnq -dhL -tGE -jGF -dmy -dmy -dmy -lKk -lKk -qDH -qDH -qDH -qDH -qDH -lKk -lKk +cVf +lIl +rQK +kjI +qSs +rEi +lqX +fUV +ebJ +nHw +lqX +fUV +ebJ +nHw +lqX +fUV +ebJ +nHw +lqX +fUV +ebJ +nHw +lqX +fUV +ebJ +nHw +lqX +fUV +rEi +qSs +azv +azv +azv +rQK +rQK +osU +osU +osU +osU +osU +rQK +rQK dxF dxF dxF @@ -19619,12 +19625,12 @@ dxF dxF mxB mxB -ebP +plk han fQB fQB rYM -sBH +ppc kVJ wGH wGH @@ -19656,7 +19662,7 @@ nbV nbV slB cWV -aRu +tYm wGH wGH wGH @@ -19696,12 +19702,12 @@ dxF dxF dxF dxF -kWX -lKk -tHh -lKk -jGF -wvX +lIl +rQK +cVf +rQK +qSs +pTU hzN wqk hzN @@ -19724,20 +19730,20 @@ hzN wqk hzN hzN -dpt -jGF -dmy -dmy -dmy -lKk -oJE -dBj -lzD -lzD -lzD -dBj -qnd -xrT +eAV +qSs +azv +azv +azv +rQK +kjI +pTS +aCi +aCi +aCi +pTS +xAQ +dIf dxF dxF dxF @@ -19823,7 +19829,7 @@ lAI nbV aKl cWV -aRu +tYm gZj wGH wGH @@ -19862,13 +19868,13 @@ dxF dxF dxF dxF -kWX -kWX -lKk -tHh -lKk -jGF -sUt +lIl +lIl +rQK +cVf +rQK +qSs +scw hzN hzN hzN @@ -19891,20 +19897,20 @@ hzN hzN ppX hzN -lNl -jGF -dmy -dmy -dmy -lKk -oJE -jGF -uTr -mfk -mfk -jGF -qnd -lKk +aSH +qSs +azv +azv +azv +rQK +kjI +qSs +aDg +nBE +nBE +qSs +xAQ +rQK dxF dxF dxF @@ -19990,7 +19996,7 @@ lAI cBF qVc cWV -aRu +tYm wGH wGH jqt @@ -20029,13 +20035,13 @@ dxF dxF dxF dxF -kWX -cpD -lKk -tHh -oJE -jGF -saK +lIl +kFo +rQK +cVf +kjI +qSs +cAG hzN hzN hzN @@ -20058,21 +20064,21 @@ ppX hzN ppX hzN -qTI -jGF -dmy -dmy -lKk -lKk -oJE -jGF -rlI -pRL -vrB -jGF -qnd -lKk -wax +lmL +qSs +azv +azv +rQK +rQK +kjI +qSs +oTq +tyI +ews +qSs +xAQ +rQK +pzF pkP pkP hrz @@ -20157,7 +20163,7 @@ lAI cBF usd cWV -aRu +tYm wGH wGH jqt @@ -20196,13 +20202,13 @@ dxF dxF dxF dxF -kWX -lKk -lKk -lKk -oJE -jGF -sLf +lIl +rQK +rQK +rQK +kjI +qSs +stm hzN ppX ppX @@ -20225,23 +20231,23 @@ ppX ppX ppX hzN -wXf -jGF -dmy -dmy -lKk -kWX -oJE -jGF -fmN -fmN -fmN -jGF -qnd -lKk -mAb +xNV +qSs +azv +azv +rQK +lIl +kjI +qSs +hPp +hPp +hPp +qSs +xAQ +rQK +lcK ggC -mar +sQL hrz hrz hrz @@ -20363,13 +20369,13 @@ dxF dxF dxF dxF -kWX -lKk -lKk -lKk -oJE -jGF -wvX +lIl +rQK +rQK +rQK +kjI +qSs +pTU hzN ppX ppX @@ -20392,23 +20398,23 @@ ppX hzN eBI hzN -dpt -jGF -dmy -dmy -lKk -kWX -oJE -jGF -wlg -vPm -vPm -jGF -qnd -lKk -mAb +eAV +qSs +azv +azv +rQK +lIl +kjI +qSs +bRy +sko +sko +qSs +xAQ +rQK +lcK ggC -mar +sQL hrz hrz hrz @@ -20456,10 +20462,10 @@ dxF dxF mxB jhS -pks -pks -pks -pks +rnw +rnw +rnw +rnw jhS mxB dxF @@ -20530,13 +20536,13 @@ dxF dxF dxF dxF -kWX -kWX -lKk -tHh -oJE -jGF -sUt +lIl +lIl +rQK +cVf +kjI +qSs +scw hzN ppX ppX @@ -20559,23 +20565,23 @@ ppX hzN hzN hzN -lNl -jGF -dmy -dmy -lKk -lKk -oJE -jGF -qUC -kVA -fmN -jGF -qnd -lKk -mAb +aSH +qSs +azv +azv +rQK +rQK +kjI +qSs +ieW +sNB +hPp +qSs +xAQ +rQK +lcK ggC -mar +sQL sVF hrz hrz @@ -20697,13 +20703,13 @@ dxF dxF dxF dxF -tHh -kWX -tHh -kWX -kWX -jGF -saK +cVf +lIl +cVf +lIl +lIl +qSs +cAG hzN ppX ppX @@ -20726,23 +20732,23 @@ ppX hzN hzN hzN -qTI -jGF -dmy -dmy -lKk -lKk -oJE -dBj -lzD -lzD -lzD -dBj -qnd -lKk -mAb +lmL +qSs +azv +azv +rQK +rQK +kjI +pTS +aCi +aCi +aCi +pTS +xAQ +rQK +lcK pkP -mar +sQL iin hrz hrz @@ -20790,10 +20796,10 @@ sPE xpd mxB tlN -dLZ -dLZ -dLZ -dLZ +otn +otn +otn +otn tlN tlN tlN @@ -20804,22 +20810,22 @@ wGH wGH wGH vei -gAM +wEg vei prJ vei -gAM -gAM -gAM +wEg +wEg +wEg wGH -gAM -gAM -gAM +wEg +wEg +wEg vei vei -gAM -gAM -gAM +wEg +wEg +wEg wGH wGH wGH @@ -20864,13 +20870,13 @@ dxF dxF dxF dxF -tHh -tHh -tHh -tHh -oJE -jGF -mIT +cVf +cVf +cVf +cVf +kjI +qSs +lhF hzN ppX ppX @@ -20893,23 +20899,23 @@ ppX ppX ppX hzN -wXf -jGF -dmy -dmy -dmy -lKk -lKk -rSU -rSU -rSU -rSU -rSU -lKk -lKk -mAb +xNV +qSs +azv +azv +azv +rQK +rQK +xVo +xVo +xVo +xVo +xVo +rQK +rQK +lcK ggC -mar +sQL hrz hrz hrz @@ -20957,11 +20963,11 @@ bff oqw mHo ozs -lzb -lzb -lzb -lzb -lzb +wPi +wPi +wPi +wPi +wPi vre tlN dxF @@ -21031,13 +21037,13 @@ dxF dxF dxF dxF -tHh -mao -tHh -kWX -oJE -jGF -wvX +cVf +jlq +cVf +lIl +kjI +qSs +pTU hzN hzN hzN @@ -21060,23 +21066,23 @@ ppX hzN ppX eBI -dpt -jGF -dmy -dmy -dmy -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -cpD -mAb +eAV +qSs +azv +azv +azv +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +kFo +lcK ggC -mar +sQL hrz hrz hrz @@ -21123,13 +21129,13 @@ mxB mxB mxB tlN -ozq +wqH xzY xzY xzY xzY xzY -msF +tKy pyp dxF dxF @@ -21198,13 +21204,13 @@ dxF dxF dxF dxF -tHh -tHh -tHh -tHh -kWX -jGF -sUt +cVf +cVf +cVf +cVf +lIl +qSs +scw hzN hzN hzN @@ -21227,23 +21233,23 @@ hzN hzN ppX eBI -lNl -jGF -dmy -dmy -dmy -lKk -tHh -lKk -lKk -lKk -lKk -izY -lKk -lKk -mAb +aSH +qSs +azv +azv +azv +rQK +cVf +rQK +rQK +rQK +rQK +uan +rQK +rQK +lcK ggC -mar +sQL hrz hrz hrz @@ -21290,13 +21296,13 @@ dxF dxF dxF tlN -oIV +lHi boR hkY pKO tXm boR -oIV +lHi tlN dxF dxF @@ -21365,13 +21371,13 @@ dxF dxF dxF dxF -tHh -tHh -tHh -tHh -oJE -jGF -saK +cVf +cVf +cVf +cVf +kjI +qSs +cAG hzN wqk hzN @@ -21394,19 +21400,19 @@ hzN wqk hzN hzN -qTI -jGF -dmy -dmy -dmy -dBj -lzD -lzD -lzD -lzD -lzD -lzD -lzD +lmL +qSs +azv +azv +azv +pTS +aCi +aCi +aCi +aCi +aCi +aCi +aCi hoK hoK hoK @@ -21457,13 +21463,13 @@ tlN tlN tlN tlN -fQC +iVc boR tXm tWM tXm boR -giM +aTO tlN dfa eRE @@ -21532,51 +21538,51 @@ dxF dxF dxF dxF -tHh -tHh -tHh -lKk -oJE -jGF -tGE -pPz -jUK -xDR -tHI -pPz -jUK -xDR -tHI -pPz -jUK -xDR -tHI -pPz -jUK -xDR -tHI -pPz -jUK -xDR -tHI -pPz -jUK -tGE -jGF -dmy -dmy -dmy -jGF -bEt -bEt -bEt -bEt -bEt -bEt +cVf +cVf +cVf +rQK +kjI +qSs +rEi +arV +iQY +sfS +pLg +arV +iQY +sfS +pLg +arV +iQY +sfS +pLg +arV +iQY +sfS +pLg +arV +iQY +sfS +pLg +arV +iQY +rEi +qSs +azv +azv +azv +qSs +sps +sps +sps +sps +sps +sps hoK hoK hbL -hhu +qCv hoK hoK dxF @@ -21699,42 +21705,42 @@ dxF dxF dxF dxF -tHh -tHh -lKk -lKk -oJE -dBj -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -lzD -dBj -dmy -dmy -dmy -lxN -bEt +cVf +cVf +rQK +rQK +kjI +pTS +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aCi +pTS +azv +azv +azv +kGQ +sps hoK hoK dkW @@ -21742,9 +21748,9 @@ uIF hoK hoK oaG -jcl -luO -qEq +kPn +nmH +oSW hoK dxF dxF @@ -21776,8 +21782,8 @@ dxF dxF dxF dxF -mbh -rsV +jtE +ltj xYt dxF tlN @@ -21788,16 +21794,16 @@ pla boR tWM tWM -kMP -kMP -qGQ -aAe -kMP -kMP -kMP -bne -kMP -kMP +eLe +eLe +gDN +iDy +eLe +eLe +eLe +uaU +eLe +eLe pmu qzd ubV @@ -21807,8 +21813,8 @@ vei prJ prJ piq -mhJ -qGJ +sUv +cct tQi vei wGH @@ -21866,49 +21872,49 @@ dxF dxF dxF dxF -tHh -kWX -lKk -lKk -cpD -rSU -rSU -rSU -lKk -rSU -rSU -lKk -rSU -rSU -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -rSU -lKk -dmy -dmy -dmy -jGF -bEt +cVf +lIl +rQK +rQK +kFo +xVo +xVo +xVo +rQK +xVo +xVo +rQK +xVo +xVo +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +xVo +rQK +azv +azv +azv +qSs +sps hoK lOr -iNY -iNY -uaj +fhP +fhP +xqi hoK -wDk +fEf cid nZK jnr @@ -21943,7 +21949,7 @@ dxF dxF dxF dxF -dsp +sRu dJs xIk bXl @@ -21955,16 +21961,16 @@ moL boR tWM tWM -kMP -kMP -qGQ -aAe -kMP -qAk -kMP -kMP -kMP -kMP +eLe +eLe +gDN +iDy +eLe +vSf +eLe +eLe +eLe +eLe pmu qzd ubV @@ -21974,8 +21980,8 @@ prJ prJ prJ piq -cLQ -qru +seE +erN tQi wGH vei @@ -22032,50 +22038,50 @@ dxF dxF dxF dxF -kWX -kWX -kWX -kWX -lKk -tHh -lKk -lKk -lKk -lKk -lKk -lKk -lKk -lKk -tHh -lKk -lKk -tHh -tHh -tHh -tHh -kWX -kWX -oKx -oKx -lKk -qDH -qDH -qDH -qDH -qDH -lKk -dmy -dmy -dmy -jGF -bEt +lIl +lIl +lIl +lIl +rQK +cVf +rQK +rQK +rQK +rQK +rQK +rQK +rQK +rQK +cVf +rQK +rQK +cVf +cVf +cVf +cVf +lIl +lIl +wul +wul +rQK +osU +osU +osU +osU +osU +rQK +azv +azv +azv +qSs +sps uAJ -iZi +upa nZK iTc -pmo -gFt -onC +nNF +lhT +fNr tgl nZK jnr @@ -22110,9 +22116,9 @@ dxF dxF dxF dxF -gxs -kjo -umQ +qNZ +uiQ +xEZ bXl fFH rwX @@ -22200,44 +22206,44 @@ dxF dxF dxF dxF -kWX -kWX -kWX -kWX -kWX -kWX -kWX -lKk -lKk -lKk -lKk -lKk -cLr -tHh -tHh -tHh -tHh -tHh -lKk -tHh -tHh -tHh -tHh -oKx -lKk -gTO -lzD -lzD -lzD -dBj -qnd -dmy -dmy -dmy -jGF -bEt +lIl +lIl +lIl +lIl +lIl +lIl +lIl +rQK +rQK +rQK +rQK +rQK +gIo +cVf +cVf +cVf +cVf +cVf +rQK +cVf +cVf +cVf +cVf +wul +rQK +eAe +aCi +aCi +aCi +pTS +xAQ +azv +azv +azv +qSs +sps hEC -ipy +yae nZK yhA nZK @@ -22281,24 +22287,24 @@ sYd sYd sYd sYd -xjf -aAe -kMP -kMP -dga -kMP +kLB +iDy +eLe +eLe +qrX +eLe tWM tWM mkJ tlN tlN -fQC +iVc boR tWM tWM tWM boR -giM +aTO tlN dfa eRE @@ -22372,39 +22378,39 @@ dxF dxF dxF rzh -lzD -bEn -bEn -lzD -lzD -lzD -xAr -lzD -xAr -wvg -lzD -lzD -lzD -lzD -dBj -tHh -tHh -tHh -tHh -eqQ -xFN -cYb -gmA -juC -jGF -qnd -dmy -dmy -dmy -jGF -bEt +aCi +nRA +nRA +aCi +aCi +aCi +mUg +aCi +mUg +don +aCi +aCi +aCi +aCi +pTS +cVf +cVf +cVf +cVf +xcf +xTG +nJm +ajl +hLG +qSs +xAQ +azv +azv +azv +qSs +sps uAJ -mbc +wHm nZK nZK nZK @@ -22448,24 +22454,24 @@ sYd sYd sYd sYd -qGQ -bNN -pPn -kMP -dxL -kMP +gDN +gft +cfn +eLe +lhD +eLe tWM tWM cRo tlN kfe -tlK +iMk boR tXm tWM tXm boR -tlK +iMk tlN iaj iaj @@ -22551,32 +22557,32 @@ uzp acx jnV jnV -bEt -bEt -jGF -tHh -tHh -tHh -tHh -oJE -jGF -fmN -vPm -uTr -kBm -bdd -dmy -dmy -dmy -jGF -cou +sps +sps +qSs +cVf +cVf +cVf +cVf +kjI +qSs +hPp +sko +aDg +ctE +eVT +azv +azv +azv +qSs +nhm hEC -fEu +iLY nZK nZK -sgc -gby -oOd +pGG +xrh +aqH nZK nZK vKV @@ -22626,13 +22632,13 @@ tWM xZr tlN kfe -tlK +iMk vXq kKb tWM tXm boR -tlK +iMk tlN iaj iaj @@ -22705,48 +22711,48 @@ dxF jnV jnV gAt -sjE -sjE -uHg -upp +kBN +kBN +evx +kcj bET jnV xZz -vCx -vXs -sjE -sjE +gbi +ngF +kBN +kBN pHR jnV jnV -bEt -jGF -lKk -tHh -tHh -tHh -oJE -jGF -kDD -vPm -vPm -rdx -bdd -dmy -dmy -dmy -jGF -bEt +sps +qSs +rQK +cVf +cVf +cVf +kjI +qSs +mqw +sko +sko +tPm +eVT +azv +azv +azv +qSs +sps hoK -pLN -fYE +mvl +dhr nZK jnr hoK -fEu +iLY xNF -sgc -pio +pGG +nsk hoK dxF dxF @@ -22793,13 +22799,13 @@ tWM wtZ tlN kfe -tlK +iMk boR tXm jFB kKb vXq -tlK +iMk tlN iaj iaj @@ -22871,14 +22877,14 @@ dxF dxF jnV hst -uHg +evx cWc cWc cWc tiL jPD jnV -qqV +lpP aTQ laI cWc @@ -22887,30 +22893,30 @@ cWc hst jnV jnV -jGF -lKk -fYF -tHh -tHh -oJE -jGF -fmN -vPm -fmN -ctA -qnd -dmy -dmy -dmy -jGF -bEt +qSs +rQK +rux +cVf +cVf +kjI +qSs +hPp +sko +hPp +mpq +xAQ +azv +azv +azv +qSs +sps hoK hoK -ybd +plS nZK jnr hoK -fEu +iLY xNF jnr hoK @@ -23037,7 +23043,7 @@ dxF dxF dxF jnV -bmZ +fVA cWc cWc cWc @@ -23045,7 +23051,7 @@ cWc cWc mLe jnV -quu +dVy cWc cWc cWc @@ -23054,30 +23060,30 @@ cWc cWc dfz jnV -jGF -lKk -fSK -lKk -lKk -oJE -jGF -fmN -vPm -bGi -jGF -bdd -dmy -dmy -dmy -jGF -bEt +qSs +rQK +sEd +rQK +rQK +kjI +qSs +hPp +sko +mka +qSs +eVT +azv +azv +azv +qSs +sps hoK hoK -nmw +maC nZK jnr hoK -rFu +epm nZK jnr hoK @@ -23204,50 +23210,50 @@ dxF dxF dxF jnV -bMu +qMp cWc cWc pfe cWc cWc -upp +kcj pma -qRp +mmU cWc cWc cWc cWc cWc cWc -kSy +cRJ pma -wEU -lKk -iiy -eGL -cpD -lKk -jGF -xcG -vPm -fmN -jGF -kWX -dmy -dmy -dmy -jGF -bEt +wET +rQK +wMm +hXT +kFo +rQK +qSs +sfU +sko +hPp +qSs +lIl +azv +azv +azv +qSs +sps hoK yhV -onC +fNr nZK jnr hoK -jng +dlf nZK -pmo -qEq +nNF +oSW hoK dxF dxF @@ -23291,16 +23297,16 @@ moL boR nQr tWM -kMP -xnk -qGQ -aAe -kMP -lov -kMP -fyB -pPn -kMP +eLe +hDf +gDN +iDy +eLe +qFY +eLe +xgP +cfn +eLe pmu qzd qzd @@ -23371,47 +23377,47 @@ dxF dxF dxF jnV -hCl +hka cWc -jiX -mLY -mLY -mLY -mLY +jWD +szn +szn +szn +szn fto -iYO +enw cWc jcL cWc cWc tiL cWc -jiX +jWD fto -pUB -lKk -arh -lKk -lKk -kWX -jGF -dpH -aIy -vPm -jGF -kWX -dmy -dmy -dmy -jGF -bEt +sPC +rQK +twj +rQK +rQK +lIl +qSs +sTL +aaS +sko +qSs +lIl +azv +azv +azv +qSs +sps uAJ -uEr +eyO nZK nZK -gFo -gwv -onC +lMT +jWs +fNr rKJ nZK jnr @@ -23458,16 +23464,16 @@ nJY wiH tWM tWM -kMP -eTy -qGQ -aAe -kMP -xYR -kMP -kMP -kMP -kMP +eLe +iEp +gDN +iDy +eLe +npv +eLe +eLe +eLe +eLe pmu qzd qzd @@ -23507,19 +23513,19 @@ voy aHW aHW aHW -pXf -vCT -iCG +eUf +eDn +xBS aHW evZ hQj evZ aHW -dtM -arr -uNI -nHU -nHU +ayn +uSL +sbQ +omU +omU "} (43,1,1) = {" ybY @@ -23538,7 +23544,7 @@ dxF dxF dxF jnV -coF +aNf cWc jPD jnV @@ -23546,7 +23552,7 @@ jnV jnV jnV jnV -sit +qJi lSc cWc cWc @@ -23555,25 +23561,25 @@ lSc lSc fto jnV -jGF -lKk -lKk -lKk -lKk -kWX -jGF -eUJ -aIy -juC -jGF -qnd -lKk -dmy -sWR -jGF -bEt +qSs +rQK +rQK +rQK +rQK +lIl +qSs +qir +aaS +hLG +qSs +xAQ +rQK +azv +fGE +qSs +sps uAJ -jOA +xIQ nZK nZK yhA @@ -23653,40 +23659,40 @@ wGH jqt jqt prJ -vcT -azO -azO -azO -azO -azO -azO -azO -cun +uYm +kCS +kCS +kCS +kCS +kCS +kCS +kCS +nxm pyp pyp nXX thu -cvm +gWI hQj hQj hQj -dAB +vKi rwj muG muG qVZ -tuW -gtE +ukW +cto byl evZ -kdY +rSz evZ byl -iXj -qAP -gWo -mNl -mNl +qcy +wzo +tFq +cel +cel "} (44,1,1) = {" ybY @@ -23705,15 +23711,15 @@ dxF dxF dxF jnV -sJM +pOr cWc -upp +kcj jnV -egL -sjE +uRT +kBN vKp jnV -ufp +tap lpN vYF cWc @@ -23722,25 +23728,25 @@ iXh ntz jnV jnV -jGF -lKk -lKk -lKk -lKk -oJE -jGF -fmN -dpH -juC -jGF -qnd -kWX -dmy -dmy -jGF -cou +qSs +rQK +rQK +rQK +rQK +kjI +qSs +hPp +sTL +hLG +qSs +xAQ +lIl +azv +azv +qSs +nhm hEC -fKD +hvH nZK nZK nZK @@ -23819,41 +23825,41 @@ jqt jqt jqt jqt -vcT -tjS -iSN -nQo -kNq +uYm +mBH +lZf +joF +wam gWd gWd -iSN -nQo -ozl -vin +lZf +joF +nEq +nuN pBV hQj xzY -cvm -kdY -kdY -kdY -cvm +gWI +rSz +rSz +rSz +gWI rwj wMw wMw wMw -eJi -kbg +nlZ +cll byl evZ hQj evZ byl -iXj -qwg -eKr -qAP -mNl +qcy +fsQ +mWU +wzo +cel "} (45,1,1) = {" ybY @@ -23872,7 +23878,7 @@ dxF dxF dxF jnV -feQ +jat cWc cWc ujT @@ -23881,10 +23887,10 @@ cWc mLe jnV wno -vER -wnK -mLY -awJ +vfq +snW +szn +tjF klu jnV jnV @@ -23892,27 +23898,27 @@ jnV rzh dxF dxF -iCQ -lKk -lKk -dBj -lzD -lzD -lzD -dBj -qnd -kWX -dmy -dmy -jGF -bEt +sca +rQK +rQK +pTS +aCi +aCi +aCi +pTS +xAQ +lIl +azv +azv +qSs +sps uAJ -iZi +upa nZK nZK -sgc -qUZ -ieA +pGG +cVs +gqp nZK wZw jnr @@ -23968,15 +23974,15 @@ boR hnZ boR ezX -kMx -xjg -uqL -azO -azO -azO -azO -azO -azO +hXN +dIW +bYU +kCS +kCS +kCS +kCS +kCS +kCS qzY fcB qzd @@ -23985,42 +23991,42 @@ qzd iaj iaj qzd -vcT -tjS -iSN -eyU -apD -dfY +uYm +mBH +lZf +aBb +tvX +gXQ gWd gWd -dTp +bGk sOJ -oOO -vin +iGr +nuN pBV hQj xzY -cvm +gWI hQj hQj hQj -mcA +ipa rwj uZT uZT uZT -fdF -kbg +jDJ +cll byl evZ -kdY +rSz evZ byl -iem -qAP -qAP -mNl -mNl +vth +wzo +wzo +cel +cel "} (46,1,1) = {" ybY @@ -24039,11 +24045,11 @@ dxF dxF dxF jnV -fyZ +wGe cWc -kqE +knd jnV -nDn +uTe cWc old jnV @@ -24061,25 +24067,25 @@ dxF dxF dxF dxF -lKk -rSU -rSU -rSU -rSU -rSU -lKk -lKk -dmy -dmy -jGF -bEt +rQK +xVo +xVo +xVo +xVo +xVo +rQK +rQK +azv +azv +qSs +sps hoK -xca -pyZ -vls -pbP +rPZ +dRN +bdY +aDs hoK -owz +fYV nZK cid vxM @@ -24129,65 +24135,65 @@ sYd sYd gzv ezX -mZE +pig lkP esi tXm -mZE +pig ezX -kMx +hXN kdf cNE -nQo -nQo -nQo -nQo -nQo -kNq +joF +joF +joF +joF +joF +wam dob -azO -azO -azO -azO -azO -azO -azO -tjS -iSN -eyU -apD -dfY -nLT -xpk -xpk -aWt -uGd +kCS +kCS +kCS +kCS +kCS +kCS +kCS +mBH +lZf +aBb +tvX +gXQ +wOx +aJC +aJC +aWC +ghR fkP -vin +nuN pyp wNh xzY -cvm +gWI hQj hQj hQj -mcA +ipa aHW aHW aHW -pXf -sVc -kbg +eUf +wiy +cll aHW awa fRI uqR aHW -iXj -qwg -mNl -mNl -mNl +qcy +fsQ +cel +cel +cel "} (47,1,1) = {" ybY @@ -24206,11 +24212,11 @@ dxF dxF dxF jnV -gws +cDR cWc jPD jnV -hDi +kgP cWc mLe jnV @@ -24246,10 +24252,10 @@ dkW uIF hoK hoK -fVm -cjC -rWY -iCw +oGe +vIQ +sKC +jSU hoK dxF dxF @@ -24296,65 +24302,65 @@ bXl sYd gzv ezX -mZE +pig tXm dQY tXm -lac +jqm tlN -kMx +hXN kdf -dsp +sRu sDG sDG sDG sDG sDG -mVr -nQo -kNq -nLT -xpk -xpk -xpk -aWt +eek +joF +wam +wOx +aJC +aJC +aJC +aWC gWd -iSN -eyU +lZf +aBb sDG qhi -nLT -jyz +wOx +lpI sCA ddq -mqu -uGd +xmo +ghR fkP -vin +nuN pBV vOC xzY -cvm -kdY -kdY -kdY -tEj +gWI +rSz +rSz +rSz +syX rwj muG muG qVZ -tuW -kbg +ukW +cll byl sTC -kdY +rSz pvL byl -iXj -qwg -sUC -eKr -mNl +qcy +fsQ +ksh +mWU +cel "} (48,1,1) = {" ybY @@ -24374,11 +24380,11 @@ dxF dxF jnV hsi -iYO +enw jPD jnV nLR -mLY +szn nLR jnV dxF @@ -24414,8 +24420,8 @@ aUF aUF hoK hoK -ekw -kAf +puC +sOI hoK hoK dxF @@ -24463,65 +24469,65 @@ sYd sYd gzv ezX -aCo +nJI tXm tXm esi -mZE +pig ezX -kMx +hXN kdf kdf -mIA -tUz -pjH -tUz -tUz -tUz +pGP +kbR +vED +kbR +kbR +kbR sOJ qhi mQl ueO jXq ddq -mqu +xmo gWd -uGd +ghR sDG sDG qhi dob -azO -azO -azO -tjS -uGd +kCS +kCS +kCS +mBH +ghR fkP -vin +nuN pBV xGI uBz -cvm +gWI hQj hQj hQj -jGo +wTI rwj wMw wMw wMw -bVB -kbg +wFX +cll byl vFv hQj evZ byl -iXj -qwg -qwg -flP -mNl +qcy +fsQ +fsQ +skR +cel "} (49,1,1) = {" ybY @@ -24631,39 +24637,39 @@ sYd pBi tlN vlt -lsy -kdY -kdY +lAi +rSz +rSz cIE pBV -kMx -nWo -cBi -vYC -xpk -xpk -xpk -xpk -aWt -dTp -dfY +hXN +uqV +tJV +qqe +aJC +aJC +aJC +aJC +aWC +bGk +gXQ dob -azO -azO -azO -tjS +kCS +kCS +kCS +mBH gWd -dTp +bGk sOJ sDG -mVr -kNq +eek +wam gWd gWd gWd -iSN -eyU -dyU +lZf +aBb +wQV pyp pyp sNp @@ -24677,18 +24683,18 @@ rwj uZT uZT uZT -fdF -sYV +jDJ +xwO byl evZ -kdY +rSz sTC byl -iXj -qwg -flP -mNl -mNl +qcy +fsQ +skR +cel +cel "} (50,1,1) = {" ybY @@ -24708,8 +24714,8 @@ dxF dxF jnV hCh -uHg -upp +evx +kcj lbF jnV dxF @@ -24781,8 +24787,8 @@ bXl kIn bXl bXl -fui -rsV +dIZ +ltj xYt via bEp @@ -24811,26 +24817,26 @@ cTz goT goT goT -oqg -xpk -xpk -xpk -xpk -xpk -xpk -xpk -xpk -aWt -dTp -tUz -tUz -dfY +kEP +aJC +aJC +aJC +aJC +aJC +aJC +aJC +aJC +aWC +bGk +kbR +kbR +gXQ gWd gWd gWd -dTp -tUz -dfY +bGk +kbR +gXQ pyp pyp pyp @@ -24843,19 +24849,19 @@ iHk aHW aHW aHW -pXf -prv -gwC +eUf +wIQ +scT aHW evZ cvV evZ aHW -rjS -ird -ird -ird -ird +cDE +eCM +eCM +eCM +eCM "} (51,1,1) = {" ybY @@ -24874,7 +24880,7 @@ dxF dxF dxF jnV -hDi +kgP pfe cWc mLe @@ -24948,7 +24954,7 @@ bXl sYd bXl bEp -dsp +sRu dJs jvt bTa @@ -24987,18 +24993,18 @@ qzd qzd qzd fcB -oqg -xpk -xpk -aWt +kEP +aJC +aJC +aWC gWd gWd gWd -nLT -xpk -xpk -xpk -tQB +wOx +aJC +aJC +aJC +xgv ePx pBV ksb @@ -25008,7 +25014,7 @@ xzY xzY hdQ xHm -cvm +gWI aHW aHW rwj @@ -25041,10 +25047,10 @@ dxF dxF dxF jnV -hRm +anv cWc jec -rEs +alv hXt dxF dxF @@ -25115,9 +25121,9 @@ bXl kIn bEp bEp -gxs -kjo -umQ +qNZ +uiQ +xEZ bEp bEp bEp @@ -25157,11 +25163,11 @@ iaj ubV ePx ePx -oqg -xpk -xpk -xpk -jyz +kEP +aJC +aJC +aJC +lpI ePx ePx nah @@ -25175,7 +25181,7 @@ hQj psz xVt xHm -cvm +gWI fRI hQj lAT @@ -25209,7 +25215,7 @@ dxF dxF jnV bhZ -jEh +hsH kwM mLe jnV @@ -25341,7 +25347,7 @@ hQj hQj hQj jrs -uTn +qvt dzD hQj hQj @@ -25377,7 +25383,7 @@ dxF jnV fto iPk -mLY +szn nwz hXt dxF @@ -25508,12 +25514,12 @@ hQj hQj hQj dXC -gxD +hTL fRI hQj hQj hQj -lVo +vDz fRI hQj hQj @@ -25675,12 +25681,12 @@ hQj hQj wnt mDl -eNK +tSa dzD pHv avX kbL -cvm +gWI hQj hQj akH @@ -25835,7 +25841,7 @@ cTz cTz ePx ePZ -nZv +jyj ePZ xzY hQj @@ -25843,11 +25849,11 @@ hQj hQj waW xHm -cvm +gWI hQj hQj hQj -lVo +vDz iLF hQj pnM @@ -26010,7 +26016,7 @@ hQj hQj uAh xHm -cvm +gWI hQj hQj hQj @@ -26503,15 +26509,15 @@ cTz cTz cTz ePZ -boa +iLa ePZ -cvm +gWI yas szF -spd +sQl yas cMc -rvt +cAO xzY hQj xzY @@ -26672,10 +26678,10 @@ cTz pyp pyp pyp -vbV +oOP pFZ jKc -uma +ajg pFZ jKc pyp @@ -26842,7 +26848,7 @@ pyp pyp pFZ jKc -rmG +asz pFZ cKI pBV @@ -26960,11 +26966,11 @@ swl dNg bXl bXl -uSG +cRW oOs naK oOs -uSG +cRW prU ePx ePx @@ -27127,11 +27133,11 @@ bEp dNg bXl kIn -uSG +cRW trU uRm rID -uSG +cRW mXZ ePx ePx @@ -27258,7 +27264,7 @@ bXl sYd sYd sYd -pqs +bLG gAu bXl bXl @@ -27294,11 +27300,11 @@ bEp dNg bXl sYd -uSG +cRW trU uRm gmS -uSG +cRW uRP cTz ePx @@ -27425,7 +27431,7 @@ sYd bXl bXl kIn -oeE +mVj gAu sYd sYd @@ -27461,11 +27467,11 @@ dez eLO bXl kIn -uSG +cRW trU uRm rID -uSG +cRW pVd ePx ePx @@ -27482,10 +27488,10 @@ goT ePx ePx ePx -rJU -vbA -vbA -vbA +iyF +xXv +xXv +xXv xkb cTz ePx @@ -27628,11 +27634,11 @@ bXl sYd bXl bXl -uSG +cRW ymc uRm gmS -uSG +cRW mXZ ePx cTz @@ -27649,10 +27655,10 @@ gbv oPb oPb uBc -iJq -clo -cKi -goh +jMx +rpk +mqn +sIG dWO ePx cTz @@ -27754,9 +27760,9 @@ bXl sYd sYd rfZ -rno -pqs -txe +bXx +bLG +ham vpq kIn bXl @@ -27795,11 +27801,11 @@ bXl bXl bXl bXl -uSG +cRW trU uRm rID -uSG +cRW pVd cTz hii @@ -27817,7 +27823,7 @@ oPb oPb uQC cOt -jOx +bXD rzc tax dWO @@ -27921,8 +27927,8 @@ bXl sYd pEJ rfZ -dFk -oeE +dYT +mVj una ujG bXl @@ -27962,11 +27968,11 @@ bXl bXl sYd bXl -uSG +cRW lrO kPw lrO -uSG +cRW hqO ePx hii @@ -27983,10 +27989,10 @@ gbv oPb oPb oPb -qFU -vkK -dDm -lVO +tSL +xNX +mlL +hec dWO ePx goT @@ -28088,7 +28094,7 @@ bXl bXl bXl rfZ -oeE +mVj una ujG kIn @@ -28150,11 +28156,11 @@ goT ePx ePx fRu -aog -qFU +gWu +tSL pCj -xoV -tQB +fsP +xgv cTz cTz abG @@ -28318,9 +28324,9 @@ ePx rej cTz cTz -aog -twq -tQB +gWu +uJF +xgv tIF ePx goT @@ -28802,11 +28808,11 @@ sYd raN raN dDj -arG +ipX fyD fyD fyD -arG +ipX dDj raN raN @@ -28906,9 +28912,9 @@ sYd sYd sYd pBi -mYj -lyJ -goa +mhm +siX +fbm mkO sYd pCS @@ -28969,11 +28975,11 @@ sYd raN raN dDj -arG +ipX uBO fyD uKx -arG +ipX dDj raN raN @@ -29073,9 +29079,9 @@ sYd sYd sYd pBi -iyP +eKB qVg -dsi +eQn ddH sYd pCS @@ -29096,8 +29102,8 @@ sYd xYs wix jFk -ckC -pqs +rcy +bLG bEp bEp bEp @@ -29136,11 +29142,11 @@ bXl sYd ewL plf -pIK +kYM fyD fyD fyD -arG +ipX plf goT goT @@ -29240,9 +29246,9 @@ sYd sYd sYd pBi -nzQ -elo -wgK +vyP +kcB +bAU ddH sYd pCS @@ -29261,9 +29267,9 @@ sYd sYd sYd rfZ -rno -pEg -jqy +bXx +bBb +nnn bEp bEp bEp @@ -29303,11 +29309,11 @@ tKY knP wWq plf -arG +ipX cEd tiW fyD -arG +ipX plf xSn stj @@ -29428,7 +29434,7 @@ sYd sYd sYd rfZ -dFk +dYT bEp bEp bEp @@ -29463,22 +29469,22 @@ grx bEp bEp bEp -dKu -lKV -lKV -lKV -oGC +svd +tgY +tgY +tgY +eKx sSr plf -arG +ipX fyD fyD fyD -arG +ipX ugU dDj -pAu -lKV +thi +tgY xTq cTz ePx @@ -29629,13 +29635,13 @@ bEp bEp bEp bEp -dKu -qny -sxy -dte -dte -bwT -dqp +svd +rXR +ryU +qjj +qjj +mJn +ssY xrx kqt kqt @@ -29795,10 +29801,10 @@ dic bEp bEp bEp -dKu -vmB -dyz -bjc +svd +kRW +ebu +bzd ixP ixP ixP @@ -29808,11 +29814,11 @@ dAH roS vuo vuo -snP -yjF -bnF -dTJ -dNc +bOi +cJm +mru +bmN +inI bsb uiT ePx @@ -29902,9 +29908,9 @@ hrz hrz hrz sVF -mar +sQL rzh -iXD +cgl kIn sYd qGa @@ -29955,16 +29961,16 @@ kIn sYd sYd bXl -dKu -lKV -lKV -lKV -lKV -lKV -lKV -qny -dyz -bjc +svd +tgY +tgY +tgY +tgY +tgY +tgY +rXR +ebu +bzd ixP ixP ixP @@ -29975,12 +29981,12 @@ rCp bBS roS vuo -eem -tDj +aCY +qlf rCp sbX -bBf -dNc +iwg +inI lpJ xTq ePx @@ -30069,15 +30075,15 @@ hrz hrz hrz sVF -mar +sQL ggC -iXD +cgl bXl sYd pBi -mYj -lyJ -goa +mhm +siX +fbm ddH sYd sYd @@ -30090,11 +30096,11 @@ bEp nrk nrk jkR -qOy +dGF uHP lkC uHP -qVU +hXy jkR bEp bEp @@ -30121,36 +30127,36 @@ dic dic dic bXl -dKu -qny -sxy -dte -dte -dte -dte -dte -dte -bjc +svd +rXR +ryU +qjj +qjj +qjj +qjj +qjj +qjj +bzd ixP ixP ixP ixP ixP dLR -bnF -exj +mru +oBj rYF vuo vuo -ppn +tgR ovG dwf xTq sbX -bJf +reS bsb lpJ -lKV +tgY xTq ePx ePx @@ -30236,15 +30242,15 @@ hrz sVF sVF sVF -cvF +qxF ggC -iXD +cgl bXl sYd pBi -iyP +eKB qVg -dsi +eQn ddH sYd pCS @@ -30269,41 +30275,41 @@ jkR bEp bEp tKY -dKu -lKV -lKV -lKV +svd +tgY +tgY +tgY xTq tKY tKY -dKu -lKV -lKV -lKV -lKV -lKV -lKV -lKV -lKV -lKV -lKV -lKV -qny -sxy -bjc +svd +tgY +tgY +tgY +tgY +tgY +tgY +tgY +tgY +tgY +tgY +tgY +rXR +ryU +bzd ixP ixP ixP ixP ixP ixP -fYI -tIh -tIh -tIh -tIh -ydh -fZT +dmN +lqK +lqK +lqK +lqK +kdZ +fMb ndw sRb sRb @@ -30313,11 +30319,11 @@ sRb coU mDH fNo -lKV -qny -sxy -dte -dIc +tgY +rXR +ryU +qjj +gqF uiT tKY tKY @@ -30403,15 +30409,15 @@ hrz hrz sVF sVF -mar +sQL ggC -iXD +cgl sYd sYd pBi -nzQ -elo -wgK +vyP +kcB +bAU ddH sYd pCS @@ -30430,59 +30436,59 @@ iYo iYo uHP aAq -jcd -ffv +fQV +psf jkR gxK gxK oZK -vmB -sxy -dte -qPz +kRW +ryU +qjj +kyJ lpJ -lKV -lKV -qny -qVY -dte -dte -dte -dte -dte -dte -dte -dte -dte -dte -dte -bjc +tgY +tgY +rXR +uRg +qjj +qjj +qjj +qjj +qjj +qjj +qjj +qjj +qjj +qjj +qjj +bzd ixP -fYI -tIh -tIh -tIh -tIh -tIh -qOw -rNg -dTJ -dTJ -dTJ -uze +dmN +lqK +lqK +lqK +lqK +lqK +rpN +eKL +bmN +bmN +bmN +yci sSr plf -arG +ipX fyD fyD fyD -arG +ipX ugU dDj -vHG +soU bsb bsb -oce +uST ixP dib uiT @@ -30570,9 +30576,9 @@ hrz sVF sVF sVF -mar +sQL pkP -iXD +cgl sYd sYd pvk @@ -30596,7 +30602,7 @@ iYo iYo jfs uHP -bux +rIT gjK cBJ jkR @@ -30604,14 +30610,14 @@ gxK gxK fWy bsb -oce +uST ixP -dAM -dte -dte -dte -dte -bjc +sqi +qjj +qjj +qjj +qjj +bzd ixP ixP ixP @@ -30619,37 +30625,37 @@ ixP ixP ixP ixP -fYI -tIh -tIh -tIh -tIh -tIh -mjq -rNg -dTJ -dTJ -dTJ -dTJ -dTJ -iuz +dmN +lqK +lqK +lqK +lqK +lqK +jun +eKL +bmN +bmN +bmN +bmN +bmN +qLq tKY tKY tKY mtS eeP plf -arG +ipX fyD fyD fyD -arG +ipX plf erE -dGy -dTJ -dNc -nct +cZD +bmN +inI +bFK hCc dib uiT @@ -30737,9 +30743,9 @@ hrz sVF sVF sVF -dTn +lyl ggC -iXD +cgl sYd sYd bXl @@ -30763,37 +30769,37 @@ iYo iYo iYo uHP -pGO -eIL -oRZ +ryM +dBF +hNb jkR gxK gxK gxK -dNc -nct -tIh +inI +bFK +lqK hCc ixP ixP ixP ixP -fYI -tIh -tIh -tIh -tIh -tIh -tIh -tIh -qOw -rNg -dTJ -dTJ -dTJ -vTe -dTJ -iuz +dmN +lqK +lqK +lqK +lqK +lqK +lqK +lqK +rpN +eKL +bmN +bmN +bmN +rPx +bmN +qLq tKY tKY tKY @@ -30806,19 +30812,19 @@ qhw lHs mbS plf -arG +ipX cEd fyD fyD -arG +ipX plf mNM eTj eTj vYQ bsb -nct -qOw +bFK +rpN lpJ xTq tKY @@ -30904,9 +30910,9 @@ hrz hrz hrz hrz -bwt +rAG ggC -iXD +cgl sYd sYd xgl @@ -30937,24 +30943,24 @@ jkR jkR jkR jkR -bBf -dTJ -dNc -nct -tIh -tIh -tIh -tIh -qOw -rNg -dTJ -dTJ -dTJ -dTJ -dTJ -dTJ -dTJ -iuz +iwg +bmN +inI +bFK +lqK +lqK +lqK +lqK +rpN +eKL +bmN +bmN +bmN +bmN +bmN +bmN +bmN +qLq dxF dxF dxF @@ -30973,16 +30979,16 @@ vDS kNn mbS plf -arG +ipX fyD uKx fyD -arG +ipX plf mNM eTj eTj -xnr +elI bsb bsb bsb @@ -31071,14 +31077,14 @@ hrz hrz hrz hrz -mar +sQL ggC -iXD +cgl kIn bXl xgl -bzY -ogG +xmf +vbI xgl oJV sYd @@ -31106,14 +31112,14 @@ uHP lZz dic tKY -bBf -dTJ -dTJ -dTJ -dTJ -dTJ -dTJ -iuz +iwg +bmN +bmN +bmN +bmN +bmN +bmN +qLq dic tFH dic @@ -31140,18 +31146,18 @@ qgW fTR lHs plf -gyx +dhZ fyD fyD fyD -arG +ipX dDj mNM eTj eTj eTj -dTJ -dNc +bmN +inI bsb bsb lpJ @@ -31238,9 +31244,9 @@ hrz hrz sVF hrz -mar +sQL pkP -iXD +cgl kIn bXl xgl @@ -31318,10 +31324,10 @@ mbS jlK sbX tKY -bJf -sxy -dte -qPz +reS +ryU +qjj +kyJ uiT tKY tKY @@ -31420,7 +31426,7 @@ pCS pCS pCS pzG -hVQ +yfn wLp uHP uHP @@ -31485,8 +31491,8 @@ kbN tKY sbX tKY -bJf -oce +reS +uST ixP dib lpJ @@ -31575,11 +31581,11 @@ dxF dxF kkH dTL -xtN -sHg +qXS +fcg amu mqG -gNI +mgv oww soF aaN @@ -31652,11 +31658,11 @@ tKY sbX tKY dic -etY -oce +lIt +uST ixP -dAM -sCw +sqi +goS uiT tKY rte @@ -31741,11 +31747,11 @@ dxF dxF dxF kkH -gkU +qkO rHQ lSe cwi -ogo +xjX rbu xgl xgl @@ -31767,8 +31773,8 @@ iYo uHP sGs xSX -oRE -mSv +gYZ +aQc iYo uHP jkR @@ -31816,11 +31822,11 @@ qhw nOG nOG sbX -dKu -lKV -lKV -qny -oce +svd +tgY +tgY +rXR +uST ixP ixP dib @@ -31908,11 +31914,11 @@ dxF dxF dxF kkH -gkU +qkO tdC lSe tha -ogo +xjX gRi cbg xgl @@ -31933,7 +31939,7 @@ iYo iYo oUM sGs -vNt +xur tKC cUh iYo @@ -31983,11 +31989,11 @@ lHs nOG nOG kbN -etY +lIt biK bsb bsb -nct +bFK hCc ixP dib @@ -32079,7 +32085,7 @@ iWa dGx dGx kkH -nyp +vgT gRi dyB bKl @@ -32088,7 +32094,7 @@ xgl kDs nDT pGv -bex +mmb eAS lTr ecA @@ -32100,7 +32106,7 @@ uHP ahD eRU sGs -tnM +jlB oVX cDf oVX @@ -32150,12 +32156,12 @@ mbS nCM nCM mbS -fiq +oFp uYx bsb bsb bsb -nct +bFK hCc dib niC @@ -32243,14 +32249,14 @@ dxF kkH coL uNC -egu -oWo +slv +okr kkH -rQa -gEc +eZM +koh cbg mqG -gNI +mgv xgl oww xgl @@ -32267,7 +32273,7 @@ gwY gwY gwY gwY -imG +dVu ghk sVy oVX @@ -32317,15 +32323,15 @@ vDS vDS vDS lHs -peQ +bHx hYS qog kZm qog bsb -oce -dAM -qPz +uST +sqi +kyJ lpJ xTq vea @@ -32409,14 +32415,14 @@ dxF dxF kkH tpk -ogo +xjX ltU gRi phz nps ksF cbg -ogo +xjX gRi gOc eoA @@ -32431,10 +32437,10 @@ usP usP pGY lCu -wFa -deo +agi +qqc gwY -tnM +jlB oVX cDf oVX @@ -32487,13 +32493,13 @@ mNM xvn mNM xms -dRj -dRj +bgl +bgl nOH -wwq +vOA ixP -dAM -qPz +sqi +kyJ lpJ xTq vea @@ -32576,14 +32582,14 @@ dxF mxB kkH hnI -kls -fSm -uEk +emq +aiD +ezA kkH eAC mCf cbg -ogo +xjX gRi acn pue @@ -32601,7 +32607,7 @@ lCu uWu cwy gwY -imG +dVu ghk sVy oVX @@ -32610,8 +32616,8 @@ xZd jEo snr uIg -pzH -dwx +gYW +tJK uIg htP wff @@ -32620,8 +32626,8 @@ fpO nnf aqO xOU -tFh -foI +qjM +lzi nvd emn kDS @@ -32651,17 +32657,17 @@ cAt scY wnw lry -sZz +fkE aCn cqX fyD fyD -oeb -jnY +bgE +udJ ixP ixP -dAM -qPz +sqi +kyJ uiT tKY vea @@ -32750,7 +32756,7 @@ xgl xgl xgl ipz -ten +sHI gRi acn dlT @@ -32768,7 +32774,7 @@ lCu oVX oVX gwY -tnM +jlB oVX cDf oVX @@ -32817,14 +32823,14 @@ cAt oqd lfm gEe -flp +eUY fyD -arG +ipX cqX fyD fyD -oeb -wwq +bgE +vOA ixP ixP ixP @@ -32910,15 +32916,15 @@ mxB mxB wYp quy -tUm +tLv ujo pYf pYf -xCc +upH oww soP -iyd -tvb +upj +jns qKm cnv kqA @@ -32935,7 +32941,7 @@ gwY cDl oVX lcs -imG +dVu ghk sVy oVX @@ -32985,13 +32991,13 @@ lfm kDS cOh amL -dRj -arG +bgl +ipX cqX fyD fyD -oeb -jnY +bgE +udJ ixP ixP ixP @@ -33077,8 +33083,8 @@ mxB gZq crT quy -tUm -epG +tLv +rId uri ahz onP @@ -33102,9 +33108,9 @@ tCK oVX sZO gwY -gTl -vmJ -ccu +pnB +nyS +lPH oVX oVX oVX @@ -33132,9 +33138,9 @@ lHs cau ulo lHs -jrk -nLc -sFP +cjL +fYl +hgQ qPO vDS vDS @@ -33157,8 +33163,8 @@ xvn mNM pKE fyD -oeb -wwq +bgE +vOA ixP ixP ixP @@ -33241,14 +33247,14 @@ dxF dxF mxB mxB -wqR -lwL +sRO +fKU kNx hTn -wqR -lwL -lwL -lwL +sRO +fKU +fKU +fKU oww gUa cbg @@ -33257,7 +33263,7 @@ nZw rhK rhK cbg -fKJ +hUw glB tdZ kwJ @@ -33278,8 +33284,8 @@ oVX snr lxd uIg -pzH -hrv +gYW +wQl uIg bjj fpO @@ -33288,8 +33294,8 @@ nnf piA slb kZt -kAb -rme +vTZ +ylV nvd avf rvK @@ -33299,12 +33305,12 @@ lHs pSs rVa lHs -nLc -rme -rme +fYl +ylV +ylV sgW nCM -ycN +aHN nCM utY kah @@ -33322,14 +33328,14 @@ tEa tEa tEa lHs -lcv +xyr fyD -oeb -jnY +bgE +udJ ixP ixP -fYI -qOw +dmN +rpN uiT tKY cDx @@ -33472,7 +33478,7 @@ lHs rYS tZI qgW -rme +ylV lHs kDS xQM @@ -33489,15 +33495,15 @@ fGk wct bPV lHs -bAe +eJf fyD -oeb -wwq +bgE +vOA ixP ixP dib -rNg -iuz +eKL +qLq tKY cDx vea @@ -33575,14 +33581,14 @@ dxF dxF mxB mxB -cXA -fQg +hIT +xQv dzm cGz -fQg -fQg -fQg -nkZ +xQv +xQv +xQv +oSA xgl aqC cbg @@ -33591,7 +33597,7 @@ mAH cMv rhK cbg -ylh +jdX glB vSW gnP @@ -33604,27 +33610,27 @@ oVX jzl ujk rxX -xoq +ckx cXP snr oVX oVX cfa lcs -wWy -wWy -wWy -wWy +rFz +rFz +rFz +rFz lcs wff wff wff wff lHs -bnQ -bnQ -bnQ -bnQ +bGI +bGI +bGI +bGI lHs kDS kDS @@ -33639,15 +33645,15 @@ xOV qHH cAt qgW -rme +ylV tRp kDS kDS tRp -hHi -ycN -ycN -cpj +uwO +aHN +aHN +nvC tRp pSs pLS @@ -33656,10 +33662,10 @@ brL kDS mdu mbS -pfo +fxG fyD -oeb -jnY +bgE +udJ ixP ixP dib @@ -33745,8 +33751,8 @@ mxB bGV fRP diV -tUm -baC +tLv +xtZ ujo pYf jUP @@ -33770,7 +33776,7 @@ lCu oVX jzl jzl -kBb +bzI uTj abS snr @@ -33778,20 +33784,20 @@ oVX oVX cfa lcs -wWy +rFz jzl jzl -wWy +rFz lcs nnf wff wff wff lHs -bnQ +bGI eXm eXm -bnQ +bGI lHs kDS kDS @@ -33806,15 +33812,15 @@ sef abz cAt qgW -rme +ylV tRp kDS kDS tRp -hHi -ycN -ycN -hHi +uwO +aHN +aHN +uwO tRp pSs nvG @@ -33823,13 +33829,13 @@ kDS nOG nOG klN -oeb +bgE fyD -xaB -wwq -fYI -tIh -qOw +aDA +vOA +dmN +lqK +rpN uiT tKY tKY @@ -33912,9 +33918,9 @@ mxB mxB wYp uIQ -rnA +xfd wYp -epG +rId crT jUP kvt @@ -33937,7 +33943,7 @@ lCu oVX jzl jzl -cZt +oIk cDf dvL snr @@ -33945,20 +33951,20 @@ oVX oVX cfa lcs -wWy +rFz jzl jzl -wWy +rFz lcs nnf wff wff wff lHs -bnQ +bGI eXm eXm -bnQ +bGI lHs bGX kDS @@ -33973,7 +33979,7 @@ vgX cTW rKl qgW -rme +ylV lHs kDS alh @@ -33990,14 +33996,14 @@ bDl wwd nOG rUi -oeb +bgE vjr -hJN -jnY +jJH +udJ dib -rNg -dTJ -iuz +eKL +bmN +qLq tKY tKY xJg @@ -34032,7 +34038,7 @@ dxF dxF dxF dxF -dxF +qmw dxF dxF dxF @@ -34079,7 +34085,7 @@ mxB mxB mxB vzy -tUm +tLv wYp bGV wYp @@ -34104,28 +34110,28 @@ gwY bRJ tCK xFl -jwx -kvu +lvv +mhw gMw snr oVX oVX ewF lcs -wWy -wWy -wWy -wWy +rFz +rFz +rFz +rFz lcs nnf nnf nnf wff lHs -bnQ -bnQ -bnQ -bnQ +bGI +bGI +bGI +bGI lHs vDS vDS @@ -34138,9 +34144,9 @@ arU jJj vdH mbS -vDu +cbX qgW -rme +ylV lHs kDS tTs @@ -34157,11 +34163,11 @@ cFY nOG nOG rUi -oeb +bgE fyD -phI -wEh -qOw +bev +dHg +rpN uiT sbX aQw @@ -34306,7 +34312,7 @@ rxb kqY lHs mcZ -ycN +aHN nCM mbS kah @@ -34324,12 +34330,12 @@ nOG nOG nOG dcA -oeb +bgE fyD -oeb +bgE dTM -rNg -iuz +eKL +qLq dic dic tKY @@ -34421,8 +34427,8 @@ dxF dxF kGU pVt -jZT -izS +ahY +xJd kGU iHO iHO @@ -34436,7 +34442,7 @@ yjI aHl vQJ pSU -uXM +vPV pSU kkB siR @@ -34447,8 +34453,8 @@ oVX snr xqM ePV -pzH -dwx +gYW +tJK ePV iCl wff @@ -34457,8 +34463,8 @@ wff wff rUm lLC -tFh -rme +qjM +ylV tqC eOD qgr @@ -34491,9 +34497,9 @@ kDS kDS mdu mbS -pfo +fxG fyD -oeb +bgE qog uiT dic @@ -34587,7 +34593,7 @@ dxF dxF dxF kGU -neV +tiq rlB ryB nsd @@ -34658,12 +34664,12 @@ kDS kDS kDS mwh -lcv +xyr fyD -oeb +bgE dTM lpJ -lKV +tgY xTq tKY dic @@ -34754,7 +34760,7 @@ dxF dxF dxF kGU -gpm +rJX rlB ryB nsd @@ -34802,9 +34808,9 @@ cAt cAt vDS nsU -rme -rme -rme +ylV +ylV +ylV nsU vDS kDS @@ -34825,12 +34831,12 @@ tEa tEa tEa mwh -bAe +eJf fyD -oeb -dox -dte -qPz +bgE +hru +qjj +kyJ uiT tKY tKY @@ -34921,7 +34927,7 @@ dxF dxF dxF kGU -neV +tiq rlB ryB nsd @@ -34968,11 +34974,11 @@ piW piW mYt vDS -iwV +hIu qgW qgW qgW -iwV +hIu vDS kDS kDS @@ -34992,10 +34998,10 @@ xvn dJT mNM mNM -oeb +bgE fyD -oeb -jnY +bgE +udJ ixP dib lpJ @@ -35088,7 +35094,7 @@ dxF dxF dxF kGU -mLK +vOb rlB jPW kGU @@ -35104,7 +35110,7 @@ bVs uvj dLY pSU -azo +vzT pSU snr snr @@ -35115,8 +35121,8 @@ snr oVX snr ePV -pzH -pzH +gYW +gYW ePV bjj fpO @@ -35125,8 +35131,8 @@ wff fpO goZ kpz -bcl -rme +hJD +ylV tqC mbp vDS @@ -35136,9 +35142,9 @@ qMC vDS vDS nCM -rme -rme -rme +ylV +ylV +ylV mgP vDS vDS @@ -35155,17 +35161,17 @@ vDS vDS gqQ vys -dRj -lok +bgl +kXy mNM qrl nOH fyD -oeb -wwq +bgE +vOA ixP -dAM -qPz +sqi +kyJ lpJ xTq tKY @@ -35255,7 +35261,7 @@ dxF dxF dxF kGU -mdr +nSU rlB ryB iqE @@ -35312,28 +35318,28 @@ jnS dbg wtH nCM -qpZ -rZV -qpZ -qpZ -qpZ +lPj +xBI +lPj +lPj +lPj nCM kDS kDS scY -arG +ipX fiE fyD jiz cqX fyD fyD -oeb -jnY +bgE +udJ ixP ixP -dAM -qPz +sqi +kyJ uiT tKY vea @@ -35422,7 +35428,7 @@ dxF dxF dxF kGU -lpF +xIO rlB ryB iqE @@ -35442,8 +35448,8 @@ gUQ otc gwY ann -uqv -jzQ +gaF +bfY vFg snr cey @@ -35472,31 +35478,31 @@ yir xkk yir xkk -hCu +szj pjF -hCu +szj cQz vHL dbg -hHi +uwO gKG sVx bzl sVx gKG -hHi +uwO bPV jxT iub fyD fyD fyD -arG +ipX cqX fyD fyD -oeb -wwq +bgE +vOA ixP ixP ixP @@ -35589,9 +35595,9 @@ qaI dxF dxF kGU -xQz -cmG -hfu +chj +edD +jps iqE smo nAc @@ -35608,7 +35614,7 @@ vzC gld msK gwY -klP +aCF pOI gLg jzl @@ -35640,30 +35646,30 @@ xkk yir xkk xkk -oOl +exC njQ -oOl +exC xkk jnS -hHi +uwO bzl sVx olO sVx bzl -kiE +cza kDS qgr kDS kut -dRj +bgl fyD -arG +ipX cqX fyD fyD -oeb -jnY +bgE +udJ ixP ixP ixP @@ -35775,9 +35781,9 @@ nuA gld msK gwY -gsq -vgw -cOx +jbk +onV +dZv vFg snr oVX @@ -35806,19 +35812,19 @@ yir xkk yir xkk -hCu +szj vHL -hCu +szj vHL -hCu +szj jnS -hHi +uwO olO sVx gKG sVx olO -hHi +uwO kDS cAt kDS @@ -35829,8 +35835,8 @@ sqP cqX fyD fyD -oeb -wwq +bgE +vOA ixP ixP ixP @@ -35975,33 +35981,33 @@ kHm ubR ubR oQc -kSh +mTl vHL -hCu +szj dbg -uwD +sfl gKG sVx bzl sVx gKG -eJg +dHt wCe kDS kDS nOH -xuY -xyY +eHa +xGE mNM juH -dRj -dRj +bgl +bgl nOH -jnY +udJ ixP ixP -fYI -qOw +dmN +rpN uiT vea xJg @@ -36142,11 +36148,11 @@ kHm jSi jSi oQc -oFz +asP vHL -hCu +szj mbS -hOB +aRZ bzl sVx gKG @@ -36163,13 +36169,13 @@ mNM wuy mSd dTM -sxy -bjc +ryU +bzd ixP -fYI -qOw -rNg -iuz +dmN +rpN +eKL +qLq vea xJg cDx @@ -36326,16 +36332,16 @@ nKh wtH pVH mtS -fPH +xJL dTM bsb bsb -oce +uST ixP -fYI -qOw -rNg -iuz +dmN +rpN +eKL +qLq tKY xJg xJg @@ -36468,16 +36474,16 @@ ubR tWv ubR eSH -stt -stt -stt -stt -stt -stt -stt -jzm +ssr +ssr +ssr +ssr +ssr +ssr +ssr +ylx kHm -jSQ +kHV nKh nKh vHL @@ -36493,15 +36499,15 @@ nKh wtH dic dic -bJf +reS xzd bsb bsb -oce +uST ixP rzE -rNg -iuz +eKL +qLq tKY dic cDx @@ -36595,14 +36601,14 @@ tAX eIZ oUP eiz -atC -keM -cal -ezg +pyr +imo +tLN +hBO mYM vHf -qCi -fmR +mSk +ayI heL msK msK @@ -36613,13 +36619,13 @@ gwY gwY ktq idX -anF -fpJ -fpJ -fpJ -eSq -fpJ -lfb +jDh +hHk +hHk +hHk +krZ +hHk +lTQ gUS ktq giZ @@ -36634,7 +36640,7 @@ xWK ubR tWv ubR -sPV +usL rQY rQY rQY @@ -36644,7 +36650,7 @@ rQY rQY epR kHm -plQ +nrH nKh nKh nKh @@ -36660,13 +36666,13 @@ nKh ftF dic tKY -bBf -dNc +iwg +inI bsb bsb -nct -tIh -qOw +bFK +lqK +rpN uiT tKY dic @@ -36761,13 +36767,13 @@ tAX mCL tAX aLQ -vfr +grG xrF xrF xrF sCG mYM -efF +krE xNf vEw heL @@ -36779,7 +36785,7 @@ msK uAz hXP ktq -mvM +bnq slF slF slF @@ -36787,7 +36793,7 @@ slF slF slF slF -nsF +fns kOo nYz wdc @@ -36801,13 +36807,13 @@ xWK dip dip dip -eVv +eeX rQY -pxb -ndF -ppB -ndF -aor +cRu +tqe +qTu +tqe +qiA rQY tFe oQc @@ -36828,7 +36834,7 @@ ftF tKY dic knP -fNc +uFI cMJ cMJ cMJ @@ -36928,13 +36934,13 @@ eTT kKc eTT oUP -vfr +grG qIi gew gew sCG twn -vfr +grG xNf wAF uEi @@ -36946,7 +36952,7 @@ bIL uAz dHF rES -mGW +hzk slF slF slF @@ -36954,7 +36960,7 @@ slF slF slF slF -nsF +fns kOo nYz wdc @@ -36968,16 +36974,16 @@ tDV dip dip lah -sPV +usL rQY rkO dip frx dip -eVv +eeX rxr -qJx -cqc +sng +mie dip wtH wtH @@ -36996,11 +37002,11 @@ wCU wCU wCU wCU -tGi -tGi -tGi -tGi -tGi +rcz +rcz +rcz +rcz +rcz wCU wCU dxF @@ -37095,13 +37101,13 @@ mtt wuL juz oUP -vfr +grG gew wAo uDm sCG twn -vfr +grG xNf rEo smo @@ -37114,9 +37120,9 @@ uAz bUI rES aAg -fpJ -fpJ -pIE +hHk +hHk +kqe wwV nAy nAy @@ -37133,15 +37139,15 @@ xWK xWK toV phv -stt -stt -eOc +ssr +ssr +aol rQY epR ubR tWv ubR -sPV +usL rQY rQY gQF @@ -37149,12 +37155,12 @@ dip wtH wtH tIz -cqk +xbF nKh xkk xkk nKh -vHh +qeE tIz wtH wtH @@ -37262,13 +37268,13 @@ rqD xNf xNf kFF -vfr +grG xrF xrF xrF sCG mYM -bTt +mup xNf kxE heL @@ -37308,7 +37314,7 @@ epR ubR tWv ubR -sPV +usL rQY rQY xyw @@ -37316,12 +37322,12 @@ dip wCU wCU hMu -qaS +cwU nbu jKN jKN nbu -sAe +lRO hMu wCU wCU @@ -37330,11 +37336,11 @@ wCU wCU wCU wCU -mjP -mjP -mjP -mjP -mjP +nFJ +nFJ +nFJ +nFJ +nFJ wCU wCU dxF @@ -37429,15 +37435,15 @@ era xNf rGm oUP -wOI -ikW -ikW -ikW -mrI +sRL +hKs +hKs +hKs +bFq mYM -rXj -ikW -hOm +ktT +hKs +sFq heL msK gld @@ -37475,10 +37481,10 @@ tFe dip dip dip -eVv +eeX rxr -pxb -kHO +cRu +kwx dip wCU wCU @@ -37634,15 +37640,15 @@ xWK bKH qYn bpT -ppB -ppB -aor +qTu +qTu +qiA rQY -qJx -nni -hIp -nni -eOc +sng +msa +tBv +msa +aol rQY tFe oQc @@ -37764,13 +37770,13 @@ fyF fyF alo cPv -qCi -qCi -qCi -kmm -qCi -lLH -cdE +mSk +mSk +mSk +clM +mSk +juk +gSo mYM heL nAc @@ -37781,9 +37787,9 @@ msK nAc nAc kni -dQs -dQs -dQs +gTZ +gTZ +gTZ sIr gBa xWK @@ -37803,7 +37809,7 @@ tDV dip dip dnR -sPV +usL rQY rQY rQY @@ -37813,7 +37819,7 @@ rQY rQY epR kHm -cFJ +kKj nbu nbu nbu @@ -37930,7 +37936,7 @@ sBh xyF wLt alo -vfr +grG hkq dKO euj @@ -37970,27 +37976,27 @@ xWK ubR aPA lah -iBa -ppB -ppB -ppB -ppB -ppB -ppB -ppB -ghj +lFz +qTu +qTu +qTu +qTu +qTu +qTu +qTu +wBE kHm -tqE +xVQ kAW nbu nbu nbu nbu nbu -hUy -hUy -hUy -hUy +iWj +iWj +iWj +iWj nbu ctG uIJ @@ -38097,7 +38103,7 @@ cWo iNt nSP qPc -vfr +grG hma tgZ vaG @@ -38158,7 +38164,7 @@ fQn fWl fQn dkE -kGM +etq nbu nbu nbu @@ -38264,7 +38270,7 @@ mDm mDm mDm qaI -mDz +fUP euj euj hma @@ -38325,7 +38331,7 @@ dnF fAT rIL uBG -kGM +etq nbu nbu nbu @@ -38431,7 +38437,7 @@ fyF fyF lxc kFF -kuL +kUs euj fMd ssj @@ -38449,9 +38455,9 @@ msK msK msK kni -dQs -dQs -dQs +gTZ +gTZ +gTZ kni bKH bKH @@ -38492,7 +38498,7 @@ rIL cyM rIL fWl -kGM +etq nbu eBH nbu @@ -38598,8 +38604,8 @@ wAp fyF fyF qaI -iLU -oMW +tjV +wON euj bKm vMf @@ -38659,7 +38665,7 @@ rIL rIL rIL fQn -kGM +etq nbu nbu nbu @@ -38766,8 +38772,8 @@ ouW ouW qaI qaI -pCJ -qOM +ivr +rkE euj vQg vQg @@ -38826,7 +38832,7 @@ iGz dnF rIL rMp -kGM +etq nbu nbu hXh @@ -38934,12 +38940,12 @@ hUk hUk qaI qaI -cBd -lKR -vXd -vXd -vsq -mRP +aTj +lRr +uPh +uPh +iME +bxz mYM eQQ lbu @@ -39162,8 +39168,8 @@ jhS jhS hMu hMu -hUy -yaI +iWj +ybo hMu hMu wCU @@ -39274,15 +39280,15 @@ bbW bbW oMZ buo -nnz -rEI +sEh +ikN oMZ bQg -sEf +fuU fyT ibc fyT -qnB +vJi nRY lPR bKH @@ -39307,25 +39313,25 @@ rIL rIL fAT dnF -btI +uRw rIL rIL rIL mMf jhS -gtL -rzb -vGx +gvY +vIw +hnC jhS jhS -gtL -rzb -vGx +gvY +vIw +hnC jhS jhS -gtL -rzb -vGx +gvY +vIw +hnC jhS htT smF @@ -39440,16 +39446,16 @@ cSz oUh nFM cgJ -hmR +fqc oMw agG nFM vFc -bKJ +rTO fyT ibc fyT -qnB +vJi lpD hPf xWK @@ -39478,21 +39484,21 @@ mMf rIL cXL rIL -hwA +rhi jhS -hws -qwg -vcY +sNu +fsQ +aWI jhS jhS -hws -qwg -vcY +sNu +fsQ +aWI jhS jhS -hws -qwg -vcY +sNu +fsQ +aWI jhS dtV dkE @@ -39606,17 +39612,17 @@ bPf iVD iVD okh -lIM +cMo wDT lly agG nFM ylf -uEY +wDb fyT ibc fyT -qnB +vJi kSH feY fyF @@ -39647,19 +39653,19 @@ rIL mMf hMu jhS -cTG -fRZ -cQt +fTp +gvh +uis jhS jhS -cTG -fRZ -cQt +fTp +gvh +uis jhS jhS -cTG -fRZ -cQt +fTp +gvh +uis jhS htT bdu @@ -39773,17 +39779,17 @@ edn gHp gUZ oMZ -wsq -bRl -shn -mti +mRu +rmc +aPt +txR oMZ bQg -sEf +fuU fyT ibc fyT -qnB +vJi kSH qaI bzj @@ -39811,7 +39817,7 @@ rdm hMu cXL rIL -hdF +bsC hMu jhS kVJ @@ -39974,26 +39980,26 @@ jhx rfE rdm rdm -fTk -qIN -fTk -fTk -fTk -lkp -foE -fDY -fTk -epb -lkp -aFc -fDY -fTk -epb -lkp -aFc -fDY -fTk -dUy +ubF +uaA +ubF +ubF +ubF +gfz +uCi +eUT +ubF +baA +gfz +gfI +eUT +ubF +baA +gfz +gfI +eUT +ubF +tUf nTw rzT aRS @@ -40120,9 +40126,9 @@ jEN dQD lPR lPR -bvT -uah -ecO +nnZ +tov +gcD lPR lPR xrv @@ -40141,23 +40147,23 @@ jhx rfE rdm rdm -rsM -rRC +tGK +nEx mLw mLw mLw -fTk -qgI +ubF +kPI aoJ tnx vDR -egf -eVO +mts +hbT aoJ tnx vDR -fTk -ogf +ubF +mdq aoJ tnx slP @@ -40286,11 +40292,11 @@ bKH bKH bKH hPf -aWR -uah +uuk +tov lPR -uah -aWR +tov +uuk hPf cHb fyF @@ -40310,24 +40316,24 @@ rdm rdm qpi evr -ykL -fTk -fTk +pnX +ubF +ubF evr unr -fTk -fTk -pMS +ubF +ubF +aMU evr evr -fTk -fTk -fTk +ubF +ubF +ubF vXK evr -fTk -fTk -fTk +ubF +ubF +ubF qGx qGx qGx @@ -40453,11 +40459,11 @@ xWK jhx xWK hPf -uah +tov lPR lPR lPR -uah +tov hPf fyF lxc @@ -40475,26 +40481,26 @@ bKH tFK okv rIn -pbR -klE -ngK -klE -ngK -joo -atz -ngK -euI -ngK -klE -klE -ngK -klE -ngK -klE -klE -ngK -klE -ngK +wmB +fUZ +eJK +fUZ +eJK +fKv +cgN +eJK +gJW +eJK +fUZ +fUZ +eJK +fUZ +eJK +fUZ +fUZ +eJK +fUZ +eJK qGx qGx qGx @@ -40620,11 +40626,11 @@ xWK bKH xWK hPf -epV -uah +aMt +tov lPR -uah -epV +tov +aMt hPf cUm cUm @@ -40640,24 +40646,24 @@ bKH bKH bKH tFK -fTk +ubF hBt -pbR -klE -ngK -klE -pRS -klE -klE -ngK -klE -ngK -klE -klE -ngK -klE -pRS -klE +wmB +fUZ +eJK +fUZ +uPd +fUZ +fUZ +eJK +fUZ +eJK +fUZ +fUZ +eJK +fUZ +uPd +fUZ qGx qGx qGx @@ -40788,9 +40794,9 @@ xWK xWK lPR lPR -bvT -uah -ecO +nnZ +tov +gcD lPR lPR cUm @@ -40827,8 +40833,8 @@ qGx qGx duw mLw -xVZ -xVZ +dvl +dvl mLw mLw cpg @@ -40976,23 +40982,23 @@ bKH xoM mLw hBt -xVZ -xVZ -xVZ -xVZ -xVZ +dvl +dvl +dvl +dvl +dvl mLw -xVZ -xVZ -xVZ -xVZ -xVZ -mMF -xVZ -xVZ -xVZ -xVZ -xVZ +dvl +dvl +dvl +dvl +dvl +jAS +dvl +dvl +dvl +dvl +dvl mLw qGx qGx @@ -41148,7 +41154,7 @@ qGx qGx qGx pXF -slx +cWO atQ qGx qGx @@ -41160,9 +41166,9 @@ qGx qGx qGx mEe -slx +cWO qGx -klE +fUZ qGx qGx rHE @@ -41308,28 +41314,28 @@ wAp xWK bKH xoM -fTk +ubF hBt -pbR -klE -pbR -klE +wmB +fUZ +wmB +fUZ qGx -slx +cWO qGx -klE -cbv -gde -fdr -lhu -gHm -cFT -eOt -mBG +fUZ +aRQ +fdE +sed +ehH +vJk +dEc +kzQ +lXj qGx -efr +pfF qGx -shX +jqZ qGx acD vSE @@ -41477,26 +41483,26 @@ bKH xoM okv rIn -qCy -ctV -mhf -hiy +pGt +lMX +rwU +uoi tQO xGF ocd -cMI -dqH +oqh +aPf uhM mcv mcv mcv grR -aRB -shX +hQq +jqZ qGx -slx +cWO qGx -uJV +cXE rdm rdm rdm @@ -41615,7 +41621,7 @@ hUk hUk hUk lZT -nlA +rZx xWK xWK bKH @@ -41644,26 +41650,26 @@ feg rfE rdm rdm -sbF -dml -sbF +gKB +hFh +gKB mvB beo mLw lyG mvB -baL +qDc mcv ouR ouR byw mcv -wLB -fdr +sFj +sed eFf -slx +cWO qGx -fFJ +uUl rdm rdm rdm @@ -41782,7 +41788,7 @@ hUk hUk fQx xWK -nlA +rZx xWK xWK xWK @@ -41811,9 +41817,9 @@ feg rdm rdm rdm -nVH -klE -klE +myv +fUZ +fUZ mmH mLw mLw @@ -41828,9 +41834,9 @@ grR mcv grR jeO -slx +cWO qGx -ekV +tWr rdm rdm rdm @@ -41949,7 +41955,7 @@ hUk hUk sMg hGP -sZY +gGb sUs dCP hGP @@ -41978,9 +41984,9 @@ feg rdm rdm rdm -cUl -klE -klE +pNI +fUZ +fUZ qGx mLw mLw @@ -41995,9 +42001,9 @@ xay tTi mcv eaB -slx +cWO qGx -shX +jqZ duu okv duu @@ -42116,7 +42122,7 @@ hUk hUk fQx dYB -fwF +aBz nbR wKr dYB @@ -42128,7 +42134,7 @@ feg feg qaI vSH -uhD +kWu loO oUP oUP @@ -42145,15 +42151,15 @@ feg rdm rdm rdm -lFq -klE -lFq +ucy +fUZ +ucy qGx mLw mLw mLw qGx -qyD +iEa mcv xay xay @@ -42162,11 +42168,11 @@ xay tTi mcv eaB -slx +cWO qGx -klE +fUZ tXK -fTk +ubF tXK mMH qOP @@ -42283,7 +42289,7 @@ hUk hUk fQx dYB -fwF +aBz nbR wKr dYB @@ -42294,7 +42300,7 @@ feg feg feg qaI -eUA +nbd euj sBk tAQ @@ -42312,9 +42318,9 @@ feg rdm rdm rdm -klE -klE -klE +fUZ +fUZ +fUZ qGx mLw bIW @@ -42329,7 +42335,7 @@ gdb tTi mcv eaB -slx +cWO qGx qGx tXK @@ -42461,7 +42467,7 @@ feg feg feg qaI -eUA +nbd euj sBk cbf @@ -42479,9 +42485,9 @@ feg rdm rdm rdm -cUl -klE -klE +pNI +fUZ +fUZ qGx wVt bIW @@ -42497,8 +42503,8 @@ mcv grR jeO mLw -xVZ -xVZ +dvl +dvl tXK mLw tXK @@ -42599,9 +42605,9 @@ bkR bkR bkR kgt -iKf -dKz -mfY +axQ +anP +mTL kSB bkR hUk @@ -42617,7 +42623,7 @@ hUk uiK uiK mnT -fwF +aBz mnT uiK nlv @@ -42629,7 +42635,7 @@ xMm feg qaI wSU -oQL +wXN hrR qaI qaI @@ -42646,24 +42652,24 @@ feg rdm rdm rdm -lFq -klE -lFq +ucy +fUZ +ucy qGx gce bIW mLw qGx -qyD +iEa mcv ige wdt oYQ mcv -emU -dml +bwq +hFh eFZ -slx +cWO qGx qGx duu @@ -42766,9 +42772,9 @@ bkR bkR bkR kgt -rRL +jjQ cCa -kkC +aPC kSB bkR hUk @@ -42827,14 +42833,14 @@ mcv mcv mcv grR -oRM -klE +nMa +fUZ qGx -slx +cWO qGx -klE +fUZ tXK -fTk +ubF tXK mMH mMH @@ -42933,9 +42939,9 @@ bkR bkR bkR tdT -usc -jWM -ePq +xvh +gOV +ihT kSB bkR hUk @@ -42963,7 +42969,7 @@ hwf hwf kFF ubm -uhD +kWu haK qaI feg @@ -42997,9 +43003,9 @@ bsw eFZ qGx qGx -slx +cWO qGx -shX +jqZ tXK okv duu @@ -43129,7 +43135,7 @@ oUP uOk oUP oUP -eUA +nbd euj sBk qaI @@ -43157,16 +43163,16 @@ uSr bIW iPV oMS -xVZ -xVZ +dvl +dvl mLw -xVZ -xVZ -xVZ -xVZ +dvl +dvl +dvl +dvl mLw qGx -klE +fUZ rdm rdm rdm @@ -43296,11 +43302,11 @@ pJt euj oUP azb -eUA +nbd euj -rTF -uhD -ifE +tPJ +kWu +jbq ubm pih hDW @@ -43326,14 +43332,14 @@ fcJ eoc qGx qGx -slx +cWO qGx qGx qGx qGx qGx qGx -ifT +kpv pKn rdm rdm @@ -43463,7 +43469,7 @@ euj euj oUP azb -eUA +nbd euj euj epQ @@ -43490,17 +43496,17 @@ qGx qGx qGx qIV -jxc -pbR +lep +wmB qGx -slx +cWO qGx -pbR -klE -pbR -klE -pbR -vYW +wmB +fUZ +wmB +fUZ +wmB +lVs rdm rdm rdm @@ -43630,11 +43636,11 @@ pih pih oUP oUP -pDk -oQL -oQL -oQL -oQL +laq +wXN +wXN +wXN +wXN fyF pih lxc @@ -43656,18 +43662,18 @@ htv nPf nPf nPf -xOx -bDg -pbR +evD +lXq +wmB qGx -slx +cWO qGx -pbR -klE -pbR -sAf -gCh -vaa +wmB +fUZ +wmB +jPI +wES +vmD rdm rdm rdm @@ -43808,7 +43814,7 @@ vMk vMk oUP eCB -uhD +kWu iuL oUP feg @@ -43820,9 +43826,9 @@ poF poF poF poF -mWA -pnn -kYb +aeX +lrC +gjt rdm vEz vEz @@ -43974,7 +43980,7 @@ oUP mnT mnT oUP -kcd +dGG euj oSK oUP @@ -43987,16 +43993,16 @@ poF ovv poF poF -rIo -wlq -jJo +uMk +vSu +hUF rdm hwO -ngK +eJK qGx mLw qGx -ngK +eJK auj rdm rdm @@ -44141,7 +44147,7 @@ dYB uiK mnT dYB -iMR +ieC fbZ rHL dYB @@ -44286,9 +44292,9 @@ mnT mnT mnT iHw -aEZ -pfC -tLD +wbb +ayP +ezU bJc mnT mnT @@ -44309,7 +44315,7 @@ uiK uiK mnT kjk -nPA +jxJ kjk dYB nlv @@ -44453,9 +44459,9 @@ mnT uiK mnT nlT -nQy +azS nXr -aze +nxI bJc mnT mnT @@ -44620,9 +44626,9 @@ uiK uiK mnT iHw -bcG -iIT -pkg +iHr +aYp +xHo jIt fLE mnT @@ -44791,39 +44797,39 @@ aFL aFL meF jkT -sal -fbK -fbK +hRy +mil +mil mnT mnT uiK mnT dYB -fbK -fbK -fbK -fbK -fbK -fbK -fbK -fbK -fbK -fbK -fbK +mil +mil +mil +mil +mil +mil +mil +mil +mil +mil +mil mnT -fbK -fbK +mil +mil mnT mnT mnT mnT uiK mnT -fbK -fbK -fbK -fbK -vxe +mil +mil +mil +mil +vQf oXH mMH bpj @@ -44957,7 +44963,7 @@ erv aFL aFL dCG -mFd +uos rky rmt rmt @@ -45125,28 +45131,28 @@ aFL aFL aFL jkT -uqW -jKm -jKm -jKm +gyd +gVb +gVb +gVb mnT uiK mnT dYB -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb mnT mnT uiK @@ -45154,9 +45160,9 @@ mnT mnT mnT mnT -jKm -jKm -jKm +gVb +gVb +gVb bpj bpj bpj @@ -45204,10 +45210,10 @@ skx skx skx iNI -dcC -kQD -kQD -kQD +quJ +uOz +uOz +uOz aXU nZC gHV @@ -45288,9 +45294,9 @@ mnT mnT mnT pof -aEZ -pfC -tLD +wbb +ayP +ezU rMZ cMC dYB @@ -45370,11 +45376,11 @@ skx uzJ skx iNI -dcC -qaU -axi -dnd -hET +quJ +xUD +bhT +eYj +gSI vdK wtk riT @@ -45455,9 +45461,9 @@ mnT mnT mnT nlT -nQy +azS nXr -aze +nxI bJc uiK mnT @@ -45536,10 +45542,10 @@ dxF fMB mvX iNI -dcC -qaU -nPX -dOj +quJ +xUD +dbd +nnG eVR kEh jac @@ -45622,9 +45628,9 @@ nlv uiK uiK iHw -bcG -iIT -pkg +iHr +aYp +xHo bJc mnT uiK @@ -45703,13 +45709,13 @@ kgx dGi uzJ iNI -gsn -nPX -dOj +vPI +dbd +nnG eVR eVR -mct -hET +kny +gSI ewl iNI skx @@ -45870,8 +45876,8 @@ kgx dGi skx iNI -uaz -wrO +ohI +dUr eVR eVR eVR @@ -46037,8 +46043,8 @@ irb tbx skx iNI -uaz -wrO +ohI +dUr eVR eVR eVR @@ -46204,13 +46210,13 @@ skx skx skx iNI -uaz -dBt +ohI +ovN xxf eVR eVR -gJx -pmD +hyk +mZJ ewl iNI skx @@ -46371,14 +46377,14 @@ vhC uzJ skx iNI -xuN -ebv -mNv -myk -myk -lEf -ueM -sGS +hRt +bbj +hej +cIM +cIM +efs +dtg +vwh iNI kIQ skx @@ -46539,12 +46545,12 @@ skx skx skx iNI -xuN -wrV -wrV -yic -wrV -sGS +hRt +xem +xem +cSQ +xem +vwh iNI skx skx diff --git a/maps/map_files/Kutjevo/standalone/clfship.dmm b/maps/map_files/Kutjevo/standalone/clfship.dmm new file mode 100644 index 000000000000..445e06899c2f --- /dev/null +++ b/maps/map_files/Kutjevo/standalone/clfship.dmm @@ -0,0 +1,2346 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/structure/machinery/computer/station_alert{ + icon_state = "atmosb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"af" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"ag" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ao" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"aS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"aY" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/stonyfields) +"bb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"bd" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"bm" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"bA" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"cf" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"cm" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"da" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_white_t_up" + }, +/area/lv624/lazarus/crashed_ship) +"db" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/restraint/handcuffs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/green/southeast, +/area/lv624/lazarus/crashed_ship) +"dc" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"de" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"do" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -10 + }, +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"dx" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"dF" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"eG" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/lv624/lazarus/crashed_ship) +"fe" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"fU" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"ga" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"gt" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"gy" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan9" + }, +/area/lv624/lazarus/crashed_ship) +"gX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/emerald/northwest, +/area/lv624/lazarus/crashed_ship) +"ht" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"hE" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"hT" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2" + }, +/area/lv624/lazarus/crashed_ship) +"hU" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan21" + }, +/area/lv624/lazarus/crashed_ship) +"ib" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_2" + }, +/area/lv624/lazarus/crashed_ship) +"iu" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"iw" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"iH" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"iV" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/toolbox, +/obj/item/toy/deck/uno{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"jq" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_river) +"jK" = ( +/turf/closed/shuttle/ert, +/area/lv624/lazarus/crashed_ship) +"jM" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_color = "green"; + phone_id = "Medical Bay"; + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"jS" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"jW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bunk Beds" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"kB" = ( +/obj/item/circuitboard/apc{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/cell{ + pixel_x = -2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"kK" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 3; + pixel_y = 20 + }, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"kS" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"lo" = ( +/obj/effect/vehicle_spawner/van/fixed{ + color = "#4a9eed"; + desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; + name = "CLF Van" + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"lp" = ( +/obj/structure/machinery/power/smes/buildable/charged, +/turf/open/floor/almayer/orange/north, +/area/lv624/lazarus/crashed_ship) +"lM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Dining Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"lS" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"lZ" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing fifty reposessed USCM MRE packets."; + name = "\improper CLF Supply MRE crate (x50)" + }, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"mb" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/lv624/lazarus/crashed_ship) +"mu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" + }, +/obj/item/paper/prison_station/pirate_note/clfship, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"mF" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"mP" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"mS" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"nm" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"nn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"nt" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/sand/layer0, +/area/lv624/lazarus/crashed_ship) +"nJ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = -3; + pixel_y = 20 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/lv624/lazarus/crashed_ship) +"nZ" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/crashed_ship) +"oa" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"ov" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"oz" = ( +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"oE" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer/green/northwest, +/area/lv624/lazarus/crashed_ship) +"oH" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"oJ" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"oS" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/auto_turf/sand/layer1, +/area/lv624/lazarus/crashed_ship) +"pg" = ( +/obj/structure/machinery/computer/communications{ + icon_state = "commb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/auto_turf/sand/layer1, +/area/lv624/lazarus/crashed_ship) +"pi" = ( +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) +"pm" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"pO" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) +"qj" = ( +/obj/structure/girder, +/obj/item/stack/rods, +/turf/open/auto_turf/sand/layer1, +/area/lv624/lazarus/crashed_ship) +"qq" = ( +/obj/item/stool, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"qV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/transmitter/clf_net/rotary{ + phone_category = "CR-116"; + phone_color = "yellow"; + phone_id = "Engineering" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"re" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"rg" = ( +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_river) +"rm" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/lv624/lazarus/crashed_ship) +"rr" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"ru" = ( +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"rw" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/toy/katana, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"rF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -4 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"rP" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/stonyfields) +"rU" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/lv624/lazarus/crashed_ship) +"sa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Medical Bay" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"sq" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) +"sr" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"su" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) +"sT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/attached_gun/flamer, +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"td" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"tl" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"tu" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"tv" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan8" + }, +/area/lv624/lazarus/crashed_ship) +"ty" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"tB" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"tV" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/lv624/lazarus/crashed_ship) +"ux" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"uA" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"uN" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"uO" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 + }, +/obj/item/storage/backpack/general_belt, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"uW" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"uX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"uY" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"vf" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/lv624/lazarus/crashed_ship) +"vR" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"vZ" = ( +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/oob/dev_room) +"wi" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Cargo Bay"; + pixel_y = 32 + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"wr" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"wI" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/lv624/lazarus/crashed_ship) +"xd" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/clothing/accessory/storage/webbing, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"xk" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"xo" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"yP" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"yX" = ( +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ze" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"zs" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"zJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Side Entrance" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"zN" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"zX" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"zY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"Ag" = ( +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"AM" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) +"Bi" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"BZ" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Ce" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Cr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Cx" = ( +/obj/item/stack/rods, +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"CQ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/blue/north, +/area/lv624/lazarus/crashed_ship) +"Do" = ( +/obj/structure/girder/displaced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"DC" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/orange/southwest, +/area/lv624/lazarus/crashed_ship) +"Ea" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Armoury"; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"EG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"ET" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Fa" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_r_w" + }, +/area/lv624/lazarus/crashed_ship) +"Fm" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = -3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3 + }, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"FB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"FL" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/crashed_ship) +"FM" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"FU" = ( +/turf/closed/wall/kutjevo/colony/reinforced/hull, +/area/kutjevo/interior/oob) +"FY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/emerald/northeast, +/area/lv624/lazarus/crashed_ship) +"Gc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"Gv" = ( +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/stonyfields) +"GB" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"GF" = ( +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"GI" = ( +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Hm" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = -3 + }, +/turf/open/floor/almayer/green/southwest, +/area/lv624/lazarus/crashed_ship) +"HA" = ( +/turf/open/floor/almayer/greencorner, +/area/lv624/lazarus/crashed_ship) +"HR" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"HX" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"Ic" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/incendiary{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Im" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Iq" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"IC" = ( +/obj/item/weapon/gun/rifle/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"II" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Engineering Storage" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"IJ" = ( +/turf/open/auto_turf/sand/layer0, +/area/lv624/lazarus/crashed_ship) +"IP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/east, +/area/lv624/lazarus/crashed_ship) +"Jl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/rifle/mar40/lmg{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Jn" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Jv" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"JI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Cargo Hold" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"JU" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/lv624/lazarus/crashed_ship) +"Ko" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/storage/bag/trash, +/obj/item/tool/screwdriver, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Kp" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"KS" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/kutjevo/exterior/stonyfields) +"KW" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" + }, +/area/lv624/lazarus/crashed_ship) +"Ll" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -8 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 9 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"Lo" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_1" + }, +/area/lv624/lazarus/crashed_ship) +"Lq" = ( +/turf/open/floor/almayer/greencorner/north, +/area/lv624/lazarus/crashed_ship) +"LF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_y = 1 + }, +/obj/item/stack/sheet/plasteel{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/orange/southeast, +/area/lv624/lazarus/crashed_ship) +"LR" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Mi" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/lv624/lazarus/crashed_ship) +"Mn" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"Mp" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"My" = ( +/obj/item/stool, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"MK" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_s_w" + }, +/area/lv624/lazarus/crashed_ship) +"MN" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"MS" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Nr" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/auto_turf/sand/layer0, +/area/lv624/lazarus/crashed_ship) +"Ns" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/stonyfields) +"NB" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"NF" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"NK" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"NM" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/lv624/lazarus/crashed_ship) +"NZ" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"On" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"OH" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1" + }, +/area/lv624/lazarus/crashed_ship) +"OQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"OU" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"Pb" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"Pj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Pq" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Pv" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"Pw" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_river) +"PZ" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Qw" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/lv624/lazarus/crashed_ship) +"Qx" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/backpack/general_belt{ + pixel_y = 3 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"QM" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan2" + }, +/area/lv624/lazarus/crashed_ship) +"QP" = ( +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"QQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bridge" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"RY" = ( +/obj/item/stool, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"RZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Sb" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"SH" = ( +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/stonyfields) +"Tt" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/turf/open/floor/almayer/orange/northeast, +/area/lv624/lazarus/crashed_ship) +"Ty" = ( +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/runoff_river) +"TB" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3" + }, +/area/lv624/lazarus/crashed_ship) +"TD" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/lv624/lazarus/crashed_ship) +"TG" = ( +/turf/open/auto_turf/sand/layer1, +/area/lv624/lazarus/crashed_ship) +"TH" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"Ua" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Uo" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Us" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"Ut" = ( +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"Uu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper General Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"UA" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"UM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"UX" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_medic, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Vn" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_left" + }, +/area/lv624/lazarus/crashed_ship) +"Vr" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_right" + }, +/area/lv624/lazarus/crashed_ship) +"Vv" = ( +/turf/closed/wall/kutjevo/rock, +/area/kutjevo/interior/oob) +"VP" = ( +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"VW" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Wd" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 3 + }, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"Wp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/heavy_barrel, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"Wt" = ( +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Ww" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"WL" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "clf_umbilical_1"; + pixel_x = 1; + pixel_y = 28; + range = 20 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"WV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"WZ" = ( +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"Xo" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/adv, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Xw" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"XV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Yc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Yw" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Yx" = ( +/obj/item/stack/rods, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"YD" = ( +/turf/closed/wall/kutjevo/rock, +/area/kutjevo/exterior/stonyfields) +"YY" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/stonyfields) +"Zj" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"Zk" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_river) +"Zn" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"Zr" = ( +/obj/structure/girder/displaced, +/turf/open/auto_turf/sand/layer1, +/area/lv624/lazarus/crashed_ship) +"ZM" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"ZZ" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/stonyfields) + +(1,1,1) = {" +rg +pi +pi +YD +YD +YD +YD +YD +YD +YD +YD +Ns +SH +wI +jK +jK +Fa +jK +jK +TD +dx +FM +HX +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +vZ +"} +(2,1,1) = {" +rg +pi +Gv +pi +YD +YD +YD +YD +YD +YD +YD +pi +SH +hU +Pb +DC +Lo +gX +rr +tv +TD +dx +FM +HX +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +"} +(3,1,1) = {" +Ty +SH +pi +pi +su +pi +Gv +YD +YD +YD +YD +wI +jK +eG +nJ +Qw +Lo +UM +OU +re +tv +Mi +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +"} +(4,1,1) = {" +Ty +SH +pi +SH +AM +aY +pi +Gv +Gv +pi +YD +hU +Zn +kB +Yw +bb +Lo +kS +GF +Pv +zY +Vr +jK +jK +jK +jK +jK +Mi +Vv +Vv +Vv +Vv +Vv +Vv +"} +(5,1,1) = {" +Ty +SH +pi +SH +AM +SH +pi +SH +wI +TG +nm +Ag +lp +bb +dF +qV +Lo +jM +bb +bb +mu +Lo +lZ +bd +Bi +NK +ze +tv +TD +dx +FM +HX +Vv +Vv +"} +(6,1,1) = {" +rg +pi +pi +SH +AM +aY +wI +xk +eG +yX +Im +xk +Tt +bb +Zj +LF +Lo +EG +Pv +bb +gt +Lo +oH +de +lo +yX +de +GI +tv +TD +dx +FM +HX +Vv +"} +(7,1,1) = {" +rg +pi +SH +pi +wI +Do +qj +Ko +Xw +GI +Wt +da +ib +II +ib +ib +MK +zN +rm +UX +Gc +Lo +Us +de +oH +yX +NF +NB +GI +tv +TD +dx +FM +HX +"} +(8,1,1) = {" +Pw +pO +rP +wI +eG +TG +MK +oS +TG +Wt +yX +yX +bb +bb +do +Hm +Lo +uO +Pv +bb +GF +JI +nZ +lS +nZ +FL +uY +cm +ZM +GI +tv +jK +jK +Mi +"} +(9,1,1) = {" +jq +aY +pi +Zr +Wt +yX +Cx +yX +BZ +af +GI +Lo +Kp +bb +bb +Fm +Lo +FY +IP +bb +bb +bb +GI +pm +Yx +Sb +ht +Jv +Jv +GI +MN +Jv +GI +QM +"} +(10,1,1) = {" +jq +SH +Ww +pg +qq +Wt +Lo +Wt +yX +Jv +uA +Lo +RZ +GF +bb +WZ +da +ib +ib +bb +sa +MK +Ua +QP +Jv +Jv +yX +uA +Jv +yX +nt +yX +Wt +QM +"} +(11,1,1) = {" +Zk +SH +BZ +Wt +TG +nn +xk +ov +Wt +yX +Jv +Ce +Yc +bA +bb +bb +Uu +bb +bb +bb +uW +Lo +WL +yX +tu +yX +yX +GI +Wt +IJ +Wt +BZ +de +On +"} +(12,1,1) = {" +ZZ +pi +Ce +GI +BZ +yX +da +ao +Wt +Jv +ib +MK +jS +Ut +Ut +oz +GF +uW +bb +uW +ru +PZ +sr +GI +GI +Jv +yX +GI +nt +IJ +yX +Wt +yX +Nr +"} +(13,1,1) = {" +ZZ +pi +mb +ac +My +GI +QQ +GI +yX +BZ +Qx +da +ib +ib +ib +ib +MK +aS +bb +HR +tB +Lo +xo +zs +yX +Jn +Jv +Jv +Jv +Wt +Jv +IJ +de +GB +"} +(14,1,1) = {" +ZZ +sq +vf +JU +GI +Jv +yX +Pj +Jv +Jv +bA +Lo +fU +ga +Xo +uX +Lo +uW +Jl +Ll +ru +PZ +GI +wr +GI +Jv +Jv +IJ +yX +Uo +IJ +IJ +de +Nr +"} +(15,1,1) = {" +AM +pi +pi +vf +JU +UA +Lo +Wt +Jv +yX +bm +Ce +MS +Ic +iV +uX +Lo +yP +td +rF +tB +Lo +wi +GI +GI +Wt +Jv +yX +IJ +IJ +Wt +IJ +IJ +mP +"} +(16,1,1) = {" +YY +Vv +pi +pi +PZ +Iq +PZ +Jv +GF +bb +GF +Lo +zX +iu +iu +iu +Lo +Ea +oa +NZ +ru +Lo +Jv +yX +ze +GI +Jv +MN +GI +Wt +yX +yX +Wt +QM +"} +(17,1,1) = {" +Vv +Vv +Vv +Vv +vf +rU +Lo +uN +GF +bb +bb +lM +bb +bb +bb +bb +lM +bb +bb +mS +tB +Pq +yX +dc +IC +tl +mF +yX +yX +GI +MN +GI +Jv +QM +"} +(18,1,1) = {" +Vv +Vv +Vv +Vv +Vv +KS +MK +VW +uN +bb +GF +GF +iu +iu +iu +iu +GF +GF +bb +uW +ru +ao +GI +Xw +pm +ag +Wt +Mp +fe +GI +gy +rU +rU +NM +"} +(19,1,1) = {" +Vv +Vv +Vv +Vv +Vv +FU +Lo +oJ +iw +bb +GF +da +ib +ib +ib +ib +MK +CQ +bb +HR +tB +Lo +Ua +yX +ET +Wt +vR +pm +dc +gy +tV +TB +hT +OH +"} +(20,1,1) = {" +Vv +Vv +Vv +Vv +Vv +FU +vf +rU +JU +bb +GF +Lo +oE +rw +Wd +Lq +jW +GF +bb +uW +ru +Lo +XV +GI +VP +yX +ty +GI +gy +tV +TB +hT +OH +Vv +"} +(21,1,1) = {" +Vv +Vv +Vv +Vv +Vv +FU +Vv +Vv +vf +GI +zJ +MK +WV +bA +RY +bb +bb +iH +bb +bb +Wp +Lo +Cr +Jv +Wt +Jv +LR +gy +tV +TB +hT +OH +Vv +Vv +"} +(22,1,1) = {" +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +hU +TH +OQ +oz +HA +Lo +Mn +JU +GF +sT +Vn +rU +rU +rU +rU +rU +NM +Vv +Vv +Vv +Vv +Vv +Vv +"} +(23,1,1) = {" +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +vf +rU +JU +kK +hE +Lo +cf +Lo +FB +gy +NM +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +"} +(24,1,1) = {" +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +hU +xd +db +Lo +ux +Lo +gy +tV +TB +hT +OH +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +"} +(25,1,1) = {" +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +vf +rU +rU +KW +rU +KW +tV +TB +hT +OH +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +"} +(26,1,1) = {" +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +"} diff --git a/maps/map_files/LV624/standalone/clfship.dmm b/maps/map_files/LV624/standalone/clfship.dmm index 177ecbd6e450..b451eabf1432 100644 --- a/maps/map_files/LV624/standalone/clfship.dmm +++ b/maps/map_files/LV624/standalone/clfship.dmm @@ -21,82 +21,108 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"aC" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "clf_umbilical_1"; - name = "\improper Umbillical Airlock" +"aI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/wrench{ + pixel_y = 7 }, -/turf/open/floor/damaged3/west, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "aO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"aQ" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) "aY" = ( /obj/structure/tunnel{ id = "hole3" }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"bc" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/green/north, -/area/lv624/lazarus/crashed_ship) -"bf" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer/orange/southwest, +"bd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/backpack/general_belt{ + pixel_y = 3 + }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) +"bw" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/ground/caves/south_west_caves) "by" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/west_caves) +"bC" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = -3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3 + }, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) "bF" = ( /obj/item/stool, /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) -"bL" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/lv624/lazarus/crashed_ship) -"bP" = ( -/turf/open/floor/plating/warnplate, +"bJ" = ( +/turf/open/floor/plating/warnplate/northeast, /area/lv624/lazarus/crashed_ship) -"bQ" = ( -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 1; - faction_group = list("CLF") - }, -/obj/item/ammo_casing/shell{ - icon_state = "casing_7_1" - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "ca" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ch" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/open/floor/almayer/emerald, +"dh" = ( +/obj/structure/girder, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) -"dt" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - icon_state = "metal_3" - }, +"di" = ( +/obj/structure/girder/displaced, +/obj/item/stack/rods, /turf/open/floor/plating/platingdmg3, +/area/lv624/ground/caves/south_west_caves) +"dn" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"dK" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) "dN" = ( /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) +"dT" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"dX" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/lv624/lazarus/crashed_ship) "dY" = ( /obj/structure/machinery/computer/communications{ icon_state = "commb"; @@ -124,37 +150,25 @@ icon_state = "stan_inner_t_left" }, /area/lv624/lazarus/crashed_ship) -"eY" = ( -/obj/item/tool/shovel/spade, -/turf/open/floor/platingdmg1, -/area/lv624/ground/caves/south_west_caves) -"fe" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/item/weapon/gun/rifle/m16{ - pixel_x = 5; - pixel_y = 6 +"fh" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_2_1" }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/bluecorner/north, -/area/lv624/lazarus/crashed_ship) -"ft" = ( -/obj/item/stool, -/turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) -"fA" = ( -/obj/structure/transmitter/clf_net{ - phone_category = "CR-116"; - phone_id = "Armoury"; - pixel_y = 32 +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") }, -/turf/open/floor/almayer/bluecorner/north, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"fX" = ( -/obj/item/stool, -/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, -/turf/open/floor/platingdmg1, +"fm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" + }, +/obj/item/paper/prison_station/pirate_note/clfship, +/turf/open/floor/almayer/emerald, /area/lv624/lazarus/crashed_ship) -"gg" = ( +"fw" = ( /obj/structure/surface/rack, /obj/item/device/radio{ pixel_x = 3 @@ -165,17 +179,22 @@ }, /turf/open/floor/almayer/green/southwest, /area/lv624/lazarus/crashed_ship) -"gj" = ( -/obj/item/stack/sheet/metal{ - amount = 2; - pixel_x = 4; - pixel_y = 4 +"fH" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"fQ" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_6_1" }, /obj/structure/barricade/metal/wired{ - dir = 8; icon_state = "metal_1" }, -/turf/open/floor/plating/warnplate/west, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"fU" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/lazarus/crashed_ship) "gn" = ( /obj/structure/girder/displaced, @@ -185,53 +204,33 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"gv" = ( -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, -/area/lv624/ground/caves/south_west_caves) -"gD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = 2 - }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = 4 - }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = 6 - }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = 8 +"gB" = ( +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"gN" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = 10 +/obj/item/ammo_casing/shell{ + icon_state = "casing_7_1" }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = -2 +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"gP" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_9_1" }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = -4 +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") }, -/turf/open/floor/almayer/bluecorner/east, -/area/lv624/lazarus/crashed_ship) -"gF" = ( -/turf/open/floor/almayer/emeraldcorner, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "gQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) -"gU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/almayer/emerald/southwest, -/area/lv624/lazarus/crashed_ship) -"gW" = ( -/obj/structure/girder/displaced, -/turf/open/floor/damaged3/west, -/area/lv624/lazarus/crashed_ship) "gX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, @@ -241,33 +240,64 @@ icon_state = "stan1" }, /area/lv624/lazarus/crashed_ship) +"hq" = ( +/obj/effect/vehicle_spawner/van/fixed{ + color = "#4a9eed"; + desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; + name = "CLF Van" + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"hr" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) "hw" = ( /obj/item/weapon/gun/smg/fp9000, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"hZ" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/item/weapon/gun/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/clothing/accessory/storage/webbing, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer/green/northeast, +"hI" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) -"id" = ( -/turf/open/floor/plating/warnplate/northeast, +"hY" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"ii" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "iq" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3" }, /area/lv624/lazarus/crashed_ship) -"iF" = ( -/obj/effect/landmark/corpsespawner/wysec, -/turf/open/floor/damaged3/west, +"iv" = ( +/obj/structure/machinery/computer/station_alert{ + icon_state = "atmosb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"iE" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 + }, +/obj/item/storage/backpack/general_belt, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"iS" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/crashed_ship) "jb" = ( /obj/structure/largecrate/random/barrel/red, @@ -280,12 +310,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"jr" = ( -/turf/open/floor/almayer/bluecorner, -/area/lv624/lazarus/crashed_ship) -"jx" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/warnplate/northwest, +"jm" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_2_1" + }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "jz" = ( /obj/structure/barricade/sandbags/wired{ @@ -294,27 +323,20 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"jH" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/firstaid/adv, -/turf/open/floor/wood, -/area/lv624/lazarus/crashed_ship) -"jI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray{ - pixel_x = -4; +"jC" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/restraint/handcuffs{ + pixel_x = 4; pixel_y = 4 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/emerald/north, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/green/southeast, /area/lv624/lazarus/crashed_ship) -"jO" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/west, +"jH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/adv, +/turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) "jR" = ( /obj/item/stack/rods, @@ -326,45 +348,63 @@ /obj/item/stack/rods, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"jY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/transmitter/clf_net/rotary{ + phone_category = "CR-116"; + phone_color = "yellow"; + phone_id = "Engineering" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"jZ" = ( +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"kh" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) "kj" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"kp" = ( -/obj/item/stack/rods, -/obj/structure/girder, -/turf/open/floor/damaged3/west, -/area/lv624/lazarus/crashed_ship) -"kw" = ( -/obj/item/ammo_casing/shell{ - icon_state = "shell_6_1" - }, -/obj/structure/barricade/metal/wired{ - icon_state = "metal_1" - }, -/turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) -"ky" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - dir = 8; - name = "\improper Bridge" - }, +"kv" = ( +/obj/structure/girder/reinforced, /turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"kO" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"kC" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + density = 1; + closed = 0 }, -/obj/item/toy/plush/farwa, -/turf/open/floor/almayer/green/northwest, -/area/lv624/lazarus/crashed_ship) -"kY" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/whitebluefull, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"kQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/attached_gun/flamer, +/turf/open/floor/almayer/bluecorner, /area/lv624/lazarus/crashed_ship) +"ld" = ( +/obj/structure/girder/displaced, +/turf/open/floor/platingdmg1, +/area/lv624/ground/caves/south_west_caves) "lf" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -372,46 +412,45 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"lh" = ( -/obj/item/stack/rods, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/damaged3/west, -/area/lv624/lazarus/crashed_ship) "lj" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ll" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/tool/wrench{ - pixel_y = 7 - }, -/obj/item/tool/screwdriver{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) "ln" = ( /obj/structure/bed/chair, /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) +"lp" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Cargo Bay"; + pixel_y = 32 + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) "lr" = ( /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) +"lz" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) "lC" = ( /obj/item/ammo_magazine/sniper/svd, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"lD" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, +"lY" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/almayer/orange/northwest, /area/lv624/lazarus/crashed_ship) -"lU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/platingdmg1, +"mj" = ( +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) "mq" = ( /obj/structure/largecrate/supply/supplies/water, @@ -427,66 +466,99 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"mK" = ( -/obj/structure/girder/displaced, -/turf/open/floor/platingdmg1, -/area/lv624/ground/caves/south_west_caves) -"mS" = ( -/turf/open/floor/plating/platingdmg3, +"mO" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing fifty reposessed USCM MRE packets."; + name = "\improper CLF Supply MRE crate (x50)" + }, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"na" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"ng" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/crashed_ship) "nj" = ( /obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) +"nm" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"nn" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_3" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) "nt" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" }, /area/lv624/lazarus/crashed_ship) -"nx" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/almayer/orange/northwest, +"nI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/emerald/northwest, /area/lv624/lazarus/crashed_ship) "nO" = ( /obj/item/tool/wet_sign, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"of" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"nP" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_color = "green"; + phone_id = "Medical Bay"; + pixel_y = 32 }, -/turf/open/floor/almayer/greencorner/east, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) "ok" = ( /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"ou" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) -"oI" = ( -/obj/item/stack/rods, -/obj/effect/landmark/corpsespawner/clf, -/turf/open/floor/damaged3/west, -/area/lv624/lazarus/crashed_ship) -"oO" = ( -/obj/structure/barricade/plasteel/wired{ - icon_state = "plasteel_3" - }, -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/crashed_ship) -"oW" = ( +"oy" = ( /obj/structure/barricade/metal/wired{ dir = 4; icon_state = "metal_1" }, /turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) +"oQ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"pd" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 3; + pixel_y = 20 + }, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) "pq" = ( /turf/closed/shuttle/ert{ icon_state = "stan2" @@ -496,19 +568,6 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) -"pS" = ( -/turf/open/floor/plating/warnplate/north, -/area/lv624/lazarus/crashed_ship) -"pY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/damaged3/west, -/area/lv624/ground/caves/south_west_caves) -"qu" = ( -/obj/item/ammo_casing/shell{ - icon_state = "casing_2_1" - }, -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/crashed_ship) "qT" = ( /obj/structure/barricade/sandbags/wired{ dir = 4 @@ -518,11 +577,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"qU" = ( -/obj/item/ammo_magazine/smg/fp9000, -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) "rf" = ( /obj/item/ammo_casing/shell{ icon_state = "casing_7_1" @@ -537,6 +591,18 @@ /obj/item/ammo_magazine/smg/fp9000, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) +"rI" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"rL" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) "rX" = ( /obj/item/ammo_casing/shell{ icon_state = "shell_4_1" @@ -547,12 +613,9 @@ /obj/item/stack/rods, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"sH" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp{ - pixel_y = 3 - }, -/turf/open/floor/almayer/green/west, +"st" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "sO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -584,73 +647,63 @@ /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"tv" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) "tB" = ( /obj/structure/bed/chair, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) -"ug" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/damaged3/west, +"tU" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"uc" = ( +/turf/open/floor/almayer/greencorner/north, +/area/lv624/lazarus/crashed_ship) +"um" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/crashed_ship) "uq" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ur" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, -/area/lv624/ground/caves/south_west_caves) -"uz" = ( -/obj/structure/girder/displaced, -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, -/area/lv624/ground/caves/south_west_caves) "uX" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) -"vb" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/green/north, -/area/lv624/lazarus/crashed_ship) -"vf" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "clf_umbilical_1"; - name = "\improper Umbillical Airlock" - }, -/turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) "vo" = ( /turf/closed/shuttle/ert{ icon_state = "stan23" }, /area/lv624/lazarus/crashed_ship) -"vp" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) "vw" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"vO" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/damaged3/west, -/area/lv624/lazarus/crashed_ship) -"wh" = ( -/obj/item/weapon/gun/rifle/sniper/svd, -/turf/open/floor/damaged3/west, +"vT" = ( +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "wo" = ( /obj/structure/machinery/floodlight, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"wr" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/damaged3/west, -/area/lv624/lazarus/crashed_ship) "wx" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, @@ -662,36 +715,32 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"wR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/crashed_ship) -"wV" = ( -/obj/structure/machinery/power/smes/buildable/charged, -/turf/open/floor/almayer/orange/north, -/area/lv624/lazarus/crashed_ship) -"xh" = ( -/obj/structure/girder, -/turf/open/floor/damaged3/west, +"wI" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/turf/open/floor/almayer/green/northeast, /area/lv624/lazarus/crashed_ship) -"xj" = ( -/obj/structure/girder/displaced, +"wN" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"xk" = ( -/obj/item/ammo_casing/shell{ - icon_state = "casing_9_1" - }, -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 8; - faction_group = list("CLF") - }, -/turf/open/floor/platingdmg1, +"wY" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "xl" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) +"xn" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) "xo" = ( /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, /turf/open/floor/almayer, @@ -703,6 +752,12 @@ "xu" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) +"xA" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) "xF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 8; @@ -710,20 +765,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"xG" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "clf_umbilical_1"; - name = "\improper Umbillical Airlock" - }, -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/crashed_ship) -"xI" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/lv624/lazarus/crashed_ship) -"xK" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/green/northeast, -/area/lv624/lazarus/crashed_ship) "xX" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -731,19 +772,16 @@ }, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) -"yK" = ( -/obj/item/stack/rods, -/obj/item/ammo_magazine/sniper/svd, -/turf/open/floor/damaged3/west, -/area/lv624/lazarus/crashed_ship) -"yT" = ( -/obj/structure/barricade/metal/wired{ - icon_state = "metal_2" +"yO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray{ + pixel_x = -4; + pixel_y = 4 }, -/obj/structure/machinery/m56d_hmg{ - rounds = 700 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/platingdmg1, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) "yX" = ( /obj/structure/surface/table/reinforced/prison, @@ -753,8 +791,8 @@ }, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"zb" = ( -/obj/structure/girder/reinforced, +"zj" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "zl" = ( @@ -767,34 +805,35 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"zz" = ( -/obj/structure/barricade/metal/wired{ - icon_state = "metal_1" - }, -/turf/open/floor/platingdmg1, +"zn" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) -"zD" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/item/tool/soap{ - pixel_x = 2; - pixel_y = -4 +"zH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"zI" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/whitebluefull, +/turf/open/floor/almayer/greencorner/east, /area/lv624/lazarus/crashed_ship) -"zJ" = ( -/obj/item/stack/rods, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/platingdmg1, +"zQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/toy/katana, +/turf/open/floor/almayer/green/west, /area/lv624/lazarus/crashed_ship) -"Aa" = ( -/obj/effect/vehicle_spawner/van/fixed{ - color = "#4a9eed"; - desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; - name = "CLF Van" +"zT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bridge" }, -/turf/open/floor/plating/warnplate/north, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Ab" = ( /turf/open/gm/dirt, @@ -803,23 +842,61 @@ /obj/effect/landmark/survivor_spawner/lv624_crashed_clf_medic, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) +"Ag" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/ground/caves/south_west_caves) +"Am" = ( +/obj/item/stool, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Ao" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -4 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) "Ar" = ( /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) -"AD" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/obj/item/weapon/gun/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/turf/open/floor/almayer/green/northeast, +"As" = ( +/turf/open/floor/almayer/bluecorner/north, /area/lv624/lazarus/crashed_ship) -"AP" = ( -/obj/structure/cargo_container/arious/right, +"At" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, /turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) +"Aw" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"AJ" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) "AQ" = ( /obj/structure/machinery/door_control/brbutton{ id = "clf_umbilical_1"; @@ -829,15 +906,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"AT" = ( -/obj/structure/barricade/plasteel/wired{ - icon_state = "plasteel_2" - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"Bc" = ( -/turf/open/floor/damaged3/west, -/area/lv624/lazarus/crashed_ship) "Bg" = ( /obj/structure/surface/table/woodentable, /obj/item/ammo_magazine/shotgun/incendiary{ @@ -847,6 +915,9 @@ /obj/item/ammo_magazine/shotgun/incendiary, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) +"Bk" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) "BC" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_2" @@ -858,9 +929,8 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"BY" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/damaged3/west, +"Ce" = ( +/turf/open/floor/almayer/greencorner, /area/lv624/lazarus/crashed_ship) "Cq" = ( /obj/item/circuitboard/apc{ @@ -872,6 +942,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) +"Cr" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer/green/northwest, +/area/lv624/lazarus/crashed_ship) "Ct" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 8; @@ -879,10 +959,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"Cw" = ( -/obj/item/ammo_magazine/smg/fp9000, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/plating/warnplate, +"Cy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"CA" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"CB" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/lv624/ground/caves/south_west_caves) +"CE" = ( +/obj/item/weapon/gun/rifle/sniper/svd, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "CO" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -891,8 +982,9 @@ }, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship) -"CZ" = ( -/turf/open/floor/almayer/green/east, +"Dg" = ( +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "Dm" = ( /turf/closed/shuttle/ert{ @@ -904,30 +996,21 @@ icon_state = "stan_white_t_up" }, /area/lv624/lazarus/crashed_ship) -"Dt" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/almayer/emerald/southwest, -/area/lv624/lazarus/crashed_ship) -"Dv" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/obj/item/toy/katana, -/turf/open/floor/almayer/green/west, -/area/lv624/lazarus/crashed_ship) -"Dw" = ( -/obj/structure/bed, -/obj/item/bedsheet/rd, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/green/east, +"DF" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/crashed_ship) -"DO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/almayer/emerald/north, +"DI" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "DS" = ( /obj/structure/surface/table/woodentable, @@ -938,38 +1021,34 @@ /obj/item/storage/firstaid/regular, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) -"DY" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = -3 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = 3 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = 9 - }, -/turf/open/floor/almayer/orangecorner, -/area/lv624/lazarus/crashed_ship) "DZ" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_s_w" }, /area/lv624/lazarus/crashed_ship) -"Ei" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/structure/barricade/metal/wired{ - icon_state = "metal_1" +"Ed" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -10 }, -/turf/open/floor/plating/warnplate/southwest, +/turf/open/floor/almayer/greencorner/west, /area/lv624/lazarus/crashed_ship) -"Em" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"Eg" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"En" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/floor/almayer/bluecorner/east, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) "Ev" = ( /turf/closed/shuttle/ert{ @@ -977,97 +1056,53 @@ opacity = 0 }, /area/lv624/lazarus/crashed_ship) -"Ex" = ( -/obj/structure/barricade/metal/wired{ - icon_state = "metal_1" - }, -/obj/structure/machinery/m56d_hmg{ - rounds = 700 +"EP" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + density = 1; + closed = 0 }, /turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"EB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/attachable/heavy_barrel, -/obj/item/attachable/verticalgrip, -/obj/item/attachable/verticalgrip, -/obj/item/attachable/attached_gun/flamer, -/obj/item/attachable/bayonet, -/obj/item/attachable/bayonet, -/turf/open/floor/almayer/bluecorner/west, +"Fs" = ( +/turf/open/floor/almayer/greencorner/east, /area/lv624/lazarus/crashed_ship) -"EO" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -10 - }, +"FK" = ( /turf/open/floor/almayer/greencorner/west, /area/lv624/lazarus/crashed_ship) -"Gf" = ( +"FW" = ( /obj/structure/barricade/metal/wired{ - dir = 8; - icon_state = "metal_1" + dir = 8 }, -/turf/open/floor/platingdmg1, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"Gm" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer/emerald/north, +"Gx" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/emerald/southwest, /area/lv624/lazarus/crashed_ship) "GQ" = ( /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"GT" = ( -/obj/structure/machinery/computer/station_alert{ - icon_state = "atmosb"; - stat = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) -"Hg" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/platingdmg1, +"GV" = ( +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "Hj" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_west_caves) -"HN" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/lv624/lazarus/crashed_ship) -"HR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_y = 1 - }, -/obj/item/stack/sheet/plasteel{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/orange/southeast, +"HT" = ( +/obj/structure/machinery/power/smes/buildable/charged, +/turf/open/floor/almayer/orange/north, /area/lv624/lazarus/crashed_ship) -"Ik" = ( -/turf/open/floor/almayer/greencorner/west, +"Ir" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"IG" = ( -/turf/open/floor/almayer/greencorner/north, +"It" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "IH" = ( /obj/item/ammo_casing/shell{ @@ -1075,42 +1110,75 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"IP" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/obj/item/restraint/handcuffs{ - pixel_x = 4; - pixel_y = 4 +"IQ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"IT" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"IU" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"Jd" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/damaged3/west, +/area/lv624/ground/caves/south_west_caves) +"Jh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -2 }, -/obj/item/restraint/handcuffs, -/turf/open/floor/almayer/green/southeast, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -8 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 9 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"JA" = ( +/turf/open/floor/almayer/bluecorner, /area/lv624/lazarus/crashed_ship) "JC" = ( /obj/item/stack/rods, /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"JG" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, +"JT" = ( +/obj/item/tool/shovel/spade, /turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) -"JO" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer/emerald/north, -/area/lv624/lazarus/crashed_ship) +/area/lv624/ground/caves/south_west_caves) "JW" = ( /obj/item/toy/beach_ball{ desc = "Round and Big! Just like...." }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"JX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/heavy_barrel, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) "Kg" = ( /turf/closed/shuttle/ert{ icon_state = "stan_r_w" @@ -1121,11 +1189,28 @@ icon_state = "stan_leftengine" }, /area/lv624/lazarus/crashed_ship) +"Kl" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) "Kt" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/lv624/lazarus/crashed_ship) +"Kw" = ( +/obj/item/stool, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"KE" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) "KK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 8; @@ -1133,29 +1218,52 @@ }, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"KZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/backpack/general_belt{ - pixel_y = 3 +"KX" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/turf/open/floor/plating/platingdmg3, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"Lb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/emerald/northeast, /area/lv624/lazarus/crashed_ship) -"LD" = ( +"Lk" = ( /obj/item/stack/rods, -/turf/open/floor/plating/warnplate/west, +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Lq" = ( +/turf/open/floor/almayer/emeraldcorner/west, /area/lv624/lazarus/crashed_ship) -"LG" = ( +"LJ" = ( /obj/structure/girder/reinforced, -/turf/open/floor/plating/platingdmg3, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) -"LK" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/platingdmg3, +"LL" = ( +/turf/open/floor/plating/warnplate/southwest, /area/lv624/lazarus/crashed_ship) "LV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"Mc" = ( +/turf/open/floor/damaged3/west, +/area/lv624/ground/caves/south_west_caves) +"Me" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Armoury"; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"Mf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) "Mm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 8; @@ -1163,6 +1271,9 @@ }, /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) +"Mt" = ( +/turf/open/floor/platingdmg1, +/area/lv624/ground/caves/south_west_caves) "Mu" = ( /turf/closed/shuttle/ert{ icon_state = "stan_l_w" @@ -1173,191 +1284,105 @@ icon_state = "stan20" }, /area/lv624/lazarus/crashed_ship) -"Mw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer/emerald/northeast, -/area/lv624/lazarus/crashed_ship) -"Mz" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer/bluecorner/east, -/area/lv624/lazarus/crashed_ship) -"MO" = ( +"Nr" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, /turf/open/floor/almayer/blue/north, /area/lv624/lazarus/crashed_ship) -"Nk" = ( -/turf/open/floor/almayer/greencorner/east, -/area/lv624/lazarus/crashed_ship) "Ns" = ( /turf/closed/shuttle/ert{ icon_state = "stan21" }, /area/lv624/lazarus/crashed_ship) -"Nw" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/whitebluefull, -/area/lv624/lazarus/crashed_ship) -"NC" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_x = 3; - pixel_y = 20 - }, -/turf/open/floor/almayer/green/north, -/area/lv624/lazarus/crashed_ship) -"NI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16/ap, -/obj/item/ammo_magazine/rifle/m16/ap{ - pixel_x = -2 - }, -/obj/item/ammo_magazine/rifle/m16/ap{ - pixel_x = -4 - }, -/obj/item/ammo_magazine/rifle/m16/ap{ - pixel_x = -6 - }, -/obj/item/ammo_magazine/rifle/m16/ap{ - pixel_x = -8 - }, -/obj/item/weapon/throwing_knife{ - pixel_x = 18; - pixel_y = 9 - }, -/obj/item/weapon/throwing_knife{ - pixel_x = 18; - pixel_y = 6 +"Nx" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" }, -/turf/open/floor/almayer/bluecorner/north, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"Oc" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/emeraldcorner/west, +"Nz" = ( +/turf/open/floor/almayer/orangecorner/west, /area/lv624/lazarus/crashed_ship) -"Op" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/general_belt{ - pixel_y = 7 +"NR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/item/storage/backpack/general_belt, -/turf/open/floor/almayer/emerald/north, -/area/lv624/lazarus/crashed_ship) -"Ot" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/emeraldcorner/east, +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) -"OB" = ( -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_2_1" - }, -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 4; - faction_group = list("CLF") - }, -/turf/open/floor/plating/platingdmg3, +"Of" = ( +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "OL" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"OS" = ( -/turf/open/floor/almayer/emerald/southwest, +"OM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"OR" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/crashed_ship) "OU" = ( /obj/structure/machinery/floodlight, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"OZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/transmitter/clf_net/rotary{ - phone_category = "CR-116"; - phone_color = "yellow"; - phone_id = "Engineering" - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer/orangecorner, -/area/lv624/lazarus/crashed_ship) -"Pu" = ( -/obj/effect/landmark/corpsespawner/clf, -/turf/open/floor/platingdmg1, +"Pa" = ( +/obj/structure/girder/displaced, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) -"Px" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/power/apc{ - dir = 1 +"Pv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 3 }, -/turf/open/floor/almayer/orange/northwest, +/turf/open/floor/almayer/green/west, /area/lv624/lazarus/crashed_ship) -"PA" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/item/storage/firstaid/regular/empty, -/turf/open/floor/almayer/green/north, +"Qa" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"PR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full{ - pixel_x = 2; - pixel_y = 4 +"Qb" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/emerald/northwest, -/area/lv624/lazarus/crashed_ship) -"PY" = ( -/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, -/turf/open/floor/almayer/bluecorner/east, -/area/lv624/lazarus/crashed_ship) -"Qc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/emeraldcorner/west, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Qd" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_2" }, /area/lv624/lazarus/crashed_ship) -"Qf" = ( -/turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) -"Qj" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/transmitter/clf_net{ - phone_category = "CR-116"; - phone_color = "green"; - phone_id = "Medical Bay"; - pixel_y = 32 +"Qe" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + density = 1; + closed = 0 }, -/turf/open/floor/almayer/emerald/north, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Qi" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "Qp" = ( /obj/item/stack/rods, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship) -"Qs" = ( -/obj/structure/barricade/metal/wired{ - icon_state = "metal_1" +"Qy" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = -3; + pixel_y = 20 }, -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/crashed_ship) -"Qu" = ( -/obj/structure/girder, -/turf/open/floor/platingdmg1, +/turf/open/floor/almayer/orangecorner/north, /area/lv624/lazarus/crashed_ship) "QE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ @@ -1366,32 +1391,28 @@ }, /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) -"QQ" = ( -/turf/open/floor/almayer/bluecorner/west, +"Rb" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"Rn" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, /area/lv624/lazarus/crashed_ship) -"Ro" = ( -/turf/open/floor/damaged3/west, -/area/lv624/ground/caves/south_west_caves) "RS" = ( /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) -"Sg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/attachable/verticalgrip, -/obj/item/attachable/verticalgrip, -/obj/item/attachable/compensator, -/obj/item/attachable/compensator, -/obj/item/attachable/compensator, -/obj/item/attachable/extended_barrel, -/obj/item/attachable/extended_barrel, -/obj/item/attachable/flashlight/grip, -/obj/item/attachable/flashlight/grip, -/obj/item/attachable/flashlight/grip, -/obj/item/attachable/bayonet, -/obj/item/attachable/bayonet, -/obj/item/attachable/bayonet, -/obj/item/attachable/attached_gun/flamer, -/turf/open/floor/almayer/bluecorner, +"St" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "Sx" = ( /obj/structure/largecrate/random/barrel/blue, @@ -1402,32 +1423,44 @@ /obj/item/stack/rods, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship) +"Sz" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) "SG" = ( /turf/closed/shuttle/ert, /area/lv624/lazarus/crashed_ship) -"SW" = ( -/obj/item/weapon/gun/smg/fp9000, -/turf/open/floor/platingdmg1, +"SH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/east, /area/lv624/lazarus/crashed_ship) -"Tx" = ( -/obj/structure/largecrate/supply/supplies/mre{ - desc = "A supply crate containing fifty reposessed USCM MRE packets."; - name = "\improper CLF Supply MRE crate (x50)" +"SV" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -3 }, -/turf/open/floor/plating/warnplate/northwest, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"Tg" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "Tz" = ( /turf/closed/shuttle/ert{ icon_state = "stan22" }, /area/lv624/lazarus/crashed_ship) -"TA" = ( -/obj/structure/barricade/plasteel/wired{ - dir = 8; - icon_state = "plasteel_closed_1" - }, -/turf/open/floor/platingdmg1, -/area/lv624/lazarus/crashed_ship) "TK" = ( /obj/item/stack/rods, /obj/structure/machinery/defenses/sentry/premade/dumb{ @@ -1439,90 +1472,56 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"TN" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = -1 - }, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = 6 - }, -/turf/open/floor/almayer/orange/northeast, -/area/lv624/lazarus/crashed_ship) "TQ" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_t_right" }, /area/lv624/lazarus/crashed_ship) -"Ud" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/lv624/lazarus/crashed_ship) -"Up" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/storage/bag/trash, -/obj/item/tool/screwdriver, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/platingdmg1, +"TX" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/green/east, /area/lv624/lazarus/crashed_ship) -"Uv" = ( +"Uj" = ( +/obj/item/stack/rods, /obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/plating/platingdmg3, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "Uw" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"UD" = ( -/obj/structure/barricade/plasteel/wired{ - icon_state = "plasteel_2" - }, -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/crashed_ship) -"UV" = ( +"Uz" = ( +/obj/item/stack/rods, /turf/open/floor/platingdmg1, /area/lv624/ground/caves/south_west_caves) +"UE" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/orange/southwest, +/area/lv624/lazarus/crashed_ship) "Vb" = ( /obj/item/stack/rods, /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"Ve" = ( -/obj/item/stack/rods, -/turf/open/floor/damaged3/west, -/area/lv624/ground/caves/south_west_caves) -"Vh" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = -3 - }, -/obj/item/device/radio, -/obj/item/device/radio{ - pixel_x = 3 - }, -/turf/open/floor/almayer/green, -/area/lv624/lazarus/crashed_ship) -"Vj" = ( -/obj/item/ammo_magazine/smg/fp9000, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/plating/warnplate/east, -/area/lv624/lazarus/crashed_ship) "Vs" = ( /obj/item/ammo_casing/shell{ icon_state = "shell_2_1" }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"Vw" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) "VA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 8; @@ -1539,28 +1538,38 @@ icon_state = "stan3" }, /area/lv624/lazarus/crashed_ship) +"VJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/clothing/accessory/storage/webbing, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) "VN" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; opacity = 0 }, /area/lv624/lazarus/crashed_ship) -"VQ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_x = -3; - pixel_y = 20 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/lv624/lazarus/crashed_ship) "VX" = ( /turf/closed/shuttle/ert{ icon_state = "stan_rightengine" }, /area/lv624/lazarus/crashed_ship) -"Wa" = ( -/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, -/turf/open/floor/almayer/green, +"Wd" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/crashed_ship) "Wg" = ( /obj/structure/surface/table/almayer, @@ -1574,8 +1583,12 @@ /obj/structure/largecrate/supply/ammo/m56d, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"Wt" = ( -/obj/structure/largecrate/supply/ammo/m56d, +"WF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/storage/bag/trash, +/obj/item/tool/screwdriver, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "WH" = ( @@ -1583,104 +1596,97 @@ icon_state = "stan25" }, /area/lv624/lazarus/crashed_ship) -"WJ" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating/warnplate/southwest, +"WQ" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Xh" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/lazarus/crashed_ship) -"Xm" = ( -/turf/open/floor/plating/platingdmg3, -/area/lv624/ground/caves/south_west_caves) "Xq" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_1" }, /area/lv624/lazarus/crashed_ship) -"Xx" = ( -/obj/item/stack/rods, -/turf/open/floor/damaged3/west, -/area/lv624/lazarus/crashed_ship) -"XG" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/plating/warnplate/north, -/area/lv624/lazarus/crashed_ship) -"XM" = ( -/obj/structure/transmitter/clf_net{ - phone_category = "CR-116"; - phone_id = "Cargo Bay"; - pixel_y = 32 - }, -/turf/open/floor/damaged3/west, +"Xs" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "XX" = ( /turf/closed/shuttle/ert{ icon_state = "stan8" }, /area/lv624/lazarus/crashed_ship) -"Ya" = ( -/obj/item/ammo_magazine/sniper/svd, -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/crashed_ship) -"Yh" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/plating/platingdmg3, -/area/lv624/lazarus/crashed_ship) "Yj" = ( /turf/template_noop, /area/template_noop) -"Ys" = ( -/turf/open/floor/plating/warnplate/southwest, +"Yw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_y = 1 + }, +/obj/item/stack/sheet/plasteel{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/orange/southeast, /area/lv624/lazarus/crashed_ship) "Yx" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"Yz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine{ - department = "CLF - Cell 42" - }, -/obj/item/paper/prison_station/pirate_note/clfship, -/turf/open/floor/almayer/emerald, -/area/lv624/lazarus/crashed_ship) "YF" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/lv624/lazarus/crashed_ship) -"YX" = ( -/turf/open/floor/plating/warnplate/southeast, +"Zm" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/crashed_ship) -"Zu" = ( -/obj/structure/surface/rack, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/webbing, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"Zt" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + icon_state = "plasteel_closed_1" }, -/turf/open/floor/almayer/bluecorner/east, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"ZN" = ( -/obj/item/stack/sheet/metal{ - amount = 2; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plating/warnplate/southeast, +"Zz" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "ZS" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1" }, /area/lv624/lazarus/crashed_ship) -"ZV" = ( -/turf/open/floor/almayer/greencorner, +"ZY" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/turf/open/floor/almayer/orange/northeast, /area/lv624/lazarus/crashed_ship) (1,1,1) = {" @@ -1836,7 +1842,7 @@ Hj Hj Hj Hj -UV +Mt Hj Hj Hj @@ -1883,14 +1889,14 @@ Hj Hj Hj Ab -ur +bw Ab Hj Mv -vO -vO +LJ +LJ Kg -vO +LJ SG Kk YF @@ -1929,16 +1935,16 @@ Hj Hj Hj OU -UV +Mt Ab -Ro +Mc Hj -vO -nx -bf +LJ +lY +UE Xq -PR -Dt +nI +Gx XX Kk YF @@ -1973,20 +1979,20 @@ Hj Hj Hj Hj -Xm +Ag lj -pY +Jd Ab -uz +di Mv SG Tz -VQ -HN +Qy +Nz Xq -jI -Oc -OS +yO +Vw +Bk XX ha Hj @@ -2017,29 +2023,29 @@ LV sT Ab Hj -UV -Ve +Mt +CB te jS -Ro -mK -Xm +Mc +ld +Ag Ab Ns -Px +Rb Cq nj lr Xq -JO +tU RS -Ud -gU +Lq +zH TQ SG SG -zb -vO +kv +LJ SG ha Hj @@ -2065,29 +2071,29 @@ je TK Ab Ab -eY -Xm -Ro +JT +Ag +Mc Ab Mv ro -wR -xh -wV +hr +dh +HT lr gQ -OZ +jY Xq -Qj +nP lr lr -Yz +fm Xq -Tx -WJ -jx -LD -Ys +mO +fU +Xh +Zm +LL XX Kk YF @@ -2111,30 +2117,30 @@ LV BF JW sj -Xm +Ag Ab -gv +Uz Mv -Qu +Aw Tz -Qf -vp +Of +tv Xq -TN +ZY lr -DY -HR +SV +Yw Xq -DO -Ud +Mf +Lq lr -ch +Rn Xq -pS -bP -Aa -Qf -bP +dn +KE +hq +Of +KE dN XX Kk @@ -2156,32 +2162,32 @@ Yj (11,1,1) = {" LV at -bQ -Ro +gN +Mc te -UV -Ro +Mt +Mc Sy -Up +WF ok dN -Bc +GV Dp Qd Ct Qd Qd DZ -Gm -gF +En +dX Ac -Qc +Cy Xq -XG -bP -pS -Qf -Cw +ng +KE +dn +Of +OR jR dN XX @@ -2204,33 +2210,33 @@ Yj by Ab Ab -Ve -UV +CB +Mt Mv -gW +Pa DZ -ll +aI ro -Bc -Qf -Qf +GV +Of +Of lr lr -EO -gg +Ed +fw Xq -Op -Ud +iE +Lq lr RS VA -id -YX -id -Vj -ZN +bJ +nm +bJ +iS +Sz Vb -OB +fh dN XX SG @@ -2251,36 +2257,36 @@ Yj by OU Ab -UV +Mt Mv Tz ro -kp -Qf -Xx -ug +Lk +Of +fH +St dN Xq -of +zI lr lr -Vh +bC Xq -Mw -Ot +Lb +SH lr lr lr dN -Pu +CA JC GQ hw -oW -dt +oy +nn tc wo -mS +hY dN pq Ab @@ -2297,38 +2303,38 @@ Yj (14,1,1) = {" by Ab -Ve +CB ro gn -Bc -Qf +GV +Of Xq -Bc -Qf -mS -wr +GV +Of +hY +zn Xq -vb +IQ RS lr -Ik +FK Dp Qd Qd lr QE DZ -JG -Uv -mS -qu -zz -wr -mS -Qf +oQ +Dg +hY +jm +lz +zn +hY +Of Qp -Qf -Bc +Of +GV pq Ab Ab @@ -2345,17 +2351,17 @@ Yj by Ab Ab -xj +st dY -ft -Bc -Qu +Am +GV +Aw Wg -Bc -Qf -mS -LG -bc +GV +Of +hY +Zz +OM xo lr lr @@ -2363,20 +2369,20 @@ KK lr lr lr -xI +As Xq AQ -Qf -lh -Qf -yT +Of +Uj +Of +At dN -Bc +GV ro -iF -Xx -bP -aC +jZ +fH +KE +hI Ab Ab Ab @@ -2392,37 +2398,37 @@ Yj by Ab Ab -Xx -Bc +fH +GV ro gX Dp -zb -Bc -mS +kv +GV +hY Qd DZ -xK -CZ -CZ -Nk +kh +gB +gB +Fs RS -xI +As lr -xI -jr -vO +As +JA +LJ Wo IH dN -mS -kw +hY +fQ dN Qp ro -Qf -Bc -Qf +Of +GV +Of CO Ab Ab @@ -2439,38 +2445,38 @@ Yj by Ab Ab -LG +Zz dN -Xx -Qf -ky +fH +Of +zT dN -Qf -Xx -KZ +Of +fH +bd Dp Qd Qd Qd Qd DZ -Em +NR lr -bL -QQ +mj +AJ Xq -Wt -SW -Qf +It +Xs +Of rw -UD -mS -mS -Bc -mS +Qe +hY +hY +GV +hY ro -bP -vf +KE +Nx Ab Ab Ab @@ -2487,13 +2493,13 @@ by Ab Ab nt -GT -fX +iv +Kw dN -Qf -lU -mS -mS +Of +zj +hY +hY xo Xq tB @@ -2501,22 +2507,22 @@ DS jH uX Xq -xI +As yX -NI -jr -vO +Jh +JA +LJ dN -oI +Tg rX -mS -oO +hY +EP ro -Qf -lD +Of +wY ro ro -bP +KE CO Ab Ab @@ -2536,35 +2542,35 @@ Ab WH vo dN -mS +hY Xq -Bc -mS -Qf +GV +hY +Of wx -LG +Zz ln Bg eD uX Xq -Mz +dK ag -gD -QQ +Ao +AJ Xq -XM +lp dN dN -Bc -Ex -Qf +GV +aQ +Of xs ro -Bc +GV ro ro -xG +ii Ab Ab Ab @@ -2583,9 +2589,9 @@ Ab Ab WH vo -LK -vO -mS +wN +LJ +hY RS lr RS @@ -2595,22 +2601,22 @@ Ar Ar Ar Xq -fA +Me OL -fe -jr +dT +JA Xq -Yh -TA -Ei +FW +Zt +Kl dN -Qs +xA wo dN -Bc -Qf -Qf -Bc +GV +Of +Of +GV pq Ab Ab @@ -2629,7 +2635,7 @@ Ab Ab Ab Ab -vO +LJ xl Xq Sx @@ -2644,20 +2650,20 @@ lr xF lr lr -PY -QQ +IT +AJ VB -Qf +Of lC -wh -gj -jO -Gf -Gf +CE +DF +KX +Qb +Qb zl wo dN -mS +hY pq Ab Ab @@ -2691,16 +2697,16 @@ Ar RS RS lr -xI -jr -zb +As +JA +kv dN ok -Pu -qU -Bc -yK -xk +CA +rI +GV +Qi +gP dN Dm Kt @@ -2736,17 +2742,17 @@ Qd Qd Qd DZ -MO +Nr lr -bL -QQ +mj +AJ Xq -JG -Qf -Ya -Bc -BY -Pu +oQ +Of +DI +GV +xn +CA lC Dm VX @@ -2778,21 +2784,21 @@ vo lr RS Xq -kO -Dv -sH -IG +Cr +zQ +Pv +uc Mm RS lr -xI -jr +As +JA Xq -ou +Ir dN -zJ -Qf -Hg +vT +Of +Qa dN Dm VX @@ -2825,7 +2831,7 @@ WH dN wG DZ -PA +rL xo bF lr @@ -2833,13 +2839,13 @@ lr nO lr lr -EB +JX Xq Yx -mS -Bc -mS -AP +hY +GV +hY +WQ Dm VX iq @@ -2872,15 +2878,15 @@ rf mH Ab Ns -AD -Dw -Nk -ZV +wI +TX +Fs +Ce Xq -kY +Eg vo RS -Sg +kQ eT Kt Kt @@ -2921,12 +2927,12 @@ lf WH Kt vo -NC -Wa +pd +IU Xq -zD +um Xq -Zu +na Dm VF Ab @@ -2962,16 +2968,16 @@ gt Vs rf mH -AT +kC Ab Ab Ab Ab Ns -hZ -IP +VJ +jC Xq -Nw +Wd Xq Dm VX @@ -3103,7 +3109,7 @@ Hj Ab Ab Ab -jz +Ab Ab Ab Ab diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm index 42e94f253587..1af4fff6d955 100644 --- a/maps/map_files/New_Varadero/New_Varadero.dmm +++ b/maps/map_files/New_Varadero/New_Varadero.dmm @@ -14,29 +14,21 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"aaA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "aaG" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) -"abf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"abt" = ( +/obj/structure/surface/table, +/obj/item/prop/helmetgarb/flair_uscm, +/obj/item/storage/box/uscm_mre{ + pixel_x = -4; + pixel_y = 13 }, -/mob/living/simple_animal/mouse, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"abl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "abu" = ( /obj/item/stack/sheet/wood, /obj/item/shard{ @@ -57,22 +49,28 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"abK" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) "abL" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"acO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/beakers, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) +"aci" = ( +/obj/item/device/flashlight, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz2_near) +"acu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"acV" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "adw" = ( /turf/closed/wall/r_wall, /area/varadero/interior/cargo) @@ -83,10 +81,17 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"adR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) +"aec" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) +"aen" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) "aer" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -98,36 +103,33 @@ dir = 8 }, /area/varadero/interior/hall_N) -"afi" = ( -/obj/structure/machinery/light, -/obj/structure/closet/l3closet/scientist, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"afx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +"afy" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"afz" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_N) -"afR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"afI" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass/phoronglass{ + amount = 32 }, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"afO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) +/obj/effect/landmark/corpsespawner/security, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"afS" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "agi" = ( /obj/structure/window/reinforced{ dir = 4; @@ -152,20 +154,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"agk" = ( +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/court) "agl" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"agn" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"agJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/trackimp, -/obj/item/device/binoculars, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) +"agD" = ( +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"agK" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/varadero/interior/cargo) "agM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/secure{ @@ -178,6 +180,15 @@ }, /turf/open/floor/plating, /area/varadero/interior/electrical) +"agV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "ahb" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -190,46 +201,11 @@ "ahg" = ( /turf/closed/wall, /area/varadero/interior/dock_control) -"ahD" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods{ - pixel_x = 10; - pixel_y = -4 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"ahK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"aiR" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Evidence Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"akd" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"akf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, +"aix" = ( +/obj/structure/closet/crate, +/obj/item/clothing/head/helmet, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"akg" = ( -/obj/effect/overlay/palmtree_r, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/monsoon) +/area/varadero/interior_protected/maintenance/south) "akk" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -248,17 +224,25 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"akO" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"ald" = ( -/obj/structure/pipes/unary/freezer{ - dir = 8; - icon_state = "freezer_1" +"ako" = ( +/obj/item/clothing/ears/earmuffs{ + layer = 3.1; + pixel_x = 2; + pixel_y = 18 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"aky" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "alh" = ( /obj/structure/filingcabinet{ density = 0; @@ -293,26 +277,25 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"alG" = ( +"alI" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"alL" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"alM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/varadero/exterior/lz1_near) +"alK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) +"alY" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/obj/item/tool/surgery/hemostat/predatorhemostat, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "ami" = ( /obj/structure/prop/dam/crane/damaged{ dir = 4 @@ -320,39 +303,34 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"ani" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/technical_storage) -"anu" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, +"amA" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"amJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"amT" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "anA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"aoi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"aoo" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +"anX" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) "aoC" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/comms2) @@ -360,6 +338,10 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/research) +"api" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) "apj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -367,67 +349,48 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"apt" = ( +"apG" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/farocean) +"apQ" = ( +/obj/structure/curtain/red, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"apS" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"apG" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/farocean) -"apH" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"apI" = ( -/obj/structure/machinery/computer/cameras/telescreen{ - name = "Interrogation Telescreen"; - network = list("interrogation"); - pixel_y = 32 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"apY" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"aqb" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/varadero/exterior/comms4) +"apT" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + pixel_x = 11; + pixel_y = 9 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"aqh" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 + pixel_x = 10; + pixel_y = 20 }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"aqk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"aqo" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/comms3) "aqq" = ( /obj/structure/prop/rock/brown, /obj/structure/machinery/storm_siren{ @@ -436,23 +399,26 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"aqw" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"aqs" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/disposals) +"aqW" = ( +/obj/structure/prop/broken_arcade, +/turf/open/floor/wood, +/area/varadero/interior/library) "ara" = ( /turf/open/floor/wood, /area/varadero/interior/court) -"arg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"arC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +"arf" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"arq" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) "arF" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/ceramic_plate, @@ -462,51 +428,54 @@ /obj/item/tool/lighter/zippo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"asf" = ( -/obj/structure/bed/chair/hunter{ - dir = 1 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"asx" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"atz" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/administration) -"atM" = ( -/obj/structure/prop/mech/drill, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"aud" = ( -/obj/structure/sink{ - pixel_y = 15 +"asq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"asW" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/mirror{ - pixel_y = 28 +/obj/item/tool/surgery/FixOVein/predatorFixOVein{ + pixel_x = -4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"auE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"atd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_NW) -"avl" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"atn" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/wood/wood_broken, +/area/varadero/interior/beach_bar) +"atZ" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"auA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"avo" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_SE) -"avy" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/multi_tiles/north, +"avt" = ( +/obj/structure/ladder, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) +"avB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "avD" = ( /turf/closed/wall/huntership, @@ -516,6 +485,12 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"avK" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "avX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -524,95 +499,70 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/comms4) -"awr" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz1_near) -"awu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"awJ" = ( -/turf/open/gm/coast/beachcorner/south_east, -/area/varadero/interior_protected/caves/central) -"axh" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"axs" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"axv" = ( +"awA" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +/area/varadero/exterior/comms4) +"awJ" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/interior_protected/caves/central) +"axj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "axY" = ( /obj/structure/bed/chair/comfy/lime, /turf/open/floor/wood, /area/varadero/interior/research) -"ayo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"aye" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"ayh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"ayx" = ( -/obj/structure/prop/power_transformer, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) +/area/varadero/interior_protected/maintenance/south) +"ayr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"ayz" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "ayF" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"azh" = ( -/obj/item/clothing/shoes/swimmingfins, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"azr" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"azc" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"azv" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"azw" = ( -/obj/structure/largecrate/random/mini/wooden, +/obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"azK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/administration) +/area/varadero/interior/maintenance/research) +"azu" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "aAg" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -620,122 +570,41 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"aAj" = ( -/obj/structure/bed/chair{ - dir = 1 +"aAw" = ( +/obj/item/stool{ + icon_state = "stool_alt" }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"aAr" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"aAy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"aAC" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"aAN" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) "aAX" = ( /obj/docking_port/stationary/marine_dropship/lz2{ name = "LZ2: Palm Airfield" }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"aAY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"aBp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/freezerfloor, +"aBj" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) -"aBz" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"aBB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "aBK" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers{ icon_state = "brflowers_3" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"aBO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/disposals) -"aBY" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"aCd" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"aCl" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"aCo" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"aCz" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"aCH" = ( +"aBR" = ( /obj/structure/bed/chair/wheelchair{ desc = "Great scott, it can move on its own!"; dir = 4; @@ -745,39 +614,35 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"aCt" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"aCC" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"aCR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"aCU" = ( +/obj/structure/girder, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "aCW" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"aCX" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, +"aDd" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"aCY" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"aDu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"aDF" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +/area/varadero/exterior/lz1_near) "aDQ" = ( /obj/structure/filingcabinet{ density = 0; @@ -796,46 +661,15 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/administration) -"aDZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"aEf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"aEg" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"aEi" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"aED" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"aEr" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"aEQ" = ( -/obj/structure/shuttle/engine/router{ - dir = 4; - unacidable = 0 +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "aFg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -845,49 +679,32 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"aFh" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/shorts/black, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.1; - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_container/glass/rag{ - pixel_x = 6; - pixel_y = 14 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) "aFt" = ( /turf/closed/wall, /area/varadero/interior_protected/maintenance/south) -"aFu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"aFK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"aFM" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" +"aFw" = ( +/obj/item/shard{ + icon_state = "medium" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/stack/rods{ + pixel_x = 10; + pixel_y = -4 }, -/turf/open/floor/shiva/floor3, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"aFE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) -"aFX" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/greencorners/east, -/area/varadero/interior/hall_SE) +"aFH" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"aFI" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "aGx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -897,17 +714,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"aGX" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) "aHs" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -921,63 +727,67 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/varadero/interior/research) -"aHu" = ( -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"aHw" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 +"aHE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"aHy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "aHM" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, /turf/open/floor/wood, /area/varadero/interior/security) -"aIm" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"aIq" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, +"aHY" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"aIi" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/technical_storage) +"aIt" = ( +/obj/structure/machinery/light, /turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) -"aJc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"aID" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -13; - pixel_y = 16 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"aIE" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"aJf" = ( +/obj/structure/toilet, +/turf/open/floor/white, +/area/varadero/interior/security) +"aJE" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/obj/item/trash/plate{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) +"aJF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/xenoburger{ - pixel_x = 5; - pixel_y = 7 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"aJp" = ( +/turf/open/floor/carpet, +/area/varadero/interior/hall_SE) +"aJP" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/carpet, +/area/varadero/interior/library) +"aKA" = ( /obj/effect/decal/cleanable/blood{ basecolor = "#20d450"; color = "#20d450" @@ -995,62 +805,6 @@ }, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"aJD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"aJF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/carpet, -/area/varadero/interior/hall_SE) -"aJI" = ( -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"aJP" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/carpet, -/area/varadero/interior/library) -"aJW" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"aKk" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 1; - pixel_x = -5; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "aKJ" = ( /obj/item/tool/warning_cone, /obj/structure/prop/invuln/lattice_prop{ @@ -1060,34 +814,75 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"aLc" = ( -/turf/open/floor/shiva/yellowcorners/east, -/area/varadero/interior/disposals) -"aLl" = ( -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) -"aLn" = ( -/obj/effect/landmark/hunter_primary, +"aKY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/wet_sign, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"aLS" = ( +/obj/structure/bed/chair/hunter{ + dir = 1 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"aMe" = ( +/obj/item/trash/liquidfood, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"aMp" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/area/varadero/interior/hall_NW) "aMC" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"aMN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1 +"aNe" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"aNo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance) +"aNr" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"aNM" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"aNV" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/electrical) +"aNW" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/item/toy/plush/farwa, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) "aOg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"aOw" = ( +/obj/structure/surface/rack, +/obj/item/clipboard, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "aOG" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -1; @@ -1097,81 +892,126 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"aOS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/bayonet/co2{ + pixel_y = 7 + }, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"aPd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "aPe" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"aPQ" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"aPU" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"aQc" = ( +"aPk" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior_protected/maintenance/south) +"aPr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"aPz" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"aPN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"aQk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "aQq" = ( /obj/structure/window/framed/colony/reinforced/hull, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) -"aQu" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"aQv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"aQG" = ( -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/morgue) -"aQN" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"aQR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) -"aQY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"aQH" = ( +/obj/structure/cryofeed, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"aRj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"aRr" = ( -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) -"aRL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ +"aRo" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; - pixel_y = 17 + icon_state = "leftsecure"; + id = "brg" }, -/obj/item/weapon/gun/revolver/cmb{ - pixel_y = 2 - }, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - pixel_x = 2; - pixel_y = 8 - }, -/turf/open/floor/shiva/floor3, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) +"aRH" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"aRZ" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "aSe" = ( /obj/item/reagent_container/food/snacks/birthdaycakeslice, /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"aSh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "aSj" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -1182,38 +1022,49 @@ /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"aSC" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" + }, +/turf/open/floor/wood, +/area/varadero/interior/library) "aSU" = ( /obj/structure/catwalk, /turf/open/floor/plating/plating_catwalk, /area/varadero/interior/maintenance/north) -"aTg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"aTh" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"aTC" = ( -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 5; - pixel_y = 2 +"aTn" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"aTK" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = -5; - pixel_y = -9 +/obj/item/shard{ + icon_state = "medium" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"aTS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/varadero/interior/caves/east) +"aUp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"aUy" = ( +/obj/structure/prop/rock/brown{ + indestructible = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"aTY" = ( -/obj/structure/prop/rock/brown, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "aUA" = ( @@ -1231,140 +1082,105 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"aUP" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 3 +"aUX" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz2_near) +"aVj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/mirror{ - pixel_x = -32 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"aVQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall, +/area/varadero/interior/hall_N) +"aWj" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick{ + pixel_x = -4; + pixel_y = 11 }, +/obj/item/reagent_container/glass/pressurized_canister, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/technical_storage) +"aWk" = ( +/obj/structure/window/framed/colony, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"aVs" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 +/area/varadero/interior/maintenance) +"aWr" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/varadero/interior/maintenance/north) -"aVt" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"aWG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"aVF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"aVQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall, -/area/varadero/interior/hall_N) -"aWA" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"aWP" = ( -/turf/open/floor/darkgreencorners2/west, +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_SE) "aXb" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"aXm" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"aXn" = ( -/obj/structure/prop/rock/brown, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"aXt" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"aXz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) "aXA" = ( /obj/structure/largecrate/supply/medicine/iv, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"aYg" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"aXJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"aZb" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"aYd" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"aYF" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = 5 +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"aYK" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/machine/batteryrack, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 7 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"aZq" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"aYP" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/bed{ - can_buckle = 0 +/obj/item/tool/surgery/bonesetter/predatorbonesetter, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"aYV" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; pixel_y = 13 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/medical) +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) "aZv" = ( /obj/structure/bed/chair{ dir = 4; @@ -1372,55 +1188,55 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"aZX" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/comms3) -"baa" = ( +"aZI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"bag" = ( -/obj/structure/machinery/light/small{ +/area/varadero/interior/cargo) +"aZL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"bah" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"bam" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"bak" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/snow_mat, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"baA" = ( +/obj/structure/bed/roller, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"baH" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/weapon/gun/shotgun/pump{ - pixel_y = -5 +"baK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/red/southwest, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"bbf" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) -"baN" = ( -/obj/structure/closet/crate/secure, -/obj/effect/landmark/objective_landmark/close, -/obj/item/trash/wy_chips_pepper, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "bbt" = ( /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand_white/layer1, @@ -1433,44 +1249,59 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bbW" = ( -/obj/item/clothing/under/shorts/black, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"bcg" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"bbZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"bcD" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"bdc" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"bcE" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"bdH" = ( -/turf/open/gm/coast/beachcorner/north_east, -/area/varadero/interior/caves/north_research) -"bdJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/varadero/exterior/comms4) +"bcI" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Custodial Closet"; - req_access_txt = "100" +/obj/structure/mirror{ + pixel_y = -28 }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"bcY" = ( +/obj/structure/bedsheetbin, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/area/varadero/interior/bunks) +"bdH" = ( +/turf/open/gm/coast/beachcorner/north_east, +/area/varadero/interior/caves/north_research) +"bdR" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"bel" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "ben" = ( /obj/structure/filingcabinet{ density = 0; @@ -1492,30 +1323,52 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) -"bez" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"bep" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"bet" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"beE" = ( -/obj/item/device/taperecorder, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "beK" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/lz2_near) -"beM" = ( -/obj/structure/machinery/light{ - dir = 4 +"beL" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) "bfg" = ( /obj/structure/surface/table, /obj/item/ashtray/plastic, @@ -1530,37 +1383,67 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"bfq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"bfT" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"bft" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"bfX" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"bgh" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/varadero/interior/maintenance/north) -"bgl" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"bgr" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"bgu" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "bgE" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"bhn" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"bhw" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) "bhF" = ( /obj/structure/sign/safety/water{ pixel_x = 15 }, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) +"bhS" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "bhU" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" @@ -1570,40 +1453,15 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bih" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +"bhY" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) "bio" = ( /obj/structure/surface/table/woodentable, /obj/effect/spawner/random/powercell, /turf/open/floor/wood, /area/varadero/interior/chapel) -"biz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"biF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "biS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1616,147 +1474,169 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"bjf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bjc" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/interior/maintenance/north) +"bjq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"bjA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "bjC" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bjP" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/far, +"bjE" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/court) +"bjG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +/area/varadero/interior/administration) +"bjV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"bjW" = ( +/obj/item/tool/surgery/circular_saw/predatorbonesaw, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "bko" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/west, /area/varadero/exterior/monsoon) -"bkC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Morgue"; - req_access_txt = "100" +"bky" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/dark2, -/area/varadero/interior/morgue) -"bkG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"bkM" = ( +/turf/closed/wall, +/area/varadero/interior/hall_SE) +"bkS" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - health = 80 + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/computer/communications{ +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/pontoon_beach/lz) +"blh" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"bkM" = ( -/turf/closed/wall, -/area/varadero/interior/hall_SE) +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "bls" = ( /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"bmt" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"blt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"blV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/item/tool/surgery/hemostat/predatorhemostat, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"bmi" = ( +/obj/structure/mirror{ + pixel_x = -32 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/white, +/area/varadero/interior/security) "bmI" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bmV" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"bnc" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 3 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 8; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"bnf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"bng" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"bnk" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) "bnm" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/cargo) -"bnB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"bnt" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "bnH" = ( /obj/structure/prop/dam/truck/damaged, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"boI" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison/darkredfull2, -/area/varadero/interior/dock_control) -"boV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bog" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"bok" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"bpH" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"boO" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastocean) +"boT" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"bpL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"bpI" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/medical) "bpT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1765,26 +1645,27 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"brx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/FixOVein/predatorFixOVein{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/paper{ - pixel_x = -11; - pixel_y = 4 - }, -/obj/item/paper/research_notes/good{ - pixel_x = -15; - pixel_y = 2 +"bqr" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"bqT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"brM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"brh" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"brR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "brT" = ( /turf/closed/wall/huntership/destructible, /area/varadero/interior_protected/vessel) @@ -1797,10 +1678,33 @@ "bsf" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bst" = ( -/obj/structure/closet/crate/miningcar, +"bsi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"bsk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"bsn" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior_protected/caves) +"bta" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "bte" = ( /obj/structure/closet/crate/radiation, /obj/item/stack/sheet/mineral/phoron/medium_stack{ @@ -1817,6 +1721,22 @@ }, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) +"btx" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + name = "Television set"; + network = null; + pixel_x = 1; + pixel_y = 6 + }, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "btU" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -1834,99 +1754,56 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/carpet, /area/varadero/interior/administration) -"buB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"buH" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"bvE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, +"buL" = ( +/obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"bvF" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"bwz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"bwP" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"bxc" = ( +/area/varadero/interior_protected/caves) +"bvd" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/attachable/bayonet/co2{ - pixel_y = 7 +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 3; + pixel_y = 2 }, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"bxx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"bvW" = ( +/obj/item/paper, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"bye" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"byl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/encryptionkey/dutch, -/obj/item/device/encryptionkey/dutch{ - pixel_x = -6 - }, -/obj/item/device/encryptionkey/dutch{ - pixel_x = 8; - pixel_y = 3 +/area/varadero/interior/maintenance/north) +"bwh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" }, -/obj/item/book/manual/marine_law{ - pixel_x = 8 +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"bwS" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -5; - pixel_y = 1 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"bxX" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/restraint/handcuffs{ - pixel_x = 2; - pixel_y = 16 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"byh" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -13; + pixel_y = -3 }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "bys" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -1938,10 +1815,16 @@ /obj/item/folder/black, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"byC" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/eastocean) +"byy" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/surface/table, +/obj/item/spacecash/c1000{ + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "byF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1950,23 +1833,20 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"byU" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"bzf" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/maintenance) -"bzn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"byQ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"bzq" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/medical) +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/pontoon_beach/lz) +"bzj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "bzz" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1975,16 +1855,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bAj" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 +"bAc" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, +/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/area/varadero/exterior/eastbeach) +"bAq" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "bAE" = ( /obj/structure/window/reinforced{ dir = 4; @@ -2016,14 +1898,14 @@ /obj/item/ammo_magazine/rifle/m4ra, /turf/open/floor/wood, /area/varadero/interior/bunks) -"bBo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +"bAU" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"bBg" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "bBt" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -2040,56 +1922,78 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"bBV" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"bCi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/research) -"bCA" = ( +"bBA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/hall_SE) +"bBC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/beakers, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"bBP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"bBX" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"bCH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"bDj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"bCM" = ( -/obj/structure/platform_decoration/kutjevo, /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"bDs" = ( -/obj/item/weapon/gun/flare{ - current_mag = null +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"bEj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"bEX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"bDk" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"bDm" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/stamp{ + pixel_x = -5; + pixel_y = 11 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"bDq" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/swcaves) +"bDD" = ( +/obj/structure/machinery/power/apc{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/comms3) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "bEY" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -2103,83 +2007,74 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"bFj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/donkpockets{ - pixel_x = -6; - pixel_y = 17 - }, -/obj/structure/machinery/recharger, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "bFo" = ( /obj/structure/surface/table, /obj/item/device/flashlight/flare, /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bFD" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"bFV" = ( -/obj/structure/machinery/light/small{ +"bFz" = ( +/turf/open/floor/white, +/area/varadero/interior/laundry) +"bGn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"bGe" = ( -/obj/item/stool{ - pixel_x = 7; - pixel_y = -6 +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"bGv" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"bGB" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"bGy" = ( -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"bGz" = ( -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/hall_SE) +/area/varadero/interior/maintenance/security) "bGC" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall, /area/varadero/interior/dock_control) +"bGH" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -10; + pixel_y = 19 + }, +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "bGU" = ( /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bHc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) +"bHm" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"bIo" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "bIt" = ( /turf/closed/wall, /area/varadero/interior/technical_storage) -"bJv" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, +"bIz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"bJo" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1 + dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/disposals) "bJH" = ( /obj/item/tool/warning_cone, /obj/effect/decal/warning_stripes{ @@ -2190,63 +2085,42 @@ "bJI" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/lz1_near) -"bJV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"bLl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, +"bKs" = ( +/obj/item/clothing/shoes/swimmingfins, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"bKH" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/area/varadero/interior_protected/caves) +"bKI" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"bKN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "bLp" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 }, /turf/open/floor/wood, /area/varadero/interior/administration) -"bLy" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/mess) "bLB" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/chapel) -"bLI" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - icon_state = "HotlineAlt" - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/administration) -"bLN" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) "bLV" = ( /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, @@ -2261,132 +2135,118 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) -"bMk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) +"bMn" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "bMx" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"bMG" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/trash/ceramic_plate, +"bMJ" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"bMY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"bMV" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/area/varadero/interior/laundry) +"bNA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"bNK" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_SE) -"bNi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"bNt" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/clothing/suit/storage/bomber, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"bNC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"bNP" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"bNN" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"bOl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) +"bOx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/trackimp, +/obj/item/device/binoculars, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"bOA" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/obj/item/prop/almayer/comp_open, -/turf/open/floor/asteroidfloor/north, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) -"bOO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"bPe" = ( -/obj/structure/platform/kutjevo/smooth{ +"bOH" = ( +/obj/structure/machinery/power/apc{ dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"bPk" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"bPl" = ( -/obj/structure/bed/chair{ - dir = 1 + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) -"bPm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/item/cell/high, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"bOM" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"bPW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"bQh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/hall_SE) -"bPx" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"bPF" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"bQE" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"bQP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"bPG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"bPL" = ( -/obj/item/restraint/handcuffs{ - pixel_x = 2; - pixel_y = 16 +/obj/structure/prop/static_tank/water{ + pixel_y = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"bQa" = ( -/obj/structure/catwalk, -/obj/structure/largecrate/random, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"bQH" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"bQY" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "bRg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2396,27 +2256,22 @@ "bRi" = ( /turf/open/floor/shiva, /area/varadero/interior/disposals) -"bRo" = ( -/obj/structure/reagent_dispensers/beerkeg/alt_dark, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"bRQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +"bRK" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) "bRS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"bSd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +"bRV" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "bSj" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -2433,12 +2288,21 @@ /obj/effect/spawner/random/attachment, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"bSD" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +"bSE" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3{ + pixel_y = -3 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"bSO" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/sling, +/obj/effect/landmark/objective_landmark/science, +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "bSQ" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, @@ -2448,56 +2312,21 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"bTg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"bTm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/weapon/gun/rifle/m4ra, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) "bTA" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/records) -"bTN" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"bUg" = ( -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/snow_mat, +"bUu" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"bUK" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) -"bUP" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) -"bUR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +"bUE" = ( +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "bUZ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, @@ -2513,21 +2342,43 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bVq" = ( -/obj/structure/machinery/light{ +"bVp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"bVu" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"bVz" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"bVI" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/court) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"bVL" = ( +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/vessel) "bVQ" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -2541,19 +2392,23 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"bVS" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz1_near) "bVX" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz1_near) -"bWq" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/trash/crushed_cup, -/obj/item/prop/magazine/dirty/torn, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +"bWV" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/hall_N) +"bWX" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"bYI" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "bYO" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, @@ -2565,29 +2420,12 @@ /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"bZg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/maintenance/research) "bZv" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"bZA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"bZI" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_SE) "bZU" = ( /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) @@ -2597,64 +2435,19 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"caD" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"cba" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"cbe" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 +"cbc" = ( +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"cbg" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"cbh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"cbq" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"cbv" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/hydro{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_container/spray/hydro{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"cbI" = ( -/obj/item/cpr_dummy, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "cbK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -2666,6 +2459,27 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"cbL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/c_tube, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"cca" = ( +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ccd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"ccg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "ccp" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -2673,103 +2487,123 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"ccU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 +"ccJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/maintenance) "cdb" = ( /turf/closed/wall, /area/varadero/interior/maintenance/security) -"cdc" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"cdy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"cdh" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"cdF" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -10; + pixel_y = -9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "cdL" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"cdO" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) "cdS" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) +"cej" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lightstick, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "cel" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ceo" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) "ceJ" = ( /obj/item/storage/fancy/candle_box, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cfq" = ( -/obj/item/stool{ - layer = 2.5; - pixel_x = -3; - pixel_y = 8 +"cfh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"cfs" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = -10; + pixel_y = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"cgb" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"cfl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Technical Storage"; + req_access_txt = "100" }, -/turf/open/floor/shiva/yellow/north, +/turf/open/floor/shiva/floor3, /area/varadero/interior/technical_storage) -"cgj" = ( -/obj/item/stack/sheet/metal/med_small_stack, +"cfG" = ( +/obj/structure/prop/static_tank/water{ + pixel_y = 8 + }, /turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"cgh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"cgq" = ( +/turf/open/floor/shiva/floor3, /area/varadero/interior/comms3) "cgr" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/north, /area/varadero/interior/caves/north_research) -"cgA" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +"cgM" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = -1 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"cgT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"che" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) "chr" = ( /obj/structure/bed/stool{ icon_state = "stool_alt" @@ -2782,12 +2616,9 @@ "chs" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"chE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"chS" = ( +/turf/open/floor/white, +/area/varadero/interior/security) "chU" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -2798,133 +2629,79 @@ /obj/effect/landmark/railgun_camera_pos, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"cic" = ( +"cia" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Theta-V Research Laboratory"; + req_one_access = null; + req_access = null + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"cil" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/area/varadero/interior/hall_NW) +"cim" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"ciQ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"cit" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"ciu" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) -"ciH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"ciR" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"cjf" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -6 +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"cjU" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"cjc" = ( /obj/structure/barricade/handrail/wire{ - layer = 3.1 + layer = 3.5 }, -/obj/structure/closet/secure_closet/scientist, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"ckx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"cjv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"ckz" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"ckF" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"cjw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_x = -5; + pixel_y = 17 + }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "ckG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"ckI" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_N) "ckM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"clv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +"ckS" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "clA" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"clD" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"clG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) "clX" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance) -"cmf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"cmk" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/crate/freezer/cooler, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/item/reagent_container/food/drinks/cans/souto/lime, -/obj/item/reagent_container/food/drinks/cans/souto/peach, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "cmr" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -2932,84 +2709,93 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"cmU" = ( -/obj/item/reagent_container/food/snacks/fishfingers{ - pixel_y = 7 +"cmB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"cne" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"cmL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) +"cnm" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"cnv" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_y = 4; - pixel_x = -5 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_y = 4; - pixel_x = -5 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"cnW" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"cno" = ( +/obj/item/stack/cable_coil/cyan, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"coq" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"cor" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"cov" = ( /obj/structure/surface/table, /obj/structure/prop/server_equipment/laptop/on, /turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) -"coc" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) -"cog" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) "coz" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"coQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"coX" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"coR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/shiva/wred/northwest, +/area/varadero/interior/medical) +"cpb" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 1; + name = "\improper Underground Command Center"; + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"cpA" = ( -/obj/structure/morgue, /turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"cpC" = ( +/area/varadero/interior/administration) +"cpn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"cpQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"cpF" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "cql" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -3024,16 +2810,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"cqB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) "cqC" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, @@ -3045,7 +2821,7 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"crC" = ( +"cru" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; @@ -3053,138 +2829,41 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"csb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"csr" = ( -/obj/structure/prop/ice_colony/flamingo, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"cto" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"ctw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/administration) -"cty" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior_protected/caves/central) -"ctE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, +"cry" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"csH" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"cuc" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"cud" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/electrical) -"cug" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"cur" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88{ - pixel_y = -2 - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"cvW" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"cvX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"cwe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/dry_ramen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"cwk" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"cwp" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/area/varadero/exterior/comms4) +"csW" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"cty" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior_protected/caves/central) +"ctD" = ( +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"ctT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/floor/shiva/yellowcorners/west, +/area/varadero/interior/cargo) +"cvh" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"cvv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "cwE" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/north) @@ -3193,48 +2872,102 @@ /obj/item/storage/bible/booze, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"cwX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"cxq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"cxt" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/pontoon_beach) "cxT" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"cym" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"cyi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"cyT" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"cyo" = ( +/obj/structure/prop/static_tank{ + pixel_y = 8 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.01 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"czA" = ( -/obj/item/stack/sheet/wood, +/area/varadero/interior_protected/maintenance/south) +"cyu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"czG" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"cAw" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) +/area/varadero/interior/maintenance) +"cyx" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/lz2_near) +"czc" = ( +/obj/item/paper/crumpled, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"czJ" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "cAx" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"cAX" = ( -/obj/structure/disposalpipe/segment, +"cAB" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"cAQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 1; + name = "\improper Underground Security Interrogation Observation"; + req_access_txt = "100" + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/area/varadero/interior/security) +"cAW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"cBp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) "cBq" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -3246,71 +2979,84 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"cBW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) "cCk" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"cDc" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"cDm" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 12 +"cCw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"cDr" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"cEm" = ( -/obj/structure/platform/kutjevo/smooth{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"cCK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"cDW" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 + pixel_x = -14; + pixel_y = 13 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"cEu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"cEg" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"cEp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/green/north, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) -"cFe" = ( -/obj/structure/closet/firecloset/full, +"cEt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Library"; + req_one_access = null; + req_access = null + }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"cEC" = ( +/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance) +"cEE" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "cFh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"cFu" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"cFi" = ( +/obj/structure/surface/table, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "cFw" = ( /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) @@ -3321,24 +3067,11 @@ /obj/structure/cargo_container/kelland/left, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"cGc" = ( -/obj/item/book/manual/detective, -/turf/open/floor/wood, -/area/varadero/interior/library) -"cGd" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/mess) -"cGx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) +"cGr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) "cGD" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -3349,63 +3082,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"cGR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cGI" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/hall_NW) -"cGT" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "cGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 10 }, /area/varadero/interior/records) -"cHf" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"cHl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"cHR" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"cHS" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -3 - }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 6 - }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) +"cHF" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"cHI" = ( +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) +"cHT" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "cHV" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -3424,117 +3132,118 @@ }, /turf/open/floor/light, /area/varadero/interior_protected/vessel) -"cHY" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"cIB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +"cIh" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"cJb" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"cJg" = ( +/obj/item/device/camera, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"cJK" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"cIP" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ +/area/varadero/interior/hall_SE) +"cKb" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"cKh" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"cJa" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -10; - pixel_y = 19 +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"cKl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/obj/effect/decal/strata_decals/grime/grime2, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"cJL" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"cKB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"cKD" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"cKC" = ( -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"cKJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "cKK" = ( /obj/item/paper/crumpled/bloody, /obj/effect/landmark/corpsespawner/security, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"cKZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowcorners/west, -/area/varadero/interior/cargo) -"cLD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" - }, -/obj/structure/machinery/light{ - dir = 8 +"cLm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/greenfull/west, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) +"cLt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "cLP" = ( /turf/open/space, /area/space) -"cLV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"cLW" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = 25 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"cLX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"cLY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"cMv" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/exterior/lz1_near) +"cNj" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"cMf" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/court) -"cNb" = ( -/obj/structure/surface/table, -/obj/item/device/binoculars, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"cNh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, +/obj/structure/closet/secure_closet/personal/patient, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/area/varadero/interior/medical) "cNt" = ( /turf/open/gm/coast/north, /area/varadero/exterior/comms4) -"cNu" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) +"cNx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard/computer/atmos_alert, +/obj/item/circuitboard/machine/smes{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/technical_storage) "cNA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue{ @@ -3557,28 +3266,21 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"cNF" = ( -/obj/structure/machinery/light{ - dir = 4 +"cNP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"cNJ" = ( -/obj/structure/closet, -/obj/item/device/flashlight/lantern, -/obj/item/map/current_map, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"cNT" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"cNU" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"cOj" = ( -/obj/item/circuitboard/apc, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior_protected/maintenance/south) "cOs" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 4 @@ -3586,38 +3288,36 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cOK" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) -"cPI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cPe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"cPR" = ( -/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"cPQ" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"cQv" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"cQV" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"cQr" = ( -/obj/item/tool/crowbar/red{ - pixel_x = 9; - pixel_y = 8 + dir = 6 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"cQu" = ( -/obj/structure/prop/turbine_extras/left, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"cRn" = ( -/obj/item/prop/alien/hugger, -/turf/open/shuttle/red, +/area/varadero/interior/maintenance/research) +"cRj" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "cRx" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -3625,96 +3325,96 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"cRZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"cRH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"cRO" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/clothing/head/uppcap/peaked, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "cSa" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_3" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"cSb" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) "cSc" = ( /obj/structure/prop/invuln/overhead_pipe, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"cSq" = ( -/turf/open/floor/wood, -/area/varadero/interior/chapel) -"cTb" = ( -/obj/item/device/flashlight/flare, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"cTg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cSe" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -8; + pixel_y = 7 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"cTr" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/varadero/interior/cargo) +"cSj" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + name = "barge float"; + desc = "A supportive lattice connected to two floating pontoons." }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"cSm" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"cTw" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"cTV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"cUE" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"cUF" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/defibrillator{ + pixel_y = 5 }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"cSq" = ( +/turf/open/floor/wood, +/area/varadero/interior/chapel) +"cSM" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - climb_delay = 1; - layer = 2.99 + icon_state = "pipe-c" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"cSP" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"cUN" = ( -/obj/structure/prop/rock/brown{ - indestructible = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." +/area/varadero/interior/maintenance) +"cUR" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"cUZ" = ( -/obj/structure/largecrate/random/case/double{ - anchored = 1 +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/marine_law{ + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) "cVd" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/effect/landmark/lv624/fog_blocker{ @@ -3725,41 +3425,28 @@ "cVq" = ( /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"cVG" = ( -/obj/structure/bed/chair{ +"cVE" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"cVX" = ( +/obj/structure/cable, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"cWM" = ( +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"cWP" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"cWs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"cWu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "cXa" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -3772,102 +3459,145 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"cXQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"cXx" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "cYa" = ( /obj/item/storage/firstaid/adv, /turf/open/floor/wood, /area/varadero/interior/security) -"cYc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"cYr" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +"cYk" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"cYw" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +/obj/structure/bed/chair{ + dir = 1; + icon_state = "chair_alt" }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"cYB" = ( -/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"cYq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"cYu" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/exterior/comms4) "cYC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) +"cYG" = ( +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -5 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"cYR" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "cYV" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"cYZ" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"cZN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/technical_storage) +"cZK" = ( +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/court) "cZR" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/medical) -"cZZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"cZU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/paint/black{ + pixel_x = 8; + pixel_y = 10 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/obj/item/tool/wirecutters/clippers, +/obj/item/reagent_container/food/drinks/h_chocolate{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/technical_storage) +"cZY" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Checkpoint"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"dac" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "dad" = ( /obj/item/stack/tile/plasteel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) -"daA" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/court) -"daS" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, +"daB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"daE" = ( +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/morgue) +"dbi" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) -"dbg" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/technical_storage) "dbu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"dbV" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +"dbH" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves/central) +"dbS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"dce" = ( +/obj/structure/bedsheetbin, +/obj/item/storage/box/attachments{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "dcM" = ( /obj/item/ammo_magazine/revolver/cmb, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) +"dcP" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "dda" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"ddb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "ddc" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 1; @@ -3885,20 +3615,45 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) -"ddY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"ddF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/suit/fire/firefighter{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ddK" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"ded" = ( +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"ddT" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/disposals) +"deb" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 9 +/obj/structure/machinery/recharger{ + pixel_y = 4 }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/dock_control) +"dee" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "deg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/plating, @@ -3916,6 +3671,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"deu" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "deE" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -3924,96 +3691,42 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"deX" = ( -/obj/item/trash/boonie, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) "dfs" = ( /obj/item/storage/belt/utility, /obj/structure/surface/rack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"dfJ" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"dfP" = ( -/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ - pixel_y = 32 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"dgq" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"dgF" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"dgP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/disposals) +"dfB" = ( +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/hall_N) "dgY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"dhp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 +"dhs" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 12 }, -/obj/structure/machinery/disposal, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"dhG" = ( +/obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +/area/varadero/interior/hall_SE) "dhQ" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/colonist, /obj/item/weapon/sword/katana, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"dhV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"dir" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"diu" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/bed/chair/comfy{ - pixel_x = -7; - pixel_y = 18 - }, -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 7; - pixel_y = 12 - }, -/obj/structure/bed/chair/comfy{ - dir = 4; - pixel_x = 7 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"dhR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) +"dhZ" = ( +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "diK" = ( /obj/structure/machinery/power/apc{ dir = 8; @@ -4027,48 +3740,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"diQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"diW" = ( -/obj/structure/disposalpipe/segment{ +"djj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/redcorners/north, -/area/varadero/interior/security) -"djb" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"djh" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor/wood, -/area/varadero/interior/library) -"djC" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/obj/structure/closet/crate/ammo/alt, +/obj/item/storage/belt/utility, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "djH" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/woodentable/fancy, @@ -4081,31 +3760,26 @@ /obj/structure/bed/chair, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"dkl" = ( -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"dkr" = ( -/obj/structure/window/framed/colony/reinforced, +"dkf" = ( +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 11 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/research) -"dkC" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +/area/varadero/interior_protected/maintenance/south) +"dkN" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) "dkS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) -"dkV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) "dlh" = ( /obj/structure/machinery/chem_dispenser/soda{ density = 0; @@ -4114,83 +3788,79 @@ /obj/item/frame/table/wood/poor, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"dlr" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"dlx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"dlv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) +/area/varadero/interior/maintenance/security) "dlD" = ( /obj/structure/prop/rock/brown_degree, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"dlZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lightstick/red{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"dmc" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"dmq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"dmx" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_SE) +"dmK" = ( +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) "dmN" = ( /turf/closed/wall/r_wall/elevator{ dir = 5 }, /area/varadero/interior/records) -"dmP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) "dmR" = ( /obj/structure/surface/rack, /obj/item/storage/pouch/medkit/full_advanced, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"dmS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) "dnh" = ( /obj/structure/machinery/shower{ dir = 8 }, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"dnA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/court) -"dnU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"dnV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"dnq" = ( +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"dnF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/white, -/area/varadero/interior/security) -"dnW" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"doa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/shiva/redfull/west, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"dob" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "dos" = ( /obj/item/clothing/head/helmet, /turf/open/floor/wood, @@ -4199,14 +3869,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"doO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) "doP" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/warning_stripes{ @@ -4221,77 +3883,58 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/varadero/interior/research) -"dpz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Brig"; - req_access_txt = "100" - }, +"dpb" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"dpO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) +/area/varadero/interior/medical) +"dpD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/weapon/gun/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "dpW" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/comms4) -"dpZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/yellowcorners/west, -/area/varadero/interior/cargo) "dqx" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"dro" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"drK" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" +"dqM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/comms2) +"drB" = ( +/obj/structure/prop/dam/van{ + desc = "An older Weyland Yutani space crawler. These things are most commonly seen along former trails on shake and bake colonies."; + icon_state = "crawler_crate_wy"; + name = "crawler"; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"drW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "dsi" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"dss" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"dsz" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"dsC" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"dsp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Underground Requesitions Freezer"; + req_access_txt = "100" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"dtd" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "dtj" = ( /obj/structure/sign/poster/propaganda, /turf/closed/wall, @@ -4306,6 +3949,23 @@ /obj/structure/prop/rock/brown, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) +"dup" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "duw" = ( /obj/effect/decal/cleanable/cobweb2{ pixel_x = 11; @@ -4342,44 +4002,75 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"dvw" = ( -/obj/item/ammo_magazine/handful/shotgun/buckshot{ - pixel_x = -13; - pixel_y = 12 +"dvg" = ( +/obj/item/paper{ + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) -"dvT" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/eastbeach) -"dwN" = ( -/obj/item/tool/wet_sign, -/obj/item/tool/mop, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"dvk" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_1_1" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/mod88, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"dwP" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"dxn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/area/varadero/interior_protected/caves) +"dwz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"dxt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/maintenance) +/obj/structure/machinery/computer/communications, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"dwW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"dxD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "dxK" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) -"dyl" = ( -/obj/effect/spawner/random/tool, +"dxV" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) +/area/varadero/interior/comms2) +"dyg" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "dyo" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -4394,46 +4085,90 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) +"dyx" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/cooler, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/item/reagent_container/food/drinks/cans/souto/lime, +/obj/item/reagent_container/food/drinks/cans/souto/peach, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"dze" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "dzH" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"dzN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 +"dzJ" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"dzS" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 3; - pixel_y = 2 +/turf/open/floor/wood, +/area/varadero/interior/library) +"dAk" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"dBA" = ( -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{ - pixel_x = 10 +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"dBB" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"dCz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 9 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"dCE" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"dAu" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"dBO" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"dCc" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "dDn" = ( /obj/item/shard{ icon_state = "large"; @@ -4442,6 +4177,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"dDp" = ( +/obj/structure/largecrate/random/case/double{ + anchored = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "dDu" = ( /obj/item/tool/wirecutters, /turf/open/floor/wood, @@ -4450,11 +4191,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"dEo" = ( +"dDJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/curtain/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/bunks) +"dDZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, /obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/obj/item/tool/surgery/bonegel/predatorbonegel, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "dEJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -4462,12 +4212,35 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/oob) -"dFd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"dFc" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"dFg" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -13; + pixel_y = 16 + }, +/obj/item/trash/plate{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/xenoburger{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"dFl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "dFm" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/interior/plastic, @@ -4476,6 +4249,12 @@ /obj/structure/prop/fishing/line/long, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) +"dFy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "dFC" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -4496,11 +4275,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"dGh" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) +"dFT" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"dGe" = ( +/obj/item/weapon/gun/smg/nailgun{ + pixel_y = 3 + }, +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple/northeast, +/area/varadero/interior/research) +"dGg" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "dGr" = ( /turf/closed/shuttle{ dir = 1; @@ -4511,18 +4300,18 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"dGR" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 +"dHu" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"dHD" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"dHv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "dHY" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -4561,133 +4350,123 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"dID" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"dIK" = ( +"dIx" = ( /obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 1 - }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"dJI" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"dII" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"dJe" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"dJv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "dJX" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /turf/closed/wall/rock/brown, /area/varadero/exterior/lz2_near) -"dKc" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/hall_N) -"dKy" = ( -/obj/structure/closet/crate/freezer/cooler/oj, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/item/reagent_container/food/drinks/cans/souto/lime, -/obj/item/reagent_container/food/drinks/cans/souto/grape, +"dKd" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"dKs" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"dLN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/area/varadero/interior/maintenance/security) +"dKQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Showers"; + req_access_txt = "100" }, -/turf/open/floor/shiva/north, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"dKY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"dLP" = ( -/obj/item/stool{ - icon_state = "stool_alt" +"dLb" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/medical) -"dMm" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"dLy" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Hangar Power Substation"; + req_access = null }, -/obj/structure/surface/rack, -/obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"dNh" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"dMl" = ( /obj/structure/stairs/perspective{ color = "#b29082"; dir = 1; icon_state = "p_stair_full" }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"dNt" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) -"dNU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) -"dNW" = ( -/obj/structure/machinery/light{ +"dMq" = ( +/obj/structure/filingcabinet/security, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/hall_N) +"dMs" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black{ - pixel_x = -7; - pixel_y = 13 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"dMQ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"dNp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/folder/white{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"dNz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ pixel_x = -6; - pixel_y = 7 - }, -/obj/item/folder/yellow{ - pixel_x = -7 + pixel_y = 13 }, -/obj/item/facepaint/lipstick/jade{ - pixel_x = 5 +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 2 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"dNY" = ( -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"dND" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"dNZ" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves/central) -"dOk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 1; - name = "\improper Underground Medical Laboratory Storage"; - req_access_txt = "100"; + name = "\improper Underground Medical Laboratory"; + req_access = null; req_one_access = null }, -/turf/open/floor/shiva/wredfull, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "dOl" = ( /obj/item/prop/colony/used_flare, @@ -4697,146 +4476,160 @@ /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"dOS" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/pontoon_beach) -"dPR" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/gm/dirt, -/area/varadero/interior/maintenance/north) -"dQe" = ( -/obj/structure/machinery/light{ +"dOn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"dOr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"dQl" = ( -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"dQr" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"dQK" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"dQT" = ( -/obj/structure/bed/chair/comfy/teal, /turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"dOu" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/records) +"dOO" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/beach_bar) +"dPl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Colony Administration"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"dPx" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"dPR" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/gm/dirt, +/area/varadero/interior/maintenance/north) +"dQM" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/red/west, /area/varadero/interior/medical) -"dRs" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"dRI" = ( -/obj/effect/landmark/yautja_teleport, +"dRp" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"dRX" = ( +/area/varadero/interior/maintenance/north) +"dRA" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"dRE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Custodial Closet"; + req_access_txt = "100" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"dSs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"dSA" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" +/area/varadero/interior/security) +"dRV" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 11 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"dSr" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"dTe" = ( -/obj/item/stack/cable_coil/random, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"dTl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/maintenance) +"dSY" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "dTu" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"dTC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) "dTG" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastocean) -"dTS" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"dTN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"dTY" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -1; + pixel_y = 12 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"dUh" = ( -/obj/structure/morgue, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/morgue) -"dUA" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"dUL" = ( -/obj/structure/machinery/light/small{ +/area/varadero/interior/caves/north_research) +"dUf" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"dUg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"dUS" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"dVq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Library"; - req_one_access = null; - req_access = null +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"dUk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"dVA" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" + }, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/wood, /area/varadero/interior/library) -"dWl" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"dWE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/administration) -"dWH" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"dVY" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/mirror{ + pixel_y = 28 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/white, +/area/varadero/interior/toilets) +"dWd" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "dWN" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine{ @@ -4858,15 +4651,57 @@ dir = 5 }, /area/varadero/interior/hall_N) +"dXe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "dXg" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) +"dXk" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/obj/item/prop/almayer/comp_open, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "dXr" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"dXA" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"dXK" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"dXT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) +"dYc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "dYd" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -4874,54 +4709,66 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"dYn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) "dYp" = ( /obj/item/book/manual/hydroponics_beekeeping, /turf/open/floor/carpet, /area/varadero/interior/library) -"dYq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/co2_cartridge{ - pixel_x = 13; - pixel_y = 7 - }, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"dYy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"dYW" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 11 +"dYV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "dYX" = ( /obj/structure/machinery/light, /turf/open/floor/carpet, /area/varadero/interior/library) -"dZT" = ( -/obj/structure/bed/chair{ - dir = 1 +"dZd" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/yellow, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"dZy" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"dZY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/shiva/yellowcorners, /area/varadero/interior/cargo) +"eaa" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) "eat" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"eaA" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "eaC" = ( /obj/item/packageWrap, /turf/open/gm/dirt, @@ -4946,14 +4793,17 @@ }, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"eaQ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "ebi" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"ebj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "ebm" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -4965,154 +4815,92 @@ "ebr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves) -"ebF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"ebJ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"ebO" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"ecr" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 5; + pixel_y = 12 }, -/obj/structure/blocker/invisible_wall/water, +/obj/item/trash/barcardine, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"ebN" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"ecb" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light{ - dir = 1 +/area/varadero/exterior/lz1_near) +"ecH" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "ecX" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"edu" = ( -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/maintenance) -"edD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"edb" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"edQ" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"eea" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"eez" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_10" }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"eeg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/technical_storage) -"efw" = ( +/obj/effect/landmark/corpsespawner/miner, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior_protected/caves) +"eeQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "efy" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/eastocean) -"efU" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "egj" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"egp" = ( -/obj/structure/window/framed/colony, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/turf/open/floor/dark2, -/area/varadero/interior/hall_N) -"egH" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"egJ" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/reagent_container/glass/pressurized_canister, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/technical_storage) -"egV" = ( -/obj/item/ammo_magazine/handful/shotgun/buckshot, -/turf/open/floor/carpet, -/area/varadero/interior/maintenance/north) -"eha" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"egm" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"egT" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"egV" = ( +/obj/item/ammo_magazine/handful/shotgun/buckshot, +/turf/open/floor/carpet, +/area/varadero/interior/maintenance/north) +"egW" = ( +/turf/open/gm/dirt/desert2, /area/varadero/exterior/pontoon_beach) -"ehD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"ehH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) "ehM" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -5147,14 +4935,56 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"eij" = ( -/obj/structure/bed, +"eiA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"eiD" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"eiH" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/shorts/black, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.1; + pixel_x = -5; + pixel_y = 15 + }, +/obj/item/reagent_container/glass/rag{ + pixel_x = 6; + pixel_y = 14 + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/area/varadero/interior/laundry) "eiK" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"eiL" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"eiR" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "ejk" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -5168,31 +4998,28 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ejK" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +"ejo" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/wood, -/area/varadero/interior/library) +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/mess) "ejM" = ( /turf/open/gm/coast/north, /area/varadero/exterior/monsoon) -"ejZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_one_access = null; - req_access = null +"ekc" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"ekg" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/comms3) +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"ekD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "ekE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -5205,49 +5032,57 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"ekO" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +"ekG" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"elv" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "elI" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastocean) -"elO" = ( +"emn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"elP" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/monsoon) -"emt" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"emp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"emt" = ( /obj/structure/tunnel{ id = "north_research_tunnel" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"emC" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel/pict_system, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) "emP" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"enu" = ( +"enx" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"eny" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"enL" = ( +/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"enH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"enU" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/cargo) +/area/varadero/interior/maintenance/security) "enZ" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -5260,27 +5095,37 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"eoq" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "eov" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) -"eoB" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"eoU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "eoV" = ( /obj/structure/prop/resin_prop, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"eoW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"epv" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"epE" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/court) "epN" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -5289,40 +5134,9 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"epO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "epQ" = ( /turf/closed/wall, /area/varadero/interior/morgue) -"epY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"eqe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/toolbox/syndicate{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "eqg" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -5331,62 +5145,31 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"eqn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"eqB" = ( -/obj/structure/bed/chair{ - dir = 8 +"erf" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"ert" = ( +/obj/structure/prop/mech/drill, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"erH" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/sosjerky, +/obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"eqT" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz2_near) -"erE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"erK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/cargo) "erQ" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"esw" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"esz" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/shotgun, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/medical) -"esA" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"esB" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) +"esr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "esK" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -5394,28 +5177,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"esM" = ( -/obj/structure/target/syndicate, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"esO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"etf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"etv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "etE" = ( /obj/structure/filingcabinet{ density = 0; @@ -5431,61 +5192,91 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"etH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) "etV" = ( /obj/item/stack/sheet/metal, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"eue" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) "eul" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/varadero/interior/chapel) -"euH" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tank/emergency_oxygen, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"euM" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_N) -"euS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"euo" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/pontoon_beach/lz) -"evV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"eus" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"euX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"evd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Underground Lavatory"; + req_access_txt = "100" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"evW" = ( -/obj/item/lightstick/variant/planted, +/area/varadero/interior/laundry) +"evj" = ( +/obj/item/stack/tile/plasteel, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"evX" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/area/varadero/interior_protected/maintenance/south) +"evk" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ewv" = ( -/obj/structure/machinery/constructable_frame, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"evm" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"exi" = ( +/obj/structure/surface/rack, +/obj/item/maintenance_jack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"ewS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) +/area/varadero/interior_protected/maintenance/south) "exj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -5497,23 +5288,16 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"exH" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"exX" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"eye" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"exv" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/effect/landmark/corpsespawner/security, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"exN" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "eyt" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/east) @@ -5529,53 +5313,16 @@ /obj/item/frame/table, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"ezc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"ezd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +"ezl" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"ezt" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"ezx" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/sign/safety/waterhazard, -/obj/structure/sign/safety/water{ - pixel_x = 15 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"ezI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/area/varadero/interior/electrical) +"ezJ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "ezU" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -5589,116 +5336,95 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"ezW" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"ezZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"eAG" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"eAJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"eBf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, +"eAF" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"eBm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/area/varadero/interior/electrical) +"eAN" = ( +/obj/structure/closet/crate/construction, +/obj/item/storage/belt/utility/full, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastbeach) +"eBg" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/wood, +/area/varadero/interior/library) "eBs" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 }, /area/varadero/interior/records) -"eBG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"eBL" = ( -/turf/open/floor/freezerfloor, +"eBC" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/wood, +/area/varadero/interior/library) +"eBF" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) -"eBS" = ( -/obj/item/tool/surgery/hemostat/predatorhemostat, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"eBT" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 3 - }, +"eBJ" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"eBN" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"eBR" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/exterior/eastbeach) "eCg" = ( /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"eCj" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison/darkredfull2, -/area/varadero/interior/dock_control) "eCu" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/interior_protected/caves/central) -"eCB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ +"eCP" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"eCW" = ( +/obj/structure/bed/alien{ + can_buckle = 0; + color = "#aba9a9" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ dir = 4; - climb_delay = 1; - layer = 2.99 + pixel_x = -2; + pixel_y = 4 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 3; - pixel_y = 15; - indestructible = 1; - unacidable = 1 +/obj/structure/bed/alien{ + buckling_y = 13; + color = "#aba9a9"; + layer = 3.5; + pixel_y = 13 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"eDd" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) "eDF" = ( /obj/structure/bed/stool{ icon_state = "stool_alt" @@ -5714,17 +5440,17 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"eDY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "eEd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) +"eEB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) "eEY" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 4 @@ -5741,170 +5467,190 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"eFJ" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"eFW" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"eGd" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/machinery/light{ +"eFN" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"eGq" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"eGL" = ( -/obj/item/stack/sheet/plasteel{ - amount = 24 +/turf/open/floor/shiva/redcorners/west, +/area/varadero/interior/security) +"eFO" = ( +/obj/item/clothing/under/shorts/black, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"eFS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"eFV" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"eFZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) +"eGm" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "eGP" = ( /obj/structure/closet/cabinet, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/powercell, /turf/open/floor/wood, /area/varadero/interior/research) +"eGV" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "eGX" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) -"eHl" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/varadero/interior/toilets) -"eHs" = ( -/obj/item/lightstick/variant/planted, -/turf/open/gm/dirt, +"eHa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"eHf" = ( +/obj/item/stool{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"eHl" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/varadero/interior/toilets) +"eHs" = ( +/obj/item/lightstick/variant/planted, +/turf/open/gm/dirt, /area/varadero/exterior/eastbeach) "eHv" = ( /obj/item/stack/sheet/wood/medium_stack, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"eHB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) +"eHX" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "eHZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"eIr" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"eIT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 10 +"eIv" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"eIK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; +/obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"eIV" = ( -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) -"eJI" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/pillbottles{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/packet/bicaridine{ - pixel_x = 6; - pixel_y = -2 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"eIP" = ( +/obj/item/weapon/gun/shotgun/pump, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"eJN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/turf/open/floor/shiva/red/west, +/area/varadero/interior/hall_N) +"eJz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -5; + pixel_y = 5 }, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"eJC" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"eJF" = ( +/obj/structure/catwalk, /obj/structure/barricade/handrail/wire{ - dir = 4 + layer = 3.01 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"eJS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"eJO" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"eKw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"eKF" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"eJQ" = ( +/obj/structure/disposalpipe/segment, +/obj/item/key/cargo_train, +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) +"eJV" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"eKa" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/wood, +/area/varadero/interior/library) +"eKv" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"eKE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/nanopaste, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "eKL" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"eLE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/tool/stamp{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"eLZ" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0 +"eLm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -1; - pixel_y = 12 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"eLG" = ( +/obj/item/stool, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"eMh" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/storage/belt/medical{ + pixel_x = -3; + pixel_y = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "eMi" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -5929,10 +5675,17 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/wood, /area/varadero/interior/court) -"eMD" = ( +"eNc" = ( /obj/structure/tunnel/maint_tunnel, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"eNd" = ( +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/hall_N) "eNk" = ( /obj/item/toy/sword, /obj/item/clothing/head/pirate, @@ -5950,95 +5703,85 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/lz1_near) -"eOh" = ( -/obj/structure/machinery/optable, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"eOu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) "eOv" = ( /obj/item/circuitboard/airlock, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"eOZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"ePb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"eOz" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/north, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) +"ePe" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + density = 0; + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "ePz" = ( /obj/item/explosive/grenade/incendiary/molotov{ pixel_x = 6 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"ePB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"eQa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +"ePG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"ePH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Lobby"; + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"eQf" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) "eQm" = ( /obj/structure/window/framed/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"eQr" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"eQz" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) "eQC" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"eQI" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +"eQK" = ( +/obj/item/paper_bin{ + pixel_y = 6 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"eQZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/tool/pen/blue{ + pixel_x = 7 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flash, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"eRb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "eRD" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/carpet, @@ -6049,37 +5792,55 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"eRM" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"eRO" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 +"eRK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/surface/table, +/obj/item/weapon/gun/flamer, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"eRQ" = ( -/obj/item/tool/screwdriver, -/obj/item/device/multitool, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"eSg" = ( +/area/varadero/interior/electrical) +"eRZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/court) +"eSe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) -"eSo" = ( -/obj/structure/closet/crate/construction, -/obj/item/tool/extinguisher, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/area/varadero/interior_protected/maintenance/south) +"eSj" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"eSu" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) "eTb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -6089,11 +5850,15 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"eTi" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +"eTo" = ( +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/hall_SE) +"eTM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "eTP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -6105,15 +5870,19 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"eUh" = ( -/turf/open/floor/shiva/bluefull/west, +"eTT" = ( +/turf/open/floor/shiva/snow_mat/north, /area/varadero/interior/maintenance) -"eUv" = ( -/obj/structure/pipes/vents/pump{ +"eUi" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) "eUH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -6123,92 +5892,78 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"eVn" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"eVH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"eVU" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"eUJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"eUL" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"eVW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 +/obj/structure/noticeboard{ + pixel_y = 32 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"eWp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"eUO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/obj/structure/machinery/flasher_button{ + id = "sec_checkpoint"; + pixel_y = 24 }, -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"eWR" = ( -/turf/open/floor/shiva/purplecorners/west, -/area/varadero/interior/research) -"eWZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "sec_checkpoint_lock"; + name = "Checkpoint Lockdown"; + pixel_y = 36 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"eVu" = ( +/obj/item/device/multitool, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"eVA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"eXg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/area/varadero/interior/maintenance/research) +"eVN" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/cargo) +"eWr" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"eWJ" = ( +/obj/structure/prop/rock/brown, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"eXr" = ( +/area/varadero/exterior/farocean) +"eWV" = ( /obj/structure/surface/rack, -/obj/item/storage/briefcase, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"eXw" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - name = "barge float"; - desc = "A supportive lattice connected to two floating pontoons." +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, +/obj/item/storage/firstaid/adv, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"eXL" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "eXN" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -6226,40 +5981,65 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"eYe" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"eXY" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"eYG" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"eYM" = ( -/obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"eZc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"eZk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"fao" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_y = 19 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"faq" = ( -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"eYE" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"eZx" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"eZA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"eZJ" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"eZU" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) +"fai" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "fay" = ( /turf/closed/wall/r_wall, /area/varadero/interior/research) @@ -6268,19 +6048,20 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"faP" = ( -/obj/structure/machinery/light{ - dir = 1 +"faF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"faX" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva/yellow/north, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"faW" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "fbr" = ( /obj/effect/landmark/corpsespawner/miner, @@ -6293,16 +6074,6 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) -"fbJ" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) "fbQ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -6317,15 +6088,34 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"fbW" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"fbV" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/tool/surgery/FixOVein/predatorFixOVein{ - pixel_x = -4 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 2; + pixel_y = 15; + indestructible = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"fbX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) "fbZ" = ( /obj/structure/prop/server_equipment/yutani_server, /turf/open/floor/plating, @@ -6335,10 +6125,6 @@ /obj/item/device/camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"fcg" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) "fcp" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, @@ -6347,56 +6133,37 @@ /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"fcK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"fdn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"fdw" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"fcY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"fdi" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"fdD" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"fdA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/maintenance/research) -"fef" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 7; - pixel_y = 13 +/area/varadero/interior/hall_SE) +"feb" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + locked = 1; + name = "\improper Navigation Chamber" }, -/obj/item/implantcase/explosive{ - pixel_x = -3; - pixel_y = 3 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"fek" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "feH" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -6407,33 +6174,15 @@ /obj/structure/barricade/wooden, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"feR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 8 - }, +"feZ" = ( +/obj/structure/girder/displaced, +/obj/structure/prop/invuln/overhead_pipe, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"feV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"feW" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/gm/dirt/desert3, -/area/varadero/interior/maintenance/north) +/area/varadero/exterior/eastbeach) "ffe" = ( /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"ffk" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "ffx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -6441,29 +6190,29 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ffY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"fgI" = ( +/obj/structure/surface/table, +/obj/item/inflatable{ + pixel_x = -5; + pixel_y = 9 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/item/inflatable{ + pixel_x = 6 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"fga" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/inflatable{ + pixel_x = -1; + pixel_y = 7 }, -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"fgS" = ( -/obj/structure/closet/crate/secure, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/technical_storage) +"fgP" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "fgW" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -6474,80 +6223,50 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"fhh" = ( -/obj/item/tool/mop{ - pixel_x = -10; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fhu" = ( -/obj/structure/bed/chair, -/turf/open/floor/asteroidwarning/west, +"fhx" = ( +/turf/open/gm/dirt/desert2, /area/varadero/exterior/lz1_near) -"fhA" = ( -/obj/item/device/flashlight, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"fhM" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/disposals) -"fhV" = ( +"fhE" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -6; +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; pixel_y = 3 }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 7 +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"fhT" = ( +/obj/structure/closet/crate/construction, +/obj/item/grown/log, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) +"fjg" = ( +/turf/open/gm/grass/grass1/weedable, +/area/varadero/interior_protected/caves/swcaves) +"fjq" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"fju" = ( +/obj/structure/machinery/light/small, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"fiv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Staff Canteen" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"fiA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/green/southeast, -/area/varadero/interior/hall_SE) -"fiB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/tool/pen/blue{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/pill_bottle/bicaridine{ - pixel_x = -5; +"fjz" = ( +/obj/structure/surface/table, +/obj/item/tool/weldpack{ + pixel_x = -2; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"fjg" = ( -/turf/open/gm/grass/grass1/weedable, -/area/varadero/interior_protected/caves/swcaves) -"fjv" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"fjx" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = -1 }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "fjC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -6556,6 +6275,16 @@ /obj/item/stack/sheet/metal, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"fjF" = ( +/turf/open/floor/asteroidwarning/east, +/area/varadero/exterior/lz1_near) +"fjG" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_y = 19 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "fjH" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -6565,11 +6294,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"fjK" = ( -/obj/structure/closet/crate/secure, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "fjM" = ( /obj/structure/machinery/conveyor, /obj/structure/pipes/standard/simple/hidden/green{ @@ -6577,40 +6301,22 @@ }, /turf/open/floor/plating, /area/varadero/interior/cargo) -"fjU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) +"fjX" = ( +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "fkd" = ( /obj/item/toy/beach_ball, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"fkj" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) -"fky" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fkE" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"fkF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +"fkp" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"fks" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/maintenance/research) "fkR" = ( /turf/closed/wall, /area/varadero/interior/court) @@ -6624,148 +6330,187 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"fln" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"fmg" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"fmn" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "fmu" = ( /obj/structure/barricade/handrail/wire{ layer = 3.5 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"fmy" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" +"fmv" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"fnj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fnl" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"fmP" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/obj/effect/landmark/static_comms/net_two, +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"fnq" = ( -/obj/effect/spawner/random/technology_scanner, +/area/varadero/interior/maintenance) +"fna" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"fny" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"fnA" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + layer = 3.1; + pixel_y = 7 + }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"fnX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +/area/varadero/interior/electrical) +"fnG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"fof" = ( -/obj/structure/shuttle/engine/heater{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"fnR" = ( +/obj/structure/machinery/storm_siren{ dir = 8; - unacidable = 0 + pixel_x = 3 }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"fob" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -4; + pixel_y = 9 }, -/obj/item/device/flashlight/slime, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"foz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ +/obj/item/storage/bible/booze{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/structure/machinery/firealarm{ dir = 8; - pixel_x = -11 + pixel_x = -24 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"foE" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"fod" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/red{ + pixel_x = -2; + pixel_y = -4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"foF" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) +/obj/item/clothing/head/hardhat/red{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "foQ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"foU" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +"fpd" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 18 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"fpe" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"fpp" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"fpf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8 +/obj/item/trash/plate{ + pixel_y = 7 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "fpq" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/lz2_near) -"fpY" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/research, -/turf/open/shuttle/elevator/grating, -/area/varadero/interior/records) -"fqs" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"fpE" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"fqu" = ( -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"fqY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/area/varadero/interior/maintenance/security) +"fpY" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/research, +/turf/open/shuttle/elevator/grating, +/area/varadero/interior/records) +"fqe" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + locked = 1; + name = "\improper Engine Room" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"fqm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"frQ" = ( -/obj/item/stack/sheet/metal, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +/area/varadero/interior/electrical) +"fro" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"frv" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp78, +/obj/item/weapon/gun/pistol/vp78{ + pixel_y = -4 + }, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) "frR" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"frU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"fsB" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "fsC" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 10; @@ -6782,6 +6527,14 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"ftp" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "ftA" = ( /obj/structure/sign/safety/coffee, /obj/structure/sign/safety/galley{ @@ -6789,28 +6542,26 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/research) -"ftF" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/comms3) -"fuh" = ( -/obj/structure/prop/ice_colony/soil_net, -/turf/open/gm/dirt/desert_dug, -/area/varadero/interior/maintenance/north) -"fuj" = ( -/obj/structure/barricade/wooden, -/obj/structure/safe/floor, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fuF" = ( +"ftJ" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"fuf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "fuS" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/disposals) +"fvc" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) "fvd" = ( /obj/structure/filingcabinet{ density = 0; @@ -6826,13 +6577,21 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fvw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 8 +"fvH" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"fvS" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "fvV" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/machinery/light/small{ @@ -6843,29 +6602,31 @@ "fwo" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"fxK" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"fxg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"fxR" = ( -/obj/item/moneybag{ - anchored = 1; - desc = "A console designed by the Hunters to assist in flight pathing and navigation."; - dir = 8; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "overwatch"; - name = "Hunter Flight Console"; - pixel_x = -17 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"fxr" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/bed/chair/hunter{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"fxD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/crowbar, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) "fxX" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -6874,22 +6635,27 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"fys" = ( +"fxZ" = ( /obj/structure/barricade/handrail/wire{ - layer = 3.01 + layer = 3.1 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"fyq" = ( +/obj/structure/surface/rack, +/obj/item/pizzabox/meat, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"fyO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/catwalk, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"fyH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_1_1" - }, -/turf/open/floor/shiva/redfull, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) "fyP" = ( /obj/structure/surface/table/woodentable, @@ -6900,136 +6666,132 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"fyZ" = ( -/mob/living/simple_animal/cat{ - desc = "A domesticated, feline pet. The collar says 'Orion'."; - name = "Orion"; - real_name = "Orion" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) "fzc" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) -"fzx" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"fzy" = ( -/obj/structure/closet/emcloset, +"fzd" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"fzi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"fAq" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) -"fAs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"fzt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/inaprovaline/skillless{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) +"fzG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"fAA" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"fAH" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "fAO" = ( /turf/open/floor/plating, /area/varadero/interior/technical_storage) -"fAQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) "fBV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"fCB" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"fDB" = ( -/obj/structure/machinery/light{ +"fBX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/yellow/east, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) +"fBY" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"fCw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"fCy" = ( +/turf/open/floor/white, +/area/varadero/interior/toilets) +"fCO" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/eastbeach) +"fCT" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"fDi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "fDH" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"fEb" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"fEm" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"fEu" = ( -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) -"fEz" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +"fEQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/records) -"fEA" = ( -/obj/structure/girder/displaced, -/obj/structure/machinery/light/small{ - dir = 4 +/area/varadero/interior/caves/east) +"fFq" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"fEI" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/obj/item/clothing/under/CM_uniform, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"fER" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"fFm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 3 - }, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"fFs" = ( -/obj/structure/machinery/reagentgrinder{ - pixel_y = 7 - }, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/area/varadero/interior/maintenance/research) "fFw" = ( /obj/item/stack/sheet/wood, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"fFx" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) "fFH" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -7038,27 +6800,25 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"fFI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"fGm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"fGx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/crate/trashcart, +/obj/item/stack/sheet/mineral/plastic{ + amount = 3 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"fFK" = ( -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" +/area/varadero/interior/bunks) +"fGL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/vessel) -"fFO" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/item/tool/screwdriver, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/area/varadero/interior/comms2) "fGM" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -7068,142 +6828,148 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"fGN" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/farocean) "fGP" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"fHf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "fHg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/research) +"fHi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "fHk" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"fHs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"fHo" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 1 }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"fIb" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"fHx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"fIk" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"fJb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"fJU" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"fKd" = ( +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz2_near) +"fKl" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"fKy" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/shiva/green/east, +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"fKD" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"fKL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 3 + }, +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"fJw" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva/redfull, +"fKP" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"fLa" = ( +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) -"fJI" = ( -/obj/item/clothing/gloves/yautja{ - anchored = 1; - can_block_movement = 1; - charge = 1; - charge_max = 1; - color = "#a8a7a5"; - density = 1; - desc = "The ship's on-board self destruct system, let's hope you never have to use it."; - name = "Self Destruct System"; - pixel_y = 24 +"fLj" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/bed/chair/hunter{ - dir = 1 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"fJR" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"fKz" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"fLr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Theta-V Research Laboratory Sample Isolation"; - req_access = null; - req_one_access = null +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"fLn" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = "brg" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"fLE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"fLu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"fLJ" = ( +/turf/open/floor/shiva/purplecorners/west, +/area/varadero/interior/research) "fLY" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach) -"fLZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/comms3) -"fMq" = ( -/obj/item/device/cassette_tape/heavymetal{ - pixel_x = -3; - pixel_y = 3 +"fMk" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - pixel_x = 5; - pixel_y = -3 +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = 6 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "fMI" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"fMP" = ( -/obj/effect/landmark/objective_landmark/far, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) +"fMM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "fNm" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -7222,82 +6988,51 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"fND" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"fOs" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"fOG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "fOO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"fPn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"fOQ" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"fPo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/obj/item/storage/fancy/cigar, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"fPd" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "fPp" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_2" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"fPq" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"fPA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"fPy" = ( -/obj/structure/prop/rock/brown, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "fPJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"fPU" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/flora/pottedplant{ - desc = "How did that get in there?"; - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) "fQh" = ( /obj/item/shard{ icon_state = "large"; @@ -7309,26 +7044,21 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"fQr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"fQE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/mess) "fQK" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"fQW" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +"fQP" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"fQU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "fRl" = ( /obj/structure/largecrate/random/case, /obj/item/spacecash/c10{ @@ -7345,96 +7075,88 @@ /obj/structure/window_frame/colony, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"fTh" = ( -/obj/item/tool/shovel, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"fUn" = ( +"fSe" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"fSU" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"fTs" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"fTH" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/closet/crate/trashcart{ + pixel_y = 8 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/disposals) +"fTV" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "fUs" = ( /obj/structure/machinery/light/small, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"fUC" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"fUF" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +"fUt" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "fUJ" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fUY" = ( -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"fUZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/disposals) -"fVt" = ( -/obj/structure/machinery/door_control{ - id = "colony_sec_armory"; - name = "Colony Secure Armory"; - pixel_y = -26 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) "fVw" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"fVH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"fVJ" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) "fWd" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/eastocean) -"fWn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"fWr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"fWz" = ( -/obj/structure/disposalpipe/segment, +"fWC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"fWA" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"fWE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/coast/beachcorner2/north_west, -/area/varadero/exterior/pontoon_beach/lz) +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "fWR" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -7448,10 +7170,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"fWU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) "fWW" = ( /obj/structure/surface/rack, /obj/structure/surface/rack, @@ -7467,14 +7185,6 @@ /obj/item/ashtray/plastic, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"fXu" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/barcardine, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "fXA" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -7494,107 +7204,57 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fXH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"fXX" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/trash/crushed_cup, -/obj/item/trash/c_tube, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"fYs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"fYA" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_N) -"fYH" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"fYQ" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/medical) -"fZe" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"fZx" = ( -/obj/item/stool{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"fZB" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +"fYb" = ( +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"fZt" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"fZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) -"fZP" = ( -/obj/item/shard{ - icon_state = "medium" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/area/varadero/interior/oob) "fZX" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"gan" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/court) -"gar" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"gaw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/hall_SE) "gaG" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"gaJ" = ( -/obj/effect/spawner/random/tool, +"gaU" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/area/varadero/interior/maintenance/north) +"gaW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"gbg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) "gbE" = ( /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; @@ -7604,13 +7264,19 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) -"gbG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1; - icon_state = "chair" +"gbQ" = ( +/obj/structure/machinery/computer/operating{ + density = 0 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"gcm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "gcB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, @@ -7624,12 +7290,24 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gcK" = ( -/obj/structure/bed/chair{ - dir = 4 +"gdt" = ( +/obj/structure/catwalk, +/obj/structure/filtration/flacculation_arm{ + density = 0; + layer = 2.1 }, -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/cargo) +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"gdu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "gdJ" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -7654,14 +7332,14 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/carpet, /area/varadero/interior/library) -"gdO" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +"gdZ" = ( +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"gec" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "geo" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) @@ -7706,62 +7384,17 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"gfg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"gfj" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "gfk" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gfp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) -"gfr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ +"gfy" = ( +/obj/structure/machinery/storm_siren{ dir = 8; - health = 80 - }, -/obj/item/tool/stamp{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/storage/box/masks{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"gfs" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 4; - pixel_y = 7 + pixel_x = 3 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"gfu" = ( -/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/exterior/lz2_near) "gfA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -7772,19 +7405,53 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"gfG" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"gga" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) "ggk" = ( /turf/closed/wall/r_wall/elevator{ dir = 8 }, /area/varadero/interior/records) +"ggl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 17 + }, +/obj/structure/machinery/recharger, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"ggm" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "ggr" = ( /obj/item/device/binoculars, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"ggT" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) "ggX" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -7792,22 +7459,15 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"gha" = ( -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"ghb" = ( -/obj/item/tool/crowbar, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"ghr" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"ghs" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"ghe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lights, +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"ghh" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) "ghI" = ( /obj/structure/catwalk, /obj/structure/barricade/handrail/wire{ @@ -7818,76 +7478,38 @@ "ghN" = ( /turf/open/gm/coast/south, /area/varadero/exterior/monsoon) -"ghW" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz2_near) -"gia" = ( +"ghO" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/machinery/sleep_console, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"giq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) +/area/varadero/interior/medical) "giN" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"gja" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"gjs" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"gjw" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"gjy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"gjz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"gjr" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "gjC" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"gka" = ( -/obj/structure/machinery/shower{ - dir = 1 +"gjH" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance) +"gjL" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gjM" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "gkk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigar{ @@ -7901,12 +7523,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/varadero/interior/research) -"gkw" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, +"gkn" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +/area/varadero/interior/maintenance/security) "gkx" = ( /obj/item/stack/tile/plasteel{ pixel_y = 6 @@ -7919,73 +7539,71 @@ }, /turf/closed/wall, /area/varadero/interior/maintenance) -"gkG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"gkL" = ( +"gkV" = ( +/obj/structure/machinery/computer/cameras, /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/shiva/bluefull/west, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/administration) -"gkS" = ( +"gln" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "glp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"gms" = ( -/obj/effect/landmark/good_item, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"gmE" = ( -/obj/structure/closet/jcloset, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/laundry) -"gmK" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/red/southeast, +"glA" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"gmL" = ( +/obj/structure/bed, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"gmT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"gmX" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -6 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"gnm" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"gnx" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"gng" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"gnC" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 7 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"gnZ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/white, -/area/varadero/interior/security) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"gnE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "god" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -7998,6 +7616,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"gof" = ( +/obj/structure/closet/crate/secure, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/trash/kepler, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"gop" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "gor" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -8006,71 +7634,137 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"gpJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"goJ" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"goM" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"goP" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"goS" = ( +/obj/item/tool/soap, +/turf/open/floor/white, +/area/varadero/interior/security) +"gpc" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"gpg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"gpq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"gqs" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gqA" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/trash/ceramic_plate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "gqE" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"gqN" = ( -/obj/item/tool/soap, -/turf/open/floor/white, -/area/varadero/interior/security) -"gqX" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" +"gqT" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_N) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"grc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"grm" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "grG" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) +"grP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "grT" = ( /obj/structure/sign/safety/water, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"grV" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/item/paper/crumpled{ + pixel_x = 15; + pixel_y = -9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "gsm" = ( /obj/structure/prop/rock/brown, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"gso" = ( -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"gsq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"gsu" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = 25 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"gsw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/tool/stamp, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) +"gsx" = ( +/obj/item/clothing/head/helmet, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "gsC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz2_near) +"gsN" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "gsP" = ( /turf/open/space/basic, /area/space) @@ -8093,26 +7787,43 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"gtv" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; +"gtk" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"gtn" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/med_large_stack, +/obj/item/trash/boonie, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"gtI" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ pixel_x = 3 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"gtz" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 +/area/varadero/interior_protected/maintenance/south) +"gtX" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"gun" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) +/area/varadero/interior_protected/maintenance/south) +"guw" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "gux" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/decal/cleanable/blood/oil/streak, @@ -8123,50 +7834,32 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"guE" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +"gvl" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "gvo" = ( /obj/item/ore/diamond, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"gvE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"gvF" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/administration) -"gvJ" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"gvM" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/maintenance/north) -"gvR" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"gwB" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"gwC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gvw" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"gwm" = ( +/obj/structure/machinery/flasher{ + id = "sec_checkpoint"; + name = "Checkpoint Flash"; + pixel_x = -32; + pixel_y = 32 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) +/turf/open/floor/shiva/redcorners/north, +/area/varadero/interior/security) +"gwx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "gwD" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -8175,16 +7868,15 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"gwG" = ( -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"gwW" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/sling, -/obj/effect/landmark/objective_landmark/science, -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +"gwE" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"gxg" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "gxi" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -8193,14 +7885,27 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"gxm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance) +"gxv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Sports Center" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "gxQ" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"gxX" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) "gyw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8214,25 +7919,26 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"gyK" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"gyT" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"gyU" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "gyX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/security) -"gze" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/mask/cigarette/ucigarette{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) "gzm" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -8242,62 +7948,29 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gAl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"gAK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"gAV" = ( -/obj/structure/barricade/wooden{ +"gzB" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"gBi" = ( -/obj/item/stool{ - icon_state = "stool_alt" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"gBp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/screwdriver{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/tool/plantspray/pests/old/phosmet{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/item/weapon/wirerod{ - pixel_x = 8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) -"gBM" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"gAy" = ( +/obj/structure/machinery/power/smes/magical{ + capacity = 9e+008; + charge = 9e+008; + dir = 4; + name = "plasma power generator" }, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) +"gBa" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"gBb" = ( +/obj/structure/prop/ice_colony/flamingo, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "gBP" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/platform/kutjevo/smooth{ @@ -8312,10 +7985,13 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"gBV" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) +"gBR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "gBW" = ( /obj/item/stack/sandbags_empty/half, /turf/open/auto_turf/sand_white/layer1, @@ -8329,12 +8005,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"gCi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) +"gCA" = ( +/obj/structure/airlock_assembly, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "gCH" = ( /obj/item/ammo_casing{ dir = 6; @@ -8342,6 +8016,44 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"gCO" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/ammo_magazine/pistol/mod88{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/ammo_magazine/pistol/mod88{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/ammo_magazine/pistol/mod88{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/ammo_magazine/pistol/mod88{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/ammo_magazine/pistol/mod88, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/ammo_magazine/pistol{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol{ + pixel_x = 4 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "gCQ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/machinery/storm_siren{ @@ -8349,6 +8061,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"gCV" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/hall_SE) "gCZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -8368,105 +8088,117 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"gDh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"gDr" = ( -/obj/item/tool/warning_cone, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) -"gDI" = ( -/obj/structure/bed/chair{ - dir = 4 +"gDd" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 3; + pixel_y = 2 }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) -"gEy" = ( -/obj/structure/machinery/light, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva/purple/southwest, -/area/varadero/interior/research) -"gEz" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"gEO" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3{ - pixel_y = -3 +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -2; + pixel_y = -4 }, -/turf/open/floor/shiva/red/southeast, +/turf/open/floor/shiva/red, /area/varadero/interior/security) +"gDp" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"gDr" = ( +/obj/item/tool/warning_cone, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"gDE" = ( +/obj/item/tool/screwdriver, +/obj/item/device/multitool, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"gDI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) +"gEK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz1_near) "gEP" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"gES" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"gFt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/green/west, +"gFl" = ( +/obj/structure/closet, +/obj/item/device/flashlight/lantern, +/obj/item/map/current_map, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"gFo" = ( +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "gFx" = ( /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"gFA" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) "gFH" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"gFW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/administration) +"gFI" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "gFY" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gHH" = ( -/obj/structure/machinery/light{ +"gGa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"gGb" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"gHA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"gHB" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"gHI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + icon_state = "chair" + }, /turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "gHJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"gHT" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"gIB" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"gJs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"gHK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"gIE" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"gJq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "gJy" = ( /obj/effect/overlay/palmtree_r{ @@ -8478,31 +8210,65 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"gKn" = ( -/obj/structure/machinery/light{ - dir = 8 +"gKc" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"gKp" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/court) -"gKs" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/interior/oob) -"gKw" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"gLo" = ( -/obj/structure/machinery/light/small{ +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"gKx" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) +"gKM" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"gKO" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/administration) +"gKZ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"gLg" = ( +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "gLw" = ( /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"gLG" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "gLV" = ( /obj/structure/closet/crate, /obj/item/tool/lighter, @@ -8524,23 +8290,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) -"gMi" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"gMm" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/maintenance/south) "gMp" = ( /obj/structure/surface/table, /obj/item/paper_bin{ @@ -8550,52 +8299,94 @@ /obj/item/tool/pen/red/clicky, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"gMV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +"gMD" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "gNb" = ( /obj/structure/closet/wardrobe/chaplain_black, /turf/open/floor/wood, /area/varadero/interior/chapel) -"gNe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"gNh" = ( +/obj/structure/largecrate/random{ + anchored = 1 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"gNx" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "gNE" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gOe" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/records) +"gNO" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "gOj" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) +"gOo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "gOp" = ( /obj/item/tool/wirecutters, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"gOH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"gOL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"gOY" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "gPi" = ( /turf/open/gm/coast/west, /area/varadero/exterior/monsoon) -"gPA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, +"gPn" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) -"gPG" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz1_near) +"gPw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Disposals"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) "gPL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -8610,24 +8401,14 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"gPZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"gQL" = ( /turf/open/floor/shiva/red/west, /area/varadero/interior/administration) -"gQa" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_3_1" +"gQW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/wredfull, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) "gRj" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -8636,69 +8417,66 @@ /obj/item/grown/log, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gRN" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/bedsheet{ - anchored = 1; - desc = "A console used by the Hunters for navigation purposes."; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "security_cam"; - name = "Hunter Nav Console" +"gRI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"gRS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "gRU" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gSn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"gSC" = ( -/obj/structure/machinery/light/small, +"gSg" = ( +/obj/structure/machinery/constructable_frame, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"gSE" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"gSY" = ( -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -6; - pixel_y = -3 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/area/varadero/exterior/eastbeach) +"gSs" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"gSA" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/administration) +"gSJ" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/hall_NW) "gTe" = ( /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"gTg" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "gTC" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/disposals) +"gTZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/central) +"gUi" = ( +/obj/item/lightstick/variant/planted, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"gUI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = 3; + pixel_y = 17 + }, +/obj/item/tool/weldpack{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "gUP" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -8711,24 +8489,25 @@ /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"gVO" = ( -/turf/open/gm/coast/beachcorner2/south_east, -/area/varadero/exterior/pontoon_beach) -"gVP" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"gVr" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/lz2_near) -"gVQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"gVE" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/shield/riot, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"gVO" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/varadero/exterior/pontoon_beach) +"gVX" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "gWd" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -8739,6 +8518,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"gWq" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"gWz" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "gWL" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, @@ -8763,38 +8550,38 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gXh" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/cargo) -"gXw" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"gXN" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"gXO" = ( -/obj/structure/machinery/light{ - dir = 4 +"gYb" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/comms3) -"gYg" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/exterior/eastbeach) "gYh" = ( /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"gZq" = ( -/obj/effect/landmark/survivor_spawner, +"gYJ" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gYK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"gZu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) +/area/varadero/interior/medical) "gZI" = ( /obj/structure/filingcabinet{ density = 0; @@ -8815,6 +8602,37 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"gZL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"gZN" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/interior/maintenance/north) +"gZV" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"hai" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"hal" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"hap" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) "haq" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -8823,87 +8641,56 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/administration) -"hay" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 5 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = 18 +"hau" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) -"haC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"haK" = ( +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) +"haL" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "haP" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms1) -"haR" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/coast/beachcorner2/north_west, -/area/varadero/exterior/pontoon_beach/lz) -"haT" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"haV" = ( -/obj/structure/closet/crate/secure, -/obj/effect/landmark/objective_landmark/medium, -/obj/item/trash/kepler, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"haX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"hbi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"haZ" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"hck" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"hbD" = ( -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/prop/structure_lattice{ dir = 1; - climb_delay = 1; - layer = 2.99 + layer = 3.1; + pixel_y = 10 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"hbP" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"hca" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"hcz" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/obj/structure/sign/safety/waterhazard, +/obj/structure/sign/safety/water{ + pixel_x = 15 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) +"hcw" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) "hcI" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -8911,29 +8698,24 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"hdo" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz1_near) "hds" = ( /turf/open/gm/coast/north, /area/varadero/exterior/eastocean) -"hdV" = ( +"hdZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/mess) "hej" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hek" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"hen" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) "heu" = ( /obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/power/apc{ @@ -8943,86 +8725,111 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"hfn" = ( +"heP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"hfo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"hfD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Theta-V Research Laboratory Sample Isolation"; + req_access = null; + req_one_access = null }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/north, /area/varadero/interior/research) -"hfR" = ( -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"hfX" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Sample Isolation" +"hfk" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 24; + start_charge = 0 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/varadero/interior/library) +"hfv" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"hfZ" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 +/obj/item/stack/cable_coil/pink{ + pixel_x = -7; + pixel_y = -4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"hgc" = ( -/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"hgB" = ( -/obj/structure/pipes/vents/pump{ +/area/varadero/interior_protected/maintenance/south) +"hgI" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/dock_control) +"hgR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/inflatable, +/obj/item/inflatable/door, +/obj/item/storage/box/engineer, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"hgW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"hhD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) +"hhJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/tools/full, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "hhM" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/north_research) -"hhW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" +"hia" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"hic" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"hiD" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/mess) +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"hie" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"hik" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastocean) "hiE" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"hjf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"hiL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"hiW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) "hjn" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -9032,6 +8839,18 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"hjq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"hjI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "hjK" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/platform/kutjevo/smooth{ @@ -9046,10 +8865,40 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) +"hjW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"hkf" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"hkp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_NW) "hkQ" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) +"hkW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "hkZ" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/red, @@ -9067,44 +8916,11 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"hli" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"hlp" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) "hlw" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"hlF" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"hlG" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "hlK" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses{ @@ -9121,6 +8937,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"hlM" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"hlP" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "hmg" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -9128,29 +8963,10 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"hmh" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz2_near) -"hmm" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/item/device/cassette_tape/pop2{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 7 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"hmp" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) +"hmn" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "hmR" = ( /obj/item/tool/crowbar, /turf/open/gm/dirt, @@ -9161,29 +8977,27 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"hnR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 +"hnv" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"hnJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "hoC" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"hoG" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) +"hoD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "hoK" = ( /obj/item/stack/tile/plasteel{ pixel_x = -4; @@ -9195,33 +9009,86 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance) -"hoU" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" +"hpa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"hpc" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/varadero/exterior/lz1_near) +"hpg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"hpu" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"hpz" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"hre" = ( -/turf/open/gm/dirt, -/area/varadero/interior_protected/caves/digsite) -"hrG" = ( -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_N) -"hrI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/hall_SE) -"hsa" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"hsl" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/oob) +"hqd" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"hqp" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"hqs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"hqZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/redcorners/north, +/area/varadero/interior/security) +"hre" = ( +/turf/open/gm/dirt, +/area/varadero/interior_protected/caves/digsite) +"hrj" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"hrJ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"hrQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "hso" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -9231,17 +9098,18 @@ /obj/structure/sign/safety/high_voltage, /turf/closed/wall/r_wall, /area/varadero/interior/electrical) -"hsx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hsC" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"hsJ" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/obj/item/tool/wet_sign, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"hsF" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "hte" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/vessel) @@ -9260,16 +9128,23 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"htr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "hty" = ( /obj/structure/closet/secure_closet/personal, /obj/item/storage/large_holster/ceremonial_sword/full, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/security) -"htP" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +"htI" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "htU" = ( /obj/structure/machinery/light{ dir = 1 @@ -9287,24 +9162,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/varadero/interior/records) -"huf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"hus" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"hux" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"huy" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "huE" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -9314,99 +9171,75 @@ "huF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/oob) -"hvh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"hvO" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"hwa" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"hwE" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) +"huT" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"hvg" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz1_near) +"hvM" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "hwL" = ( /obj/structure/prop/dam/crane/damaged, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hwN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) "hwP" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"hwZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/demo_scanner{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"hxa" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/administration) +"hxi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"hxN" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "hxO" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"hyd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hxR" = ( +/obj/item/device/flashlight/flare, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"hxV" = ( +/obj/item/device/flashlight/slime{ + mouse_opacity = 0; + invisibility = 1; + indestructible = 1; + alpha = 0 }, -/obj/item/tool/crowbar, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/medical) -"hyp" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"hyr" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"hys" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"hyQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "hyT" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_4" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"hza" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"hzm" = ( -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) +"hzh" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"hzk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/demo_scanner{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/device/reagent_scanner{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "hzx" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, @@ -9423,27 +9256,88 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"hAg" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"hAh" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/wood, -/area/varadero/interior/court) -"hAI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"hzL" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"hzY" = ( +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"hAd" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/clothing/head/hardhat/red{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/white{ + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"hAg" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"hAh" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/varadero/interior/court) +"hAv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"hAC" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"hAH" = ( +/obj/structure/prop/fishing/line/long/part2, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) +"hAU" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/wred/southeast, +/area/varadero/interior/medical) +"hAW" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"hBt" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/administration) +"hBx" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = -4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"hBy" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tank/emergency_oxygen, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "hBA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"hBX" = ( -/turf/open/floor/shiva/purple/southwest, -/area/varadero/interior/research) +"hCr" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/hall_N) "hCw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -9457,22 +9351,54 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"hCZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"hCM" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"hCS" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"hCU" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"hDj" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "undergroundhangarwest"; + unacidable = 1; + name = "Pontoon West Door"; + openspeed = 17; dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"hDk" = ( -/obj/structure/bedsheetbin, -/obj/item/storage/box/attachments{ - pixel_x = -2; - pixel_y = 8 +/turf/open/floor/plating/icefloor/warnplate/east, +/area/varadero/interior/cargo) +"hDm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "hDw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -9481,14 +9407,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hDA" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"hDX" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "hDY" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "windsock"; @@ -9497,21 +9415,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"hEs" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"hEv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastocean) -"hEN" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "hET" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -9520,54 +9423,50 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hFA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"hFE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"hFe" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"hFs" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_y = 19 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "hFM" = ( /obj/structure/window_frame/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"hFO" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"hGb" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/device/flashlight, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "hGl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"hGz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/wredfull, +"hGG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) "hHn" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hHE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" +"hHy" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"hHK" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "hHR" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -9579,20 +9478,39 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/security) -"hIo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 +"hIy" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"hIJ" = ( +/obj/structure/machinery/power/apc{ + pixel_y = -24; + start_charge = 0 }, -/turf/open/floor/wood/wood_broken, -/area/varadero/interior/court) -"hJl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"hIR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed/chair, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/maintenance/research) +"hJn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/paper/janitor{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "hJq" = ( /obj/structure/bed/chair{ dir = 4 @@ -9616,23 +9534,58 @@ /obj/structure/blocker/fog, /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) -"hJO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ +"hKj" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/technical_storage) -"hKe" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"hKp" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"hKu" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"hKB" = ( +/obj/structure/platform/kutjevo/rock{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red, -/area/varadero/interior/hall_N) +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/maintenance/security) "hKK" = ( /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) +"hKX" = ( +/obj/structure/surface/table, +/obj/item/toy/deck/uno{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/trash/eat{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"hLp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/paper/research_notes, +/obj/item/storage/belt/shotgun, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "hLt" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -9645,60 +9598,22 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"hLE" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"hLv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/redfull, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"hLF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"hLQ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva/blue, -/area/varadero/interior/maintenance) -"hLY" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/maintenance) -"hMg" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, +"hMr" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"hMh" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"hMC" = ( -/obj/item/clothing/ears/earmuffs{ - layer = 3.1; - pixel_x = 2; - pixel_y = 18 +/area/varadero/interior/maintenance/research) +"hMv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "hMG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9714,25 +9629,20 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastbeach) -"hMV" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/red/east, +"hMY" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "hNb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"hNc" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) +"hNk" = ( +/obj/item/tool/shovel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "hNq" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -9747,14 +9657,26 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"hOp" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"hNz" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -3 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 6 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"hNH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_x = -6; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/maintenance/security) "hOv" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -9767,9 +9689,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"hPd" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +"hOZ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "hPj" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/security) @@ -9777,28 +9700,34 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hPD" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"hPF" = ( -/obj/item/paper/crumpled, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"hQb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"hPB" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"hQl" = ( -/obj/structure/girder, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"hQo" = ( -/obj/structure/bed/roller, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"hQk" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"hQr" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior/cargo) "hQP" = ( /obj/item/ammo_magazine/handful/shotgun/buckshot{ pixel_x = 4; @@ -9806,33 +9735,23 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"hQV" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ +"hRb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"hRi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"hRs" = ( -/obj/structure/machinery/power/smes/magical{ - capacity = 9e+008; - charge = 9e+008; - dir = 4; - name = "plasma power generator" +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"hRm" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) @@ -9840,17 +9759,55 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"hTd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"hRP" = ( +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/morgue) +"hRR" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/multi_tiles, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"hSr" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) +"hSG" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"hTr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"hTE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light, +/obj/item/circuitboard/computer/powermonitor, +/obj/item/stack/cable_coil/cut{ + pixel_y = 12 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"hTL" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/varadero/interior/toilets) "hTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -9860,72 +9817,119 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/vessel) -"hTQ" = ( -/obj/structure/airlock_assembly, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"hTX" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, +"hTP" = ( +/obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"hTZ" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/closed{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/prop/server_equipment/laptop/closed{ - pixel_y = 9 - }, -/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) -"hUp" = ( +"hUf" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"hUs" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"hUg" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"hUx" = ( -/turf/open/floor/shiva/red/west, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hUk" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"hUl" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"hUq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/security) +"hUt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "hUU" = ( /obj/structure/machinery/requests_console{ icon_state = "req_comp_open" }, /turf/closed/wall, /area/varadero/interior/cargo) -"hUY" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"hVL" = ( -/obj/item/stack/sandbags/large_stack{ - pixel_y = 4; - pixel_x = -12 +"hUW" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz2_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"hVp" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"hVF" = ( +/obj/structure/machinery/space_heater, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"hVM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"hVT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"hVV" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"hWp" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "hWv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"hWA" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) "hWG" = ( /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, @@ -9943,47 +9947,45 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hXq" = ( +"hXE" = ( +/obj/structure/closet/crate/construction, +/obj/item/tool/extinguisher, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/digsite) -"hXv" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +/area/varadero/exterior/eastbeach) +"hXK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "hXR" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"hYp" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/maintenance) -"hZo" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"hXT" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"hZD" = ( -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"hYt" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/cargo) +"hYR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/morgue) "hZE" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/north, /area/varadero/exterior/lz1_near) -"iad" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) -"iah" = ( -/obj/item/tool/pickaxe, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"iat" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +"ias" = ( +/turf/open/floor/asteroidwarning/north, +/area/varadero/exterior/lz1_near) "iax" = ( /turf/open/gm/coast/south, /area/varadero/interior/oob) @@ -9995,10 +9997,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"iaM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "iaO" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 @@ -10008,38 +10006,14 @@ /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"ibi" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"ibo" = ( -/obj/structure/prop/broken_arcade, -/turf/open/floor/wood, -/area/varadero/interior/library) +"ibc" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz1_near) "ibs" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"iby" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"ibP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) "ibV" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, @@ -10062,6 +10036,10 @@ /obj/structure/surface/table, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"icd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "icl" = ( /obj/structure/prop/rock/brown, /turf/closed/wall/rock/brown, @@ -10072,55 +10050,39 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"icn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"ico" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"icJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, +"icp" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"icM" = ( -/obj/structure/bed/chair{ - dir = 8 +"ics" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"icv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 1; + pixel_y = 17 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) -"idn" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/item/weapon/gun/revolver/cmb{ + pixel_y = 2 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + pixel_x = 2; + pixel_y = 8 }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"icz" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/item/clothing/head/uppcap/peaked, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ide" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "idr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/wooden, @@ -10129,25 +10091,25 @@ "idw" = ( /turf/open/floor/wood, /area/varadero/interior/security) -"iet" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/wood, -/area/varadero/interior/library) -"ieu" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/security) -"ifx" = ( -/obj/item/weapon/gun/smg/nailgun{ - pixel_y = 3 +"iee" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purple/northeast, -/area/varadero/interior/research) -"ifB" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"iek" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"ifg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "ifO" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/ice_colony/dense/planter_box/hydro{ @@ -10156,6 +10118,27 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/farocean) +"ifW" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 + }, +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 + }, +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "ifZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -10163,6 +10146,19 @@ /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/wood, /area/varadero/interior/court) +"igc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"igh" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"igA" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/white, +/area/varadero/interior/toilets) "igB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -10177,42 +10173,26 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"igQ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"igU" = ( -/obj/item/roller{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/surface/table, -/obj/item/roller{ - pixel_x = 4; - pixel_y = 14 +"igL" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"ihd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"ihn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"iht" = ( -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"ihz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/item/storage/belt/utility, +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"ihC" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) +/area/varadero/interior/hall_NW) "ihX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -10228,113 +10208,126 @@ "ihY" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"iig" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"iij" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/cargo) +"iiT" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"ijm" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ijK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"iiX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - icon_state = "door_locked"; - locked = 1; - name = "Underground Secure Technical Storage"; - req_access_txt = "100" +/area/varadero/interior/maintenance) +"ijU" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"ijo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"ijO" = ( -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/beach_bar) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "ijZ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) +"ike" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"ikg" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "iks" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"ilQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ikF" = ( +/obj/structure/window/framed/colony, +/obj/structure/noticeboard{ + pixel_y = -32 }, +/turf/open/floor/dark2, +/area/varadero/interior/hall_N) +"ikR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"ilZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Armory"; - req_access_txt = "100" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"ilf" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 14 + }, +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"ilA" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, +/obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"imd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_N) -"imk" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"imu" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/area/varadero/interior/mess) +"ilK" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"imf" = ( +/obj/structure/surface/table, +/obj/item/tool/plantspray/pests, +/obj/item/tool/plantspray/weeds{ + pixel_x = 1; + pixel_y = -2 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/maintenance/research) +"imp" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) "imz" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/records) -"imZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"inj" = ( -/obj/structure/bed/chair{ - dir = 4 +"ins" = ( +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -1; + pixel_y = 22 }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"inN" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"inV" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, +"inL" = ( +/obj/item/facepaint/sunscreen_stick, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/area/varadero/exterior/lz1_near) "ioc" = ( /obj/structure/surface/table/woodentable, /obj/item/evidencebag, @@ -10349,25 +10342,16 @@ /obj/structure/closet/medical_wall, /turf/closed/wall, /area/varadero/interior/medical) -"ior" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"ioA" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) +"iov" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"ioC" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "ipi" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -10379,20 +10363,9 @@ }, /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"ipl" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"ipC" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_3" +"ipC" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_3" }, /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -10400,6 +10373,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"ipP" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ipY" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) "ipZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -10407,67 +10389,39 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"iqv" = ( +"iqF" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"iqU" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"iqW" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - name = "Incendiary Ammunition Order"; - desc = "An order manifest for incendiary ammo that has yet to be filled out." - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "ira" = ( /obj/item/frame/apc, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"irj" = ( -/turf/open/floor/shiva/redcorners/west, -/area/varadero/interior/security) -"irk" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"irw" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 - }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/technical_storage) -"isK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = -6; - pixel_y = 4 +"iru" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_x = 7; - pixel_y = 3 +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) +"irK" = ( +/obj/item/tool/shovel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"ism" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Armory"; + req_access_txt = "100" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/area/varadero/interior/security) "itb" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/varadero/interior/administration) -"itL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "itP" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 @@ -10491,51 +10445,29 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"itZ" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -8; - pixel_y = 7 +"itY" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"iuM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"iuV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"ivg" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/area/varadero/interior/administration) "ivo" = ( /obj/structure/airlock_assembly, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ivD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"ivO" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"ivX" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"iwc" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) "iwf" = ( /mob/living/simple_animal/mouse, /turf/open/floor/wood, @@ -10544,6 +10476,21 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/wood, /area/varadero/interior/court) +"iwi" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/radiation, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"iwk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) "iwo" = ( /obj/structure/filingcabinet{ density = 0; @@ -10579,33 +10526,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"iwV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"ixd" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"ixh" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/vp78, -/obj/item/weapon/gun/pistol/vp78{ - pixel_y = -4 - }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) "ixl" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"ixq" = ( -/obj/item/device/flashlight, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) +"ixn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "ixr" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) @@ -10619,9 +10553,9 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"iyd" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/varadero/exterior/lz1_near) +"ixX" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "iyk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10631,19 +10565,7 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"iyv" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/east) -"izi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"izl" = ( +"iyt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; @@ -10655,12 +10577,30 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"izs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/north, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"iyv" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/east) +"iyx" = ( +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) +"iyA" = ( +/obj/item/stack/sheet/metal, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"iyL" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "izy" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -10668,27 +10608,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"izB" = ( -/obj/item/stool{ - pixel_x = 7; - pixel_y = -6 +"izE" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"izP" = ( -/obj/structure/barricade/handrail/wire{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - layer = 2.991 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/maintenance) -"iAa" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "iAc" = ( /obj/effect/decal/strata_decals/grime/grime4{ dir = 4 @@ -10696,20 +10634,21 @@ /obj/item/clothing/suit/armor/vest, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"iAp" = ( -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +"iAr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) -"iAx" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "iAE" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) +"iAG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "iAP" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -10720,36 +10659,63 @@ "iAX" = ( /turf/open/floor/carpet, /area/varadero/interior/administration) -"iBz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 +"iAY" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"iBS" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper Engine Room" }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"iCd" = ( +/obj/effect/decal/cleanable/blood/drip, /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; pixel_x = -16; pixel_y = 24 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"iCy" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"iCt" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastbeach) "iCB" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) +"iCK" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"iDe" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "iDn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"iDE" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) +"iDI" = ( +/obj/structure/surface/rack, +/obj/item/implantpad, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "iDM" = ( /obj/structure/machinery/bot/medbot{ name = "FOXYBOT 3000"; @@ -10757,11 +10723,14 @@ }, /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) -"iDS" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) +"iDR" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "iEe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -10771,17 +10740,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"iEG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"iEV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood/wood_broken, +/area/varadero/interior/court) +"iEZ" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "iFb" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves/central) -"iFc" = ( -/obj/structure/largecrate/random/mini/chest{ - pixel_x = -7; - pixel_y = -11; - desc = "A chest... filled with the wildest riches!" - }, -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz2_near) "iFm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/guestpass{ @@ -10793,65 +10770,56 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"iFy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 9 +"iFp" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"iFK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 14 +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = 16; + pixel_y = 16 }, -/obj/item/storage/box/pillbottles{ - pixel_x = -4; - pixel_y = 7 +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"iFD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/technical_storage) +/obj/structure/filingcabinet/security, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"iFJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) "iFQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"iFZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"iGm" = ( -/turf/open/floor/wood/wood_broken6, -/area/varadero/interior/court) -"iGM" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"iGS" = ( -/obj/effect/landmark/corpsespawner/engineer, +"iFT" = ( +/obj/structure/closet/secure_closet/security_empty, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"iGt" = ( +/obj/structure/bed/chair, /turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "iHh" = ( /obj/item/weapon/gun/shotgun/pump, /turf/open/floor/carpet, /area/varadero/interior/security) +"iHk" = ( +/obj/structure/reagent_dispensers/beerkeg/alt_dark, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "iHE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"iHN" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastocean) +"iHH" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/technical_storage) "iIc" = ( /obj/item/device/flashlight/slime{ mouse_opacity = 0; @@ -10865,66 +10833,69 @@ /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/wood, /area/varadero/interior/records) -"iIC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"iIL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"iIW" = ( -/obj/structure/surface/table, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ - pixel_x = -6; - pixel_y = 10 +"iIR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/cargo) +"iIV" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) "iIY" = ( /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"iJa" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +"iJg" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"iJr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"iJk" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "iJD" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"iKa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iJP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"iJX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"iKc" = ( +/obj/item/device/flashlight, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"iKp" = ( +/obj/structure/catwalk, +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"iKK" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"iLc" = ( -/obj/structure/surface/table/woodentable, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/maintenance/north) "iLd" = ( /obj/structure/window/reinforced{ dir = 4; @@ -10954,57 +10925,64 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"iLz" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) +"iLh" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz2_near) "iLD" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/mess) -"iMa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/prop/magazine/boots, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"iMp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/hall_SE) -"iMM" = ( +"iLW" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"iMb" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) +"iMg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"iNh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"iNr" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"iMj" = ( +/turf/open/floor/wood, +/area/varadero/interior/library) +"iMS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"iNE" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"iMY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"iNP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) +"iNY" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"iOb" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/chips, /turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"iNU" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/device/flashlight, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/area/varadero/interior/cargo) "iOi" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -11012,15 +10990,57 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"iOu" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "iOv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"iOB" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "iOQ" = ( /obj/structure/bed/chair/office/dark, /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, /area/varadero/interior/records) +"iOZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) +"iPa" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"iPg" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"iPh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "iPw" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -11033,43 +11053,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"iPH" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/comms3) -"iPI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"iQl" = ( -/obj/item/storage/firstaid, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"iQr" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"iQs" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/item/reagent_container/food/snacks/wrapped/chunk{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"iQS" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +"iQm" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"iQQ" = ( +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) "iRw" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -11077,77 +11066,59 @@ /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"iRR" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"iRZ" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"iSi" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"iRC" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/caphat{ + pixel_x = 2; + pixel_y = 9 }, +/obj/item/clothing/head/cmcap, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"iSz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"iSC" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/clothing/suit/storage/marine/veteran/dutch{ - layer = 3.1 +/area/varadero/interior/bunks) +"iRQ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/item/clothing/under/gimmick/dutch, -/obj/item/clothing/head/helmet/marine/veteran/dutch/cap{ - pixel_y = 8 +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_bishop{ + pixel_x = -10; + pixel_y = 15 }, -/obj/structure/window/reinforced, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"iSO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -4; - pixel_y = 9 +/obj/item/reagent_container/blood/empty{ + pixel_x = 6; + pixel_y = 5 }, -/obj/item/storage/bible/booze{ - pixel_x = 10; - pixel_y = 2 +/obj/item/storage/box/cups{ + pixel_x = -13; + pixel_y = 3 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"iSk" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"iSt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"iSG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"iST" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "iSW" = ( /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"iTd" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"iTF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) "iTP" = ( /obj/structure/filingcabinet{ density = 0; @@ -11168,29 +11139,7 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"iUx" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"iUH" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"iUZ" = ( -/obj/structure/ore_box, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"iVt" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/electrical) -"iVD" = ( +"iUe" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; @@ -11202,38 +11151,129 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) -"iWf" = ( -/obj/structure/bed/chair/office/light{ +"iUS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"iUU" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"iUY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"iUZ" = ( +/obj/structure/ore_box, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"iVn" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva/wredfull, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -10; + pixel_y = 15 + }, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"iVr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"iVG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"iVI" = ( +/obj/item/device/mass_spectrometer, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"iVL" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"iWa" = ( +/turf/open/floor/shiva/red/north, /area/varadero/interior/medical) "iWj" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"iWE" = ( -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_10" +"iWr" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/landmark/corpsespawner/miner, +/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"iWK" = ( +/area/varadero/interior/maintenance/security) +"iWs" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"iWA" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "iWX" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"iXg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/nam{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/device/cassette_tape/ocean{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/device/cassette_tape/pop2, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"iXl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "iXy" = ( /obj/item/tool/warning_cone, /obj/structure/prop/invuln/lattice_prop{ @@ -11243,72 +11283,70 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"iXR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -13; - pixel_y = 11 +"iXI" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"iXX" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"iYb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -10; - pixel_y = 15 + dir = 4 }, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/administration) "iYi" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 }, /area/varadero/interior/records) +"iYt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "iYE" = ( /obj/item/device/camera_film, /turf/open/floor/wood, /area/varadero/interior/security) -"iZj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"iZl" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"iZp" = ( +/obj/item/device/flashlight/lamp/tripod{ + pixel_x = 7; + pixel_y = 18 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"iZs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"iZt" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"iZx" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "cargobay"; - name = "Cargo Bay Lock"; - pixel_y = 20 +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) +"iZB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) -"iZH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) "iZP" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -11317,71 +11355,54 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"iZT" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/obj/item/shard{ - icon_state = "medium" +"jau" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/maintenance) -"jab" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"jai" = ( -/obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "jaF" = ( /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) -"jaL" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/yellow, +"jbs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"jbx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/medical) +"jbD" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"jbM" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) -"jbh" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"jbV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/administration) -"jbR" = ( -/obj/item/device/flashlight/lamp/tripod{ - pixel_x = 7; - pixel_y = 18 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) +"jce" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "jcr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/swcaves) -"jcz" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/technical_storage) -"jcB" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"jcC" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) "jcT" = ( /turf/closed/wall, /area/varadero/interior/maintenance) @@ -11403,111 +11424,121 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) +"jdN" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"jdQ" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/varadero/interior/toilets) "jek" = ( /turf/open/gm/coast/west, /area/varadero/exterior/eastocean) -"jeo" = ( -/obj/item/tool/mop, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"jew" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -6; - pixel_y = 3 +"jeE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"jeM" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) "jeO" = ( /obj/structure/machinery/conveyor, /obj/structure/plasticflaps, /turf/open/floor/plating, /area/varadero/interior/cargo) -"jeT" = ( -/obj/item/weapon/harpoon/yautja{ - anchored = 1; - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; +"jeP" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" + climb_delay = 1; + layer = 2.99 }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/caves/digsite) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "jeW" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"jfn" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 +"jeX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/barricade/handrail/wire{ +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/court) -"jfw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "jfA" = ( /obj/item/device/motiondetector/hacked, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"jfD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"jfP" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/shiva/snow_mat, +"jfI" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"jgL" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/varadero/exterior/lz1_near) -"jgQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"jgv" = ( +/obj/item/storage/donut_box{ + pixel_y = 8 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"jgA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/hypospray/tricordrazine{ + pixel_x = -14; + pixel_y = 2 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "jgV" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"jgY" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/records) -"jhe" = ( -/obj/structure/bed/chair, +"jgW" = ( /obj/structure/machinery/alarm{ - pixel_y = 24 + dir = 4; + pixel_x = -24 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) +"jhs" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/comms3) "jhu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -11521,48 +11552,30 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"jhv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"jhK" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"jhL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"jhM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"jim" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"jiw" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"jhW" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"jif" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/flashlight, +/area/varadero/exterior/lz2_near) +"jiN" = ( +/obj/structure/prop/turbine_extras/left, +/obj/item/tool/crowbar, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"jjg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms1) +"jje" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "jjj" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -11592,60 +11605,84 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) +"jjt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "jju" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"jjE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"jjN" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/interior/maintenance/north) -"jjS" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/maintenance/north) -"jjZ" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor/asteroidplating, +"jjy" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"jkq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/tarbacks{ - pixel_x = -7; - pixel_y = 8 +"jjC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/tool/lighter/zippo/black{ - pixel_x = -5; - pixel_y = 7 +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"jjO" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/ashtray/plastic{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) +"jkb" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) -"jks" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"jlt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 9; - pixel_y = 10 +/area/varadero/interior_protected/maintenance/south) +"jko" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/shiva/red/northwest, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"jkO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"jkX" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) +"jlj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"jlK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "jmb" = ( /obj/structure/cable/heavyduty{ @@ -11660,22 +11697,54 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"jnq" = ( +"jmB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) +"jmO" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"jns" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_y = 7 + }, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"jnx" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"jnK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"jnA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"jnL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"jnO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"jnT" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) "joe" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" @@ -11687,10 +11756,20 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"joN" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) +"jou" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"joE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"joL" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "joO" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/structure/cable/heavyduty{ @@ -11698,10 +11777,18 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"joS" = ( +/obj/structure/inflatable/door, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "joV" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"jpi" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "jpm" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -11710,36 +11797,15 @@ }, /turf/open/floor/plating, /area/varadero/interior/cargo) -"jps" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/c_tube, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"jpC" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "jpD" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves) -"jpM" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, +"jpU" = ( /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"jpZ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/area/varadero/interior/electrical) "jqd" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/spoke{ @@ -11748,6 +11814,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"jqn" = ( +/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ + pixel_y = 32 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "jqu" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva, @@ -11756,19 +11829,19 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"jqJ" = ( -/obj/structure/disposalpipe/segment, -/obj/item/key/cargo_train, -/turf/open/floor/shiva/yellowcorners, -/area/varadero/interior/cargo) -"jqK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +"jqF" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = -4 }, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"jrd" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/varadero/exterior/lz1_near) "jrq" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -11782,29 +11855,6 @@ /obj/structure/prop/invuln/overhead_pipe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jrv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"jsf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/security) -"jsh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) "jsx" = ( /obj/item/prop/almayer/comp_open, /obj/structure/surface/table, @@ -11815,69 +11865,41 @@ /obj/item/device/flashlight, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jsO" = ( -/obj/structure/machinery/light{ +"jtc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"jts" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"jtx" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 9 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"jtB" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "clfship" }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"jty" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_N) -"jtH" = ( -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz2_near) -"jtI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 9 +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"juj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"jut" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"juR" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/shiva/red/north, +/turf/open/floor/shiva/red, /area/varadero/interior/security) -"jtU" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/electrical) -"jub" = ( -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0; - desc = "A globe designed by the hunters to show them the location of prey across the hunting grounds."; - icon = 'icons/turf/walls/hunter.dmi'; - icon_state = "globe"; - name = "Hunter Globe"; - pixel_y = 16 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"juL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) "juW" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms3) @@ -11894,22 +11916,35 @@ /obj/item/ammo_magazine/handful/lever_action, /turf/open/floor/carpet, /area/varadero/interior/research) -"jvh" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"jvF" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/multi_tiles, +"jvz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/stack/sheet/plasteel{ + amount = 24 + }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) +"jvV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "jwf" = ( /obj/structure/platform_decoration/kutjevo, /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"jwy" = ( -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) "jwX" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, @@ -11921,83 +11956,101 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"jxi" = ( +"jxC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/shield/riot, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"jxK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"jyq" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"jxZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"jyw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"jyv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Colony Offices"; + req_access_txt = "100" }, -/obj/item/clothing/mask/cigarette/cigar{ - desc = "Manufactured in New Space Cuba, a product of Castro LTD."; - name = "comically large cigar"; - pixel_y = 7 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"jyK" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 5; - pixel_y = 12 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"jzB" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"jyN" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"jzL" = ( +/area/varadero/interior/maintenance/north) +"jzo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"jzx" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"jzZ" = ( -/turf/open/floor/carpet, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"jzV" = ( +/obj/structure/prop/rock/brown{ + layer = 2 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/vessel) +"jzZ" = ( +/turf/open/floor/carpet, /area/varadero/interior/library) -"jAx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"jAf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "jAI" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"jBl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/prop/static_tank/water{ - pixel_y = 8 +"jAZ" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"jBp" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "jBw" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 4; @@ -12005,63 +12058,45 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"jCr" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"jCs" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"jCA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Technical Storage"; - req_access_txt = "100" +"jBQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"jCE" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ +/obj/structure/bed/chair/office/dark{ dir = 1; - name = "Underground Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null + pixel_x = -5; + pixel_y = 6 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"jCN" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"jCl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"jDe" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"jDO" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/administration) -"jDW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"jCm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"jCs" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) +"jDS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "jEv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -12073,6 +12108,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"jEw" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/security) "jEG" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -12081,11 +12120,43 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"jEZ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, +"jFi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"jFl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior_protected/maintenance/south) +"jFp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = 2; + pixel_y = 20 + }, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/technical_storage) "jFt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/wood/normal{ @@ -12096,64 +12167,69 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"jFL" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/monsoon) -"jGk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"jGm" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"jGz" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"jFB" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"jGA" = ( -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"jFF" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"jFR" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/lz2_near) +"jFS" = ( +/obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"jGT" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ +/area/varadero/interior/maintenance) +"jFZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"jGg" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"jGU" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) "jHb" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"jHI" = ( -/obj/structure/machinery/light, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 +"jHf" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/closet/radiation, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"jHn" = ( +/obj/structure/surface/table, +/obj/item/trash/chips{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"jHo" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) +"jHw" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "jHJ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/toolbox/mechanical{ @@ -12166,20 +12242,27 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"jIo" = ( +"jHR" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/mask/cigarette/weed{ - pixel_x = -11; - pixel_y = 16 +/obj/item/storage/donut_box{ + pixel_y = 9 }, -/obj/item/clothing/mask/cigarette/weed{ - pixel_x = -9; - pixel_y = 13 +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"jIe" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"jIK" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "jJf" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/gm/coast/beachcorner/north_west, @@ -12188,17 +12271,11 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) -"jJp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/stack/sheet/plasteel{ - amount = 24 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +"jJB" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "jJC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -12208,35 +12285,43 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jJX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 1; - name = "\improper Underground Security Interrogation Observation"; - req_access_txt = "100" +"jJQ" = ( +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/records) +"jJW" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"jKs" = ( +/obj/structure/catwalk, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"jKn" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"jKz" = ( -/obj/structure/machinery/holosign/surgery{ - id = "otice" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Underground Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"jKt" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_N) +"jKG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/far, +/obj/item/trash/crushed_cup, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "jKK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12267,29 +12352,64 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"jLS" = ( -/obj/structure/platform_decoration/kutjevo{ +"jLL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "jLU" = ( /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"jMq" = ( +"jLW" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"jLX" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_SE) +"jMc" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, /obj/structure/barricade/handrail/wire{ - layer = 3.01 + layer = 3.1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"jMe" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + desc = "A high-power hydroelectric generator."; + name = "hydroelectric generator" + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"jMi" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"jMG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"jMr" = ( /turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/administration) -"jMK" = ( -/obj/effect/landmark/objective_landmark/science, +"jMH" = ( /turf/open/floor/shiva/purple/northwest, /area/varadero/interior/research) +"jNd" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/pontoon_beach) +"jNj" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) "jNn" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, @@ -12300,10 +12420,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"jNS" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva/wred/northeast, -/area/varadero/interior/medical) "jNT" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/woodentable, @@ -12321,45 +12437,36 @@ /obj/effect/decal/strata_decals/grime/grime4, /turf/open/floor/wood, /area/varadero/interior/bunks) -"jNW" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/multi_tiles/west, +"jOt" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) -"jOR" = ( -/obj/structure/closet/secure_closet/security_empty, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"jPe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 - }, +"jOv" = ( +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"jPh" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_x = -2; - pixel_y = -3 +/area/varadero/interior/research) +"jPD" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"jPC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) "jPM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12372,22 +12479,31 @@ "jQa" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"jQe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"jQg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"jQl" = ( +/obj/structure/bed/chair/comfy/teal, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"jQq" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security"; - req_access_txt = "100" +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) +"jQr" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"jQA" = ( +/obj/structure/surface/rack, +/obj/item/broken_device{ + desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "jQB" = ( /obj/structure/surface/table/woodentable, /obj/item/clipboard, @@ -12398,42 +12514,27 @@ /obj/item/tool/pen/blue, /turf/open/floor/wood, /area/varadero/interior/security) -"jQG" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced, -/obj/item/clothing/head/fedora, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"jQM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, +"jRf" = ( +/obj/item/clothing/head/helmet, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"jRu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 +/area/varadero/interior/maintenance/security) +"jRh" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"jRW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"jSd" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 +/obj/structure/filingcabinet{ + pixel_x = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/administration) "jSN" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/woodentable{ @@ -12441,125 +12542,71 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"jSP" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/jackhammer, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) "jSX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pontoon_beach) +"jSY" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "colony_sec_armory"; + name = "Secure Armory" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "jTj" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" }, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"jTL" = ( -/turf/open/floor/bcircuit, -/area/varadero/interior/maintenance/north) "jTR" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) -"jTY" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"jUt" = ( -/obj/item/tool/weldingtool/experimental, +"jUd" = ( +/obj/item/tool/wrench, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"jUM" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/white, -/area/varadero/interior/security) -"jUY" = ( -/obj/structure/bed/chair/hunter, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"jVl" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/hall_N) -"jVK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/area/varadero/interior/comms2) +"jUv" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) "jWA" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"jXn" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 - }, +"jWC" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/interior/maintenance/north) +"jWM" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "jXp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"jYl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"jYs" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/storage/large_holster/katana/full, -/turf/open/floor/strata/grey_multi_tiles, +"jYq" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) -"jYX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper{ - layer = 2.99; - pixel_x = 4; - pixel_y = 4 +"jYM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/device/camera{ - pixel_x = -5; - pixel_y = 9 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "jYZ" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"jZw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) "jZE" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, @@ -12586,53 +12633,36 @@ /obj/item/clothing/suit/storage/bomber/alt, /turf/open/floor/wood, /area/varadero/interior/bunks) -"jZO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"kap" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"jZR" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"kaY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/inaprovaline/skillless{ - pixel_x = 7; - pixel_y = 9 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"kaj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/storage/pill_bottle/packet/oxycodone{ - pixel_x = -4; - pixel_y = 8 +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"kaq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"kbp" = ( -/obj/structure/janitorialcart, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"kaI" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"kby" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "kbQ" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"kca" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) "kce" = ( /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) @@ -12640,51 +12670,70 @@ /obj/item/stack/sandbags_empty/full, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"kcE" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 5 +"kcz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"kdf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"kcP" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/maintenance) +"kdg" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"kdm" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "kdq" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/rock/brown, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"kdV" = ( -/obj/structure/machinery/light{ +"kdI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"kdN" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/sheet/metal, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"ket" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/warnplate, -/area/varadero/interior/maintenance/north) -"keb" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"keE" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"keF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"keN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/shiva/floor3, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) "keY" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -12696,22 +12745,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"kfj" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "kfG" = ( /turf/closed/wall, /area/varadero/interior/caves/east) -"kfJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 - }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) +"kfK" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "kgm" = ( /obj/effect/vehicle_spawner/van/decrepit{ layer = 3.1 @@ -12725,75 +12765,89 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/records) +"kgz" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "kgA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastbeach) -"kgC" = ( -/obj/structure/prop/static_tank{ - pixel_y = 8 +"kgO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.01 +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"kha" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"khb" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/hall_SE) +"khG" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) +"khR" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"khB" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"khW" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/obj/structure/barricade/handrail/wire{ +/turf/open/floor/shiva/greencorners/north, +/area/varadero/interior/hall_SE) +"kix" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/firealarm{ dir = 8; - layer = 2.991 + pixel_x = -24 }, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/technical_storage) +"kiF" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/maintenance) -"kif" = ( -/obj/structure/ladder, +/obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/farocean) -"kin" = ( +/area/varadero/interior_protected/maintenance/south) +"kiO" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/pillbottles{ + pixel_x = -7; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"kiE" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/maintenance) -"kiG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/storage/pill_bottle/packet/bicaridine{ + pixel_x = 6; + pixel_y = -2 }, -/obj/item/clothing/under/CM_uniform, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"kiW" = ( +/obj/structure/bedsheetbin, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"kjp" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/area/varadero/interior/laundry) +"kjd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "kjr" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -12802,17 +12856,42 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"kjI" = ( -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"kjt" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"kjA" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "kjN" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/interior/caves/east) +"kjO" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) +"kjQ" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "kkc" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"kkq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "kkt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -12825,120 +12904,72 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"kkw" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"kkx" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) "kkF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) -"klf" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"kli" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"klu" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"klP" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/storage/belt/medical{ - pixel_x = -3; - pixel_y = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) +"klo" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "klT" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/research) -"klY" = ( -/obj/item/cell/high, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"kmb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +"klU" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) +"kmn" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"kmo" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"kmu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"kmI" = ( -/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/central) +/area/varadero/interior_protected/maintenance/south) "kmW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/interior_protected/caves/central) -"knN" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, +"knM" = ( +/turf/closed/wall/rock/brown, +/area/varadero/exterior/pontoon_beach/lz) +"kox" = ( +/obj/structure/closet/crate/medical, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/obj/item/tool/surgery/surgicaldrill, +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"koB" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"koZ" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 8; climb_delay = 1; layer = 2.99 }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/pontoon_beach) +"kpq" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"knP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"kof" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"koZ" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "kpF" = ( /obj/structure/filingcabinet{ @@ -12952,26 +12983,33 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/varadero/interior/research) -"kpN" = ( -/obj/structure/machinery/light{ - dir = 1 +"kqf" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"kqm" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"kpS" = ( -/obj/item/clothing/head/helmet, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"kqe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"kqo" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior/comms2) "kqs" = ( /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/sand_white/layer1, @@ -12980,23 +13018,21 @@ /obj/structure/window/framed/colony, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kqE" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "kqN" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"kqQ" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"krl" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) +"kre" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + icon_state = "door_locked"; + locked = 1; + name = "Underground Secure Technical Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) "krL" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green, @@ -13006,12 +13042,10 @@ /obj/item/paper, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"krP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) +"krO" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "ksf" = ( /obj/structure/machinery/light{ dir = 4 @@ -13022,10 +13056,22 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"ksn" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +"ksh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"kso" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_3_1" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "ksu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -13042,24 +13088,50 @@ "ksX" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) -"ktN" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"kta" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/warning_stripes, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ktd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"ktf" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"ktk" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"kul" = ( -/obj/item/pizzabox/meat{ - pixel_x = -5; - pixel_y = 13 +/area/varadero/interior/electrical) +"ktn" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"kus" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"ktA" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ktF" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) "kuE" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -13068,6 +13140,14 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"kuG" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/medical) +"kuJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) "kuO" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -13075,23 +13155,46 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"kuX" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"kvx" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"kvz" = ( -/obj/effect/decal/cleanable/blood/oil/streak, +"kuR" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/eat, +/obj/item/trash/cheesie, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"kvh" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/item/clothing/under/shorts/grey, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"kvp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +/area/varadero/interior/maintenance) "kvC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"kvD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/court) "kvG" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -13099,61 +13202,91 @@ }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"kvQ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = 1 +"kwA" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"kwC" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) +"kwR" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"kvS" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/wire{ - dir = 4 +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"kwB" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/cargo) "kxe" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/interior_protected/caves/central) -"kxU" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" +"kxo" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"kxI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"kyh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"kxK" = ( +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"kxM" = ( +/obj/item/device/camera{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/evidencebag{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"kxQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"kxR" = ( +/obj/structure/prop/rock/brown, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "kyj" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) +"kyk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"kyo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "kyp" = ( /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"kyr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "kyz" = ( /obj/structure/machinery/door/airlock/almayer/engineering/autoname, /turf/open/floor/wood, @@ -13165,38 +13298,16 @@ "kyG" = ( /turf/closed/wall, /area/varadero/interior/disposals) -"kyI" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"kyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"kyL" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) "kyP" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"kzo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +"kyW" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) "kzp" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, @@ -13212,21 +13323,25 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"kzJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"kAl" = ( -/obj/structure/largecrate/random, +"kzF" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"kAi" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/interior/caves/north_research) "kAm" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"kAC" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/retractor/predatorretractor, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "kAH" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" @@ -13245,6 +13360,17 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"kBd" = ( +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"kBk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "kBo" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -13261,84 +13387,56 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"kBZ" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior/maintenance/security) -"kCb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"kCy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -7 +"kBC" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"kBD" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"kCA" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"kCT" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"kBY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Underground Security Lobby"; - req_access_txt = "100" + icon_state = "pipe-c" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"kDd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"kBZ" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior/maintenance/security) +"kCh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"kCn" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -1; + pixel_y = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_y = 9 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"kCt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) -"kDh" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +"kCI" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "kDk" = ( /obj/item/tool/screwdriver, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"kDF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"kDH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"kDJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"kDO" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, -/obj/item/trash/chunk, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "kEB" = ( /obj/structure/prop/invuln/static_corpse/afric_zimmer{ desc = "A card lays in his lap. 'Happy birthday, Steve. Here's to another fruitful year!'"; @@ -13348,30 +13446,16 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kEK" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"kEV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, +"kFf" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"kFn" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"kFH" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/device/flashlight/flare, -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz2_near) -"kFT" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/cargo) +"kFM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "kFV" = ( /obj/structure/largecrate/random/mini/med{ @@ -13381,52 +13465,22 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"kGo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kGa" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) +"kGm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "kGq" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"kGB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"kGD" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/pontoon_beach) -"kGF" = ( -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/tool/pen/blue{ - pixel_x = 7 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flash, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) "kGJ" = ( /turf/open/gm/coast/east, /area/varadero/exterior/eastocean) @@ -13434,6 +13488,21 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_NW) +"kGN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"kHz" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"kIa" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "kIb" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -13457,25 +13526,34 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"kIz" = ( +"kIs" = ( +/obj/structure/catwalk, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"kJc" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"kJo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"kJx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"kIJ" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/varadero/exterior/lz1_near) -"kIK" = ( +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) +"kKq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"kKM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"kIV" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; pixel_x = -16; @@ -13483,10 +13561,11 @@ }, /obj/structure/prop/invuln/overhead_pipe{ dir = 4; + pixel_x = 12; pixel_y = 13 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior_protected/maintenance/south) "kKS" = ( /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) @@ -13503,130 +13582,131 @@ /obj/item/paper_bin, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"kLd" = ( -/turf/open/floor/shiva/red/west, -/area/varadero/interior/administration) -"kLA" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 +"kLj" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"kLl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"kLx" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "kLF" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"kMe" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) +"kLN" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "kMf" = ( /obj/structure/window/framed/colony/reinforced/tinted, /turf/open/floor/plating, /area/varadero/interior/security) -"kMi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"kMo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + icon_state = "door_locked"; + id = "engine_electrical_maintenance"; + locked = 1; + name = "Underground Power Substation"; + req_access_txt = "100" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"kMp" = ( +/mob/living/simple_animal/cat{ + desc = "A domesticated, feline pet. The collar says 'Orion'."; + name = "Orion"; + real_name = "Orion" }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"kMy" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"kNa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit" }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"kME" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating, +/area/varadero/interior/toilets) +"kNq" = ( +/obj/structure/dispenser, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"kNy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"kMN" = ( -/obj/structure/machinery/flasher{ - id = "sec_checkpoint"; - name = "Checkpoint Flash"; - pixel_x = -32; - pixel_y = 32 +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"kOx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/shiva/redcorners/north, -/area/varadero/interior/security) -"kMU" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"kNa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"kOE" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - name = "\improper Toilet Unit" + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating, -/area/varadero/interior/toilets) -"kNe" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 14 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/item/tool/mop{ - pixel_x = -10; - pixel_y = 11 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"kOV" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"kPc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Brig"; + req_access_txt = "100" }, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"kNN" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"kPu" = ( +/obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"kOS" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/varadero/interior/maintenance/security) +"kPB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/yellow/west, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) -"kPj" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/mess) -"kPX" = ( -/obj/structure/surface/table, -/obj/item/toy/deck/uno{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/trash/eat{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) +"kPV" = ( +/obj/item/tool/wet_sign, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "kPZ" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"kQb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "kQy" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -13639,36 +13719,23 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"kRp" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/item/device/flashlight/lamp/tripod, +"kQV" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance/security) +"kRe" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "kRH" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/lz1_near) -"kRU" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 2; - pixel_y = 15; - indestructible = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +"kRX" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "kSd" = ( /obj/structure/machinery/alarm{ dir = 1; @@ -13677,40 +13744,19 @@ /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"kSz" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"kSD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"kSr" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"kSN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"kSF" = ( +/obj/structure/bedsheetbin{ + pixel_y = 4 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"kTo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/administration) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) "kTs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -13721,34 +13767,71 @@ /obj/item/tool/pickaxe/silver, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"kTD" = ( -/obj/structure/machinery/computer/cameras{ - pixel_y = 6 +"kTJ" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/obj/structure/surface/table, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/hall_N) -"kTG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"kTT" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) -"kTI" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/white, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "kUj" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/random/toolbox, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kVp" = ( -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/cargo) +"kUy" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) +"kUE" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"kUK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"kUM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"kUS" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "kVq" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -13756,13 +13839,6 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"kVE" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) "kVL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -13777,94 +13853,35 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"kWf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"kVZ" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/research_notes, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "kWj" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/carpet, /area/varadero/interior/bunks) +"kWq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "kWB" = ( /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"kWR" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/interior/maintenance/north) -"kWZ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"kXn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"kXP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) "kXQ" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"kXZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"kYn" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"kYF" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"kYM" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"kYN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 +"kYT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"kZe" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"kZg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/hall_NW) -"kZl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"kZn" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +/area/varadero/interior/maintenance/security) "laa" = ( /obj/structure/bed/chair{ dir = 1; @@ -13872,44 +13889,41 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lab" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"lat" = ( -/obj/item/device/camera, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"laN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"lay" = ( +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" }, -/obj/structure/barricade/handrail/wire{ +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"lbv" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"lbi" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"lbr" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"lbz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"lbK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"lbF" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"lbT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/co2_cartridge{ + pixel_x = 13; + pixel_y = 7 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "lbX" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -13918,153 +13932,106 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"lch" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) "lci" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"ldr" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"lcE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"lcF" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"lcG" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"lcX" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/mess) "ldw" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/east) -"ldJ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/hall_SE) -"leF" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"leG" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, +"ldD" = ( +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"ldU" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"ldX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"lel" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/blood/OMinus, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"leI" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/shiva/purple/southeast, -/area/varadero/interior/research) -"leO" = ( +/area/varadero/interior/maintenance/security) +"lez" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/flamer, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"leP" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) "leT" = ( /obj/structure/machinery/conveyor, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/varadero/interior/cargo) -"leU" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"lfp" = ( +"lfc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"lfk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"lgb" = ( -/obj/structure/bedsheetbin, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/area/varadero/interior/hall_SE) +"lfG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Staff Canteen" }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"lgP" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/varadero/interior/mess) +"lfU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 9 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"lhm" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"lgS" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_y = 8 +/obj/structure/machinery/door/window/brigdoor/northright, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 6 }, -/obj/item/device/flashlight/lamp/candelabra{ - pixel_x = -6; - pixel_y = 22 +/obj/item/tool/pen/blue, +/obj/item/tool/stamp{ + pixel_x = 6; + pixel_y = 5 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/administration) -"lhn" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1; - layer = 2.25; - density = 0; - climb_delay = 0 - }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"lhp" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"lhB" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"lhJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"lhJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; name = "\improper Underground Maintenance"; req_access_txt = "100"; @@ -14072,6 +14039,14 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) +"lhW" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"lin" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) "liq" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -14088,115 +14063,146 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"liE" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"liM" = ( -/obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"ljt" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) -"ljx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"lje" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, /turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"ljy" = ( +/turf/open/floor/shiva/floor3, /area/varadero/interior/electrical) -"lkz" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) +"ljF" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"ljN" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"lkb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "lkH" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"lkI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"llj" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"lmd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"lms" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"lmu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"lkM" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"lkS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_y = 5 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"lmS" = ( -/obj/structure/platform/kutjevo/smooth{ +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"llt" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/machinery/power/apc{ dir = 1; - climb_delay = 1; - layer = 2.99 + pixel_y = 24; + start_charge = 0 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"llK" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"llR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"lnw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/technical_storage) +"llT" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"lma" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 2 +/obj/structure/machinery/constructable_frame, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"lmj" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"lmn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/blue/northeast, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"lmv" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) -"lnG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, +"lmJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"lna" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) +"lnb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "lnO" = ( /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"loh" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) +"lnY" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"lok" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"los" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/technical_storage) "loA" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -14215,23 +14221,22 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) -"loQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"loW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"lpa" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -4; + pixel_y = 11 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"lpv" = ( -/turf/open/floor/white, -/area/varadero/interior/laundry) -"lpJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/bcircuit, -/area/varadero/interior/maintenance/north) +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"lpK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "lqa" = ( /obj/item/tool/warning_cone{ pixel_x = -11 @@ -14241,6 +14246,29 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"lqc" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"lqv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Morgue"; + req_access_txt = "100" + }, +/turf/open/floor/dark2, +/area/varadero/interior/morgue) +"lqw" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/cautery/predatorcautery, +/obj/item/tool/surgery/scalpel/predatorscalpel, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "lqF" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -14251,53 +14279,70 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) +"lqK" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "lqM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lrp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/administration) -"lrR" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor/asteroidplating, +"lrm" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) -"lss" = ( +"lrn" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"lrP" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"lsL" = ( /obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "lsN" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"lsR" = ( -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"lsT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +"lsP" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "lsU" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_N) -"ltA" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/records) +"lsV" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "ltB" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -14305,34 +14350,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"ltI" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/paper/research_notes/grant/high{ - pixel_x = -2; - pixel_y = -2 +"ltG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"ltW" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"lum" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"lun" = ( -/obj/item/device/mass_spectrometer, -/obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"lur" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) +/area/varadero/interior/maintenance/security) "luu" = ( /obj/item/tool/warning_cone{ pixel_x = -20 @@ -14342,22 +14365,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"luz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "luC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -14366,46 +14373,58 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) +"luH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/tool/stamp, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "luZ" = ( /obj/structure/closet/secure_closet/miner, /obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"lvt" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"lvd" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"lvi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"lvG" = ( -/obj/structure/curtain/red, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/bunks) -"lvS" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Research Chamber" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"lvk" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"lvr" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"lvV" = ( -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"lwg" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/plating/warnplate/northeast, -/area/varadero/interior/disposals) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "lwm" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -14419,6 +14438,19 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) +"lwx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"lwB" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "lxe" = ( /obj/item/stack/sheet/wood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -14432,173 +14464,90 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastbeach) -"lxr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"lyi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) +"lyj" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"lxs" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"lxy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"lxR" = ( +/area/varadero/interior/electrical) +"lyP" = ( +/turf/closed/wall/rock/brown, +/area/varadero/exterior/comms4) +"lyU" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"lxT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"lyp" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"lyP" = ( -/turf/closed/wall/rock/brown, -/area/varadero/exterior/comms4) -"lze" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"lzu" = ( -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) +/area/varadero/interior_protected/caves) +"lza" = ( +/obj/structure/target/syndicate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "lzD" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"lzP" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) "lzT" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"lzX" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "South Dock Door"; - pixel_x = -24; - indestructible = 1 - }, -/turf/open/floor/plating/icefloor/warnplate, +"lAV" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"lBk" = ( +/obj/structure/surface/table, +/obj/item/device/binoculars, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"lAk" = ( -/obj/structure/disposalpipe/segment{ +"lCv" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) +"lCI" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"lBf" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"lBw" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/north, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) -"lCK" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +"lCO" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_y = 4; + pixel_x = -5 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"lDh" = ( -/turf/open/floor/shiva/blue, -/area/varadero/interior/maintenance) -"lDk" = ( -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/hall_N) -"lDm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_y = 4; + pixel_x = -5 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"lDz" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "lDF" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/digsite) -"lDN" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"lDS" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"lEc" = ( +"lDX" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"lED" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"lEm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz1_near) -"lEw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"lEM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) "lEV" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -14620,10 +14569,10 @@ /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"lFl" = ( -/turf/open/floor/plating/icefloor/warnplate/west, -/area/varadero/interior/cargo) -"lFr" = ( +"lFm" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior_protected/caves/central) +"lFt" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, @@ -14636,45 +14585,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lFE" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"lFI" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"lFS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"lFT" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "lGp" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/medical) @@ -14682,6 +14592,9 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) +"lGK" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/varadero/exterior/lz1_near) "lGT" = ( /obj/structure/barricade/handrail/wire{ dir = 4; @@ -14692,52 +14605,26 @@ }, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"lHH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) -"lIb" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"lId" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"lIo" = ( +"lHj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"lIE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - dir = 1; - name = "LZ1 Pontoon Dock computer" +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"lHI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_console) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_NW) +"lIx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "lIO" = ( /obj/structure/prop/ice_colony/tiger_rug{ icon_state = "White"; @@ -14745,15 +14632,9 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"lIT" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/multi_tiles/east, +"lIR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "lIU" = ( /obj/effect/spawner/random/attachment, @@ -14767,89 +14648,72 @@ /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"lJo" = ( -/obj/structure/machinery/light{ - dir = 8 +"lJr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"lJK" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/surface/rack, -/turf/open/floor/shiva/wred/southwest, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) -"lKI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/beaker/ethanol{ - desc = "The beaker stares at you lecherously. Its contents... irresistible."; - pixel_y = 7 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"lKS" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"lJL" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"lJR" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"lKV" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"lLb" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"lLq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/technical_storage) -"lLZ" = ( -/turf/open/floor/shiva/red/east, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"lLF" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) -"lMb" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"lMl" = ( +"lLI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowcorners/west, +/area/varadero/interior/cargo) +"lME" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 8; climb_delay = 1; layer = 2.99 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"lMq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/administration) -"lMv" = ( -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) -"lMB" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"lMD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_SE) -"lMP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/cargo) +/area/varadero/interior/caves/north_research) "lNb" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"lNd" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"lNq" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/item/toy/plush/farwa, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/security) +"lNc" = ( +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = -8; + pixel_y = 15 + }, +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = 7; + pixel_y = 15 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"lNv" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "lNw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/prop/server_equipment/laptop/closed{ @@ -14857,6 +14721,12 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) +"lNz" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) "lNL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -14865,36 +14735,18 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"lNX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) -"lOc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, +"lOa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"lPj" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, +/area/varadero/interior_protected/caves/swcaves) +"lOb" = ( +/obj/structure/prop/turbine_extras/left, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/area/varadero/exterior/lz1_near) +"lOl" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "lPk" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 1; @@ -14902,9 +14754,29 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"lPq" = ( -/turf/open/floor/shiva/red/east, -/area/varadero/interior/morgue) +"lPs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"lPx" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"lQc" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/medical) "lQg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -14918,58 +14790,52 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"lQA" = ( -/obj/structure/disposalpipe/segment{ +"lQF" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"lQH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) +"lQS" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"lQO" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/mess) -"lQW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"lRy" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/machine/batteryrack, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) +/area/varadero/exterior/comms4) "lRz" = ( /obj/item/ammo_casing{ icon_state = "casing_7_1" }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"lRU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"lSp" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "cargobay"; + name = "Cargo Bay Lock"; + pixel_y = 20 }, -/turf/open/floor/shiva/purplecorners, -/area/varadero/interior/research) -"lSg" = ( -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "lSG" = ( /obj/structure/curtain/shower, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"lTb" = ( -/obj/structure/machinery/light{ - dir = 4 +"lSR" = ( +/obj/item/tool/hatchet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"lSV" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/turf/open/floor/shiva/green/southeast, -/area/varadero/interior/court) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) "lTg" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) @@ -14983,35 +14849,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lTR" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"lUe" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"lUG" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"lUT" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/mess) -"lVa" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, +"lTM" = ( +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/asteroidwarning, /area/varadero/interior/comms1) -"lVc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"lUi" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -1; + pixel_y = 12 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "lVf" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -15021,15 +14873,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"lVh" = ( +/turf/open/floor/shiva/wred/west, +/area/varadero/interior/medical) "lVB" = ( /obj/item/device/camera, /turf/open/floor/wood, /area/varadero/interior/security) -"lVP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) "lVQ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1/weedable, @@ -15063,31 +14913,13 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"lWh" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"lWo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"lWB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +"lWz" = ( +/obj/item/reagent_container/food/snacks/fishfingers{ + pixel_y = 7 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "lWJ" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -15095,48 +14927,32 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lXc" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) +"lWM" = ( +/obj/structure/barricade/wooden, +/obj/structure/safe/floor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "lXv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/holostool, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"lXT" = ( -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"lYi" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -1; - pixel_y = 1 +"lXK" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"lXM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"lXO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "lYo" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -15144,25 +14960,10 @@ "lYr" = ( /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"lYA" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"lYD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) "lYF" = ( /obj/structure/largecrate/random/case, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"lYQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "lZa" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -15172,13 +14973,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"lZb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/hall_SE) "lZh" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -15191,13 +14985,19 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"lZR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, +"lZi" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/maintenance/security) +"lZD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"lZF" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "lZU" = ( /obj/item/ammo_casing/shell{ dir = 10; @@ -15206,77 +15006,63 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/security) -"map" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"lZW" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"man" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"mau" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"maN" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"maQ" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/administration) -"mbt" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/obj/structure/machinery/light{ +/area/varadero/interior/laundry) +"mao" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"mbu" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"mca" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 +/area/varadero/interior/maintenance) +"maC" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/obj/item/folder/red{ +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"mbh" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/item/reagent_container/food/snacks/wrapped/chunk{ pixel_x = 4; - pixel_y = -2 + pixel_y = 13 }, -/obj/item/tool/stamp, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -6; + pixel_y = 7 }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"mcp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) -"mcr" = ( -/obj/structure/machinery/light, +/obj/structure/surface/table, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"mcs" = ( +"mbA" = ( +/obj/item/toy/deck/uno{ + pixel_y = 6 + }, /obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"mbK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "mcB" = ( @@ -15306,44 +15092,13 @@ /obj/item/device/flashlight, /turf/open/floor/wood, /area/varadero/interior/administration) -"mdg" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz2_near) -"mdj" = ( -/obj/item/clothing/head/helmet, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mdy" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"mdL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"mdM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"mdt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "mdN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, @@ -15366,22 +15121,12 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, /area/varadero/interior/administration) -"mey" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 1; - name = "Television set"; - network = null; - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +"meB" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "meS" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, @@ -15392,15 +15137,22 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"mfP" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) +"mfx" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "mgq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/item/weapon/gun/rifle/m41a, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"mgy" = ( +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) "mgT" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/gm/dirt, @@ -15409,15 +15161,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"mio" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) "miy" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ @@ -15425,104 +15168,79 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_NW) -"miF" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +"miI" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"mjt" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_N) +"mju" = ( +/obj/effect/decal/cleanable/cobweb{ dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"miP" = ( -/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"miR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/dock_control) -"miT" = ( -/obj/item/stool, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"miU" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 +/area/varadero/interior/maintenance/security) +"mjB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mjF" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"mjQ" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"mko" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) -"mjA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"mkc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ +"mkq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"mke" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"mkF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/light_fixture, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"mkG" = ( /obj/structure/window/reinforced{ - dir = 4; + dir = 8; health = 80 }, /obj/structure/window/reinforced{ - dir = 8; + dir = 4; health = 80 }, /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/structure/largecrate/random/mini/wooden{ - desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." - }, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/weapon/gun/rifle/sniper/svd, +/obj/structure/window/reinforced, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"mkn" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = 2; - pixel_y = 20 - }, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/technical_storage) -"mkt" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"mkX" = ( +/obj/structure/pipes/unary/freezer{ + dir = 8; + icon_state = "freezer_1" }, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "mlN" = ( /obj/vehicle/powerloader/ft, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"mlT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/maintenance) "mmq" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -15537,6 +15255,15 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"mmw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "mmO" = ( /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; @@ -15551,10 +15278,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"mnc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +"mmY" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "mnm" = ( /obj/structure/window/reinforced{ dir = 4; @@ -15580,6 +15307,11 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/bunks) +"mno" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "mnz" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/prop/invuln/fire{ @@ -15595,6 +15327,14 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) +"mnM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) "mnU" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -15602,6 +15342,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"mod" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redcorners, +/area/varadero/interior/security) +"moi" = ( +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "mol" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -15609,15 +15361,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"mos" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/hall_N) "moH" = ( /obj/structure/largecrate/random/case/double, /obj/structure/prop/invuln/overhead_pipe{ @@ -15642,170 +15385,130 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"mpn" = ( -/obj/item/weapon/baton, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) -"mpH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +"mpt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"mpA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "mpL" = ( /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"mqe" = ( -/obj/structure/cryofeed, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"mqt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"mrd" = ( -/obj/structure/disposalpipe/segment{ +"mqg" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"mqH" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"mrC" = ( -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz1_near) -"mrP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) "mrR" = ( /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"mrT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/accessory/storage/black_vest/brown_vest, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +"mrU" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) "mrY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"msj" = ( -/obj/structure/prop/rock/brown, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"msx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Bay" +"msk" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"mtp" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"msC" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, +/obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mtl" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"mtE" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"mtJ" = ( +/obj/structure/barricade/wooden, +/turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"mtx" = ( +"mtM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"mtR" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; pixel_x = 12; pixel_y = 13 }, -/obj/structure/barricade/wooden, /turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) -"mtJ" = ( -/obj/structure/barricade/wooden, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) +"mtS" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "mtT" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/lz2_near) -"mtU" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"mux" = ( -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/hall_N) -"muE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/cargo) -"mve" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"mvi" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"mvv" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = 25 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"mvA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mub" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"mur" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mvI" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"mvO" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/area/varadero/interior/maintenance/research) +"mvr" = ( +/obj/structure/prop/power_transformer, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"mvV" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "mwd" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/court) -"mwm" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_gutted"; - name = "gullible toothfish"; - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +"mwl" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "mwD" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 1; @@ -15814,27 +15517,32 @@ /obj/structure/closet/crate/supply, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"mwH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light, -/obj/item/circuitboard/computer/powermonitor, -/obj/item/stack/cable_coil/cut{ - pixel_y = 12 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) "mwI" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) +"mwZ" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mxa" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"mxb" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" + }, +/turf/open/floor/wood, +/area/varadero/interior/library) "mxv" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"mxx" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "mxB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -15847,33 +15555,16 @@ /obj/item/storage/beer_pack, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"myj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"mym" = ( -/obj/structure/lamarr, -/obj/structure/pipes/standard/simple/hidden/green{ +"mxJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"mxT" = ( +/obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"myo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/cargo) -"mzf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "mzt" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ @@ -15884,21 +15575,27 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"mzv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mzz" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"mzG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/tool/pen/blue{ + pixel_x = 4; + pixel_y = 3 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"mzI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = -5; + pixel_y = 11 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "mzJ" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -15917,61 +15614,108 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"mzT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mzP" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"mAa" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"mAm" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"mAp" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"mAB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/floor3, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mAI" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mAM" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) -"mAP" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 3; - pixel_y = 2 +"mAQ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = -2; - pixel_y = -4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"mBd" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"mAX" = ( -/obj/structure/prop/dam/van{ - desc = "An older Weyland Yutani space crawler. These things are most commonly seen along former trails on shake and bake colonies."; - icon_state = "crawler_crate_wy"; - name = "crawler"; - pixel_y = 7 +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"mBk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"mBq" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"mBG" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) -"mCe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mCx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/varadero/interior/maintenance/research) +"mBw" = ( +/obj/structure/closet/crate/miningcar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mBR" = ( +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/obj/structure/barricade/handrail/wire{ +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"mBS" = ( +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"mCc" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mCd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"mCu" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"mCv" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "mCF" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) @@ -16007,100 +15751,167 @@ "mCZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/research) -"mDl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"mDf" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "mDm" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"mEs" = ( -/obj/structure/machinery/light/small, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) -"mEy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"mDs" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"mDz" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"mEA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper{ - pixel_x = -3; - pixel_y = 3 +/turf/open/floor/wood/wood_broken, +/area/varadero/interior/beach_bar) +"mDE" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/green{ + pixel_x = -4; + pixel_y = -4 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"mEB" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" +/obj/item/clothing/under/shorts/blue{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/red{ + pixel_x = 2; + pixel_y = 2 }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"mEs" = ( +/obj/structure/machinery/light/small, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"mEt" = ( +/obj/structure/surface/table/woodentable, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) +/area/varadero/interior/maintenance/security) "mED" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"mFY" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"mGb" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"mHa" = ( -/obj/item/tank/anesthetic, +"mEL" = ( +/obj/structure/closet/toolcloset, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"mEZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"mFv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"mFK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"mFN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/item/clothing/mask/cigarette/cigar{ + desc = "Manufactured in New Space Cuba, a product of Castro LTD."; + name = "comically large cigar"; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/surface/table, /turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) -"mHh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mHM" = ( -/obj/structure/prop/invuln/minecart_tracks{ +"mGx" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"mGA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/encryptionkey/dutch, +/obj/item/device/encryptionkey/dutch{ + pixel_x = -6 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/item/device/encryptionkey/dutch{ + pixel_x = 8; + pixel_y = 3 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"mIG" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"mIL" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"mIQ" = ( -/obj/structure/platform/kutjevo/smooth{ +/obj/item/book/manual/marine_law{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/restraint/handcuffs{ + pixel_x = 2; + pixel_y = 16 + }, +/obj/structure/machinery/alarm{ dir = 8; - climb_delay = 1; - layer = 2.99 + pixel_x = 24 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"mGY" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"mHg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"mHN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"mIb" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"mIe" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) "mIU" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -16119,52 +15930,95 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"mJh" = ( -/obj/effect/decal/cleanable/blood/drip, +"mJq" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"mJB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, /turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) +/area/varadero/interior/electrical) +"mJC" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "mJH" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"mJO" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"mKa" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "mKb" = ( /obj/structure/sign/safety/medical, /turf/closed/wall, /area/varadero/interior/medical) -"mKD" = ( +"mKE" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/northright, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/tool/stamp{ - pixel_x = 6; - pixel_y = 5 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"mLg" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"mLt" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 +/obj/item/tool/pen/blue/clicky, +/obj/item/tool/pen/sleepypen{ + pixel_x = -4; + pixel_y = 4 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"mLB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 +/obj/item/tool/lighter/zippo/fluff{ + pixel_x = 7; + pixel_y = 2 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "mLJ" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"mMg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"mMk" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mMo" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "mMu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, @@ -16173,147 +16027,164 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"mMB" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/surface/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"mMC" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mMF" = ( +/obj/structure/filingcabinet/security, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "mMJ" = ( /obj/item/stack/sheet/wood/small_stack, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"mMX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"mNb" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) +"mNf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"mMZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"mNm" = ( -/obj/structure/machinery/light{ +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"mNs" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"mOp" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"mNO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/window/reinforced/tinted{ + dir = 8 }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"mPa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/attachment, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"mNT" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"mPg" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) +"mPp" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"mPy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"mPF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"mPM" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + desc = "A high-power hydroelectric generator."; + name = "hydroelectric generator" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mOx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"mOG" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"mOO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"mPf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"mPk" = ( -/turf/open/gm/river/ocean/deep_ocean, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) -"mPl" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"mQd" = ( +/obj/item/prop/helmetgarb/bullet_pipe{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/item/reagent_container/glass/fertilizer/l4z{ + pixel_x = 10; + pixel_y = 10 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"mPI" = ( +/area/varadero/interior/maintenance/research) +"mQe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"mPT" = ( -/obj/structure/surface/rack, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"mQq" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_N) +"mQL" = ( /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"mPW" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"mPX" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"mQS" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"mQh" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"mQC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/closet/radiation, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"mQV" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"mQF" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) -"mQG" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "mRq" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/library) -"mRs" = ( -/obj/structure/window/framed/colony/reinforced{ - color = "#aba9a9" +"mRu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/curtain/red, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"mRL" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"mRZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) +/area/varadero/interior/hall_SE) +"mRz" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"mRN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "mSa" = ( /obj/structure/tunnel{ id = "north_research_tunnel" @@ -16342,37 +16213,54 @@ /obj/item/toy/plush/farwa, /turf/open/floor/wood, /area/varadero/interior/bunks) -"mSf" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) "mSu" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"mSD" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"mSS" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"mSN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_N) +"mTf" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"mTD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/varadero/interior/hall_SE) +"mTO" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/plasticflaps/mining, /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"mTD" = ( -/obj/structure/machinery/light{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"mTP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/varadero/interior/hall_SE) +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"mUm" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "mUv" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -16390,17 +16278,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"mUz" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/eastbeach) -"mUP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"mVc" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) "mVj" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -16430,156 +16307,168 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"mVF" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 +"mVr" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"mVZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 5; + pixel_y = 16 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"mVN" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"mWt" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"mWv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"mVS" = ( -/turf/open/floor/shiva/bluefull/west, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"mWH" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) -"mVY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/clothing/under/shorts/grey, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +"mXa" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/white, +/area/varadero/interior/security) "mXi" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"mXs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"mXx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Sports Center" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) -"mXO" = ( +"mXk" = ( /obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 + dir = 8; + pixel_x = -24 }, -/obj/item/ammo_magazine/handful/shotgun/buckshot{ - pixel_x = -9 +/obj/structure/prop/ice_colony/tiger_rug{ + icon_state = "HotlineAlt" }, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/hall_N) -"mXV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"mXu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"mXw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"mYd" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"mYA" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"mXy" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"mYR" = ( -/obj/item/facepaint/sunscreen_stick, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"mXW" = ( +/obj/structure/prop/ice_colony/soil_net, +/turf/open/gm/dirt/desert_dug, +/area/varadero/interior/maintenance/north) +"mYb" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"mYW" = ( -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/cargo) -"mZi" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/court) -"mZk" = ( +/area/varadero/interior_protected/maintenance/south) +"mYs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/crate, -/obj/item/prop/magazine/dirty/torn/alt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"mZC" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" - }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = null; - name = "Requesitions Desk" - }, -/obj/structure/machinery/door/window/northright{ - dir = 2; - name = "Requesitions Desk" - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"mYw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper{ + layer = 2.99; + pixel_x = 4; + pixel_y = 4 }, -/obj/item/clipboard, -/obj/structure/noticeboard{ - pixel_x = 32 +/obj/item/device/camera{ + pixel_x = -5; + pixel_y = 9 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) "mZH" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"mZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"mZP" = ( +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 5; + pixel_y = 2 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -5; + pixel_y = -9 }, -/turf/open/floor/shiva/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"naa" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"naA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) -"nak" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"naE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) -"nau" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"nbA" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, +/area/varadero/interior/comms3) +"nbq" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) +"nbw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "nbB" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/comms4) @@ -16588,18 +16477,6 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"ncg" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"nch" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) "ncn" = ( /obj/item/trash/cheesie, /obj/effect/decal/cleanable/blood, @@ -16626,6 +16503,19 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"ncG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "ncL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, @@ -16637,28 +16527,31 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"ndp" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/retractor/predatorretractor, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) "nee" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"nej" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"nep" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "neq" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"new" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +"neB" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) "neD" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -16669,62 +16562,57 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"neJ" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"neU" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"neE" = ( +/obj/effect/landmark/crap_item, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"nfk" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) +"neN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"nfv" = ( -/obj/structure/bedsheetbin, /turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"nfX" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -11; - pixel_y = -4 +/area/varadero/interior/security) +"nfE" = ( +/obj/structure/machinery/holosign/surgery{ + id = "otice" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"nfZ" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Underground Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"nfF" = ( +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/white, +/area/varadero/interior/toilets) "ngg" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/hall_SE) -"ngm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva/multi_tiles, +"ngo" = ( +/turf/open/floor/darkgreencorners2/west, /area/varadero/interior/hall_SE) -"ngC" = ( -/obj/structure/largecrate/random/mini/chest, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) +"ngz" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/shotgun, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"ngA" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "ngY" = ( /obj/item/stack/sheet/metal/med_small_stack, /obj/structure/prop/server_equipment/laptop{ @@ -16734,6 +16622,13 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"nhq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "nhI" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -16756,6 +16651,21 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"nhS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"nhV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "nhX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -16775,43 +16685,64 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/comms4) -"nhY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"nih" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" +"nig" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood, -/area/varadero/interior/library) +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) "nio" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/hall_N) +"niq" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "nit" = ( /obj/structure/closet/crate/construction, /obj/item/storage/belt/utility, /obj/item/device/floor_painter, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"niF" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +"niH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"njb" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"njk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "njC" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -16823,41 +16754,61 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"nkd" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +"njJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"nkq" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" +/turf/open/floor/white, +/area/varadero/interior/security) +"nkj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/beaker/ethanol{ + desc = "The beaker stares at you lecherously. Its contents... irresistible."; + pixel_y = 7 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"nkk" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper External Airlock" }, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) +"nkp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/clothing/under/CM_uniform, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"nkr" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "nkF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"nma" = ( +"nkG" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = 3; - pixel_y = 17 - }, -/obj/item/tool/weldpack{ - pixel_x = -2; - pixel_y = 11 +/obj/effect/landmark/crap_item, +/obj/item/storage/fancy/cigar, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"nmh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) "nmC" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat/chess{ @@ -16878,76 +16829,84 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"nmN" = ( -/obj/structure/window/reinforced/tinted{ +"nns" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"nmQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"nnb" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"nni" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"nnk" = ( -/obj/item/tool/surgery/circular_saw/predatorbonesaw, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"nnt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Lobby" +/area/varadero/interior/hall_SE) +"nnI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"nnw" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Medical Laboratory Lobby"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"nnY" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"nnF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/medical) "noj" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"noC" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) +"nok" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "noR" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"npi" = ( +"noT" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"noW" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/digsite) +"npa" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"npk" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"npm" = ( /obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 + dir = 8; + pixel_x = 3 }, -/obj/structure/largecrate/random, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"npx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/maintenance/security) "npF" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"npP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "npW" = ( /obj/item/tool/warning_cone{ pixel_x = -8 @@ -16961,164 +16920,234 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) -"nqN" = ( -/obj/item/stool{ - icon_state = "stool_alt" +"nql" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"nqI" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/technical_storage) +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "nqQ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) -"nrd" = ( -/turf/open/floor/white, -/area/varadero/interior/security) -"nsc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"nrg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"nsl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"nrm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"nso" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"nsn" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "nsN" = ( /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) "nti" = ( /turf/closed/wall/r_wall, /area/varadero/exterior/lz2_near) -"ntw" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"nuv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +"ntx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"ntN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"nuj" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"nuQ" = ( +/area/varadero/interior/hall_N) +"nuL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"nvv" = ( -/obj/structure/blocker/fog, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"nwi" = ( -/obj/structure/machinery/power/port_gen/pacman/mrs, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"nuS" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/caves/east) +"nwc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "nwq" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"nxl" = ( -/obj/structure/closet/wardrobe/engineering_yellow, +"nwu" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"nwN" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"nxz" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/interior/maintenance) +"nxA" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"nxK" = ( +/obj/item/tool/mop, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"nxS" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "nxW" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/medical) -"nyJ" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 +"nym" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"nzb" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"nyq" = ( +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"nyW" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"nzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/turf/open/floor/white, -/area/varadero/interior/security) -"nzr" = ( -/turf/open/floor/shiva/green/southeast, -/area/varadero/interior/mess) -"nzS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"nzA" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/obj/structure/machinery/disposal, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/laundry) +"nzP" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "South Dock Door"; + pixel_x = -32; + pixel_y = -18; + indestructible = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/exterior/lz1_near) +"nAS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "nBc" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz2_near) -"nBj" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"nBl" = ( -/obj/structure/machinery/power/apc{ +"nBp" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"nBr" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"nBD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"nBH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Research Laboratory"; - req_one_access = null; - req_access = null +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"nCl" = ( -/obj/structure/fence, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"nBw" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"nCE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) +/area/varadero/interior/maintenance/north) +"nBO" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"nCy" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/varadero/interior/security) "nCF" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastocean) +"nCQ" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/item/device/cassette_tape/pop2{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/device/cassette_tape/pop3{ + pixel_y = 7 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "nCV" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, @@ -17133,15 +17162,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"nDC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) "nDL" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -17152,64 +17172,31 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"nEE" = ( -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -5 +"nEr" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "nEY" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"nFf" = ( -/obj/structure/pipes/vents/pump{ +"nFG" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"nFg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"nFp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"nFy" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/bonesetter/predatorbonesetter, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"nFB" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/warning_stripes, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"nFD" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"nFH" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/plating/warnplate/northeast, +/area/varadero/interior/disposals) "nFK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, @@ -17218,46 +17205,79 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"nGE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +"nGb" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"nHy" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"nGj" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"nGF" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/item/tool/warning_cone, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) -"nHA" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/security) -"nHC" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"nHH" = ( -/obj/structure/platform_decoration/kutjevo{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"nGM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/mask/cigarette/weed{ + pixel_x = -11; + pixel_y = 16 + }, +/obj/item/clothing/mask/cigarette/weed{ + pixel_x = -9; + pixel_y = 13 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"nGS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"nGT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"nHq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"nHy" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, +/obj/item/tool/warning_cone, +/turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"nHP" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance/north) "nIF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -17269,40 +17289,104 @@ /obj/structure/machinery/vending/dinnerware, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"nJc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) "nJd" = ( /obj/item/stack/sheet/wood/small_stack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"nJk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "nJn" = ( /obj/structure/bed/chair, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"nKd" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"nKf" = ( -/obj/item/tool/hatchet, +"nJs" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"nJu" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"nKr" = ( -/obj/structure/surface/table, -/obj/item/storage/box/sprays{ +/area/varadero/interior/maintenance/north) +"nJy" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"nJK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/disposals) +"nJO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"nKi" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"nKj" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/item/lightstick/red/spoke/planted{ pixel_x = -1; - pixel_y = 3 + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"nKu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/FixOVein/predatorFixOVein{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/paper{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/paper/research_notes/good{ + pixel_x = -15; + pixel_y = 2 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "nKy" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -17311,33 +17395,49 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"nKR" = ( -/obj/structure/prop/rock/brown, +"nKW" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) -"nLw" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/shiva/purple/southwest, -/area/varadero/interior/research) -"nLH" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/area/varadero/exterior/farocean) +"nLo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) +"nLN" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv{ + pixel_x = -2; + pixel_y = 6 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"nLI" = ( -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"nMe" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/area/varadero/interior/hall_NW) +"nMv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Theta-V Research Laboratory"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "nMJ" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, @@ -17346,15 +17446,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"nNv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/security) "nNz" = ( /obj/structure/machinery/light{ dir = 4 @@ -17366,29 +17457,14 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"nNZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/drip, +"nOc" = ( +/obj/effect/spawner/random/technology_scanner, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"nOg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - icon_state = "door_locked"; - id = "engine_electrical_maintenance"; - locked = 1; - name = "Underground Power Substation"; - req_access_txt = "100" - }, +/area/varadero/interior/hall_SE) +"nOu" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"nOj" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/cargo) +/area/varadero/interior/caves/east) "nOz" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/station_alert{ @@ -17396,6 +17472,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"nOE" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "nOI" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -17413,11 +17493,6 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"nOO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) "nOQ" = ( /obj/structure/safe/floor{ pixel_x = 7; @@ -17426,18 +17501,37 @@ /obj/item/tool/lighter/zippo/gold, /turf/open/floor/carpet, /area/varadero/interior/research) -"nPx" = ( +"nOS" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"nPb" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"nPf" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"nPo" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/beach_bar) +"nPp" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "nPE" = ( /obj/structure/safe, /obj/item/reagent_container/food/drinks/bottle/whiskey, @@ -17445,25 +17539,6 @@ /obj/item/reagent_container/food/drinks/bottle/pwine, /turf/open/floor/wood, /area/varadero/interior/research) -"nPG" = ( -/obj/structure/surface/table, -/obj/item/inflatable{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/inflatable{ - pixel_x = 6 - }, -/obj/item/inflatable{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva/yellow/northwest, -/area/varadero/interior/technical_storage) "nPI" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -17473,18 +17548,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"nPK" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"nPR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) "nQo" = ( /obj/structure/machinery/conveyor, /obj/structure/largecrate/random, @@ -17497,62 +17560,20 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) -"nQH" = ( -/obj/structure/machinery/light{ +"nRm" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"nQR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"nRk" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/med_large_stack, -/obj/item/trash/boonie, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"nRy" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/mess) -"nRH" = ( -/turf/open/gm/dirt/desert3, -/area/varadero/interior/maintenance/north) -"nRP" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"nSh" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/obj/item/cell/high, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) -"nRT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"nRU" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"nRW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/medical) +/area/varadero/interior/maintenance/research) "nSi" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand_white/layer1, @@ -17563,93 +17584,53 @@ }, /turf/closed/wall, /area/varadero/interior/medical) -"nTj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"nTc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "nTG" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_SE) -"nTH" = ( -/obj/structure/bed/chair/comfy/orange{ - buckling_y = 9; - dir = 8; - pixel_y = 9 - }, -/obj/item/device/megaphone{ - layer = 2; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/clothing/suit/storage/hazardvest{ - desc = "It oozes authority, prestige, and sick summer vibes."; - name = "life guard's vest"; - pixel_x = 10; - pixel_y = -9 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) "nTS" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"nUf" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"nVk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"nVn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/east, -/area/varadero/interior/disposals) -"nVv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"nUa" = ( +/obj/item/storage/firstaid/o2{ + layer = 3.1; + pixel_x = 2; + pixel_y = 10 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + layer = 3.2; + pixel_x = -4; + pixel_y = 3 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"nVy" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/morgue) -"nWg" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"nUO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"nVL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) +/obj/structure/closet/crate, +/obj/item/prop/magazine/dirty/torn/alt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"nVR" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "nWS" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -17660,20 +17641,38 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"nXB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 6 +"nXf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"nXg" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/technical_storage) +"nXw" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 4 }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"nYe" = ( +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/hall_SE) +"nYk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey, /turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"nXR" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +/area/varadero/interior/medical) +"nYu" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = -4; + pixel_y = 9 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"nXY" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"nYQ" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 }, @@ -17682,48 +17681,23 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_NW) -"nYx" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva/purple/east, +"nYR" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"nZc" = ( +/obj/structure/machinery/light, +/obj/structure/closet/l3closet/scientist, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"nYy" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"nYL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"nZd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"nZi" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +"nZf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/medical) +/obj/structure/machinery/light, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "nZk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -17732,20 +17706,37 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"nZP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"oam" = ( -/obj/structure/disposalpipe/segment{ +"nZJ" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "pipe-c" + health = 300 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"nZW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"nZY" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "oaO" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/storage/firstaid/regular{ @@ -17754,66 +17745,28 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"oaR" = ( -/turf/open/floor/wood/wood_broken6, -/area/varadero/interior/security) -"obm" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +"obg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"obo" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "obr" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"obN" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "South Dock Door"; - pixel_x = -32; - pixel_y = -18; - indestructible = 1 +"odh" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/turf/open/floor/plating/icefloor/warnplate/north, -/area/varadero/exterior/lz1_near) -"obS" = ( -/obj/structure/window/framed/colony/reinforced, /turf/open/floor/shiva/snow_mat, -/area/varadero/interior/security) -"ocr" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"ocz" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"ocQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +/area/varadero/interior/maintenance) "odw" = ( /obj/structure/machinery/photocopier, /obj/item/storage/firstaid/regular{ @@ -17822,24 +17775,19 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"odD" = ( -/obj/structure/bed/chair, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"odZ" = ( -/obj/structure/closet/toolcloset, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"oef" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" +"odA" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"odG" = ( +/obj/structure/catwalk, +/obj/structure/platform{ + layer = 2.15; + density = 0; + climb_delay = 0 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "oep" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -17848,21 +17796,61 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"oeF" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"oes" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 5; + pixel_y = 8 }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/mask/cigarette/ucigarette{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"oev" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/blue, /area/varadero/interior/maintenance) -"oeO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ +"oeX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/camera, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"ofc" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"ofo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/tool/stamp{ pixel_x = 6; - pixel_y = 9 + pixel_y = 12 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/obj/item/tool/stamp/clown{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/tool/stamp/rd{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "ofC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -17874,12 +17862,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"oga" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +"ofS" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"ofT" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "ogj" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper{ @@ -17893,10 +17881,10 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"ogq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_N) +"ogt" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "ogW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ @@ -17905,123 +17893,113 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ohi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/handcuffs, -/obj/structure/machinery/flasher_button{ - id = "sec_checkpoint"; - pixel_y = 24 +"ohA" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/structure/machinery/door_control{ - id = "sec_checkpoint_lock"; - name = "Checkpoint Lockdown"; - pixel_y = 36 +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"ohC" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"ohL" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"ohP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/coast/beachcorner2/south_west, -/area/varadero/exterior/pontoon_beach/lz) -"ohM" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"oie" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"oih" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"oiB" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/area/varadero/interior/cargo) +"oip" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_bishop{ - pixel_x = -10; - pixel_y = 15 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"oiy" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"oiV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/tarbacks{ + pixel_x = -7; + pixel_y = 8 }, -/obj/item/reagent_container/blood/empty{ +/obj/item/tool/lighter/zippo/black{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/ashtray/plastic{ pixel_x = 6; - pixel_y = 5 + pixel_y = -4 }, -/obj/item/storage/box/cups{ - pixel_x = -13; - pixel_y = 3 +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"ojb" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) +"oji" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) -"oiM" = ( -/turf/open/floor/shiva/multi_tiles/west, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) -"ojm" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ojF" = ( -/obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"ojG" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"ojJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"okC" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"oke" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"okf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"okB" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"okI" = ( -/obj/structure/surface/rack, -/obj/item/implantpad, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"okJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/plating/warnplate/east, +/area/varadero/interior/disposals) +"okD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/roller, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"okX" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"olq" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"ola" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"olD" = ( -/turf/open/floor/asteroidwarning/east, -/area/varadero/exterior/lz1_near) -"olP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Underground Requesitions Freezer"; - req_access_txt = "100" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) +/obj/structure/window/reinforced, +/obj/item/clothing/head/fedora, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "olU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -18030,58 +18008,79 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"omj" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"onj" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/north) -"onr" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ooe" = ( -/obj/structure/surface/rack, -/obj/structure/prop/invuln/overhead_pipe{ +"omE" = ( +/obj/structure/window/reinforced{ dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; pixel_y = 13 }, -/obj/structure/prop/invuln/overhead_pipe{ +/obj/item/toy/plush/farwa, +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"omX" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ dir = 4; - pixel_x = 12; - pixel_y = 13 + health = 80 }, -/turf/open/floor/plating/icefloor/asteroidplating, +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"onj" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) +"onA" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"onY" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "oos" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"ooP" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"opd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/beach_bar) -"opP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"ooG" = ( +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"opv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"opF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "opW" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/stack/sheet/wood{ @@ -18100,20 +18099,33 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"oqh" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"oqz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_x = 6; + pixel_y = 11 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"orb" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/item/device/reagent_scanner{ + pixel_x = -7 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"oqD" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"orh" = ( +/obj/structure/machinery/light, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) "orr" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -18121,6 +18133,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"oru" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "orH" = ( /obj/structure/filingcabinet{ pixel_x = -8; @@ -18135,76 +18157,106 @@ }, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"orT" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"osl" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "osn" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) -"osr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"ost" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) "osE" = ( /obj/structure/largecrate/random/barrel, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"osQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "osX" = ( /obj/structure/machinery/shower{ dir = 8 }, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"otH" = ( +"otn" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"otH" = ( /obj/structure/closet/crate/construction, /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"otL" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) "otO" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ouy" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/caves/east) -"ouP" = ( -/obj/effect/decal/cleanable/blood, +"otT" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"oue" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"ouV" = ( -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) -"ovp" = ( -/obj/structure/platform_decoration/kutjevo{ +"ouk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/hydro{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_container/spray/hydro{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"ouo" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"ouy" = ( +/turf/closed/wall/r_wall, +/area/varadero/interior/caves/east) +"ovj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"ovq" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"ovw" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "ovC" = ( /turf/open/floor/carpet, /area/varadero/interior/research) @@ -18218,18 +18270,20 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"owk" = ( -/obj/structure/machinery/light/small, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"owF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "owM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves/central) +"owN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "owY" = ( /obj/structure/window/reinforced{ dir = 4; @@ -18255,14 +18309,6 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/bunks) -"oxa" = ( -/obj/item/tool/hand_labeler{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "oxi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -18273,28 +18319,35 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"oxA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"oxt" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"oxw" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"oxO" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_N) -"oyb" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"oyd" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/wood, -/area/varadero/interior/library) -"oyi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/maintenance/south) "oyl" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -18303,16 +18356,39 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"oyv" = ( -/obj/item/device/flashlight, -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz2_near) -"oyx" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" +"oyo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/disposals) +"oyG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"oyN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "oyT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -18335,29 +18411,64 @@ }, /turf/open/floor/plating, /area/varadero/interior/security) -"ozz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/hall_SE) -"ozC" = ( -/obj/item/weapon/gun/shotgun/pump, -/turf/open/floor/shiva/floor3, +"oza" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 7; + pixel_y = 13 + }, +/obj/item/implantcase/explosive{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"oze" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"ozh" = ( +/obj/structure/largecrate/random/mini/chest, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"ozF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) -"ozD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"ozQ" = ( +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + desc = "A globe designed by the hunters to show them the location of prey across the hunting grounds."; + icon = 'icons/turf/walls/hunter.dmi'; + icon_state = "globe"; + name = "Hunter Globe"; + pixel_y = 16 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"oAm" = ( -/obj/structure/toilet{ - dir = 1 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"oAa" = ( +/obj/item/card/id/silver{ + pixel_x = 3; + pixel_y = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"oAB" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "oAC" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/coast/beachcorner2/north_east, @@ -18380,34 +18491,31 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"oBj" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +"oAL" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"oBb" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "oBq" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"oBs" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"oBG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/court) "oBJ" = ( /obj/structure/machinery/shower{ dir = 8 @@ -18415,54 +18523,11 @@ /obj/item/tool/soap/syndie, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"oBP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/electrical) -"oBQ" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) -"oBR" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"oCi" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"oCy" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"oCN" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull/west, +"oCF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) -"oCR" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz1_near) -"oDz" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) "oDB" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/machinery/storm_siren{ @@ -18470,10 +18535,21 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"oDN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) +"oDJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"oDL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "oDS" = ( /obj/structure/sign/safety/hazard{ pixel_x = 15 @@ -18490,42 +18566,96 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"oDX" = ( -/obj/structure/platform_decoration/kutjevo{ +"oDY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/tool/soap{ + pixel_x = 5 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"oEv" = ( +/obj/structure/catwalk, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/platform_decoration/kutjevo{ +/obj/structure/filtration/flacculation_arm{ + density = 0; + layer = 2.1 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"oEL" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"oES" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) "oET" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/security) -"oEX" = ( -/obj/structure/closet/crate, -/obj/item/clothing/head/helmet, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"oFd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" +"oFh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"oFq" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/mess) -"oGc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/area/varadero/interior/electrical) +"oFj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/maintenance/research) +"oFm" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) "oGv" = ( /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"oGP" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 + }, +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 + }, +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "oHo" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 @@ -18536,17 +18666,18 @@ /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) -"oIq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"oIE" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"oIJ" = ( +/obj/item/stool{ + layer = 2.5; + pixel_x = -3; + pixel_y = 8 }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"oIC" = ( -/obj/structure/janitorialcart, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "oJb" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -18556,27 +18687,42 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oJm" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Hangar Power Substation"; - req_access = null - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"oJv" = ( +"oJl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"oJB" = ( -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"oJW" = ( -/obj/structure/closet/firecloset/full, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"oJu" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/exterior/comms4) +"oJz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 9 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 5 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -2; + pixel_y = 18 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"oJT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "oJX" = ( /obj/item/stack/sheet/metal, /obj/structure/shuttle/engine/heater{ @@ -18612,52 +18758,33 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"oKx" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/structure/largecrate/random, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"oKy" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"oKN" = ( -/obj/item/weapon/gun/shotgun/pump, -/obj/structure/machinery/light{ +"oKG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/hall_N) -"oLa" = ( -/obj/item/trash/barcardine, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Theta-V Breakroom"; + req_one_access = null; + req_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"oLm" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"oLB" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "oLM" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/cargo) -"oLZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "oMa" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/packet/bicaridine, @@ -18671,97 +18798,209 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"oMe" = ( +/obj/item/moneybag{ + anchored = 1; + desc = "A console designed by the Hunters to assist in flight pathing and navigation."; + dir = 8; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "overwatch"; + name = "Hunter Flight Console"; + pixel_x = -17 + }, +/obj/structure/bed/chair/hunter{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "oMg" = ( /obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"oMl" = ( -/obj/structure/pipes/vents/pump{ +"oMo" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"oMs" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"oNa" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"oMB" = ( +/turf/open/floor/shiva/redcorners/west, +/area/varadero/interior/security) +"oMZ" = ( +/obj/item/device/motiondetector/hacked, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"oNc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/window_frame/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "oNy" = ( /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"oOF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"oPb" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"oPe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"oNS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_c" + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/court) +"oOb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/hall_SE) +"oOq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"oOs" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"oOz" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"oOA" = ( +/obj/item/restraint/handcuffs{ + pixel_x = 2; + pixel_y = 16 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"oPO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"oPr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"oPQ" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) +/area/varadero/interior/maintenance/north) +"oPT" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "oPV" = ( /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"oRx" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/eat, -/obj/item/trash/cheesie, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 4; - pixel_y = 7 +"oPZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) -"oRB" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 +"oQO" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = -5 }, -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv{ - pixel_x = -2; - pixel_y = 6 +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"oQQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery{ + pixel_x = 2; + pixel_y = 7 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"oRl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "oRD" = ( /obj/structure/prop/rock/brown, /obj/structure/prop/invuln/lattice_prop, /turf/open/gm/coast/north, /area/varadero/exterior/pool) -"oRK" = ( +"oRR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"oRX" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"oSq" = ( +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"oSz" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"oSB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/objective_landmark/far, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"oSe" = ( /obj/structure/surface/table, -/obj/item/stack/sheet/metal/med_large_stack, +/obj/item/paper/janitor{ + pixel_y = 8 + }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) +"oSC" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" + }, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = null; + name = "Requesitions Desk" + }, +/obj/structure/machinery/door/window/northright{ + dir = 2; + name = "Requesitions Desk" + }, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/item/clipboard, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "oSX" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -18774,24 +19013,6 @@ /obj/item/tool/crowbar/red, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"oTJ" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/administration) -"oTX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) "oUh" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -18804,53 +19025,28 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"oUp" = ( -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/morgue) -"oUO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/inflatable, -/obj/item/inflatable/door, -/obj/item/storage/box/engineer, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"oVm" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/comms3) -"oVn" = ( -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/technical_storage) -"oVp" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"oVr" = ( +"oUD" = ( /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/redcorners/west, -/area/varadero/interior/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"oVs" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) "oVt" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"oWf" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastocean) +"oVB" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"oVV" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/maintenance/north) "oWg" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, @@ -18877,34 +19073,37 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"oWO" = ( -/obj/structure/toilet, -/turf/open/floor/white, -/area/varadero/interior/security) -"oWU" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"oWK" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"oXe" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "oXf" = ( /turf/open/floor/carpet, /area/varadero/interior/chapel) -"oXi" = ( -/obj/structure/pipes/vents/pump{ +"oXg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"oXh" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"oXm" = ( -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) "oXo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"oXp" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) "oXw" = ( /obj/docking_port/stationary/marine_dropship/lz1{ name = "LZ1: Pontoon Dock" @@ -18916,60 +19115,65 @@ /obj/structure/prop/server_equipment/laptop/on, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"oXE" = ( -/obj/structure/surface/table, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +"oYk" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"oYu" = ( +/obj/item/stack/sandbags/large_stack{ + pixel_y = 4; + pixel_x = -12 }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"oXZ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) +"oYM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"oYZ" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"oZg" = ( +/obj/item/tool/surgery/hemostat/predatorhemostat, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"oZF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/administration) -"oYB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) -"oZw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"oZA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "oZJ" = ( /obj/structure/fence, /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) -"paq" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"oZU" = ( +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"paM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"paB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"paP" = ( +/obj/item/device/cassette_tape/heavymetal{ + pixel_x = -3; + pixel_y = 3 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + pixel_x = 5; + pixel_y = -3 }, -/turf/open/floor/shiva/redfull, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) "pbd" = ( /obj/structure/surface/table/woodentable, @@ -18997,128 +19201,85 @@ /obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/floor/wood, /area/varadero/interior/administration) -"pbp" = ( -/turf/open/floor/asteroidwarning/north, -/area/varadero/exterior/lz1_near) +"pbg" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"pbs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "pbt" = ( /turf/closed/wall, /area/varadero/interior/mess) -"pbw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"pbM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Staff Canteen" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) "pbT" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"pco" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"pcH" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"pcK" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/technical_storage) -"pdc" = ( -/obj/structure/largecrate/random{ - anchored = 1 +"pcA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"pcX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"pdf" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "pdn" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"pdr" = ( -/obj/structure/surface/table, -/obj/item/trash/chips{ - pixel_x = 2; - pixel_y = 8 +"pdv" = ( +/obj/structure/largecrate/random, +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/turf/open/floor/shiva/green, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"pdz" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"pdD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) -"pdK" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/lz2_near) "pea" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/interior/caves/north_research) -"per" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"pes" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"pew" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"peA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"peR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/medical) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "pfd" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/pontoon_beach) -"pfr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"pfL" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/trash/plate, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"pfR" = ( -/obj/structure/reagent_dispensers/beerkeg/alt, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) "pgg" = ( /obj/item/tool/pickaxe, /turf/open/gm/coast/south, @@ -19131,18 +19292,32 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastbeach) -"phd" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"phk" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) -"phw" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +"pgD" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"pgF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"pgP" = ( +/obj/item/storage/belt/marine/quackers, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"phk" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"phw" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) @@ -19152,36 +19327,37 @@ }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"pie" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +"phW" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/hall_SE) +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"pig" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"pis" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"piS" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "pja" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/security) -"pjk" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"pjm" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = -25 - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) "pjn" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -19189,10 +19365,6 @@ /obj/item/book/manual/research_and_development, /turf/open/floor/carpet, /area/varadero/interior/library) -"pjs" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/research) "pjD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/eastocean) @@ -19208,13 +19380,6 @@ /obj/item/tool/weldingtool, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"pkl" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - desc = "A high-power hydroelectric generator."; - name = "hydroelectric generator" - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "pku" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -19228,28 +19393,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"pkG" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"pkT" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) -"pkX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"plc" = ( -/obj/structure/surface/rack, -/obj/item/clipboard, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) +"pkP" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "pll" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -19258,92 +19405,80 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"plm" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "plq" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/eastocean) -"plF" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "Revolting beyond description."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_teeth"; - name = "human-ish teeth"; - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"plN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"plH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) +"plO" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "plT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pmh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"pmC" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = -25 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"pmG" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/administration) +"pnc" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"pmy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"pnA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"pmM" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"pmW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"pnn" = ( -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) -"pnL" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) +/area/varadero/interior/cargo) +"pnB" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"pnE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"pnY" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/hall_N) +"pog" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "pol" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/library) -"pot" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) "pox" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -19355,106 +19490,84 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) -"poC" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 13; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"poE" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; +"ppg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"poU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 + name = "\improper Underground Medical Laboratory Storage"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "ppl" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"ppw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"ppN" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 2 }, +/obj/item/paper/research_notes/grant/high{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"ppY" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"ppU" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"pqf" = ( -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "pqj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"pqC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"pqG" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"pqL" = ( +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/court) -"pqH" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"pqO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"pqY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"pqZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) -"prh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/white, +/area/varadero/interior/security) +"prg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/medical) +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "prl" = ( /obj/item/grown/log, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"prC" = ( -/turf/open/gm/coast/beachcorner/south_east, -/area/varadero/exterior/eastbeach) -"prY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"pru" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"prB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/green/north, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) +"prC" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/exterior/eastbeach) "psb" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = -13; @@ -19470,33 +19583,29 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"psk" = ( -/obj/structure/closet/secure_closet/bar, -/turf/open/floor/wood/wood_broken, -/area/varadero/interior/beach_bar) +"psE" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) +"psN" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"pta" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "pth" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/plasmacutter, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"pti" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"ptp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"pts" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"ptw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "ptC" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -19505,65 +19614,53 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"ptM" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"ptP" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 4 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"ptY" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/hall_SE) -"pun" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/pontoon_beach) "puq" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pvk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Medical Laboratory Treatment"; - req_access_txt = "100"; - req_one_access = null +"puY" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"pvs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/gm/coast/beachcorner2/south_west, +/area/varadero/exterior/pontoon_beach/lz) +"pvp" = ( +/obj/structure/girder/displaced, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior/maintenance/security) +"pvq" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"pvw" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) "pvQ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"pwc" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"pwF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_y = 6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "pxa" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/largecrate/random/mini/ammo{ @@ -19574,66 +19671,98 @@ }, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"pxg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"pyk" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 6; - pixel_y = 5 +"pyF" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"pyQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"pyz" = ( /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"pAa" = ( +/turf/open/floor/white, +/area/varadero/interior/toilets) +"pzd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/blue/west, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) -"pAp" = ( -/turf/open/floor/plating/icefloor/warnplate/north, -/area/varadero/exterior/lz1_near) -"pAX" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"pAZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass/phoronglass{ - amount = 32 +"pze" = ( +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{ + pixel_x = 10 }, -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) -"pBb" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/red/southwest, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"pzK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) -"pBf" = ( -/obj/structure/prop/rock/brown{ - layer = 2 +"pzL" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"pzN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"pAe" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/cargo) +"pAk" = ( /turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"pAu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"pAE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"pBa" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper Research Chamber" + }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) +"pBm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "pBo" = ( /obj/structure/coatrack, /obj/item/clothing/head/fedora{ @@ -19642,61 +19771,35 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"pBx" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"pBK" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 +"pBP" = ( +/obj/structure/window/framed/colony/reinforced{ + color = "#aba9a9" }, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/administration) -"pBS" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "pCa" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"pCc" = ( +"pCg" = ( +/obj/item/device/taperecorder, /obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 4 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"pCm" = ( +/obj/item/tank/anesthetic, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"pCo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper{ + pixel_x = -3; + pixel_y = 3 }, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"pCf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"pCp" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"pCO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/bcircuit, -/area/varadero/interior/electrical) "pCP" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 2; @@ -19706,58 +19809,64 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/research) -"pCV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/rods, -/obj/item/storage/donut_box, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) +"pCY" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"pDa" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "pDl" = ( /obj/structure/girder, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"pDD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"pDF" = ( -/obj/structure/machinery/storm_siren{ +"pDz" = ( +/obj/structure/machinery/power/apc{ dir = 4; - pixel_x = -3 + pixel_x = 24; + start_charge = 0 }, -/obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"pDW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"pDC" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance/north) "pDX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pEo" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"pEh" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"pEE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"pEu" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"pEQ" = ( +/obj/structure/surface/table, +/obj/item/paper/janitor{ + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/storage/belt/utility, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"pEU" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/area/varadero/interior/disposals) "pFd" = ( /obj/item/storage/pouch/construction, /obj/structure/prop/invuln/lattice_prop{ @@ -19767,25 +19876,34 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"pFF" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +"pFp" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "undergroundhangarsouth"; + unacidable = 1; + name = "Pontoon South Door"; + openspeed = 17 + }, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/interior/maintenance/north) "pGc" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/varadero/interior/research) -"pGi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) "pGj" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pool) +"pGl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "pGs" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/oob) @@ -19796,63 +19914,62 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"pGS" = ( -/turf/open/floor/shiva/multi_tiles/north, +"pGW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"pIe" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"pIj" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 +"pHC" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"pIz" = ( -/obj/structure/surface/table, -/obj/item/trash/plate{ - desc = "For all your soapy needs."; - icon_state = "tray"; - name = "soap dish"; - pixel_x = 4; - pixel_y = 10 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/item/tool/soap/nanotrasen{ - pixel_x = 3; - pixel_y = 7 +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"pHK" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/item/tool/soap/nanotrasen{ - pixel_x = 2; - pixel_y = 11 +/obj/item/bedsheet{ + anchored = 1; + desc = "A console used by the Hunters for navigation purposes."; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "security_cam"; + name = "Hunter Nav Console" }, -/obj/item/tool/soap/nanotrasen{ - desc = "Teetering at the brink! A life's thread, about to be cut short."; - pixel_x = 5; - pixel_y = 15 +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"pHL" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"pIm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/white, -/area/varadero/interior/laundry) +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "pIC" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/storage/large_holster/m39/full, /turf/open/floor/wood, /area/varadero/interior/security) -"pJf" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"pJn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"pJp" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "pJs" = ( /obj/effect/decal/cleanable/blood, /obj/structure/bed/chair{ @@ -19860,31 +19977,32 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"pJA" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "pJF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"pJQ" = ( -/obj/item/book/manual/evaguide, -/turf/open/floor/wood, -/area/varadero/interior/library) -"pJZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +"pJV" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"pKc" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"pKd" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "pKg" = ( /obj/item/book/manual/nuclear, /turf/open/floor/carpet, /area/varadero/interior/library) +"pKm" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/comms3) "pKs" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -19895,67 +20013,54 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"pLp" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/machinery/light/small{ - dir = 4 +"pLc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"pLn" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "pLF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"pLV" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/machinery/light{ - dir = 8 +"pLS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/administration) -"pMe" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) -"pMy" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/window/reinforced{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/toy/plush/farwa, -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"pMG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) -"pNa" = ( -/obj/structure/catwalk, -/obj/structure/barricade/handrail/wire{ - layer = 3.01 + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"pMq" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) +"pMU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/north, +/area/varadero/interior/hall_N) "pNf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -19968,6 +20073,10 @@ /obj/structure/barricade/wooden, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"pNr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "pNI" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 6; @@ -19975,108 +20084,106 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"pNJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) +"pNO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "pNR" = ( /obj/effect/decal/cleanable/blood/drip, /turf/closed/wall/rock/brown, /area/varadero/exterior/lz2_near) -"pNT" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 +"pOx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"pOC" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva, +/area/varadero/interior/technical_storage) +"pPj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"pPn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"pPC" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) +"pPD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/court) +"pPN" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"pQe" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"pQj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/plasticflaps/mining, /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/maintenance) -"pOa" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"pOg" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"pOz" = ( -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/disposals) -"pOC" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva, -/area/varadero/interior/technical_storage) -"pPf" = ( -/obj/structure/surface/table, -/obj/item/prop/helmetgarb/flair_uscm, -/obj/item/storage/box/uscm_mre{ - pixel_x = -4; - pixel_y = 13 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"pPl" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) -"pQp" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/technical_storage) -"pQw" = ( +/area/varadero/interior/oob) +"pQn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"pQF" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva/yellow/east, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"pQp" = ( +/turf/closed/wall/r_wall, /area/varadero/interior/technical_storage) -"pRa" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +"pQv" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "pRb" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"pRl" = ( -/obj/structure/machinery/door/window/northright{ - name = "Disposals Chute" +"pRc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/warnplate/north, -/area/varadero/interior/disposals) +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"pRn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) "pRs" = ( /obj/structure/prop/souto_land/pole{ dir = 8 @@ -20084,63 +20191,50 @@ /obj/structure/prop/souto_land/pole, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"pRy" = ( +"pRI" = ( +/obj/effect/landmark/objective_landmark/far, /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/bible{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/security) -"pRP" = ( -/turf/open/floor/shiva/yellowfull/west, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/hall_SE) -"pRR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +"pRK" = ( +/obj/structure/surface/rack, +/obj/item/tool/surgery/scalpel/pict_system, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "pRV" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) -"pRX" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_SE) +"pRZ" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "pSg" = ( /obj/structure/inflatable/door, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"pSD" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 8 - }, +"pSh" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/varadero/exterior/pontoon_beach/lz) +"pSz" = ( +/obj/item/weapon/gun/shotgun/pump, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"pSK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"pTc" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - dir = 1; - locked = 1; - name = "\improper Engine Room" +/area/varadero/interior/hall_SE) +"pSI" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "pTg" = ( /obj/structure/machinery/light{ dir = 1 @@ -20148,10 +20242,9 @@ /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"pTI" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/lz2_near) +"pTG" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "pTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -20159,21 +20252,9 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pTQ" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +"pUc" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "pUi" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -20188,6 +20269,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) +"pUC" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "pUW" = ( /obj/item/stack/tile/plasteel{ pixel_x = 4; @@ -20195,68 +20282,53 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"pVh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"pVf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"pVl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Sports Center"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"pVi" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/shiva/north, /area/varadero/interior/research) -"pVz" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"pVF" = ( -/obj/structure/surface/rack, -/obj/item/broken_device{ - desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) +"pVx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) "pVN" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/court) -"pWm" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"pXp" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +"pWo" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/key/cargo_train, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"pWu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"pXn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"pXK" = ( +/obj/item/weapon/baton, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"pXG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green/southwest, -/area/varadero/interior/hall_SE) -"pXL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/area/varadero/interior/research) "pXT" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -20264,20 +20336,16 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"pYb" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "pYn" = ( /turf/closed/wall, /area/varadero/interior/records) -"pYt" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"pYv" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) "pYx" = ( /obj/structure/window/reinforced{ dir = 4; @@ -20305,9 +20373,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"pYH" = ( -/turf/open/gm/coast/beachcorner2/south_west, -/area/varadero/exterior/pontoon_beach/lz) +"pYB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "pYI" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -20315,31 +20387,33 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"pYK" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/monsoon) -"pYV" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"pZl" = ( +"pYN" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"pYR" = ( +/obj/item/tool/minihoe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pYS" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pYX" = ( +/obj/structure/shuttle/engine/router{ + dir = 4; + unacidable = 0 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"pZg" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/electrical) -"pZD" = ( -/obj/structure/closet/crate, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/exterior/eastbeach) "pZS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -20352,18 +20426,37 @@ "pZT" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/lz2_near) +"qad" = ( +/obj/structure/machinery/computer/cameras/telescreen{ + name = "Interrogation Telescreen"; + network = list("interrogation"); + pixel_y = 32 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"qax" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "qaE" = ( /turf/open/floor/wood, /area/varadero/interior/dock_control) -"qaX" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) "qaY" = ( /obj/structure/sign/safety/water, /turf/closed/wall, /area/varadero/interior/library) +"qbA" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "qbX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -20371,38 +20464,12 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"qcC" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"qcD" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -10; - pixel_y = -9 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +"qbZ" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "qcN" = ( /turf/closed/wall, /area/varadero/interior/medical) -"qdd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) -"qdk" = ( -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/comms3) "qdL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/security_space_law{ @@ -20412,6 +20479,21 @@ /obj/item/clothing/head/helmet, /turf/open/floor/wood, /area/varadero/interior/dock_control) +"qec" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "qeh" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -20449,24 +20531,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"qeK" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"qfb" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = -4; - pixel_y = -5 - }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = -4; - pixel_y = -5 - }, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "qfr" = ( /turf/open/gm/dirt, /area/varadero/exterior/comms4) @@ -20474,6 +20538,13 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"qfw" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Evidence Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "qfC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -20486,44 +20557,33 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"qfL" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "qgm" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/pontoon_beach) -"qgy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, +"qgF" = ( +/obj/structure/bed/chair/hunter, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"qhl" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/vomit, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"qgR" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 +/area/varadero/interior/medical) +"qhm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/hall_N) +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qhF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"qhN" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) "qhO" = ( /obj/effect/spawner/random/tool, /turf/open/gm/dirt, @@ -20540,17 +20600,23 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"qhZ" = ( -/obj/structure/window/framed/colony/reinforced, +"qil" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/ammo_magazine/revolver/cmb, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/area/varadero/interior/cargo) "qio" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance) -"qir" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) "qis" = ( /obj/item/paper{ pixel_y = -6; @@ -20561,49 +20627,88 @@ /obj/item/tool/pen, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qiv" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/plasteel{ - amount = 24 - }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/cargo) -"qiP" = ( -/obj/structure/bed/chair/comfy/beige{ +"qiH" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/obj/item/paper/crumpled{ - pixel_x = 15; - pixel_y = -9 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"qjs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"qjd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"qjx" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) -"qjg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"qjF" = ( +/obj/structure/machinery/light, +/obj/structure/closet/toolcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "qjU" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"qjW" = ( +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/mess) +"qjX" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"qko" = ( +/turf/open/floor/shiva/purple/northeast, +/area/varadero/interior/research) "qkq" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qkF" = ( -/obj/structure/largecrate/random/secure, +"qle" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Theta-V Research Laboratory Storage"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"qlx" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/carpet, +/area/varadero/interior/hall_SE) +"qme" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) +"qmm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"qmE" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"qlj" = ( +/area/varadero/interior/maintenance/security) +"qmJ" = ( +/obj/item/stool{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"qmL" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; pixel_x = 16; @@ -20611,40 +20716,16 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"qlw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) -"qlx" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/carpet, -/area/varadero/interior/hall_SE) -"qlW" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"qmF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"qmN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"qnf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"qnm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"qmW" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "qnp" = ( /obj/item/shard{ icon_state = "large"; @@ -20653,20 +20734,29 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"qnN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"qny" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "qnW" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/r_wall, /area/varadero/interior/electrical) +"qoa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Requesitions Office"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "qoj" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -20676,29 +20766,30 @@ /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"qoy" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"qoE" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/varadero/exterior/lz1_near) "qoI" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/monsoon) -"qps" = ( -/obj/structure/machinery/light{ +"qpi" = ( +/obj/structure/bed/chair, +/obj/effect/decal/strata_decals/grime/grime2{ dir = 8 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"qpB" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"qpF" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/shiva/green/northwest, -/area/varadero/interior/court) -"qpD" = ( -/obj/item/device/multitool, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"qpI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "qpK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -20707,21 +20798,24 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"qpZ" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"qqs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"qqz" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"qqA" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "qqJ" = ( /obj/structure/sign/safety/bulkhead_door, /obj/structure/machinery/door_control/brbutton{ @@ -20732,55 +20826,73 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz1_near) -"qqM" = ( -/obj/structure/largecrate/random/mini, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"qqR" = ( -/obj/structure/prop/rock/brown{ - indestructible = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." +"qqP" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"qra" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"qsb" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"qrq" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/obj/structure/prop/rock/brown{ - indestructible = 1; +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"qru" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 1; + name = "LZ1 Pontoon Dock computer" + }, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_console) +"qrN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"qsb" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/rock/brown{ + indestructible = 1; unacidable = 1; name = "sturdy rock(s)"; desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"qsh" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"qsd" = ( +/obj/effect/landmark/good_item, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"qsi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"qto" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security Interrogation"; - req_access_txt = "100" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"qsI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) -"qtr" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, +"qtb" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior_protected/caves/central) "qtv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -20789,28 +20901,38 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"qtQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_y = 5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 18 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +"qtX" = ( +/obj/item/paper, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"quk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "qul" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/north_research) +"quo" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "qus" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"quP" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"quz" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "quR" = ( /obj/item/stack/sheet/metal, /turf/open/floor/wood, @@ -20819,76 +20941,50 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/administration) -"qvv" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) -"qvO" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, +"qvI" = ( +/obj/structure/closet/toolcloset, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"qvQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +/area/varadero/interior/maintenance/north) "qvS" = ( /turf/open/gm/coast/south, /area/varadero/exterior/eastocean) -"qwB" = ( +"qvU" = ( +/obj/structure/machinery/light, /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 + icon_state = "pottedplant_22" }, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/administration) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"qwu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) "qwE" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"qwQ" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"qwU" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"qxa" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"qxb" = ( -/obj/structure/bed/alien{ - can_buckle = 0; - color = "#aba9a9" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +"qwJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"qwP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/bed/alien{ - buckling_y = 13; - color = "#aba9a9"; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"qxV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"qxu" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) "qyk" = ( /obj/structure/machinery/light{ dir = 8 @@ -20904,23 +21000,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"qym" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/crate/trashcart{ - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"qyH" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) "qyJ" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz1_near) @@ -20928,12 +21007,6 @@ /obj/structure/largecrate/random/case, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"qyW" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/beach_bar) "qza" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -20947,19 +21020,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"qzb" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"qzd" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/research_notes, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/administration) "qzi" = ( /obj/structure/sign/safety/high_voltage, /obj/structure/sign/safety/hazard{ @@ -20971,20 +21031,15 @@ /obj/structure/machinery/door/airlock/almayer/engineering/autoname, /turf/open/floor/wood, /area/varadero/interior/dock_control) +"qzx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "qzZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) -"qAd" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper External Airlock" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) "qAg" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, @@ -20993,48 +21048,47 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"qAr" = ( -/obj/structure/machinery/light{ +"qAu" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "qAy" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"qAI" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, +"qAz" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"qAN" = ( +/obj/item/facepaint/sunscreen_stick, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) "qAS" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"qBn" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 +"qBb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Lobby" }, -/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"qBm" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior/maintenance/north) "qBy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -21044,14 +21098,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"qBO" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) "qBQ" = ( /obj/structure/coatrack, /obj/item/clothing/suit/armor/bulletproof, @@ -21072,10 +21118,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"qCk" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/administration) +"qCD" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "qCE" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/gin{ @@ -21084,37 +21130,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"qCI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) "qCT" = ( /obj/structure/inflatable, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"qCY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"qDh" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +"qCV" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/varadero/exterior/lz1_near) "qDr" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -21122,37 +21144,10 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"qDs" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"qDt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"qDv" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"qDw" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) "qDR" = ( /obj/item/device/flashlight, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qEa" = ( -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "qEc" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -21170,10 +21165,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"qEn" = ( -/obj/item/stack/sheet/metal, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"qEm" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "qEt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -21182,87 +21177,154 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qEG" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"qFe" = ( -/obj/effect/overlay/palmtree_r{ - icon_state = "palm2" +"qEA" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"qEJ" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"qEV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/pontoon_beach) -"qFC" = ( -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) +/turf/open/floor/white, +/area/varadero/interior/toilets) +"qFE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "qFI" = ( /obj/item/tool/wet_sign, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"qFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) "qFZ" = ( /turf/open/floor/wood, /area/varadero/interior/bunks) -"qGE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +"qGb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"qGq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"qGx" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "qHc" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"qHl" = ( -/obj/structure/prop/fishing/line/long/part2, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"qHu" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"qHF" = ( -/obj/structure/disposalpipe/segment{ +"qHm" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"qHw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"qHG" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/weapon/gun/pistol/mod88{ + pixel_y = -2 + }, +/obj/structure/machinery/storm_siren{ dir = 8; - icon_state = "pipe-c" + pixel_x = 3 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "qHJ" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"qId" = ( -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) -"qIi" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +"qIc" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "qIF" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"qJF" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, +"qJe" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"qJr" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"qJV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/court) +"qJY" = ( +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/security) +"qKl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"qKb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/varadero/interior/hall_SE) +"qKm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "qKq" = ( /obj/structure/closet/secure_closet/RD, /turf/open/floor/wood, /area/varadero/interior/research) +"qKL" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "qKM" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, @@ -21271,36 +21333,10 @@ "qKZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz1_near) -"qLf" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"qLq" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) +"qLc" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "qLs" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -21309,83 +21345,44 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/court) -"qLH" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +"qMC" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/records) +"qMJ" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"qMl" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"qMr" = ( -/obj/item/tool/minihoe, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"qMD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/nam{ - pixel_x = 3; - pixel_y = 9 +/area/varadero/exterior/comms4) +"qMS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/item/device/cassette_tape/ocean{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/device/cassette_tape/pop2, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "qMW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"qMY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"qNu" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz2_near) -"qNC" = ( -/obj/structure/surface/table, -/obj/item/tool/weldpack{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = -1 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"qNE" = ( -/obj/structure/largecrate/random/secure, +"qNl" = ( +/obj/item/stack/sheet/metal/med_large_stack, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"qNI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/janitor{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = -4 +/area/varadero/interior/comms1) +"qNS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"qNP" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "qNX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/lz2_near) @@ -21393,12 +21390,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"qOn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) "qOF" = ( /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, @@ -21408,18 +21399,17 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"qOO" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"qOG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/item/storage/firstaid/rad{ + pixel_y = 4 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "qOS" = ( /obj/item/reagent_container/glass/bucket, /turf/open/auto_turf/sand_white/layer1, @@ -21430,47 +21420,27 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"qPk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"qPs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"qPG" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"qPq" = ( +/obj/structure/prop/static_tank/fuel{ + pixel_y = 8 }, -/turf/open/floor/shiva/yellow/northeast, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) -"qQd" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"qQe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 +"qPI" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"qQk" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/maintenance) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"qPN" = ( +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/cargo) "qQt" = ( /obj/structure/window/reinforced{ dir = 4; @@ -21495,72 +21465,67 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"qQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"qQT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"qRb" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"qQN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) -"qRe" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) -"qRi" = ( -/obj/item/device/flashlight/lamp/tripod, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"qRx" = ( +/obj/structure/closet/crate/construction, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/item/tool/hatchet, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) +/area/varadero/exterior/eastbeach) "qRy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 }, /turf/open/floor/wood, /area/varadero/interior/court) -"qRP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"qSj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/comms3) -"qSJ" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 +"qRQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) +/obj/item/tool/stamp, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"qSF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/rods, +/obj/item/storage/donut_box, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "qSR" = ( /obj/structure/closet/crate/trashcart, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qTh" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 +"qTp" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/monsoon) +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qTs" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -21573,120 +21538,128 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) -"qTz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"qTE" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/eastbeach) "qTZ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) -"qUf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"qUj" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "qUK" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"qUQ" = ( -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) +"qUN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "qUW" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"qVb" = ( -/obj/item/stack/cable_coil/cyan, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"qVl" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 +"qUY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"qVm" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"qVp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"qVD" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -6 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"qVJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/cargo) "qVL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qVO" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"qVR" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"qWj" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"qWz" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/pontoon_beach/lz) +"qWC" = ( +/turf/open/floor/shiva, +/area/varadero/interior/technical_storage) +"qWW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"qVS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/area/varadero/interior/maintenance) +"qXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"qWt" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/hall_N) -"qWw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/area/varadero/interior/medical) +"qXL" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"qXW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"qWC" = ( -/turf/open/floor/shiva, -/area/varadero/interior/technical_storage) -"qXn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/item/prop/magazine/boots, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"qXY" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/mess) -"qXO" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/shiva/snow_mat/north, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) -"qYd" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"qYe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) "qYg" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -21694,24 +21667,40 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"qYE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/suit/fire/firefighter{ - pixel_x = 3; - pixel_y = 7 +"qYk" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"qYy" = ( +/obj/structure/prop/rock/brown, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"qYB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"qYV" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"qZr" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"qZH" = ( -/obj/structure/machinery/conveyor_switch, +/area/varadero/interior/maintenance/security) +"qZq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N" }, -/turf/open/floor/shiva/yellowfull/west, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "qZJ" = ( /obj/item/tool/warning_cone, @@ -21729,36 +21718,50 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"rbd" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"rbp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"qZZ" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"rak" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"raD" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/varadero/interior/library) +"raI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"rba" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"rbb" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/pontoon_beach) +"rbS" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "rbU" = ( /turf/open/floor/wood, /area/varadero/interior/research) -"rco" = ( -/obj/structure/inflatable/door, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) +"rbW" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "rcq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall, @@ -21767,30 +21770,62 @@ /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"rcA" = ( -/obj/structure/bed/chair/office/light{ +"rcH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"rdq" = ( -/obj/item/tool/wrench{ - pixel_x = -1; - pixel_y = -2 +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/disposals) +"rcM" = ( +/obj/structure/closet/crate/freezer/cooler/oj, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/item/reagent_container/food/drinks/cans/souto/lime, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"rcY" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) +/area/varadero/exterior/pontoon_beach) "rdx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/library) +"rdK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/tool/plantspray/pests/old/phosmet{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/weapon/wirerod{ + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"rdS" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) "red" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -21802,82 +21837,124 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"res" = ( -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) -"rex" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"reD" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"reA" = ( -/obj/structure/xenoautopsy/tank/broken, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "reG" = ( /turf/closed/wall/r_wall/elevator{ dir = 10 }, /area/varadero/interior/hall_N) -"rfn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"rft" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"reL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"reR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/technical_storage) +"rfh" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"rfl" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 24; + start_charge = 0 + }, +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) "rfV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"rgb" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_NW) -"rgf" = ( +"rfW" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"rfX" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz1_near) +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "rgg" = ( /obj/structure/girder/displaced, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"rgy" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +"rgj" = ( +/obj/item/stool, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"rgM" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"rgz" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/swcaves) -"rgZ" = ( -/obj/item/tool/kitchen/knife, -/obj/structure/surface/table, -/turf/open/floor/asteroidwarning/east, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/comms2) +"rhc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"rhd" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "rhu" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"rhG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"rhS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "ria" = ( /obj/structure/bed/sofa/pews/flipped, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"rib" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"rin" = ( +/obj/structure/lamarr, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"riw" = ( +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "riJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/window/framed/colony, @@ -21895,43 +21972,11 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"rja" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "rjn" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 }, /area/varadero/interior/records) -"rjo" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/lz1_near) -"rjE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/trash/plate{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"rjH" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "rjM" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -21944,17 +21989,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"rjZ" = ( -/obj/structure/machinery/light{ - dir = 1 +"rki" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"rkl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"rkA" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rkC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, @@ -21968,38 +22012,41 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"rlq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "rlw" = ( /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rlI" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"rlJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/hall_NW) -"rme" = ( -/obj/structure/surface/table, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/weeds{ - pixel_x = 1; - pixel_y = -2 +"rlU" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) "rmf" = ( /obj/structure/barricade/wooden, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) +"rmj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "rmo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/medical/advanced/bruise_pack/upgraded{ @@ -22014,103 +22061,51 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"rmr" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"rmB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"rmL" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"rmS" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) +"rmw" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "rmV" = ( /obj/effect/spawner/random/powercell, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"rmZ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"rnj" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"rni" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/tool/surgery/cautery/predatorcautery, -/obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"rnL" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/lz2_near) -"rnP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/glass{ - req_access = null; - req_one_access = null +/area/varadero/exterior/pontoon_beach/lz) +"rnv" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"rnA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"rnG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) "ron" = ( /obj/structure/tunnel{ id = "north_research_tunnel" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"roy" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/surface/table, -/obj/item/spacecash/c1000{ - pixel_y = 6 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"roJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Requesitions Office"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"roT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - density = 0; - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"row" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"rpd" = ( -/obj/structure/bed/chair, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/hall_SE) "rpu" = ( /turf/closed/wall, /area/varadero/interior/oob) @@ -22118,35 +22113,27 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"rpH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lights, -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"rpI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, +"rpD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"rpN" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/maintenance) +/area/varadero/interior/maintenance/security) +"rpO" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rpT" = ( /obj/item/ammo_casing/shell{ icon_state = "shell_9_1" }, /turf/open/floor/wood, /area/varadero/interior/security) -"rqa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/attachment, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +"rqc" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "rqg" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -22159,32 +22146,48 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/comms2) -"rqn" = ( -/obj/item/storage/donut_box{ - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull, +"rqp" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) -"rqx" = ( +"rqq" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"rqG" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/machinery/alarm{ dir = 4; - climb_delay = 1; - layer = 2.99 + pixel_x = -24 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"rqt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/trash/plate{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"rqA" = ( +/obj/structure/bed/chair, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"rrg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rrp" = ( /obj/item/paper_bin, /obj/item/tool/stamp{ @@ -22196,54 +22199,38 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"rrr" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 +"rrE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"rrK" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) -"rrA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"rrZ" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) "rsf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"rsh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/shiva/wred/northwest, -/area/varadero/interior/medical) -"rsj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/donkpocket{ - pixel_x = -5; - pixel_y = 17 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"rsB" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/electrical) -"rsL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Checkpoint"; - req_access_txt = "100" +"rso" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"rsM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +"rsA" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "rsO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -22255,173 +22242,141 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"rte" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"rtg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "rtm" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"rtr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null +"rtp" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"rtu" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"ruh" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/firealarm{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - pixel_y = -24 + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) -"rtx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"rtP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"rtR" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"rtV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"rui" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"ruq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - pixel_x = 2; - pixel_y = 7 +/obj/structure/pipes/vents/pump, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"ruE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"rve" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"rvr" = ( +/obj/structure/closet/emcloset, /turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"ruZ" = ( -/obj/item/ammo_magazine/smg/nailgun, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/nailgun{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/ammo_magazine/smg/nailgun{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) +/area/varadero/interior/hall_NW) "rvD" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"rwh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +"rwi" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) -"rwP" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = -6; - pixel_y = 6 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"rwk" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"rwr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"rwV" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) +"rwt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"rwA" = ( +/obj/item/tool/weldingtool/experimental, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) -"rxa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/maintenance) -"rxe" = ( -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/cargo) -"rxI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"rwD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"rxV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/maintenance/security) "ryD" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"ryG" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/red{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat/red{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"rzg" = ( -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/administration) -"rzM" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"rzO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"rzU" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"rAf" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/trash/plate{ - pixel_y = 7 - }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"rAj" = ( -/obj/structure/largecrate/random/case/double, +"ryN" = ( +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) +"ryR" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"rzV" = ( +/obj/structure/catwalk, +/obj/structure/largecrate/random, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) -"rAy" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) +"rAC" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) +"rAE" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/eastbeach) "rBa" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -22429,32 +22384,31 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"rBi" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) +"rBn" = ( +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) "rBq" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"rBP" = ( -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_SE) +"rCd" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"rCe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "rCf" = ( /obj/structure/largecrate/random/case/small, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rCs" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 +"rCz" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "rCB" = ( /obj/structure/filingcabinet/chestdrawer{ pixel_x = -8 @@ -22464,32 +22418,84 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"rDz" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 +"rDF" = ( +/obj/structure/pipes/binary/passive_gate, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"rEh" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_3_1" +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"rEy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"rDD" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/varadero/interior_protected/maintenance/south) +"rEF" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"rDK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/sheet/metal, +/area/varadero/exterior/comms4) +"rEK" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"rFj" = ( +"rEP" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"rET" = ( +/obj/item/pizzabox/meat{ + pixel_x = -5; + pixel_y = 13 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"rFb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"rFl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "rFv" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood/gibs, @@ -22510,12 +22516,9 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"rGl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) +"rGs" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "rGA" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random/mini{ @@ -22524,15 +22527,50 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rGE" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"rGP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"rHv" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_N) +/area/varadero/interior/maintenance/security) +"rGS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/tool/stamp{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/storage/box/masks{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"rGW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"rHg" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = 25 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"rHx" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "rHE" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -22540,28 +22578,39 @@ }, /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"rIF" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"rHQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -16; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"rIo" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "rIG" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rIN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/court) -"rIU" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/chapel) "rJq" = ( /obj/structure/surface/table, /obj/item/pamphlet/skill/engineer{ @@ -22570,29 +22619,53 @@ }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"rJs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"rJu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "rJv" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"rJI" = ( -/obj/structure/disposalpipe/segment{ +"rJG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"rKf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"rKl" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"rJW" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/shiva/greencorners/east, +/area/varadero/interior/hall_SE) +"rKa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"rKy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/area/varadero/interior_protected/caves) "rKB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -22601,15 +22674,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"rKL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"rKM" = ( -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/pontoon_beach) "rKS" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -22624,37 +22688,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"rLC" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"rLK" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - pixel_x = 11; - pixel_y = 9 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = 10; - pixel_y = 20 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"rKU" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"rLw" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"rLU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"rLW" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/chunk, -/obj/item/trash/raisins, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "rMb" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -22667,53 +22708,46 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"rMM" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"rMN" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) "rMP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"rNf" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) "rNm" = ( /obj/item/stack/sheet/wood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/research) -"rNo" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 +"rNy" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"rOL" = ( -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = -8; - pixel_y = 15 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"rNZ" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/hall_SE) +"rOV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = 7; - pixel_y = 15 +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"rOW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/white, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/court) +"rPs" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "rPB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -22724,30 +22758,55 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/records) -"rPT" = ( -/obj/structure/barricade/wooden{ +"rPG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"rQe" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"rQk" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"rPN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/stool{ + icon_state = "stool_alt" }, -/turf/open/floor/shiva/greencorners/north, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) +"rPP" = ( +/obj/structure/bed/chair/comfy/orange{ + buckling_y = 9; + dir = 8; + pixel_y = 9 + }, +/obj/item/device/megaphone{ + layer = 2; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/hazardvest{ + desc = "It oozes authority, prestige, and sick summer vibes."; + name = "life guard's vest"; + pixel_x = 10; + pixel_y = -9 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"rQi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"rQr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "rQU" = ( /obj/structure/girder, /obj/structure/prop/invuln/lattice_prop{ @@ -22757,11 +22816,16 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"rQV" = ( -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"rQY" = ( -/turf/open/floor/shiva/multi_tiles, +"rQZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/shiva/blue/southwest, /area/varadero/interior/administration) "rRm" = ( /obj/structure/disposalpipe/segment{ @@ -22770,38 +22834,43 @@ /obj/item/circuitboard/apc, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"rRq" = ( -/obj/structure/reagent_dispensers/fueltank, +"rRy" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"rRz" = ( +/area/varadero/exterior/eastbeach) +"rRC" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"rRF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"rRO" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"rSj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/obj/effect/decal/remains/human, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rSl" = ( /obj/item/tool/wrench, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"rSu" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"rSx" = ( -/obj/structure/surface/table, -/obj/structure/largecrate/random/mini/chest{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"rSA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "rSI" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -22823,6 +22892,15 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) +"rSO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "rSX" = ( /obj/structure/window/reinforced{ dir = 4; @@ -22852,22 +22930,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"rTi" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) +"rTf" = ( +/obj/item/storage/box/bodybags, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"rTn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"rTs" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) "rTu" = ( /obj/structure/surface/table/woodentable, /obj/item/restraint/handcuffs, /obj/item/weapon/baton, /turf/open/floor/wood, /area/varadero/interior/security) -"rTv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) "rTT" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -22877,10 +22958,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/disposals) -"rUa" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) "rUc" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -22898,19 +22975,26 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"rUw" = ( -/obj/structure/window/reinforced{ +"rUe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"rUI" = ( -/obj/structure/closet/crate/construction, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/item/tool/hatchet, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_1_1" + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"rUm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"rVg" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "rVi" = ( /obj/item/tool/candle, /turf/open/floor/carpet, @@ -22923,119 +23007,125 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_console/two) -"rVI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"rVS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/comms3) -"rVZ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"rWx" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/mirror{ - pixel_y = -28 +"rVm" = ( +/obj/item/ammo_magazine/smg/nailgun, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/nailgun{ + pixel_x = -6; + pixel_y = -1 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"rWG" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -9 +/obj/item/ammo_magazine/smg/nailgun{ + pixel_x = 6; + pixel_y = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior_protected/caves/central) -"rWJ" = ( -/obj/item/stool, -/turf/open/floor/shiva/north, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) +"rVU" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"rWl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "rWN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"rWY" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 +"rWW" = ( +/obj/structure/lz_sign/new_varadero, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"rXe" = ( +/obj/structure/machinery/door/window/northright{ + name = "Disposals Chute" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"rXf" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/redcorners, -/area/varadero/interior/morgue) +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) "rXk" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz2_near) +"rXy" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"rXL" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_N) "rXS" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"rXY" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "rYi" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"rYC" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"rYO" = ( -/obj/structure/prop/static_tank/water{ - pixel_y = 8 +"rYs" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"rYR" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 +/area/varadero/interior/hall_SE) +"rYF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"rZd" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) "rZr" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 6 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"rZA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +"rZH" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"sab" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) "sah" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -23045,23 +23135,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"saq" = ( -/obj/item/storage/firstaid/o2{ - layer = 3.1; - pixel_x = 2; - pixel_y = 10 - }, +"saD" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - layer = 3.2; - pixel_x = -4; - pixel_y = 3 - }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) -"saC" = ( -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "saQ" = ( /obj/structure/barricade/wooden, /obj/item/shard{ @@ -23071,6 +23148,17 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"sbh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"sbn" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "sbP" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -23079,13 +23167,6 @@ /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"sbX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) "scD" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" @@ -23095,49 +23176,24 @@ "scL" = ( /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"scO" = ( -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"sdy" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/maintenance/north) +"sdf" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "sdz" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_NW) -"sdS" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "sdU" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/wood, /area/varadero/interior/research) -"sdZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lightstick/red{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"ses" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/disposals) -"seY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"seP" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/medical) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "seZ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -23165,22 +23221,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"sff" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) "sfj" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sfs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) +"sfv" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/morgue) "sfF" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -23188,60 +23238,18 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"sfM" = ( -/obj/structure/barricade/handrail/wire, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) "sgk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sgl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"sgn" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "sgp" = ( /obj/structure/barricade/wooden, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"sgq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, +"sgs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/northwest, /area/varadero/interior/hall_SE) -"sgy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "sgz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -23251,13 +23259,35 @@ "shb" = ( /turf/closed/wall/r_wall, /area/varadero/interior/medical) -"shG" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 +"shf" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"shs" = ( +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_N) +"shv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"shC" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"shL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "shO" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -23269,10 +23299,13 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"shP" = ( -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +"shZ" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "sia" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -23280,76 +23313,48 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"sic" = ( -/obj/structure/machinery/light{ +"siH" = ( +/obj/structure/platform/kutjevo/rock{ dir = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/cargo) +"sjG" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "\improper Theta-V Research Laboratory Director's Office"; + req_access = null; + req_one_access = null }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"sid" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"sjD" = ( -/obj/structure/machinery/light{ +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"sjI" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_SE) -"sjR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"skp" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"skW" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "skY" = ( /obj/effect/landmark/objective_landmark/far, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"slw" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"slA" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/bed/chair/comfy{ - pixel_x = -7; - pixel_y = 18 - }, -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 7; - pixel_y = 12 - }, -/obj/structure/bed/chair/comfy{ - dir = 4; - pixel_x = 7 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"slm" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "slB" = ( /obj/structure/filingcabinet{ density = 0; @@ -23359,6 +23364,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"slC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "slE" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/electrical) @@ -23366,26 +23377,42 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"smx" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"smE" = ( +"slL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"slV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"smO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/area/varadero/interior/maintenance) +"smc" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"smd" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"smw" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"snd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "snl" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -23396,45 +23423,67 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sny" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"snA" = ( +/obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/maintenance/north) "snE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"snP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/curtain/red, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/bunks) -"snS" = ( -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"sou" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"spd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat/east, +"snG" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"spv" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"snM" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"snN" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"soo" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"soH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/prop/static_tank{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"spc" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"spf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"spl" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"spB" = ( +/obj/structure/blocker/fog, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "spN" = ( /obj/item/fuel_cell{ pixel_x = 4; @@ -23442,22 +23491,46 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"spP" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/court) -"sre" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 +"sqh" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"sra" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "srg" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) +"srE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/device/flashlight/lamp/candelabra{ + pixel_x = -6; + pixel_y = 22 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/administration) +"srH" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "srU" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = -12; @@ -23470,49 +23543,32 @@ dir = 4 }, /area/varadero/interior/hall_N) -"srX" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/tools/full, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) "srY" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/hall_N) -"ssg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"ssh" = ( -/obj/structure/prop/turbine_extras/left, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"ssv" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"ssj" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ssw" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 3; + pixel_y = 15; + indestructible = 1; + unacidable = 1 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) +/area/varadero/exterior/farocean) +"ssM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight/flare, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) "ssZ" = ( /obj/item/storage/belt/marine, /turf/open/floor/carpet, @@ -23520,57 +23576,53 @@ "stl" = ( /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/pontoon_beach) -"stv" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" +"sui" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = -7; + pixel_y = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"stw" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 9 }, -/obj/structure/platform/kutjevo/rock, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"sun" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/maintenance/security) -"stK" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/digsite) -"stU" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 + pixel_x = 16; + pixel_y = -8 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"stV" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_y = 19 +/area/varadero/interior/hall_SE) +"suB" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"suC" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) +"suH" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"suE" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/blue, -/area/varadero/interior/maintenance) -"suY" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"suL" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) +"suZ" = ( /obj/structure/barricade/handrail/wire{ - dir = 8 + layer = 3.5 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) +"svb" = ( +/obj/item/trash/boonie, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) "svt" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -23582,10 +23634,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"svG" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "svH" = ( /obj/structure/surface/table/woodentable, /obj/item/book/manual/marine_law{ @@ -23602,12 +23650,16 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"swf" = ( -/obj/structure/bed/chair{ +"swh" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "swi" = ( /obj/item/storage/pouch/shotgun/large, /turf/open/floor/wood, @@ -23620,27 +23672,24 @@ /obj/item/storage/pouch/machete/full, /turf/open/floor/wood, /area/varadero/interior/security) -"swk" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +"swx" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"swv" = ( -/obj/structure/surface/rack, -/obj/item/pizzabox/meat, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"swM" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "swV" = ( /obj/structure/closet/crate/construction, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"sxI" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "sxL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -23658,79 +23707,6 @@ /obj/item/weapon/gun/energy/yautja/plasmapistol, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"sxY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"syb" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/ammo_magazine/pistol/mod88{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/ammo_magazine/pistol/mod88{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/ammo_magazine/pistol/mod88{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/ammo_magazine/pistol/mod88{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/ammo_magazine/pistol/mod88, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/ammo_magazine/pistol{ - pixel_x = -4 - }, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol{ - pixel_x = 4 - }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"syl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"syt" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"syL" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"syM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard/computer/atmos_alert, -/obj/item/circuitboard/machine/smes{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 5; - pixel_y = 13 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva/blue/southwest, -/area/varadero/interior/technical_storage) "szh" = ( /turf/closed/wall/r_wall/elevator{ dir = 4 @@ -23744,189 +23720,50 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"szS" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"szZ" = ( -/obj/structure/curtain/red, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"sAR" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva/multi_tiles/west, -/area/varadero/interior/cargo) -"sAW" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"sAY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"sBk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 +"sAU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/shiva/purplefull/west, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"sBi" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"sBl" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) -"sBF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Colony Administration"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"sBN" = ( -/obj/structure/target/syndicate, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "sBX" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/laundry) -"sCk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"sCp" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"sCA" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"sCJ" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"sCV" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/cargo) -"sDf" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, +"sCE" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/popcorn, +/obj/item/hardpoint/locomotion/van_wheels, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"sDj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, +"sDD" = ( +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) -"sDo" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"sDE" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "sDH" = ( /obj/item/grown/log, /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"sDM" = ( -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"sDQ" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) -"sDZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) "sFc" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/barcardine, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sFJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"sFN" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_2" - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) -"sGb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Disposals"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/disposals) -"sGo" = ( -/turf/open/floor/white, -/area/varadero/interior/toilets) -"sGY" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"sHs" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) -"sHJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"sFP" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "sHO" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -23935,49 +23772,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"sHV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"sIf" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" +"sII" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) -"sIn" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/disposals) +"sIL" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"sJl" = ( /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) -"sIK" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"sIQ" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"sIU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"sJm" = ( -/turf/open/gm/dirt/desert1, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "sJq" = ( /obj/structure/window/reinforced{ @@ -24000,44 +23809,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"sJx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"sJB" = ( -/obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/hall_N) -"sJF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/darkgreencorners2/north, -/area/varadero/interior/hall_SE) -"sJZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"sJG" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"sJQ" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) -"sKe" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/shiva/purple/west, -/area/varadero/interior/research) -"sKu" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"sKs" = ( +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/maintenance/north) "sKz" = ( /obj/structure/closet/crate/supply, /obj/item/storage/box/wy_mre, @@ -24049,103 +23837,136 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/morgue) -"sKF" = ( -/obj/effect/decal/cleanable/dirt, +"sKD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"sKF" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sKL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"sKI" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "sKN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sLO" = ( -/obj/item/device/flashlight/slime{ - mouse_opacity = 0; - invisibility = 1; - indestructible = 1; - alpha = 0 +"sLy" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"sLU" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"sLE" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"sLX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"sMk" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "sMn" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/carpet, /area/varadero/interior/records) +"sMx" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 1 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 12 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_NW) "sMJ" = ( /obj/structure/closet/crate, /obj/item/prop/magazine/dirty, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sNa" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"sNl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"sNp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"sNh" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + dir = 1; + locked = 1; + name = "\improper Engine Room" }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "sNx" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/farocean) -"sNy" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"sNT" = ( -/obj/structure/machinery/light/small{ +"sOc" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"sOd" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) +"sOk" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/maintenance/north) -"sOj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "sOw" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"sPh" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/electrical) +"sOJ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"sOR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "sPs" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/wood, /area/varadero/interior/security) -"sPD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"sPY" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/electrical) -"sQn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +"sPA" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/pontoon_beach) +"sPF" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"sPG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"sQj" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "sQs" = ( /obj/structure/filingcabinet{ density = 0; @@ -24179,9 +24000,41 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"sQV" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "sRs" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) +"sRw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"sRy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"sRE" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"sRH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "sRM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -24193,103 +24046,83 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"sSn" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) "sSp" = ( /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/shotgun/pump, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"sSz" = ( -/obj/item/device/camera{ - pixel_x = -4; - pixel_y = 9 +"sSs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) +"sSG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/evidencebag{ - pixel_x = 13; - pixel_y = 5 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"sTN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"sTQ" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz2_near) +"sUn" = ( /obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"sUp" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"sSU" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 1; - name = "\improper Underground Command Center"; - req_access_txt = "100" +"sUq" = ( +/obj/structure/largecrate/random/mini/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"sUr" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"sSZ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"sUs" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"sTA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/disposals) -"sTT" = ( -/obj/structure/machinery/light, -/obj/structure/closet/toolcloset, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"sTW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sUV" = ( +/obj/structure/surface/table, +/obj/item/storage/wallet/random{ + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"sUj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 6 - }, -/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"sUp" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"sUG" = ( -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"sUK" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -1; - pixel_y = 12 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0 +/area/varadero/interior/maintenance/north) +"sUZ" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "sVk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -24304,6 +24137,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"sVv" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "sVH" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -24312,83 +24152,120 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"sWp" = ( -/turf/open/floor/shiva/red/north, -/area/varadero/interior/medical) +"sVV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/court) +"sWO" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/hall_N) "sXb" = ( /turf/closed/wall, /area/varadero/interior/library) "sXc" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/lz2_near) +"sXj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/plasticflaps/mining, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "sXn" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) -"sYi" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) -"sZd" = ( -/obj/structure/girder/displaced, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) -"sZe" = ( -/obj/item/paper, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"sZW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"sXV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"sXY" = ( /obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 + dir = 4; + pixel_x = -3 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"sYt" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"sZd" = ( +/obj/structure/girder/displaced, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"sZA" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"tai" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "tak" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"tam" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"tbQ" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"tcq" = ( +"taB" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"taE" = ( +/obj/structure/closet/jcloset, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/laundry) +"tbk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/surface/table, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"tcS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"tcX" = ( +/obj/item/stool, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"tbz" = ( /obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, +/obj/item/tool/surgery/scalpel, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance) +"tbJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"tbO" = ( +/obj/structure/catwalk{ + indestructible = 1 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"tch" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "tdp" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, @@ -24405,78 +24282,25 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"tdy" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/marine_law{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"tdN" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/varadero/interior_protected/maintenance/south) -"tdX" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"teg" = ( -/obj/structure/girder, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"ten" = ( -/obj/structure/prop/invuln/minecart_tracks{ +"tdD" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"teu" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"tdH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/technical_storage) -"tex" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/turf/open/floor/darkgreencorners2/north, +/area/varadero/interior/hall_SE) +"tdN" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/varadero/interior_protected/maintenance/south) "tez" = ( /obj/item/toy/bikehorn/rubberducky, /turf/open/gm/coast/beachcorner/north_west, @@ -24490,38 +24314,28 @@ /obj/structure/largecrate/random/case/small, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"tfc" = ( -/turf/open/floor/asteroidwarning, -/area/varadero/exterior/lz2_near) -"tfj" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"tfC" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" +"tfn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/weapon/harpoon/yautja{ - anchored = 1; - name = "Alien Harpoon"; - pixel_x = 6 +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"tfz" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/caves/digsite) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"tgb" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) "tgk" = ( /obj/structure/filingcabinet{ density = 0; @@ -24549,34 +24363,39 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"tgE" = ( -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/pontoon_beach) "tgK" = ( /obj/structure/closet/crate/construction, /obj/item/stack/sandbags_empty/half, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"tgM" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"thk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "thn" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"thp" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) "thS" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"thY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/crate/trashcart, -/obj/item/stack/sheet/mineral/plastic{ - amount = 3 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) "tia" = ( /obj/structure/machinery/conveyor, /turf/open/gm/dirt, @@ -24585,31 +24404,30 @@ /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/varadero/interior/security) +"tix" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "tiF" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"tjn" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +"tiH" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"tjr" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/monsoon) +/obj/structure/closet/secure_closet/scientist, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "tjs" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -24628,9 +24446,6 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"tjF" = ( -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) "tjO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/stool{ @@ -24638,62 +24453,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"tjS" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/cargo) -"tkh" = ( -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/eastbeach) -"tkr" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"tkw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Breakroom"; - req_one_access = null; - req_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) "tkF" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"tkT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/administration) -"tkV" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "tlq" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -24703,6 +24466,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"tlB" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "tlE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -24711,71 +24478,68 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"tlG" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"tlP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"tlM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"tlT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"tmm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +/area/varadero/interior/hall_SE) +"tmn" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"tmC" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"tmU" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/chapel) "tmZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz2_near) -"tng" = ( -/obj/item/stool{ - layer = 2.5; - pixel_x = -3; - pixel_y = 8 +"tnm" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"tnF" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"tnA" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"tnI" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"tnD" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/turf/open/floor/wood/wood_broken6, -/area/varadero/interior/beach_bar) -"tnN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Research Laboratory"; - req_access_txt = "100" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"tor" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"tou" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "toN" = ( /obj/item/tool/warning_cone{ pixel_x = 5; @@ -24793,78 +24557,92 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"tpB" = ( +"tpc" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner{ - pixel_x = 5; - pixel_y = 3 +/obj/item/paper/janitor{ + pixel_x = -4; + pixel_y = 4 }, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = -16; - pixel_y = 2 +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"tpo" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"tpL" = ( -/turf/open/floor/shiva/green/north, +/turf/open/floor/shiva/green, /area/varadero/interior/court) +"tpE" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) "tpO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"tpV" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -13; - pixel_y = -3 - }, -/obj/structure/bed/chair{ +"tpR" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"tqa" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) "tqh" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/research) -"tqr" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, +"tqi" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"tqq" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"tqD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) -"tqV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"trh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"tqW" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/ammo_magazine/handful/shotgun/buckshot{ + pixel_x = -9 + }, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/hall_N) +"tqZ" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"trl" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"trw" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "trB" = ( /obj/item/stack/sheet/wood{ amount = 40 @@ -24905,37 +24683,74 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"trQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"tso" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/maintenance) -"tsz" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"trW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"tsA" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "tsC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tsX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"tuL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/greenfull/west, +"tsT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"ttq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"ttv" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"ttz" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/hall_N) +"tuH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "tuR" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -24949,21 +24764,10 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating, /area/varadero/interior/disposals) -"tuZ" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"tvv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +"tvg" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) "tvI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/peppermill{ @@ -24972,21 +24776,93 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"twh" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +"tvK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 6 }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/security) -"twm" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"tvW" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"twC" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_SE) -"tyT" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"twS" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"twX" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"tyy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"tyH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials/random{ + pixel_y = 5 + }, +/obj/item/clothing/glasses/science{ + pixel_y = 9 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"tyM" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"tyY" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"tyZ" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"tzo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/folder/yellow{ + pixel_x = -7 + }, +/obj/item/facepaint/lipstick/jade{ + pixel_x = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"tzM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24995,79 +24871,76 @@ dir = 1 }, /obj/structure/barricade/handrail/wire{ - dir = 4 + dir = 8; + layer = 2.991 }, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"tyV" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"tzp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"tAz" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"tzw" = ( -/turf/open/floor/wood, -/area/varadero/interior/library) -"tzP" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/morgue) +"tAC" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "tAT" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"tBm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +"tBw" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"tBS" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/exterior/lz1_near) +"tCe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "tCl" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"tCA" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/varadero/interior/caves/east) -"tCG" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"tCM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"tCV" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) -"tDh" = ( -/obj/structure/pipes/portables_connector{ - dir = 8 +"tCp" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"tDo" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"tDF" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/maintenance) -"tDR" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/largecrate/random/mini/wooden{ + desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"tCA" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/varadero/interior/caves/east) +"tDm" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"tDD" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "tEc" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -25075,6 +24948,20 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/lz1_near) +"tEo" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "tEF" = ( /obj/structure/prop/rock/brown, /obj/structure/machinery/storm_siren{ @@ -25084,9 +24971,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"tEJ" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "tEM" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -25100,30 +24984,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tER" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) +"tFG" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "tFQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"tFX" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"tGl" = ( -/turf/open/floor/shiva/purple/northeast, -/area/varadero/interior/research) -"tGr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) "tGw" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -25131,21 +24999,39 @@ }, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/pontoon_beach) +"tGK" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "tGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 }, /area/varadero/interior/hall_N) -"tHc" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/eastocean) -"tIT" = ( -/obj/structure/closet/crate/trashcart{ - pixel_y = 8 +"tHa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) +/area/varadero/interior/cargo) +"tHJ" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"tHQ" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"tIi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "tIV" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -25165,54 +25051,62 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_N) -"tJT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"tKr" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +"tJA" = ( +/obj/structure/machinery/door_control{ + id = "colony_sec_armory"; + name = "Colony Secure Armory"; + pixel_y = -26 }, -/turf/open/floor/shiva/redfull/west, +/obj/item/storage/box/flashbangs, +/turf/open/floor/shiva/red, /area/varadero/interior/security) -"tKw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"tJG" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"tKa" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"tKI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"tKg" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_access = null; + req_one_access = null }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"tKS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/records) +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "tLu" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) +"tLL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "tLS" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"tMx" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/key/cargo_train, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +"tLV" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"tMC" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "tMJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -25246,13 +25140,25 @@ "tMZ" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz2_near) -"tNy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"tNl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"tNt" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "tNE" = ( /obj/structure/filingcabinet{ density = 0; @@ -25282,58 +25188,43 @@ /obj/effect/spawner/random/tool, /turf/open/floor/carpet, /area/varadero/interior/administration) -"tOd" = ( -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"tOp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_NW) -"tOx" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"tOb" = ( +/obj/item/prop/alien/hugger, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"tOr" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"tOy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/blocker/invisible_wall/water, +/obj/item/device/flashlight, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"tOB" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"tOK" = ( +/area/varadero/interior/maintenance/research) +"tOH" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ +/obj/structure/machinery/computer/emails{ pixel_y = 5 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"tOM" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "tOV" = ( /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"tPz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) +"tPh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "tPE" = ( /obj/item/tool/pickaxe, /obj/structure/platform_decoration/kutjevo{ @@ -25341,13 +25232,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"tPI" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "tPK" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -25356,56 +25240,59 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tPS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/mess) -"tQn" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva/red/north, +"tPN" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/red, /area/varadero/interior/morgue) -"tQy" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"tQz" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"tQI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"tQT" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"tRs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"tQf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Medical Laboratory Lobby"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"tQq" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"tQM" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) "tRN" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"tSg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +"tRX" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"tSj" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/weapon/harpoon/yautja{ + anchored = 1; + name = "Alien Harpoon"; + pixel_x = 6 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/caves/digsite) +"tSB" = ( /turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "tSK" = ( @@ -25418,81 +25305,84 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"tSR" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"tTo" = ( +"tTx" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"tTP" = ( +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"tTS" = ( /obj/structure/disposalpipe/segment, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"tTq" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"tTN" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) +/area/varadero/interior/hall_SE) "tTU" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"tUd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"tTW" = ( +/obj/item/shard{ + icon_state = "medium" }, -/obj/structure/window/reinforced/tinted{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"tUn" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"tUy" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) +"tUE" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"tVe" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "tVf" = ( /obj/structure/closet/crate, /obj/item/tool/stamp, /obj/item/tool/wet_sign, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"tVj" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"tVl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"tVk" = ( +/obj/structure/surface/rack, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/hall_SE) -"tVo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"tVD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"tVX" = ( -/obj/structure/surface/rack, -/obj/item/maintenance_jack, +/area/varadero/interior/maintenance/north) +"tVm" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal/med_large_stack, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"tVu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"tWr" = ( +/obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior/maintenance/north) "tWA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, @@ -25501,16 +25391,6 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"tXg" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/laundry) "tXu" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/caves/east) @@ -25522,12 +25402,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"tXz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) "tXE" = ( /turf/open/floor/wood, /area/varadero/interior/administration) -"tXF" = ( -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) "tXT" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -25538,36 +25419,21 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"tYg" = ( -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"tYw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"tYP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"tZb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"tYT" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) +"tZc" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"tZj" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "tZl" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -25577,123 +25443,109 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"tZm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +"tZw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) -"tZr" = ( -/obj/item/toy/deck/uno{ - pixel_y = 6 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"tZA" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"tZE" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/medical) -"uaU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"tZG" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/research) +"uaF" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"uaK" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) -"uaV" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"uaM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"uaY" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarwest"; - unacidable = 1; - name = "Pontoon West Door"; - openspeed = 17; - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate/east, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) -"ubF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"uaR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"ubH" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/barricade/handrail/wire{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"uaU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) +"ubf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"ubI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "ubJ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"ubT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"ucv" = ( -/obj/structure/barricade/handrail/wire{ +"uca" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/ammo_box/magazine/shotgun/buckshot, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"ucq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"udb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/radiation, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"ucL" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/monsoon) -"udg" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) +/obj/item/tool/wet_sign, +/turf/open/floor/white, +/area/varadero/interior/toilets) "udp" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ueg" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) +"udP" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"udT" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "uet" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/interior/caves/east) -"ueB" = ( -/obj/structure/cable, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"ueP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"ueQ" = ( -/obj/structure/computer3frame, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "ufn" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -25703,6 +25555,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"ufx" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "ufB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25712,159 +25568,128 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"ufE" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 1; - pixel_y = 5 +"ufN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/hall_SE) +"ufO" = ( /obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ufV" = ( -/turf/open/floor/shiva/green/east, -/area/varadero/interior/court) -"ugi" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"ugz" = ( +/obj/structure/bedsheetbin, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_c" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"ugK" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/turf/open/floor/shiva/green, -/area/varadero/interior/court) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "ugR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) -"ugW" = ( -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"uhi" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - desc = "A high-power hydroelectric generator."; - name = "hydroelectric generator" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"uhD" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) "uhV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) -"uiq" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"uiy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) -"ujg" = ( -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"ujp" = ( -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8; - pixel_y = 18 +"uio" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/obj/item/paper/crumpled{ - pixel_x = 9 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"uiY" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/shiva/yellow/west, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"ujj" = ( +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_NW) -"ujR" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"ukw" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/warnplate/north, -/area/varadero/interior/disposals) -"ukz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"ukX" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"ulb" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"uli" = ( -/obj/structure/bed/chair/hunter{ +"ujN" = ( +/obj/effect/landmark/corpsespawner/chef, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/mess) +"uku" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"ulp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"ult" = ( +/obj/item/stack/cable_coil/random, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "ulv" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"umA" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva/red/north, +"ulI" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) -"umO" = ( -/obj/structure/bed/chair{ - dir = 1 +"ulP" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -6; + pixel_y = -3 }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ulS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"umg" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"umF" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -9 }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) +/area/varadero/interior_protected/caves/central) +"umH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "umT" = ( /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"unh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +"une" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "unw" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -25890,34 +25715,42 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"uoh" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 +"uod" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"uon" = ( -/obj/structure/largecrate/random, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"uoP" = ( +/obj/item/tool/hand_labeler{ + pixel_x = -3; + pixel_y = 11 }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"uoO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/area/varadero/interior_protected/maintenance/south) +"uoT" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) "uoU" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -25935,50 +25768,30 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"upb" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +"upc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"upF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) "upH" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"upI" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) "upL" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"upO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 5; - pixel_y = 16 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) -"uqw" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"uqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/maintenance) "uqU" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/close, @@ -25988,6 +25801,17 @@ /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior/caves/east) +"urb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "urd" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -25995,26 +25819,32 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"urA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"urD" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/lz2_near) +"urt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/research) "urE" = ( /obj/structure/bed/chair/comfy/lime{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/research) -"usB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"urL" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"urQ" = ( +/obj/item/book/manual/evaguide, +/turf/open/floor/wood, +/area/varadero/interior/library) +"urV" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"usJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "usQ" = ( /obj/item/facepaint/sunscreen_stick, /turf/open/gm/dirt, @@ -26023,17 +25853,20 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/comms2) +"utD" = ( +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/hall_N) "utZ" = ( /obj/structure/surface/rack, /obj/item/tool/wirecutters, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"uuj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"uub" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "uul" = ( /obj/structure/machinery/light{ dir = 1 @@ -26052,33 +25885,28 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uuv" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +"uup" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Staff Canteen" }, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"uuN" = ( -/turf/open/floor/shiva/purple/northwest, -/area/varadero/interior/research) -"uvd" = ( -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"uvr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"uvw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"uuC" = ( +/obj/structure/pipes/portables_connector{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/secure{ - name = "Underground Morgue"; - req_access_txt = "100" +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"uuX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/dark2, -/area/varadero/interior/morgue) +/obj/structure/machinery/light, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "uvB" = ( /obj/structure/machinery/shower{ dir = 8 @@ -26087,101 +25915,181 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic, /area/varadero/interior/security) -"uvX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"uvR" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"uww" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/hall_N) -"uwJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"uwN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Women's Restroom" - }, -/turf/open/floor/plating, -/area/varadero/interior/toilets) -"uwQ" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"uvY" = ( +/obj/structure/largecrate/random/mini/chest/b, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"uwi" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lightstick, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) -"uxi" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" +/obj/item/circuitboard/computer/crew{ + pixel_x = -5; + pixel_y = 8 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/item/storage/box/trackimp{ + pixel_x = 5; + pixel_y = 1 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"uxM" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/coast/west, -/area/varadero/exterior/farocean) -"uyd" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 18 }, -/obj/structure/largecrate/random, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"uyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) +"uwo" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"uwp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"uwt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"uzb" = ( -/obj/structure/machinery/alarm{ +/area/varadero/interior/cargo) +"uwA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"uwF" = ( +/obj/structure/window/framed/colony/reinforced{ + color = "#aba9a9" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"uwH" = ( +/obj/structure/machinery/power/apc{ + pixel_y = -24; + start_charge = 0 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"uwM" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"uwN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Women's Restroom" + }, +/turf/open/floor/plating, +/area/varadero/interior/toilets) +"uxf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Requesitions Freezer"; + req_access_txt = "100" + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"uxu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/evidence, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"uxA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"uzg" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"uzr" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +"uxK" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/flora/pottedplant{ + desc = "How did that get in there?"; + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"uxM" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/coast/west, +/area/varadero/exterior/farocean) +"uyM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"uzd" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"uzu" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/yellow/northeast, -/area/varadero/interior/disposals) -"uzs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"uAt" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/item/storage/bible{ + pixel_x = -2; + pixel_y = 3 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) +"uAh" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"uAL" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) "uAM" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"uBz" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"uBE" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"uBM" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "uBV" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -26189,16 +26097,29 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"uBX" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"uCc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" +"uCb" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/technical_storage) +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "uCe" = ( /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) @@ -26207,38 +26128,26 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uDw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"uDQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"uCZ" = ( +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = 9; + pixel_y = 15 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"uEc" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = -6; + pixel_y = 15 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"uEz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/white, +/area/varadero/interior/laundry) +"uDS" = ( +/obj/structure/machinery/storm_siren{ dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"uEE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + pixel_x = -3 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "uEF" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -26249,23 +26158,40 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"uEI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) -"uFq" = ( -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/monsoon) -"uFE" = ( -/obj/effect/decal/cleanable/blood/oil, +"uFa" = ( +/obj/effect/landmark/hunter_secondary, /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"uFJ" = ( -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) +"uFn" = ( +/obj/item/stool{ + layer = 2.5; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"uFu" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/administration) +"uFI" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "uFO" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -26273,18 +26199,48 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"uGf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"uFY" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/floor/shiva/yellowcorners/east, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"uGg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"uGA" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"uHh" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"uHj" = ( +/obj/structure/computer3frame, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"uHo" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/chunk, +/obj/item/trash/raisins, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"uGs" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 +"uHv" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/mess) +"uHC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/bcircuit, -/area/varadero/interior/maintenance/north) +/turf/open/floor/white, +/area/varadero/interior/toilets) "uHD" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -26292,22 +26248,20 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"uHG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"uHV" = ( +/obj/item/cell/high, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "uHY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"uIe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/prop/static_tank{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) "uIl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -26319,19 +26273,59 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"uIH" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uIu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"uIv" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"uIF" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/turf/open/floor/white, +/area/varadero/interior/toilets) "uIR" = ( /turf/closed/wall, /area/varadero/interior_protected/caves/central) "uIW" = ( /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) +"uJc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"uJs" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/technical_storage) +"uJx" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"uJG" = ( +/obj/effect/overlay/palmtree_r{ + icon_state = "palm2" + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/pontoon_beach) +"uJM" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "uJO" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 @@ -26342,29 +26336,43 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior/research) -"uKr" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 +"uKb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/wood/wood_broken6, -/area/varadero/interior/dock_control) -"uKY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"uKg" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"uKx" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"uKL" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/suit/storage/bomber, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"uKM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"uKW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "uKZ" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -26373,147 +26381,162 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"uLP" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/caphat{ - pixel_x = 2; - pixel_y = 9 +"uLc" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/obj/item/clothing/head/cmcap, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"uLY" = ( -/turf/open/floor/shiva/greenfull/west, +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/hall_SE) +"uLn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"uLz" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "uMu" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/varadero/interior/records) -"uMx" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/technical_storage) -"uMB" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva/yellow/southwest, -/area/varadero/interior/technical_storage) -"uMQ" = ( -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_1_1" - }, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"uNh" = ( -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = 9; - pixel_y = 15 - }, -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = -6; - pixel_y = 15 +"uMw" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) +"uNl" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"uNq" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "uNz" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"uNJ" = ( +"uNM" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"uOk" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ dir = 4; - climb_delay = 1; - layer = 2.99 + icon_state = "pipe-c" }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"uNV" = ( +/obj/structure/prop/invuln/minecart_tracks, /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, /obj/structure/platform_decoration/kutjevo{ - dir = 4 + dir = 8 }, -/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"uOo" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/roller, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/morgue) -"uOC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_N) -"uOF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/machinery/light{ +/area/varadero/interior/comms1) +"uOl" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/varadero/exterior/lz1_near) +"uOw" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"uPu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"uOL" = ( -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/hall_NW) -"uQa" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"uPI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"uPW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"uPY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/area/varadero/interior_protected/maintenance/south) "uQi" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/cargo) -"uQH" = ( -/obj/structure/bed/chair{ - dir = 1 +"uQm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"uQq" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"uQx" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"uRm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cdeathalarm_kit{ + pixel_x = -8; + pixel_y = 1 }, -/turf/open/floor/shiva/green, -/area/varadero/interior/court) -"uQJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"uQK" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"uRa" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/eastbeach) +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "uRU" = ( /turf/closed/wall/r_wall/elevator, /area/varadero/interior/hall_N) +"uSa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"uSq" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"uSr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Medical Laboratory Treatment"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "uSx" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -26528,36 +26551,41 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"uTj" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"uTq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +"uTh" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Underground Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"uTm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) "uTu" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"uTA" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"uTV" = ( -/turf/open/floor/shiva/wred/west, -/area/varadero/interior/medical) +"uTy" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"uTJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "uTY" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"uTZ" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) "uUl" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 4 @@ -26568,39 +26596,9 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"uUF" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/defibrillator{ - pixel_y = 5 - }, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"uUS" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redcorners, -/area/varadero/interior/security) -"uUW" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/greenfull/west, -/area/varadero/interior/medical) -"uVe" = ( -/turf/open/floor/shiva/yellow/southeast, -/area/varadero/interior/cargo) -"uVo" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +"uVr" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "uVu" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -26608,40 +26606,18 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"uVy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"uVR" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/wood_broken, -/area/varadero/interior/beach_bar) -"uVV" = ( +"uVD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"uWp" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) -"uVY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"uWo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/eastocean) +/obj/effect/landmark/objective_landmark/close, +/obj/structure/surface/rack, +/turf/open/floor/shiva/wred/southwest, +/area/varadero/interior/medical) "uWA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26649,19 +26625,44 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/mess) -"uWW" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"uWC" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"uXw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"uWK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"uWL" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "uXR" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -26672,27 +26673,19 @@ "uXS" = ( /turf/closed/wall, /area/varadero/interior/toilets) -"uXX" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/green, -/area/varadero/interior/mess) +"uXW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "uXZ" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/cargo) -"uYF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"uYJ" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) "uYL" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -26700,58 +26693,61 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uZa" = ( -/obj/structure/machinery/light{ +"uYW" = ( +/obj/structure/target/syndicate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"uZd" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/electrical) -"uZK" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"uZg" = ( +/obj/structure/closet/crate/trashcart{ + pixel_y = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"uZY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/glass{ - req_access = null; - req_one_access = null +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"uZI" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 3 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"vap" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/structure/mirror{ + pixel_x = -32 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"uZO" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"vbs" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"vbt" = ( +/obj/structure/closet/secure_closet/security, /turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) -"vaV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/paper/janitor{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/administration) -"vbr" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 +"vbu" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"vbC" = ( +/obj/item/ammo_magazine/handful/shotgun/buckshot{ + pixel_x = -13; + pixel_y = 12 }, -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) "vbH" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -26776,21 +26772,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"vcd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"vcj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) "vco" = ( /obj/item/paper_bin, /obj/item/tool/pen/blue, @@ -26799,26 +26780,31 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"vct" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/swcaves) "vcz" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"vcP" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"vcQ" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "vcR" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush{ pixel_x = -4 }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/east) -"vdq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +"vcT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "vdL" = ( /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, @@ -26841,6 +26827,33 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/security) +"vet" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/comms3) +"vez" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_one_access = null; + req_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"veB" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"veI" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "veV" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) @@ -26852,13 +26865,6 @@ "veZ" = ( /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"vfg" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva/green/west, -/area/varadero/interior/hall_N) "vfj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -26891,26 +26897,29 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"vfG" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/asteroidwarning/west, -/area/varadero/exterior/lz1_near) -"vfH" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/structure/machinery/light, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/morgue) -"vgu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"vfp" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"vfs" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"vfV" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"vgo" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "vgA" = ( /obj/item/stool{ icon_state = "stool_alt" @@ -26922,35 +26931,49 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"vhb" = ( +"vgQ" = ( +/obj/structure/surface/table, +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"vgZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"vhc" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 18 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) "vhw" = ( /obj/structure/sign/safety/water{ pixel_x = 15 }, /turf/closed/wall, /area/varadero/interior/library) -"vhB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"vhI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/central) "vhJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard{ @@ -26972,6 +26995,9 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"vin" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "vio" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -26982,53 +27008,24 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"viK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"viJ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"viP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"viY" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 +"viT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"vjA" = ( -/obj/structure/reagent_dispensers/beerkeg/alt, -/obj/structure/machinery/light{ - dir = 8 +/area/varadero/interior/maintenance) +"vjm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/administration) "vjO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -27041,21 +27038,16 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vjZ" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) "vke" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Visitor Entrance" }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"vku" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stool, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) +"vkg" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "vll" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/reagent_container/glass/bucket{ @@ -27063,72 +27055,62 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vlm" = ( -/obj/item/lightstick/variant/planted, +"vlu" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"vly" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"vlw" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/exterior/comms4) "vlB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vlL" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"vmc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) "vmw" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"vmY" = ( -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "medium" +"vmx" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) +"vng" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/item/stack/sheet/metal, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"vnb" = ( -/obj/structure/bed/chair/hunter, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"vnm" = ( -/turf/closed/wall, -/area/varadero/interior/chapel) -"vnH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/electrical) -"vnN" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/small{ +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"vnm" = ( +/turf/closed/wall, +/area/varadero/interior/chapel) +"vnO" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"vnW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/morgue) -"vnU" = ( -/obj/item/storage/box/bodybags, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "vom" = ( /obj/item/storage/beer_pack, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"voy" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "voJ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -27137,6 +27119,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"voY" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"vpc" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/interior/oob) "vph" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -27144,10 +27133,26 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"vpr" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +"vpn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"vpz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"vpB" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) "vpQ" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -27155,70 +27160,34 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/pool) -"vpV" = ( -/turf/open/floor/shiva/snow_mat, +"vqe" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/pontoon_beach) +"vqA" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/disposals) +"vqJ" = ( +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"vqd" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"vqw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"vqG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) "vqK" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"vqR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"vqQ" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"vqT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"vqU" = ( -/obj/effect/landmark/corpsespawner/chef, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/mess) +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "vqY" = ( /turf/open/floor/carpet, /area/varadero/interior/security) -"vqZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/gm/dirt/desert3, -/area/varadero/interior/maintenance/north) -"vrh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"vrj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 7 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_SE) "vru" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/wood, @@ -27227,63 +27196,43 @@ /obj/structure/machinery/conveyor, /turf/open/floor/plating, /area/varadero/interior/cargo) -"vrO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8 - }, +"vrL" = ( +/obj/item/tool/wet_sign, /turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"vsa" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/area/varadero/interior/hall_SE) +"vsl" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/structure/machinery/light, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"vst" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"vss" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) -"vsJ" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"vsH" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/maintenance/north) +"vsI" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/wred/east, -/area/varadero/interior/medical) -"vsP" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 9 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"vtP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"vtD" = ( +/obj/structure/surface/table, +/obj/item/storage/box/sprays{ + pixel_x = -1; + pixel_y = 3 }, -/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"vtR" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) +/area/varadero/interior/maintenance/research) "vus" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -27296,12 +27245,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"vuA" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) "vuE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27323,197 +27266,152 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"vvh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vvS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"vvw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redcorners/east, -/area/varadero/interior/security) -"vwT" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vxi" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) -"vxM" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"vwt" = ( +/obj/structure/filingcabinet, /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/radiation, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"vyp" = ( -/obj/structure/machinery/light/small{ - dir = 1 + dir = 4 }, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) -"vyy" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - layer = 2.15; - density = 0; - climb_delay = 0 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"vwR" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"vyI" = ( -/obj/structure/catwalk, -/obj/structure/filtration/flacculation_arm{ - density = 0; - layer = 2.1 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"vyX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/evidence, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva/red/northeast, -/area/varadero/interior/security) -"vzi" = ( -/turf/closed/wall/rock/brown, -/area/varadero/exterior/pontoon_beach/lz) -"vzq" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) -"vzt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"vzB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/item/tool/warning_cone, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 2; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/dirt, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) -"vzH" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"vwY" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/turf/open/floor/wood, +/obj/item/clothing/under/CM_uniform, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) -"vzN" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"vzY" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 +"vxe" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"vAg" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/red, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) -"vAz" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +"vxi" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) +"vyc" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/prop/invuln/pipe_water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"vAF" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"vAI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/area/varadero/interior/cargo) +"vyk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"vAR" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_SE) -"vAZ" = ( -/obj/item/facepaint/sunscreen_stick, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz1_near) -"vBk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/varadero/interior/maintenance/research) +"vym" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vBq" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/multi_tiles, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"vyp" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"vyH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_y = 5 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 18 + }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"vBC" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +"vyK" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"vzq" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"vzB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/cargo) -"vBF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/tool/warning_cone, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 2; + indestructible = 1; + unacidable = 1 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) +"vzH" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"vAU" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vBW" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"vAW" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"vBA" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"vBJ" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "vBZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -27524,17 +27422,25 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"vCf" = ( -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/administration) -"vCE" = ( -/obj/structure/disposalpipe/segment, -/obj/item/trash/chunk{ - pixel_x = 3; - pixel_y = 6 +"vCe" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple/northwest, +/area/varadero/interior/research) +"vDb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "vDe" = ( /obj/structure/barricade/handrail/wire{ dir = 8 @@ -27555,41 +27461,41 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pool) -"vDl" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva/red, -/area/varadero/interior/morgue) -"vDm" = ( -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"vDr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 4 +"vDv" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/area/varadero/interior_protected/caves) "vDw" = ( /obj/item/fishing_pole{ anchored = 1 }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) -"vDC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"vDI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"vDJ" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Requesitions Freezer"; - req_access_txt = "100" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/clothing/suit/storage/marine/veteran/dutch{ + layer = 3.1 + }, +/obj/item/clothing/under/gimmick/dutch, +/obj/item/clothing/head/helmet/marine/veteran/dutch/cap{ + pixel_y = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "vDP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -27605,14 +27511,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vEa" = ( -/obj/structure/closet/crate/medical, -/obj/item/tool/wirecutters/clippers, -/obj/item/restraint/handcuffs/zip, -/obj/item/tool/surgery/surgicaldrill, -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva/red/southeast, -/area/varadero/interior/security) "vEe" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -27632,57 +27530,45 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"vEg" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) -"vEi" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"vEJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_NW) -"vEM" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"vEU" = ( -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, +"vEf" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/area/varadero/exterior/lz1_near) "vFl" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"vFs" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"vFu" = ( +"vFp" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 6 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"vFC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/north, -/area/varadero/interior/hall_N) +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"vFI" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/storage/large_holster/katana/full, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "vGn" = ( /obj/effect/overlay/palmtree_r{ pixel_x = -11; @@ -27691,6 +27577,12 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"vGL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "vGQ" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -27701,84 +27593,101 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vHs" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/records) -"vHY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"vHl" = ( +/obj/item/roller{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/surface/table, +/obj/item/roller{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"vHn" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"vJg" = ( -/obj/item/tool/shovel, -/turf/open/gm/dirt/desert_dug, -/area/varadero/exterior/lz1_near) -"vJk" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"vHs" = ( +/turf/closed/wall/r_wall, +/area/varadero/interior/records) +"vHy" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"vHN" = ( +/obj/structure/closet/crate/secure, +/obj/effect/landmark/objective_landmark/close, +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"vIa" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"vJp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) +/area/varadero/interior/maintenance) +"vKs" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/science, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) "vKv" = ( /obj/structure/window/framed/colony/reinforced/hull{ indestructible = 1 }, /turf/open/floor/plating/icefloor, /area/varadero/interior/maintenance/north) -"vKD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/obj/item/tool/pen/sleepypen{ - pixel_x = -4; - pixel_y = 4 +"vKK" = ( +/obj/item/tool/crowbar/red{ + pixel_x = 9; + pixel_y = 8 }, -/obj/item/tool/lighter/zippo/fluff{ - pixel_x = 7; - pixel_y = 2 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"vKO" = ( +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"vKR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/bluefull/west, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) -"vLc" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -11; - pixel_y = -4 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8 +"vLf" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) +"vLg" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security Interrogation"; + req_access_txt = "100" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "vLh" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vLk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/laundry) "vLo" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2"; @@ -27788,54 +27697,40 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vLt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"vLC" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/cargo) -"vLw" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison/darkredfull2, -/area/varadero/interior/dock_control) -"vLI" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"vLU" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"vLV" = ( -/obj/structure/machinery/landinglight/ds2/spoke{ - pixel_x = -1; - pixel_y = 22 - }, +/obj/item/stack/cable_coil/cut, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"vMe" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 +"vLT" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"vMN" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"vMo" = ( -/obj/item/tool/shovel, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"vMq" = ( -/obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"vMU" = ( +/area/varadero/interior_protected/maintenance/south) +"vMW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"vMY" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/tool, +/obj/item/tool/screwdriver, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) +/area/varadero/interior/maintenance/security) +"vNm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "vNu" = ( /turf/open/floor/carpet, /area/varadero/interior/bunks) @@ -27843,6 +27738,17 @@ /obj/structure/cargo_container/wy/left, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"vNA" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = -8 + }, +/obj/item/stack/tile/plasteel{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "vNB" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -27859,58 +27765,46 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"vNT" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/corsat/squareswood/north, -/area/varadero/interior_protected/vessel) -"vNY" = ( -/obj/structure/machinery/light{ - dir = 1 +"vNK" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_N) -"vOa" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"vOl" = ( +/obj/item/trash/barcardine, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "vOo" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"vOr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"vOM" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "vOW" = ( /obj/item/clothing/suit/armor/vest, /turf/open/floor/wood, /area/varadero/interior/administration) -"vPe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"vPh" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"vOZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "vPi" = ( /obj/structure/closet/secure_closet/personal, /obj/item/attachable/magnetic_harness, @@ -27920,11 +27814,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"vPj" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) "vPK" = ( /obj/item/ammo_casing{ icon_state = "casing_8" @@ -27952,18 +27841,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"vQF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "vQK" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -27972,11 +27849,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"vQL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/frame/light_fixture, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/electrical) "vRI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ @@ -28000,39 +27872,31 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"vSh" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"vSu" = ( +"vSG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) +"vSM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "vSN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"vSY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) "vTd" = ( /obj/structure/machinery/conveyor, /obj/item/paper_bin, /turf/open/floor/plating, /area/varadero/interior/cargo) -"vTe" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) "vTl" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/pwine{ @@ -28050,27 +27914,60 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/carpet, /area/varadero/interior/research) -"vUx" = ( -/obj/structure/girder/displaced, -/obj/structure/prop/invuln/overhead_pipe, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"vUE" = ( +"vTm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"vTn" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"vUM" = ( -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) -"vUQ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"vTQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Technical Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"vTR" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"vTW" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"vUc" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"vUd" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/trash/crushed_cup, +/obj/item/prop/magazine/dirty/torn, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"vUu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) +"vUw" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) "vUT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -28078,26 +27975,14 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"vUZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"vVy" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, +"vVa" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) +/area/varadero/interior/administration) +"vVd" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "vVz" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -28113,52 +27998,45 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/central) -"vWn" = ( +"vVX" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"vWq" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/coast/beachcorner/north_west, -/area/varadero/exterior/pontoon_beach/lz) -"vWG" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"vWt" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"vWD" = ( +/obj/structure/bed/chair, /turf/open/floor/shiva/floor3, -/area/varadero/interior/hall_NW) -"vXx" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"vXG" = ( -/obj/structure/closet/crate/construction, -/obj/item/grown/log, -/turf/open/gm/dirt/desert2, -/area/varadero/exterior/monsoon) -"vXW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/varadero/interior/research) +"vWE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Showers"; - req_access_txt = "100" +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"vYp" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"vYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"vXf" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/maintenance/north) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "vYy" = ( /obj/item/tool/shovel, /obj/structure/prop/invuln/lattice_prop{ @@ -28168,6 +28046,22 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"vYG" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"vYL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "vYQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -28194,19 +28088,28 @@ /obj/item/ammo_magazine/handful/shotgun/buckshot, /turf/open/floor/wood, /area/varadero/interior/bunks) +"vYT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_N) "vYW" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"vZl" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/security) "vZm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"vZp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "vZs" = ( /obj/structure/bed/chair{ buckling_y = 18; @@ -28217,17 +28120,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"vZv" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"vZz" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "vZN" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -28247,44 +28139,92 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vZO" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"vZR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"wad" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"vZS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/technical_storage) -"wae" = ( -/obj/structure/closet/secure_closet/miner, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/area/varadero/interior/hall_N) +"wam" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "waB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"waP" = ( -/turf/open/floor/plating/icefloor/warnplate/east, -/area/varadero/exterior/lz1_near) +"waW" = ( +/obj/item/tool/wrench{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"waZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/secure{ + name = "Underground Morgue"; + req_access_txt = "100" + }, +/turf/open/floor/dark2, +/area/varadero/interior/morgue) "wba" = ( /obj/structure/largecrate/random, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"wbB" = ( -/obj/structure/disposalpipe/segment{ +"wbn" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"wbs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/shiva/blue, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"wby" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"wbC" = ( +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8; + pixel_y = 18 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"wbX" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"wbZ" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) "wcb" = ( /obj/structure/blocker/invisible_wall/water, @@ -28296,26 +28236,21 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"wcl" = ( -/obj/item/tool/mop{ - pixel_x = -16; - pixel_y = 26 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) -"wcq" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"wcE" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"wce" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"wcN" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/varadero/interior/chapel) +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"wcU" = ( +/obj/structure/curtain/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/bunks) "wdb" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ dir = 4; @@ -28335,45 +28270,21 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"wdh" = ( -/obj/structure/machinery/computer/operating{ - density = 0 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"wdx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/disposals) -"wdy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, +"wdz" = ( /obj/structure/prop/invuln/minecart_tracks{ - dir = 4 + dir = 8 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) +/area/varadero/interior/comms1) "wdI" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"wdX" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/administration) -"weG" = ( -/obj/structure/catwalk, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) "weJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -28381,22 +28292,17 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"wff" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, +"weS" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wfh" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/area/varadero/interior/maintenance/research) +"wfo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) -"wfr" = ( -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/hall_NW) +/area/varadero/interior/maintenance/security) "wft" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -28415,12 +28321,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"wfy" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) "wfK" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -28449,35 +28349,72 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"wfT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/yellow/west, -/area/varadero/interior/hall_NW) -"wgv" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +"wfW" = ( +/obj/item/tool/mop{ + pixel_x = -16; + pixel_y = 26 }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"wgc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"wgi" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wgU" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, +/area/varadero/interior/maintenance/north) +"wgt" = ( +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"wgP" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"wgZ" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/plasticflaps/mining, +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_gutted"; + name = "gullible toothfish"; + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"wha" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"whe" = ( +/obj/item/stool{ + pixel_x = 7; + pixel_y = -6 + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/area/varadero/exterior/lz1_near) +"whm" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "wic" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -28488,48 +28425,40 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"wir" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" +"wiD" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"wiV" = ( +/obj/item/clothing/gloves/yautja{ + anchored = 1; + can_block_movement = 1; + charge = 1; + charge_max = 1; + color = "#a8a7a5"; + density = 1; + desc = "The ship's on-board self destruct system, let's hope you never have to use it."; + name = "Self Destruct System"; + pixel_y = 24 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"wiL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/paper/research_notes, -/obj/item/storage/belt/shotgun, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"wjf" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 +/obj/structure/bed/chair/hunter{ + dir = 1 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) -"wjB" = ( -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"wjG" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/redcorners, +/area/varadero/interior/morgue) "wjV" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"wkp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) +"wkk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "wkq" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/firealarm{ @@ -28537,31 +28466,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"wkt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/electrical) -"wku" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "colony_sec_armory"; - name = "Secure Armory" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"wkC" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = -8 - }, -/obj/item/stack/tile/plasteel{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) "wkM" = ( /obj/structure/window/reinforced{ dir = 4; @@ -28590,13 +28494,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"wlq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"wla" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"wls" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = -6; + pixel_y = 4 }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "wlB" = ( /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) @@ -28604,60 +28517,18 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/lz2_near) -"wlQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"wmg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) "wmt" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"wmC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) -"wmL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"wng" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wno" = ( -/turf/open/floor/shiva/green/north, -/area/varadero/interior/mess) +"wmT" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "wns" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"wnw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/far, -/obj/item/trash/crushed_cup, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) "wnA" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 21; @@ -28671,55 +28542,37 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"wnK" = ( -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"woj" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/technical_storage) -"won" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +"wof" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"woh" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) +/area/varadero/interior/comms1) +"woo" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/pipes/binary/passive_gate, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "wop" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"wot" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/records) -"wox" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/hall_SE) "woF" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"woI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) "woJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/explosive/grenade/incendiary/molotov{ @@ -28727,52 +28580,85 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"wph" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva, -/area/varadero/interior/technical_storage) -"wpi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"woV" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor/shiva/floor3, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) -"wpm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/stool{ - icon_state = "stool_alt" +"woW" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"wpr" = ( -/turf/open/floor/shiva/red/west, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) +"wph" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva, +/area/varadero/interior/technical_storage) +"wpy" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) "wpG" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"wpM" = ( -/obj/structure/bedsheetbin{ - pixel_y = 4 - }, -/turf/open/floor/shiva/snow_mat/west, +"wpQ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "wpX" = ( /obj/effect/decal/strata_decals/grime/grime2, /obj/item/weapon/gun/rifle/m41a, /turf/open/floor/carpet, /area/varadero/interior/bunks) +"wpY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "wqb" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/security) -"wqc" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"wqD" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"wqQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"wqZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "wrg" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -28782,11 +28668,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wrv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "wrB" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/cable_coil/cut, @@ -28802,14 +28683,24 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wsa" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/technical_storage) +"wrY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_3_1" + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "wsn" = ( /obj/item/storage/toolbox/mechanical, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"wsz" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/pontoon_beach) "wsG" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -28827,133 +28718,129 @@ }, /turf/open/floor/light, /area/varadero/interior_protected/vessel) -"wsZ" = ( +"wte" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null + }, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"wtk" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidfloor/north, +"wtA" = ( +/turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) -"wts" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_2" - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/eastocean) -"wty" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"wtB" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ +"wuE" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"wuL" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"wvJ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_y = 12 +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_NW) -"wtU" = ( /obj/structure/bed/chair{ - dir = 4; + dir = 8; icon_state = "chair_alt" }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wuA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"wwi" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + unacidable = 0 }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"wuR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/comms3) -"wvI" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/shiva/purple, -/area/varadero/interior/research) -"wvK" = ( -/obj/structure/closet/crate/freezer, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"wwd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/item/device/flashlight/slime, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wwS" = ( +/obj/structure/prop/rock/brown{ + indestructible = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." }, -/turf/open/floor/shiva/blue/northwest, -/area/varadero/interior/administration) -"wwk" = ( -/turf/open/floor/shiva/snow_mat/north, -/area/varadero/interior/medical) -"wwq" = ( -/obj/structure/catwalk, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"wwT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/filtration/flacculation_arm{ - density = 0; - layer = 2.1 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"wxr" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"wxB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"wws" = ( -/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"wxT" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"wxf" = ( -/obj/structure/machinery/power/monitor, +"wxV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"wxu" = ( -/obj/structure/bed/chair, -/turf/open/floor/white, -/area/varadero/interior/laundry) -"wxD" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8 +/area/varadero/interior/hall_SE) +"wyU" = ( +/obj/item/device/flashlight, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"wzu" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8 +/obj/structure/closet/firecloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"wzI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms2) -"wyE" = ( -/obj/item/storage/belt/marine/quackers, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"wAx" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) +/area/varadero/interior/hall_NW) +"wAb" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) "wBc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"wBp" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +"wBw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/hall_SE) "wBD" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin/uscm{ @@ -28963,84 +28850,89 @@ /obj/item/weapon/twohanded/fireaxe, /turf/open/floor/carpet, /area/varadero/interior/library) -"wBN" = ( -/turf/open/floor/shiva/yellowcorners/east, -/area/varadero/interior/cargo) -"wBY" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) -"wCc" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "wCE" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"wCR" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "wDi" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach) +"wDs" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "South Dock Door"; + pixel_x = -24; + indestructible = 1 + }, +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) "wDv" = ( /obj/structure/largecrate/random/mini/ammo, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"wDG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"wDH" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 +"wDB" = ( +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -1; + pixel_y = 22 }, /turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) -"wDN" = ( -/obj/structure/disposalpipe/segment{ +/area/varadero/exterior/lz1_near) +"wDM" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/mess) +"wDU" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"wDV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"wEc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/blue, -/area/varadero/interior/administration) -"wEn" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"wEL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/morgue) -"wEU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 4 +/area/varadero/interior/hall_N) +"wEl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"wEp" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"wEB" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"wFe" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 9; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"wFx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wFf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wFJ" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"wFn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "wFP" = ( /obj/structure/machinery/door_control/brbutton{ id = "undergroundhangarwest"; @@ -29051,28 +28943,11 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/cargo) -"wFX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"wGl" = ( -/obj/structure/largecrate/random, +"wGc" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, /turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"wGs" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/comms3) +/area/varadero/interior/mess) "wGQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -29080,12 +28955,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wGV" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) "wHk" = ( /turf/closed/wall, /area/varadero/interior/maintenance/north) @@ -29094,125 +28963,133 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"wHu" = ( -/obj/structure/prop/static_tank/fuel{ - pixel_y = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"wIg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz1_near) -"wIm" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, +"wHC" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"wHD" = ( +/obj/item/tool/surgery/bonegel/predatorbonegel, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"wJq" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"wIr" = ( -/turf/open/floor/shiva/purple/north, -/area/varadero/interior/research) -"wIH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) -"wJl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/area/varadero/interior/medical) +"wJt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"wJu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"wJB" = ( -/obj/item/device/motiondetector/hacked, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"wJG" = ( +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "wKi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/disposals) +"wKl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Checkpoint"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"wKt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "wKW" = ( /obj/item/stack/sandbags/large_stack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"wLq" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) -"wLv" = ( -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/bunks) -"wLB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"wLF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/shaker{ - pixel_x = -8; - pixel_y = 3 +"wLc" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"wLo" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/multi_tiles/north, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"wLs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) -"wLR" = ( +"wLG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"wLJ" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/medical) +"wLN" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/hypospray/tricordrazine{ - pixel_x = -14; - pixel_y = 2 +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"wLQ" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/blue, -/area/varadero/interior/technical_storage) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"wLW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"wMg" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) "wMj" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"wMn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wMw" = ( -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"wMx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/nanopaste, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) "wNz" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -29220,32 +29097,49 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wNI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"wNY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Colony Administration"; + req_access_txt = "100" }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"wNV" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"wNZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/wred/north, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"wOk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/north, /area/varadero/interior/medical) -"wOC" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wOL" = ( -/obj/effect/landmark/crap_item, -/obj/structure/window/reinforced{ +"wOq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"wOu" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/plating/warnplate/north, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"wOE" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/records) "wOO" = ( /turf/closed/wall/r_wall, /area/varadero/interior/electrical) @@ -29253,24 +29147,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"wOS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"wPl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "wPv" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -29286,172 +29162,232 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"wPE" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "wPH" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"wQd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"wPJ" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "Revolting beyond description."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_teeth"; + name = "human-ish teeth"; + pixel_x = 1; + pixel_y = -2 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/medical) -"wQh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"wQi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ +/area/varadero/exterior/comms4) +"wPM" = ( +/obj/effect/decal/warning_stripes/asteroid{ dir = 1; - name = "\improper Colony Offices"; - req_access_txt = "100" - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"wRi" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - layer = 3.1; - pixel_y = 7 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) -"wRu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/wred, -/area/varadero/interior/medical) -"wRB" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" + icon_state = "warning_s" }, -/turf/open/floor/shiva/greenfull/west, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_N) -"wRR" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ +"wQf" = ( +/obj/structure/machinery/computer/card{ dir = 8 }, -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/disposals) +"wQD" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - climb_delay = 1; - layer = 2.99 + icon_state = "pipe-c" }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"wRh" = ( +/obj/item/book/manual/detective, +/turf/open/floor/wood, +/area/varadero/interior/library) +"wRA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) "wSx" = ( /turf/closed/wall, /area/varadero/interior/laundry) -"wSL" = ( -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"wSM" = ( -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior_protected/caves/central) -"wSX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"wSK" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/turf/open/floor/shiva/yellow/north, +/turf/open/floor/shiva/yellow/southwest, /area/varadero/interior/cargo) -"wTE" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 - }, -/obj/item/stack/cable_coil/pink{ - pixel_x = -7; - pixel_y = -4 +"wSV" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + name = "Incendiary Ammunition Order"; + desc = "An order manifest for incendiary ammo that has yet to be filled out." }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"wTp" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/jackhammer, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"wTF" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "wTJ" = ( /turf/open/floor/plating, /area/varadero/interior/disposals) -"wTM" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"wTO" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"wUj" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/comms3) -"wUr" = ( -/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"wTP" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wUe" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"wUi" = ( +/obj/item/circuitboard/apc, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) +/area/varadero/interior/maintenance/north) +"wUn" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wUs" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "wUF" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"wUO" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 8; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "wUU" = ( /turf/closed/shuttle{ dir = 1; icon_state = "pwall" }, /area/varadero/interior/oob) -"wVa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/medical) +"wUW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"wVb" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "wVf" = ( /turf/closed/wall/r_wall, /area/varadero/interior/security) +"wVm" = ( +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/close, +/obj/item/trash/chunk, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "wVp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"wVA" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/morgue) -"wVD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"wVE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"wVt" = ( +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -7; + pixel_y = -11; + desc = "A chest... filled with the wildest riches!" }, -/turf/open/floor/shiva/green/east, -/area/varadero/interior/hall_SE) +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz2_near) "wVI" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) +"wVJ" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"wVZ" = ( +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "wWd" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator, /area/varadero/interior/records) +"wWi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"wWw" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) "wWx" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -29471,6 +29407,23 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) +"wWN" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "wXc" = ( /obj/item/reagent_container/glass/bucket{ pixel_y = -3 @@ -29487,20 +29440,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"wXu" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"wXC" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/maintenance/south) -"wXD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) "wYa" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -29524,50 +29463,108 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wYF" = ( -/obj/structure/pipes/vents/pump{ +"wYf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"wYD" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"wZt" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/electrical) +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "wZF" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"xag" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/item/device/flashlight/lamp/tripod, +"xac" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/administration) +"xav" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"xaC" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"xaK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"xbe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"xbc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/north_research) +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "xbm" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"xbA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"xbD" = ( -/obj/structure/window/reinforced/tinted{ +"xbC" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/research) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"xbO" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "xce" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -29584,64 +29581,92 @@ "xcf" = ( /turf/closed/wall/r_wall/elevator, /area/varadero/interior/records) -"xcz" = ( -/obj/item/stack/sheet/metal, +"xci" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"xcE" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"xdz" = ( +/area/varadero/exterior/lz2_near) +"xcF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"xda" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/digsite) +"xdf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"xdm" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"xen" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"xdJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva/red/northwest, -/area/varadero/interior/security) -"xdW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"xex" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "xeO" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"xeT" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "xeU" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/monsoon) -"xeV" = ( -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) -"xff" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva/blue, -/area/varadero/interior/hall_SE) "xfo" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) +"xft" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "xfz" = ( /obj/structure/girder, /turf/open/gm/dirt, @@ -29652,49 +29677,53 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"xfL" = ( +/obj/item/weapon/harpoon/yautja{ + anchored = 1; + name = "Alien Harpoon"; + pixel_x = 6 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/caves/digsite) "xfQ" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/monsoon) +"xgi" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "xgG" = ( /turf/closed/wall/r_wall, /area/varadero/interior/administration) -"xgU" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/hall_SE) -"xgW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/stamp{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/tool/stamp/clown{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/tool/stamp/rd{ - pixel_x = 7; - pixel_y = -2 - }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) "xgY" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"xhs" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"xhg" = ( +/obj/structure/prop/rock/brown, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"xhk" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "xhx" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 4 @@ -29705,65 +29734,136 @@ }, /turf/open/floor/plating, /area/varadero/interior/research) +"xhz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redcorners/east, +/area/varadero/interior/security) "xhA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"xiV" = ( +"xhE" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) +"xhQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"xhU" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) +"xiy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/crate/ammo/alt, -/obj/item/storage/belt/utility, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) -"xka" = ( -/obj/structure/window/framed/colony/reinforced{ - color = "#aba9a9" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"xkb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random{ - pixel_y = 5 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"xiQ" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/obj/item/clothing/glasses/science{ - pixel_y = 9 +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"xjt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Main Hallway" }, -/turf/open/floor/shiva/bluefull/west, -/area/varadero/interior/administration) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "xke" = ( /obj/effect/overlay/palmtree_r, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"xkj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/medical) -"xlb" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 1 +"xky" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/turf/open/floor/shiva/green/north, -/area/varadero/interior/hall_SE) -"xlv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/disposals) -"xml" = ( +/turf/open/floor/white, +/area/varadero/interior/security) +"xkI" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"xkJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"xlm" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"xly" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"xms" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva/yellowcorners, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"xmt" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"xmv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xmx" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/records) +"xmA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/storage/toolbox/syndicate{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "xmL" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -29772,149 +29872,195 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xne" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +"xmT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/packageWrap, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"xnd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/shiva/snow_mat/west, -/area/varadero/interior/maintenance) -"xnr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"xni" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"xnl" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/monsoon) +"xnq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/hall_SE) +"xnC" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"xnP" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "xnS" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/eastbeach) -"xnV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/southwest, -/area/varadero/interior/morgue) +"xnX" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xox" = ( +/obj/structure/closet/crate/secure, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"xoB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/beach_bar) +"xoQ" = ( +/obj/structure/surface/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xpc" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Sample Isolation" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"xpd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "xpe" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xpk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, +"xpp" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"xpw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard/computer/crew{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/storage/box/trackimp{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 18 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/technical_storage) +/area/varadero/interior/maintenance/north) +"xpG" = ( +/obj/item/cpr_dummy, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "xpP" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms1) -"xqy" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) -"xqG" = ( -/obj/structure/mirror{ - pixel_x = -32 +"xpW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"xqr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/white, -/area/varadero/interior/security) -"xqN" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"xqz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Colony Administration"; - req_access_txt = "100" +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, /turf/open/floor/shiva/floor3, -/area/varadero/interior/administration) -"xqP" = ( -/obj/structure/disposalpipe/segment{ +/area/varadero/interior/disposals) +"xqM" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "pipe-c" + climb_delay = 1; + layer = 2.99 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/yellow, -/area/varadero/interior/cargo) -"xqS" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"xqZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"xrb" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"xqY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"xre" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/machinery/light{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"xrz" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva/yellow/east, -/area/varadero/interior/cargo) -"xrl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" + name = "\improper Underground Main Hallway" }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"xrA" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"xsi" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"xsH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"xrK" = ( +/obj/structure/bed/chair/hunter{ + dir = 4 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xsU" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) +"xtk" = ( +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/beach_bar) +"xtQ" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "xtZ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -29925,20 +30071,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xug" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/snow_mat/east, -/area/varadero/interior/medical) -"xuB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) "xuJ" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; @@ -29948,94 +30080,70 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"xuN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva/yellowcorners, -/area/varadero/interior/cargo) -"xuT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - pixel_y = 5 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"xuW" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_N) -"xuX" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"xvj" = ( -/obj/structure/machinery/light/small, +"xvg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/surface/table, /turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) +"xvo" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz1_near) +"xvw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"xvB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "xvF" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/security) -"xwk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/packageWrap, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/cargo) -"xwG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"xwr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"xwY" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"xwy" = ( +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8; + pixel_y = 18 }, -/obj/item/tool/wet_sign, -/turf/open/floor/white, -/area/varadero/interior/toilets) +/obj/item/paper/crumpled{ + pixel_x = 9 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"xwD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "xxk" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"xxo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/clothing/head/hardhat/red{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/white{ - pixel_x = 2; - pixel_y = 17 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/bunks) -"xxs" = ( +"xxl" = ( /obj/structure/closet/crate, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"xxE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Theta-V Research Laboratory Storage"; - req_access = null; - req_one_access = null +/obj/item/stack/sheet/glass{ + amount = 30 }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) +/obj/item/trash/crushed_cup, +/obj/item/trash/c_tube, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"xxm" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "xxI" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, @@ -30048,45 +30156,14 @@ /obj/structure/sign/safety/debark_lounge, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) -"xxZ" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva/blue/southeast, -/area/varadero/interior/administration) -"xya" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/green{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/under/shorts/blue{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/red{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"xyr" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 3 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"xyJ" = ( -/turf/open/floor/shiva/green/northeast, -/area/varadero/interior/records) +"xyi" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"xyN" = ( +/obj/item/storage/firstaid, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) "xyO" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /turf/open/shuttle/elevator/grating, @@ -30095,50 +30172,58 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"xzc" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/pontoon_beach) -"xzd" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/varadero/interior/toilets) +"xzh" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "xzj" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/library) -"xzr" = ( -/turf/open/floor/shiva/yellow, -/area/varadero/interior/comms3) +"xzp" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xzQ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/trash/plate, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"xzU" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "xAg" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms2) -"xAs" = ( -/obj/structure/largecrate/random/mini/chest/b, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) "xAx" = ( /turf/open/gm/coast/east, /area/varadero/interior/caves/east) -"xAK" = ( -/turf/open/floor/shiva/purple/east, -/area/varadero/interior/research) -"xAO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) -"xBv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Underground Lavatory"; - req_access_txt = "100" +"xBf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/purplecorners, +/area/varadero/interior/research) "xBw" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -30146,25 +30231,18 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"xBH" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"xBO" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva/yellowfull/west, +"xBK" = ( +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"xBL" = ( +/obj/structure/bed/chair/hunter, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"xBQ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) -"xBS" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "xCn" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) @@ -30176,22 +30254,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"xCJ" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva/wred/southeast, -/area/varadero/interior/medical) -"xCM" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) -"xCU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/yellowcorners/north, -/area/varadero/interior/cargo) "xCZ" = ( /obj/structure/prop/tower, /turf/open/gm/dirt, @@ -30207,84 +30269,113 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"xDf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"xDy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Sports Center"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/court) +"xDz" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "xDE" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"xEc" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) -"xEl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves) "xEG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"xFb" = ( -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/eastocean) -"xFw" = ( -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8; - pixel_y = 18 +"xEV" = ( +/obj/structure/disposalpipe/segment, +/obj/item/trash/chunk{ + pixel_x = 3; + pixel_y = 6 }, -/turf/open/floor/white, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"xFf" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/technical_storage) +"xFk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"xFz" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"xFA" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/mess) "xFE" = ( /turf/open/floor/wood, /area/varadero/interior/records) -"xFO" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) +"xFQ" = ( +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) "xFS" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"xFZ" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 +"xGb" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"xGp" = ( -/turf/open/floor/wood/wood_broken6, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"xGe" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"xGC" = ( +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xGE" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_SE) "xGJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/records) +"xGS" = ( +/obj/item/tool/kitchen/knife, +/obj/structure/surface/table, +/turf/open/floor/asteroidwarning/east, +/area/varadero/exterior/lz1_near) "xGV" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, @@ -30300,51 +30391,88 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xHz" = ( -/obj/effect/decal/cleanable/blood/oil, +"xHH" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" + }, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"xIA" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/freezerfloor, -/area/varadero/interior/cargo) -"xJb" = ( -/obj/structure/machinery/landinglight/ds2/spoke{ - pixel_x = -1; - pixel_y = 22 +/area/varadero/interior/maintenance) +"xIJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"xJt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/hall_N) +"xIP" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"xJx" = ( -/obj/structure/machinery/photocopier, +/obj/item/trash/plate{ + desc = "For all your soapy needs."; + icon_state = "tray"; + name = "soap dish"; + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/tool/soap/nanotrasen{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/tool/soap/nanotrasen{ + pixel_x = 2; + pixel_y = 11 + }, +/obj/item/tool/soap/nanotrasen{ + desc = "Teetering at the brink! A life's thread, about to be cut short."; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"xIR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"xJA" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"xJG" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "xJH" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/lz2_near) -"xJZ" = ( +"xJN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"xKo" = ( -/obj/structure/surface/table, -/obj/item/storage/wallet/random{ - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 4 +/area/varadero/interior/maintenance) +"xJR" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/maintenance/north) +"xJW" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"xJY" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/north) +/area/varadero/interior/caves/east) "xKq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ @@ -30361,6 +30489,15 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"xKt" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "xKv" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -30374,52 +30511,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xKC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"xKL" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -7; - pixel_y = 6 - }, -/turf/open/floor/shiva/red/west, -/area/varadero/interior/security) -"xKS" = ( -/obj/structure/lz_sign/new_varadero, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"xLB" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"xKA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"xKX" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xKY" = ( +/obj/structure/girder, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"xKZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "xLE" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -30427,24 +30537,69 @@ /obj/structure/bed/chair/comfy/black, /turf/open/floor/wood, /area/varadero/interior/security) -"xLN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/medical) -"xMq" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"xMs" = ( -/obj/item/paper, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/morgue) -"xNb" = ( +"xMa" = ( /obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"xMj" = ( +/obj/structure/surface/table, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"xMD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"xMP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/tool/stamp{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/pen/blue{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"xMR" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/pontoon_beach/lz) +"xMT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"xNa" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "xNw" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, @@ -30456,63 +30611,31 @@ "xNR" = ( /turf/closed/wall, /area/varadero/interior/bunks) -"xNY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance) -"xOo" = ( -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"xOx" = ( +"xOK" = ( /obj/structure/closet/crate/secure, -/obj/item/trash/popcorn, -/obj/item/hardpoint/locomotion/van_wheels, +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"xOz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/white, -/area/varadero/interior/toilets) -"xOI" = ( -/obj/item/tool/wrench, +"xPB" = ( /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"xOX" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"xPj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"xPx" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "\improper Theta-V Research Laboratory Director's Office"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/research) -"xPV" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) +"xPI" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"xPR" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"xQf" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"xQk" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"xQE" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) "xQJ" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/clothing/mask/cigarette/cigar, @@ -30521,29 +30644,51 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"xRt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"xRq" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, /turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/electrical) +/area/varadero/interior/disposals) "xRx" = ( /obj/structure/surface/table/woodentable, /obj/item/weapon/gun/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, /turf/open/floor/wood, /area/varadero/interior/security) +"xRC" = ( +/obj/structure/largecrate/random/mini, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "xRF" = ( /turf/closed/wall, /area/varadero/interior/hall_N) +"xRO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) "xSl" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"xSz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "xSZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -30558,76 +30703,35 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xTd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/north, -/area/varadero/interior/cargo) -"xTA" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) -"xTH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xUg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva/multi_tiles/southeast, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "xUp" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"xUq" = ( -/turf/open/floor/shiva/blue/north, -/area/varadero/interior/administration) -"xUs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) "xUu" = ( /obj/structure/surface/table/woodentable, /obj/item/weapon/shield/riot, /turf/open/floor/carpet, /area/varadero/interior/library) -"xUH" = ( -/turf/open/floor/wood/wood_broken3, -/area/varadero/interior/court) -"xVe" = ( -/obj/item/prop/helmetgarb/bullet_pipe{ - pixel_x = -8; - pixel_y = 15 - }, -/obj/item/reagent_container/glass/fertilizer/l4z{ - pixel_x = 10; - pixel_y = 10 +"xUR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"xUX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) -"xVw" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) -"xVA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva/redfull, -/area/varadero/interior/medical) -"xVC" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/sosjerky, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/cargo) +/area/varadero/exterior/monsoon) "xVQ" = ( /obj/structure/sign/safety/reception, /obj/structure/sign/safety/one{ @@ -30635,77 +30739,75 @@ }, /turf/closed/wall, /area/varadero/interior/maintenance/north) -"xVX" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) -"xWj" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva/red/north, -/area/varadero/interior/security) -"xWL" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"xWF" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"xWH" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/hall_SE) "xWU" = ( /obj/item/trash/candle, /turf/open/floor/wood, /area/varadero/interior/chapel) -"xWY" = ( -/turf/open/floor/shiva/green, -/area/varadero/interior/hall_N) -"xXe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/paint/black{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/tool/wirecutters/clippers, -/obj/item/reagent_container/food/drinks/h_chocolate{ - pixel_x = -6; - pixel_y = 12 +"xXf" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva/blue/northeast, -/area/varadero/interior/technical_storage) -"xXr" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"xYB" = ( -/obj/item/tool/pickaxe, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"xYC" = ( -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"xXn" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, +/obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"xYM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ +"xXA" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - pixel_x = -24 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva/yellow/west, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"xXD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"xYc" = ( +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"xYt" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"xYB" = ( +/obj/item/tool/pickaxe, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) +"xYJ" = ( +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "xZa" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) -"xZv" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"xZe" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "xZD" = ( @@ -30718,80 +30820,43 @@ }, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"xZN" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva/yellowfull/west, -/area/varadero/interior/disposals) -"xZO" = ( -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) -"yab" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/cargo) -"yaf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red, -/area/varadero/interior/medical) -"yaC" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - locked = 1; - name = "\improper Navigation Chamber" - }, -/turf/open/shuttle/red, -/area/varadero/interior_protected/vessel) -"yba" = ( -/obj/structure/machinery/space_heater, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/shiva/purplefull/west, -/area/varadero/interior/research) -"ybj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, +"yau" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"yay" = ( +/obj/structure/fence, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/research) +/area/varadero/exterior/lz2_near) +"yaJ" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/court) +"yaO" = ( +/obj/item/weapon/gun/flare{ + current_mag = null + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"ybi" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) "ybm" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/varadero/interior/library) -"ybt" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, +"ybN" = ( +/obj/item/tool/crowbar, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"ybZ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) +"yce" = ( +/obj/structure/closet/firecloset/full, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"ybY" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/stamp{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/hall_NW) +/area/varadero/interior/maintenance/research) "ycz" = ( /obj/structure/machinery/shower{ dir = 8 @@ -30807,6 +30872,10 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) +"ydl" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred/northeast, +/area/varadero/interior/medical) "ydx" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -30818,47 +30887,21 @@ "ydI" = ( /turf/open/floor/carpet, /area/varadero/interior/records) -"ydP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) -"ydQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/security) -"ydZ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"ydJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) +"yeA" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 13; + pixel_y = 8 }, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/weapon/gun/rifle/sniper/svd, -/obj/structure/window/reinforced, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) -"yeF" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security) -"yeG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/frame/camera, -/turf/open/floor/shiva/multi_tiles/east, -/area/varadero/interior/hall_SE) -"yeH" = ( -/turf/open/floor/shiva/green/west, +/area/varadero/interior_protected/maintenance/south) +"yeD" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "yeJ" = ( /obj/structure/machinery/light/small{ @@ -30874,24 +30917,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"yeY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva/red/east, -/area/varadero/interior/security) -"yfh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/shiva/wredfull, -/area/varadero/interior/medical) -"yfQ" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva/blue/west, -/area/varadero/interior/administration) "yfT" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -30917,35 +30942,10 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"ygn" = ( -/obj/structure/catwalk{ - indestructible = 1 - }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) -"ygT" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva/wred/north, -/area/varadero/interior/medical) -"ygY" = ( -/obj/item/card/id/silver{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) -"ygZ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +"yhn" = ( +/obj/item/weapon/gun/revolver/cmb, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "yhy" = ( /obj/structure/filingcabinet{ density = 0; @@ -30967,6 +30967,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"yhI" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "yhU" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, @@ -30986,47 +30990,52 @@ "yil" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"yiA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"yiF" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/shiva/wredfull, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"yiS" = ( +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"yji" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 +"yiT" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"yiV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/item/storage/firstaid/rad{ - pixel_y = 4 +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"yjl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 3 }, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"yjp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ +"yjF" = ( +/obj/structure/sink{ dir = 1; - name = "\improper Underground Security Checkpoint"; - req_access_txt = "100" + pixel_y = -10 }, -/turf/open/floor/shiva/redfull/west, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) "yjH" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"yjK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva/multi_tiles/north, -/area/varadero/interior/electrical) +"yjX" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) "ykc" = ( /turf/closed/wall, /area/varadero/interior/cargo) @@ -31037,27 +31046,6 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/technical_storage) -"ykx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/caves/east) -"ykA" = ( -/obj/structure/closet/crate/construction, -/obj/item/storage/belt/utility/full, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/eastbeach) -"ykE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cdeathalarm_kit{ - pixel_x = -8; - pixel_y = 1 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/medical) "ykM" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -31085,10 +31073,28 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"ylY" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "ymb" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) +"ymg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Bay" + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) (1,1,1) = {" wUU @@ -31313,30 +31319,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -31495,30 +31501,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -31677,30 +31683,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -31859,30 +31865,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA pGs pGs pGs @@ -31929,7 +31935,7 @@ xCn xCn xCn srg -ljt +uFY dxK pGs pGs @@ -32041,30 +32047,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA pGs pGs pGs @@ -32088,7 +32094,7 @@ pGs pGs pGs uHY -ljt +uFY xCn xCn xCn @@ -32111,12 +32117,12 @@ xCn xCn xCn xCn -oPQ +arq xCn cBI xCn xCn -ljt +uFY pGs pGs pGs @@ -32223,30 +32229,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +gyT +sZA +sZA pGs pGs pGs @@ -32265,25 +32271,25 @@ pGs pGs srg srg -ljt +uFY pGs pGs uHY xCn -oPQ +arq xCn xCn xCn xCn xCn -qRi -oPQ +nYR +arq xCn xCn xCn xCn xCn -oPQ +arq xCn xCn srg @@ -32293,12 +32299,12 @@ xCn oVt xCn xCn -oPQ +arq xCn cBI xCn -oPQ -oPQ +arq +arq xCn pGs pGs @@ -32405,31 +32411,31 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +gyT pGs pGs pGs @@ -32447,25 +32453,25 @@ srg xCn xCn xCn -oPQ +arq uHY xCn qYg xCn -oPQ +arq srg xCn srg xCn -oPQ -oPQ -oPQ +arq +arq +arq xCn xCn srg srg xCn -oPQ +arq xCn xCn xCn @@ -32480,7 +32486,7 @@ xCn cBI xCn xCn -oPQ +arq kAL xCn fHk @@ -32587,32 +32593,32 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +gyT pGs pGs pGs @@ -32629,7 +32635,7 @@ xCn xCn fHk xCn -oPQ +arq xCn xCn xCn @@ -32640,14 +32646,14 @@ xCn xCn xCn xCn -oPQ -oPQ +arq +arq xCn xCn oVt xCn sfF -ljt +uFY uHY qul qul @@ -32769,33 +32775,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA pGs pGs pGs @@ -32805,28 +32811,28 @@ xCn xCn xCn xCn -oPQ -oPQ -oPQ +arq +arq +arq xCn xCn oVt xCn xCn -oPQ +arq xCn xCn hGl tMJ wpG -vYp +cIh tMJ ncL yks yks ncL tMJ -vYp +cIh tMJ yks yks @@ -32951,33 +32957,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk -mPk -mPk +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +gyT +sZA +sZA +sZA +sZA pGs pGs pGs @@ -32985,44 +32991,44 @@ pGs xCn xCn xCn -xbc +fna xCn -oPQ -oPQ -oPQ +arq +arq +arq xCn xCn xCn -oPQ +arq xCn xCn srg xCn hGl -efw +eiR kXQ -efw +eiR kXQ kXQ -fND +hXK xCq kXQ -efw -jGA -efw -efw -awu +eiR +weS +eiR +eiR +vyk fay -jMK -cqB -hBX +vCe +ulS +xFQ fay -eqe -xyr -fWA -mEA -sBk -ksn +xmA +yjl +vgo +pCo +hjW +haL pGc srg xCn @@ -33133,78 +33139,78 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA sNx -mPk -imk -mPk -imk +sZA +gyT +sZA +gyT pGs pGs pGs pGs xCn xCn -oPQ +arq xCn -oPQ +arq xCn xCn hRv xCn xCn xCn -oPQ +arq xCn uHY xCn xCn -mQF -efw +kAi +eiR kXQ -efw -efw -efw +eiR +eiR +eiR kXQ -pJA +tZw kXQ -efw -efw -efw -mzI -efw +eiR +eiR +eiR +uTJ +eiR fay -wIr -mym -qoy +oYZ +rin +aRH fay -cJa -hDA -pjs -aJc -hDA -xrA +bGH +qqP +vWD +dFg +qqP +wuE pGc srg xCn @@ -33315,33 +33321,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA sNx -mPk -mPk -rYR +sZA +sZA +egm pGs pGs pGs @@ -33357,15 +33363,15 @@ qul uHY srg srg -ljt +uFY qul qul qul uHY hhM -qDh -qlj -qlj +fFq +qmL +qmL yks aoE yks @@ -33373,20 +33379,20 @@ yks aoE yks yks -efw -qMY -efw -dkr -rUw -hfX -hFA -dkr -qMD -hDA -iAp -gwC -hDA -tMx +eiR +gcm +eiR +tZG +lCI +xpc +xwD +tZG +iXg +qqP +imp +fbX +qqP +pWo tqh dxK xCn @@ -33497,43 +33503,43 @@ pGs pGs pGs pGs -cJL -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -vlm -imk -mPk -imk -xTA +eXL +sZA +sZA +sZA +eXL +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +eXL +sZA +sZA +sZA +sZA +sZA +sZA +sZA +eXL +wJG +gyT +sZA +gyT +eWJ pGs pGs pGs qul -ljt -oPQ -oPQ -oPQ -ljt +uFY +arq +arq +arq +uFY qul qul qul @@ -33545,9 +33551,9 @@ qul qul qul hhM -efw -efw -kYN +eiR +eiR +qwJ yks aHs fla @@ -33555,20 +33561,20 @@ gkk eGP nPE yks -bag -qMY -efw +azc +gcm +eiR fay -tGl -loW -fUY +qko +eeQ +mgy fay -qtQ -fef -hDA -gwC -odD -rjE +vyH +oza +qqP +fbX +qpi +rqt fay qul qul @@ -33679,43 +33685,43 @@ pGs pGs pGs pGs -wBp -wBp -rYC -xVw -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -xVw -rYC -wBp -wBp -wBp -xVw -wBp -rYC -wBp -wBp -wBp -oNa -mYA -cLV -eCB +snN +snN +bog +fQP +snN +snN +snN +bog +fQP +snN +snN +snN +snN +fQP +bog +snN +snN +snN +fQP +snN +bog +snN +snN +snN +lok +xJW +nJk +ssj klT klT klT klT -vYp +cIh ncL tMJ yks -vYp +cIh yks yks yks @@ -33727,9 +33733,9 @@ yks yks yks yks -efw -efw -efw +eiR +eiR +eiR yks mzJ rbU @@ -33738,17 +33744,17 @@ sdU rbU yks yks -fdA -vYp +hIR +cIh fay fay -fKz +heP fay fay fay -lBw -ltW -tkw +qLc +kdm +oKG ftA fay fay @@ -33758,7 +33764,7 @@ ebr pKK vYW loA -uQa +nPp vYW vYW vYW @@ -33861,77 +33867,77 @@ pGs pGs pGs pGs -sNy -jDe -sNy -sNy -sNy -sNy -sNy -sNy -sNy -jDe -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -jDe -sNy -sNy -tER -sNy -dWH -jhW -jhW -jhW -mxx -jGm -fND -uVo +boT +jpi +boT +boT +boT +boT +boT +boT +boT +jpi +boT +boT +boT +boT +boT +boT +boT +boT +boT +jpi +boT +boT +oiy +boT +xlm +rwt +rwt +rwt +tRX +tKa +hXK +pzN kXQ kXQ -efw -fND -uVo +eiR +hXK +pzN kXQ -efw -xwG +eiR +rSO xCq kXQ kXQ -neJ -efw -fND -uVo -efw -efw -efw -efw +mCu +eiR +hXK +pzN +eiR +eiR +eiR +eiR pCP ovC ovC nOQ lIO rbU -aCz -uuN -nuQ -rQV -rQV -rQV -nuQ -sKe -cGx -iLz -cGT -rQV -nuQ -hBX +fmg +jMH +mYs +fjX +fjX +fjX +mYs +twX +iSG +vcP +cYR +fjX +mYs +xFQ eEY xhx fay @@ -34043,79 +34049,79 @@ pGs pGs pGs pGs -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy +boT +boT +boT +boT +boT +boT +boT +boT +boT +boT lyP -sNy +boT lyP -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -nVv -efw -efw -qVp -sQn -sQn -rxI -sQn -sQn -sQn -sQn -rxI -sQn -sQn -sQn -rxI -sQn -sQn -sQn -sQn -tVD -rxI -sQn -dTl -vdq -efw -efw +boT +boT +boT +boT +boT +boT +boT +boT +boT +boT +boT +cGI +eiR +eiR +cQV +hoD +hoD +mur +hoD +hoD +hoD +hoD +mur +hoD +hoD +hoD +mur +hoD +hoD +hoD +hoD +tCe +mur +hoD +fks +pLc +eiR +eiR aoE vTl ovC ovC ovC rbU -aCz -wIr -qQF -ltW -cNT -aPQ -qQF -ltW -ltW -ltW -ltW -ltW -qQF -eWR -oXi -gEy +fmg +oYZ +eZA +kdm +iPa +rbS +eZA +kdm +kdm +kdm +kdm +kdm +eZA +fLJ +jCm +orh fay ebr ebr @@ -34123,8 +34129,8 @@ ebr vYW vYW vYW -uQa -uQa +nPp +nPp vYW neq vYW @@ -34225,89 +34231,89 @@ pGs pGs pGs pGs -tER -sNy -sNy -sNy -sNy +oiy +boT +boT +boT +boT lyP -sNy -sNy -sNy +boT +boT +boT lyP -sNy -sNy -sNy -sNy -sNy -sNy -wLq +boT +boT +boT +boT +boT +boT +pAk lyP lyP -sNy -dhV -ozD -nFH -ozD -jpZ -byU -byU -qMY -efw -efw -efw -pJA -jGA -efw -efw -efw -pJA -efw -efw -efw -pJA -efw -efw -efw +boT +coq +awA +fzd +awA +fJU +aFI +aFI +gcm +eiR +eiR +eiR +tZw +weS +eiR +eiR +eiR +tZw +eiR +eiR +eiR +tZw +eiR +eiR +eiR kXQ kXQ -pJA -efw -jif -efw -miP +tZw +eiR +tOy +eiR +hMr yks qBU rbU ovC adC rbU -aCz -wIr -ezI -biF -yba -pVl -xDf -rFj -izs -vku -izs -wmg -vSY -izs -oyi -wvI +fmg +oYZ +rRF +pcA +hVF +ubI +mWv +lcE +vpn +tbk +vpn +ntN +jkO +vpn +iAG +bMJ fay ebr ebr ebr vYW vYW -uQa +nPp vYW vYW -uQa +nPp vYW vYW vYW @@ -34407,35 +34413,35 @@ pGs pGs pGs pGs -sNy -sNy -tER -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy +boT +boT +oiy +boT +boT +boT +boT +boT +boT +boT +boT +boT +boT +boT +boT +boT lyP -wLq -sNy -sNy -hlG -pVz -skp -skp -vLc -qDh -qlj -vvh -qlj +pAk +boT +boT +ebO +kgz +uio +uio +jqF +fFq +qmL +eVA +qmL yks yks yks @@ -34454,10 +34460,10 @@ yks yks yks yks -bvE -qMY -mxx -cbv +nSh +gcm +tRX +ouk yks vNG rbU @@ -34465,32 +34471,32 @@ jvc nCV ovC fay -wIr -ltW -xuT -eYe -qQF -ltW -dQl -rWJ -jJp -aJI -dQl -rWJ -ltW -qQF -okB +oYZ +kdm +tOH +iAY +eZA +kdm +cWM +eLG +jvz +pVi +cWM +eLG +kdm +eZA +iqF fay ebr ebr vYW vYW -uQa +nPp jAI vYW -uQa -uQa -uQa +nPp +nPp +nPp vYW vYW vYW @@ -34589,35 +34595,35 @@ pGs pGs pGs pGs -sNy -sNy -sNy -sNy -sNy -sNy -sNy -mLg -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -ozD -nFH -tdX -ifB -lCK -ifB -lCK -efw -efw -qMY -cyT +boT +boT +boT +boT +boT +boT +boT +czJ +fzd +fzd +fzd +fzd +fzd +fzd +fzd +fzd +fzd +fzd +awA +fzd +qec +cYu +rEF +cYu +rEF +eiR +eiR +gcm +mBq yks qul qul @@ -34627,8 +34633,8 @@ uHY uHY qHc qHc -oPQ -ljt +arq +uFY qul qul qul @@ -34636,32 +34642,32 @@ qul qul qul yks -sDE -wuA -efw -rme +nyW +rhc +eiR +imf aoE qKq axY lNw urE xNw -xPx -wIr -ltW -pCc -kvx -qQF -rWJ -hyQ -ltW -lKI -rWJ -bxc -ltW -ltW -qQF -eXr +sjG +oYZ +kdm +jAf +fln +eZA +eLG +grc +kdm +nkj +eLG +aOS +kdm +kdm +eZA +mtS fay ebr vYW @@ -34671,8 +34677,8 @@ vYW vYW vYW vYW -uQa -uQa +nPp +nPp vYW vYW vYW @@ -34771,45 +34777,45 @@ pGs pGs pGs pGs -sNy -wLq -sNy -sNy -sNy -sNy -sNy -sHJ -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -efw -efw -qMY -efw +boT +pAk +boT +boT +boT +boT +boT +mKa +cYu +cYu +cYu +cYu +cYu +cYu +cYu +cYu +cYu +cYu +cYu +cYu +cYu +cYu +cYu +cYu +cYu +eiR +eiR +gcm +eiR yks qul qul qul -ljt -oPQ +uFY +arq xCn xCn -oPQ -oPQ +arq +arq qHc xCn xCn @@ -34818,10 +34824,10 @@ qul qul qul yks -mbu -qMY -efw -nKr +njb +gcm +eiR +vtD yks kpF xxO @@ -34829,21 +34835,21 @@ rFD ncC qBQ fay -jcB -ltW -hux -brx -qQF -rWJ -dzN -ltW -iFy -rWJ -dYq -ltW -ltW -lRU -leI +hRR +kdm +epv +nKu +eZA +eLG +bvd +kdm +sui +eLG +lbT +kdm +kdm +xBf +yjF tqh rpw neq @@ -34853,8 +34859,8 @@ vYW ixl hto vYW -uQa -uQa +nPp +nPp vYW vYW vYW @@ -34954,43 +34960,43 @@ pGs pGs pGs pRV -sNy -wLq -sNy -sNy -sNy -sNy -dsC -rNf -mdy -nQR -nQR -nQR -nQR -nQR -nQR -qOO -rNf -mdy -nQR -pTQ -ifB -ifB -ifB -ifB -efw -efw -qMY -aoi +boT +pAk +boT +boT +boT +boT +fUt +csH +iUe +uJx +uJx +uJx +uJx +uJx +uJx +qPI +csH +iUe +uJx +jKn +cYu +cYu +cYu +cYu +eiR +eiR +gcm +qCD yks yks qul qul -oPQ -oPQ -oPQ +arq +arq +arq xCn -oPQ +arq xCn xCn xCn @@ -35000,10 +35006,10 @@ cgr qul qul yks -ico -vBk -efw -efw +phW +bVp +eiR +eiR yks yks yks @@ -35011,22 +35017,22 @@ aoE yks yks yks -iYb -ltW -kCy -bUR -qQF -ltW -yji -ltW -dQl -ltW -ruq -rWJ -ltW -sKL -xbD -dkr +iVn +kdm +oqz +uXW +eZA +kdm +qOG +kdm +cWM +kdm +oQQ +eLG +kdm +kaj +lje +tZG rpw neq vYW @@ -35034,9 +35040,9 @@ vYW ebr ebr ebr -uQa -uQa -uQa +nPp +nPp +nPp vYW hto vYW @@ -35136,35 +35142,35 @@ pGs pGs lYo cNt -sNy -tER -sNy -wLq -uTj -sNy -dsC -rNf -izl -sNy -wLq -sNy -wLq +boT +oiy +boT +pAk +oxt +boT +fUt +csH +tEo +boT +pAk +boT +pAk lyP -sNy -sHJ -rNf -izl -ekO -aCd -ifB -ifB -kYM -ifB -mPX -efw -qMY -efw -mbu +boT +mKa +csH +tEo +vly +xeT +cYu +cYu +brh +cYu +kTJ +eiR +gcm +eiR +njb yks qul qul @@ -35172,7 +35178,7 @@ xCn oVt xCn xCn -oPQ +arq xCn xCn xCn @@ -35183,31 +35189,31 @@ pea qul yks yks -xUs -sQn +gZL +hoD vSd -sQn -fdn +hoD +cAW yeR -sQn -jQM -sQn -bZg -giq -bSd -izs -hfD -clv -ltW -rWJ -ltW -ltW -ltW -ltW -ltW -ltW -sKL -gka +hoD +ekD +hoD +oFj +bPW +oyN +vpn +xbe +uGg +kdm +eLG +kdm +kdm +kdm +kdm +kdm +kdm +kaj +hqp fay rpw vYW @@ -35215,10 +35221,10 @@ vYW vYW vYW ebr -alL -uQa -uQa -uQa +fOQ +nPp +nPp +nPp vYW vYW neq @@ -35318,42 +35324,42 @@ pGs qfr nbB cNt -wLq -wLq -sNy -sNy -sNy -sNy -dsC -rNf -izl -wLq -sNy +pAk +pAk +boT +boT +boT +boT +fUt +csH +tEo +pAk +boT lyP lyP -sNy -uTj -sHJ -rNf -izl +boT +oxt +mKa +csH +tEo lyP -hlG -ifB -ifB -ifB -ifB -efw -byU -qMY -efw -mbu +ebO +cYu +cYu +cYu +cYu +eiR +aFI +gcm +eiR +njb yks qul uHY xCn xCn xCn -oPQ +arq xCn xCn qul @@ -35365,31 +35371,31 @@ bdH qul qul yks -kDh -efw -efw -efw -jGA -efw -neJ -qMY -byU +yce +eiR +eiR +eiR +weS +eiR +mCu +gcm +aFI aoE -tGl -xAK -xAK -xAK -loW -xAK -xAK -nQH -mVc -nYx -xAK -ltW -ltW -fWn -vVy +qko +rKU +rKU +rKU +eeQ +rKU +rKU +tKS +snM +jIK +rKU +kdm +kdm +eFS +sra fay rpw neq @@ -35397,10 +35403,10 @@ vYW vYW vYW vYW -uQa -uQa -uQa -uQa +nPp +nPp +nPp +nPp vYW vYW vYW @@ -35501,33 +35507,33 @@ nbB qfr dpW oIc -wLq -wLq -tER -sNy -sNy -dsC -rNf -izl -wLq -sNy +pAk +pAk +oiy +boT +boT +fUt +csH +tEo +pAk +boT lyP -sNy -sNy -sNy -sHJ -rNf -izl -wLq -hlG -ifB -ifB -ifB -ifB -efw -efw -qMY -qUj +boT +boT +boT +mKa +csH +tEo +pAk +ebO +cYu +cYu +cYu +cYu +eiR +eiR +gcm +xtQ yks yks qul @@ -35547,31 +35553,31 @@ xCn qul qul yks -alG -xVe +pts +mQd kXQ kXQ qOS -efw -efw -qMY -knP +eiR +eiR +gcm +vZp yks -dMm -bcg -bmt +dDZ +omX +alY fay -xxE +qle fay -dkr +tZG fay fay fay -dQl -hDA -hDA -icn -afi +cWM +qqP +qqP +xMD +nZc fay ebr vYW @@ -35579,10 +35585,10 @@ hto vYW neq vYW -uQa -uQa -uQa -uQa +nPp +nPp +nPp +nPp vYW vYW vYW @@ -35684,31 +35690,31 @@ rcu fQK dpW pRV -wLq -wLq -wLq -wLq -dsC -plF -izl -wLq -uTj -sNy -sNy -sNy -sNy -sHJ -rNf -iVD +pAk +pAk +pAk +pAk +fUt +wPJ +tEo +pAk +oxt +boT +boT +boT +boT +mKa +csH +kOE lyP -hlG -ifB -ifB -kyI -ifB -efw -byU -qMY +ebO +cYu +cYu +oJu +cYu +eiR +aFI +gcm yks yks qul @@ -35718,7 +35724,7 @@ hRv xCn qHc xCn -oPQ +arq xCn xCn xCn @@ -35735,25 +35741,25 @@ vSN vSN yks yks -qDh -vBF -qlj +fFq +wJt +qmL yks -uuN -rQV -rQV -rQV -nuQ -lKS -jab -cjU -nLw +jMH +fjX +fjX +fjX +mYs +sUZ +psN +tjr +pPC fay -rex -hDA -hDA -icn -hEN +hiL +qqP +qqP +xMD +pQe fay ebr ebr @@ -35761,8 +35767,8 @@ vYW ckM vYW vYW -uQa -uQa +nPp +nPp vYW vYW vYW @@ -35867,30 +35873,30 @@ nbB qfr dpW oIc -wLq -wLq -dhV -mwm -rNf -iZj -vqR -wLq -wLq -wLq -llj -dhV -qCY -rNf -iZj -dkC -hlG -xCM -lCK -ifB -lCK -qDh -qlj -lWB +pAk +pAk +coq +wgZ +csH +qVm +sQj +pAk +pAk +pAk +xbO +coq +apS +csH +qVm +reD +ebO +jLW +rEF +cYu +rEF +fFq +qmL +xre yks qul qul @@ -35900,7 +35906,7 @@ qHc xCn xCn xCn -oPQ +arq qHc xCn xCn @@ -35917,24 +35923,24 @@ qul qul qul yks -efw -qMY -kYN +eiR +gcm +qwJ yks -mkc -ltW -ltW -ltW -qQF -ltW -ltW -ltW -jHI +hTr +kdm +kdm +kdm +eZA +kdm +kdm +kdm +vlu fay -lBw -hDA -tnN -cPR +qLc +qqP +nMv +iVL fay fay ebr @@ -35943,8 +35949,8 @@ ebr vYW vYW vYW -uQa -wUr +nPp +nUO vYW vYW vYW @@ -36051,28 +36057,28 @@ ykM dpW iIY oIc -dsC -ifB -ifB -ifB +fUt +cYu +cYu +cYu kVL iIY iIY pRV -uTj -dsC -ifB -ifB -ifB -iVD -hlG -kvS -laN -rGE -rGE -efw -efw -ybj +oxt +fUt +cYu +cYu +cYu +kOE +ebO +qMJ +rFl +owN +owN +eiR +eiR +dee yks qul qul @@ -36081,8 +36087,8 @@ qHc mJe xCn xCn -oPQ -oPQ +arq +arq xCn tuR xCn @@ -36099,24 +36105,24 @@ cYV qul qul yks -efw -xnr -sQn -bZg -oOF -izs -izs -izs -vSY -izs -dmS -ltW -ucv +eiR +lvi +hoD +oFj +bNA +vpn +vpn +vpn +jkO +vpn +gzB +kdm +mQS fay -rex -hDA -hDA -bjf +hiL +qqP +qqP +ixn fay ebr ebr @@ -36125,8 +36131,8 @@ hto vYW vYW vYW -uQa -fFO +nPp +goM dGu hto vYW @@ -36224,9 +36230,9 @@ pGs pGs huF haP -rQe -vFs -iqv +rJs +uQx +aID haP uQi nbB @@ -36234,27 +36240,27 @@ fQK nbB dpW red -ifB -lFI -ifB +cYu +bcE +cYu nhX gor qoj avX ehT kQy -ifB -lFI -ifB -sZW -hnR -ptp -ptp -ptp -kRU -efw -efw -qMY +cYu +bcE +cYu +nGF +sOJ +xXA +xXA +xXA +fbV +eiR +eiR +gcm yks qul qul @@ -36263,7 +36269,7 @@ xCn xCn fHk xCn -oPQ +arq xCn xCn xCn @@ -36281,24 +36287,24 @@ xCn uHY qul yks -qDh -vvh -qlj +fFq +eVA +qmL aoE -ifx -ruZ -aJW -gun -aWA -pVF -plc -xAK -ckz +dGe +rVm +mTf +kRe +pCY +jQA +aOw +rKU +eue fay -sDM -iCy -iCy -dlv +vKO +mjQ +mjQ +rJG fay ebr ebr @@ -36307,8 +36313,8 @@ vYW vYW vYW vYW -uQa -uQa +nPp +nPp jAI vYW ebr @@ -36405,38 +36411,38 @@ pGs pGs huF huF -eWp -lMB -lMB -lMB -jPh +qAz +gpc +gpc +gpc +lnY uQi uQi uQi uQi uQi ykc -ifB -huf -ifB +cYu +lQS +cYu ykc -cog +lJL ykc -cog +lJL ykc ykc -gkw -huf -ifB +hqd +lQS +cYu ykc uQi uQi uQi uQi uQi -efw -efw -qMY +eiR +eiR +gcm yks qul qul @@ -36445,7 +36451,7 @@ xCn jCs xCn xCn -oPQ +arq xCn qHc xCn @@ -36463,24 +36469,24 @@ xCn xCn qul yks -efw -qMY -kYN +eiR +gcm +qwJ yks fay fay fay fay -dkr -dkr +tZG +tZG fay fay fay fay -sDM -iCy -iCy -dlv +vKO +mjQ +mjQ +rJG fay ebr ebr @@ -36489,8 +36495,8 @@ ebr vYW neq vYW -uQa -uQa +nPp +nPp vYW vYW hto @@ -36587,38 +36593,38 @@ pGs pGs huF huF -oTX -tQT -tQT -fQW -jSP +srH +igh +igh +sOc +wTp ykc ykc ykc ykc ykc ykc -cog +lJL ykc -uZY +wWi ykc -cAw -lbi -qNC -rSx +ttv +eIv +fjz +vgQ ykc -cog +lJL ykc -rnP +tKg ykc ykc ykc ykc ykc ykc -lSg -lSg -vLt +hQr +hQr +uaM adw qul uHY @@ -36626,8 +36632,8 @@ xCn xCn xCn qul -ljt -oPQ +uFY +arq xCn xCn xCn @@ -36644,10 +36650,10 @@ mJe xCn xCn xCn -efw -efw -qMY -efw +eiR +eiR +gcm +eiR nSi bMx qul @@ -36659,10 +36665,10 @@ qul qul qul fay -sDM -iCy -iCy -dlv +vKO +mjQ +mjQ +rJG fay ebr ebr @@ -36670,9 +36676,9 @@ ebr vYW vYW vYW -uQa -uQa -uQa +nPp +nPp +nPp neq vYW vYW @@ -36769,38 +36775,38 @@ pGs pGs huF huF -cne -tQT -tQT -rMM -wjB +xJA +igh +igh +onY +nql ykc -akd -eBL -vjA -pfR -pfR -bRo +oSz +xYJ +cKh +obo +obo +iHk ykc -kVp -tjS -tjS -tjS -tjS -tjS -iUx -gXh +qPN +hxN +hxN +hxN +hxN +hxN +ktn +hYt uXZ -kVp -aDF -tjS -tjS -tjS -aDF +qPN +rqc +hxN +hxN +hxN +rqc uXZ -pYt -vsa -fcK +nTc +xft +jCl uSx xCn xCn @@ -36808,9 +36814,9 @@ xCn tuR xCn qul -ljt -oPQ -oPQ +uFY +arq +arq xCn xCn xCn @@ -36819,7 +36825,7 @@ qul xCn xCn qYg -ljt +uFY hhM hhM xCn @@ -36828,7 +36834,7 @@ qHc xCn kXQ kXQ -qMY +gcm kXQ kXQ xCn @@ -36841,23 +36847,23 @@ uHY qul qul fay -tYT -vBq -iCy -jnq +wYD +jOv +mjQ +eny fay ebr hto vYW vYW vYW -uQa -alL -uQa -uQa +nPp +fOQ +nPp +nPp vYW -alL -alL +fOQ +fOQ ebr ebr ebr @@ -36951,38 +36957,38 @@ huF huF huF huF -oTX -tQT -tQT -ssh -pPl +srH +igh +igh +jiN +pig ykc -dro -eBL -eBL -eBL -aBp -pfR +gyU +xYJ +xYJ +xYJ +kNy +obo ykc -hic -oJB -plN -sGY -sGY -sGY -sGY -uQK +mWt +uTy +lLb +lcG +lcG +lcG +lcG +pbg oLM -mIL -xOx -haV -oke -baN -wGl +pgD +sCE +gof +tLV +vHN +kRX ykc -pkG -nsn -ehH +vyc +sMk +aZI uSx xCn xCn @@ -36991,55 +36997,55 @@ qHc qHc uHY cYV -dNt -oPQ -oPQ -oPQ -ljt -ljt +fvc +arq +arq +arq +uFY +uFY xCn -oPQ -oPQ +arq +arq xCn xCn -oPQ -oPQ -oPQ -oPQ +arq +arq +arq +arq qHc -oPQ -efw +arq +eiR kXQ bRS -efw +eiR kXQ -oPQ -oPQ -oPQ -oPQ -oPQ +arq +arq +arq +arq +arq xCn xCn dcM -oPQ +arq deg -sDM -iCy -iCy -dlv +vKO +mjQ +mjQ +rJG lxe -tDo -vYW -vYW -uQa -uQa -uQa -cUZ -tDR -uQa -uQa -uQa -uQa +xJG +vYW +vYW +nPp +nPp +nPp +dDp +jce +nPp +nPp +nPp +nPp ebr ebr ebr @@ -37133,38 +37139,38 @@ huF huF huF huF -fOG -lMB -lMB -vMq -wjB -olP -eBL -eBL -eBL -eBL -mzT -fcg +lqK +gpc +gpc +qNl +nql +dsp +xYJ +xYJ +xYJ +xYJ +ntx +eYE uXZ -foF -oJB -wnw -bWq -hHK -oke -wGl -dpZ -sou -myo -sGY -sGY -sGY -sGY -sGY +aBj +uTy +jKG +vUd +lNv +tLV +kRX +ctT +nhq +qxV +lcG +lcG +lcG +lcG +lcG oLM -lSg -lSg -vLt +hQr +hQr +uaM bnm qul xCn @@ -37173,55 +37179,55 @@ xCn xCn qHc xCn -oPQ -oPQ -oPQ -oPQ -oPQ +arq +arq +arq +arq +arq xCn xCn qHc xCn -oPQ -oPQ +arq +arq xCn xCn qHc -oPQ -oPQ -xbc -efw -efw +arq +arq +fna +eiR +eiR bRS -efw +eiR kXQ -oPQ -oPQ -oPQ -oPQ +arq +arq +arq +arq xCn oVt yfT -oPQ -oPQ +arq +arq doW -sDM -pnn -mpn -dlv +vKO +ooG +pXK +rJG doW -tDo -uQa -vYW -uQa -uQa -uQa -esM -pdc -ivO -uQa -uQa -uQa +xJG +nPp +vYW +nPp +nPp +nPp +lza +gNh +udP +nPp +nPp +nPp ebr ebr ebr @@ -37300,54 +37306,54 @@ pGs pGs pGs pGs -knN -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -leG -cWu -cWu -cUF -oVp -wqc -jts -arC -wjB +oyG +wWN +wWN +wWN +wWN +wWN +wWN +wWN +wWN +wWN +wWN +izE +wWN +wWN +wZt +uNV +lnb +rte +mxJ +nql uXZ -cHS -wvK -wvK -eBL -mzT -xIA +hNz +uSq +uSq +xYJ +ntx +veB ykc -iZx -oJB -sfs -sGY -sGY -sGY -sGY -pxg -syl -nYL -oke -oRx -hsF -rLW -fjK -keN -lSg -lSg -vLt -lSg +lSp +uTy +tHa +lcG +lcG +lcG +lcG +peR +fOs +qZq +tLV +kuR +fPd +uHo +xOK +eGm +hQr +hQr +uaM +hQr qul qul xCn @@ -37371,40 +37377,40 @@ xCn xCn xCn xCn -oPQ -efw +arq +eiR kXQ -qMY +gcm kXQ -efw -oPQ -oPQ -oPQ +eiR +arq +arq +arq xCn xCn xCn -oPQ -oPQ -oPQ +arq +arq +arq deg -sDM -wAx -iCy -dlv +vKO +sBl +mjQ +rJG rNm -tDo -uQa -xqy -vYW -vYW -uQa -uQa -uQa -mdL -mdL -uQa -uQa -alL +xJG +nPp +uwo +vYW +vYW +nPp +nPp +nPp +uQm +uQm +nPp +nPp +fOQ hto vYW vYW @@ -37482,7 +37488,7 @@ pGs pGs pGs pGs -lPj +xqM huF huF huF @@ -37493,44 +37499,44 @@ huF huF huF huF -luz +eXY huF huF huF -cne -dQK -wBY -lMB -wjB +xJA +aIE +kTT +gpc +nql ykc ykc uXZ ykc oLM -vDI +uxf ykc ykc -suC -oJB -cPI -bMG -fXX -kDO -nPK -xuN -wJu -uGf -sGY -sGY -sGY -sGY -sGY +cKD +uTy +aSh +gqA +xxl +wVm +iOb +dZY +nmh +iIR +lcG +lcG +lcG +lcG +lcG uXZ -lSg -lSg -vLt -nfX -tng +hQr +hQr +uaM +hBx +uFn qul qul uHY @@ -37548,17 +37554,17 @@ mJe xCn xCn xCn -ljt +uFY hhM hhM -ljt -oPQ +uFY +arq hhM kXQ kXQ -qMY +gcm kXQ -efw +eiR uHY uHY xCn @@ -37568,11 +37574,11 @@ xCn xCn qYg xCn -bCi -jwy -jvF -iCy -dlv +urt +yhn +iyx +mjQ +rJG fHg oAE vYW @@ -37580,13 +37586,13 @@ vYW vYW vYW vYW -uQa -uQa -mdL -mdL -uQa -uQa -alL +nPp +nPp +uQm +uQm +nPp +nPp +fOQ vYW cmr vYW @@ -37664,56 +37670,56 @@ pGs pGs huF huF -lPj +xqM huF huF huF huF huF huF -ebJ -ebJ -ebJ -ebJ -uOk +dup +dup +dup +dup +dCc huF rpu huF -oTX -lMB -vUZ -lMB -wjB -eVn -isK -nma -vxM -cdO -pSK -sfM -odZ -mYW -gso -sfs -sGY -sGY -sGY -sGY -uQK +srH +gpc +wdz +gpc +nql +lOl +wls +gUI +iwi +glA +fBX +jHf +mEL +ryN +eBF +tHa +lcG +lcG +lcG +lcG +pbg ykc -iZx -xVC -wGl -oke -fgS -wGl +lSp +erH +kRX +tLV +xox +kRX ykc -fuF -lSg -bpH -rdq -lSg -bAj +cXx +hQr +ulp +waW +hQr +aky qul qul qul @@ -37739,7 +37745,7 @@ qul mCZ kXQ bRS -efw +eiR yks qul qul @@ -37751,10 +37757,10 @@ oVt uHY qul fay -rjZ -iCy -iCy -dlv +vpz +mjQ +mjQ +rJG fay ebr luZ @@ -37762,28 +37768,28 @@ vYW neq vYW vYW -uQa +nPp vYW vYW -uQa -uQa -uQa +nPp +nPp +nPp vYW -uQa -uQa -uQa +nPp +nPp +nPp vYW vYW vYW -lMb -uQa +bsn +nPp vYW -uQa +nPp vYW vYW vYW vYW -alL +fOQ vYW vYW vYW @@ -37846,7 +37852,7 @@ pGs pGs huF huF -lPj +xqM huF huF huF @@ -37861,41 +37867,41 @@ huF huF rpu huF -oTX -lMB -wBY -lMB -wjB -lDN -saC -saC -lDN -oJB -dFd -oJB -oJB -oJB -oJB -xiV -nRk -wGl -hHK -oke -uQK +srH +gpc +kTT +gpc +nql +pTG +hIy +hIy +pTG +uTy +dUg +uTy +uTy +uTy +uTy +djj +gtn +kRX +lNv +tLV +pbg ykc -sCV -sDZ -saC -saC -saC -sDZ +kwR +oEL +hIy +hIy +hIy +oEL ykc -lSg -gKw -vLt -miU -vBC -gHT +hQr +lvk +uaM +oih +siH +kFf qul qul qul @@ -37919,24 +37925,24 @@ qul qul qul yks -qDh -vvh -qlj +fFq +eVA +qmL yks qul -kli -bTg -aYg +fDi +lME +lrP qul qul qul qul qul fay -sDM -iCy -iCy -dlv +vKO +mjQ +mjQ +rJG fay ebr ebr @@ -37944,19 +37950,19 @@ hto vYW rZr vYW -uQa -uQa -uQa +nPp +nPp +nPp vYW -uQa -uQa +nPp +nPp vYW -uQa -uQa -uQa -uQa -uQa -uQa +nPp +nPp +nPp +nPp +nPp +nPp vYW vYW vYW @@ -38028,7 +38034,7 @@ pGs pGs huF huF -lPj +xqM huF huF huF @@ -38043,27 +38049,27 @@ huF huF huF huF -nPx -arC -lxr -lMB -wjB -sGY -enU -enU -sGY -oJB -dFd -oJB -oJB -oJB -oJB -sfs -sGY -sGY -sGY -sGY -uQK +bep +mxJ +fzG +gpc +nql +lcG +sSn +sSn +lcG +uTy +dUg +uTy +uTy +uTy +uTy +tHa +lcG +lcG +lcG +lcG +pbg ykc ykc ykc @@ -38072,12 +38078,12 @@ uXZ uXZ ykc ykc -lSg -bFV -vLt -lSg -lSg -gKw +hQr +qVJ +uaM +hQr +hQr +lvk qul qul qul @@ -38101,24 +38107,24 @@ qul qul qul yks -vwT -qMY -kYN +lkM +gcm +qwJ yks qul -gMV -eLZ -rIF -bTg -bTg -rLK -aYg +vTR +dTY +sFP +lME +lME +apT +lrP qul fay -sDM -iCy -iCy -dlv +vKO +mjQ +mjQ +rJG fay ebr ebr @@ -38126,12 +38132,12 @@ ebr ebr ebr fRl -hMC -iWE -csr -uQa -uQa -uQa +ako +eez +gBb +nPp +nPp +nPp vYW vYW vYW @@ -38190,8 +38196,8 @@ wUU "} (40,1,1) = {" wUU -nvv -mPk +spB +sZA pGs pGs pGs @@ -38210,53 +38216,53 @@ pGs pGs huF huF -rbp -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -mSS -jGT -wqc -jRu -lMB -qRe -sGY -enU -enU -sGY -oJB -dFd -oJB -oJB -oJB -oJB -dFd -oJB -oJB -oJB -oJB -uQK +dAk +dup +dup +dup +dup +dup +dup +dup +dup +dup +dup +dup +dup +dup +rEh +woh +lnb +aPr +gpc +lTM +lcG +sSn +sSn +lcG +uTy +dUg +uTy +uTy +uTy +uTy +dUg +uTy +uTy +uTy +uTy +pbg uXZ -gcK -xYM -gAl -swf -qiv +eVN +mQV +vHn +wUe +wSK ykc xRF -rSu +wla pGJ -dRX +wEc wVI pGJ lsU @@ -38283,37 +38289,37 @@ sdz sdz qul yks -efw -qMY -kNN +eiR +gcm +aCR yks qul -edD -cym -cym -cym -cym -cym -nFp +jeP +egT +egT +egT +egT +egT +hUt qul fay -rex -hDA -hDA -bjf +hiL +qqP +qqP +ixn fay ebr ebr ebr ebr ebr -xEl -rDz -uMQ -uQa -uQa -uQa -uQa +vDv +kso +dvk +nPp +nPp +nPp +nPp vYW vYW vYW @@ -38329,8 +38335,8 @@ ebr sQN vYW vYW -uQa -uQa +nPp +nPp vYW vYW vYW @@ -38372,9 +38378,9 @@ wUU "} (41,1,1) = {" wUU -nvv -mPk -mPk +spB +sZA +sZA pGs pGs pGs @@ -38392,7 +38398,7 @@ pGs pGs huF huF -lPj +xqM huF huF huF @@ -38407,67 +38413,67 @@ huF huF huF huF -oTX -iah -wBY -lMB -wjB -lDN -tjS -qGE -dss -bMk -xTd -bMk -bMk -bMk -bMk -gwB -bMk -bMk -bMk -bMk -cKZ -msx -xCU -tVo -tVo -nni -dZT +srH +tGK +kTT +gpc +nql +pTG +hxN +xvw +mQe +hjI +sbh +hjI +hjI +hjI +hjI +cry +hjI +hjI +hjI +hjI +lLI +ymg +ydJ +mko +mko +dOn +rLw oLM -fYA -fYA -fYA -cYc -mGb -lgP -lzu -mGb -qHu -mGb -lzu -lgP -uOC -arg +jKt +jKt +jKt +iJr +ixX +jjO +cAB +ixX +yhI +ixX +cAB +jjO +quk +nXf pGJ pGJ pGJ pGJ pGJ -vWG -oRB -tzp -wtB -nXY -pSD -roy -umO +qbA +nLN +bjq +sMx +nYQ +jGg +byy +sOk sdz sdz sdz -iRR -wmL -iRR +fro +gpg +fro sdz sdz kGM @@ -38480,8 +38486,8 @@ kGM sdz sdz kGM -aRr -nBH +pdz +cia miy sdz sdz @@ -38489,14 +38495,14 @@ sdz sdz sdz ebr -tSR -tDo +buL +xJG vYW vYW vYW vYW jAI -uQa +nPp vYW hto ebr @@ -38510,8 +38516,8 @@ vYW vYW vYW vYW -uQa -uQa +nPp +nPp vYW vYW vYW @@ -38554,9 +38560,9 @@ wUU "} (42,1,1) = {" wUU -nvv -mPk -mPk +spB +sZA +sZA pGs pGs pGs @@ -38574,7 +38580,7 @@ pGs pGs huF huF -lPj +xqM huF huF huF @@ -38589,96 +38595,96 @@ huF huF huF huF -cne -lMB -wBY -lMB -wjB -mIL -oke -mAX -pBx -oke -sCJ -oke -oJB -oJB -oJB -xml -fDB -saC -saC -saC -saC -saC -wBN -sGY -sGY -sfs -xaK +xJA +gpc +kTT +gpc +nql +pgD +tLV +drB +rfh +tLV +ldU +tLV +uTy +uTy +uTy +qwu +rOV +hIy +hIy +hIy +hIy +hIy +iij +lcG +lcG +tHa +xvB uXZ -qKb -oMs -uww -tPz -hvO -hvO -hvO -hvO -hvO -hvO -hvO -hvO -hvO -lzu -mGb -mGb -mGb -mGb -lgP -kwB -icM -kwB -kwB -kwB -vEJ -kPX -bPl -uVV -kwB -kwB -kwB -nWg -kwB -sIn -fWr -wfr -vbr -wfr -fWr -wfr -wfr -vbr -wfr -fWr -rlJ -aRr -aRr -cGR -fWr -nyJ -bwz -kZg +kaq +sIL +rXL +daB +ckS +ckS +ckS +ckS +ckS +ckS +ckS +ckS +ckS +cAB +ixX +ixX +ixX +ixX +jjO +sDD +dYV +sDD +sDD +sDD +yau +hKX +mAa +fdi +sDD +sDD +sDD +nGS +sDD +ecH +pEh +pDa +iNY +pDa +pEh +pDa +pDa +iNY +pDa +pEh +sab +pdz +pdz +etH +pEh +acV +uku +rvr kGM -kSD -mMX -tDo -uQa +nBr +oJT +xJG +nPp hto vYW vYW vYW -uQa +nPp hto ebr ebr @@ -38736,10 +38742,10 @@ wUU "} (43,1,1) = {" wUU -nvv -mPk -mPk -mPk +spB +sZA +sZA +sZA pGs pGs pGs @@ -38756,7 +38762,7 @@ pGs pGs huF huF -lPj +xqM huF huF huF @@ -38772,93 +38778,93 @@ huF huF huF xpP -bJv -otL -nzS -lVa -wSX -oke -oke -uQK -cnv -sCJ -oke -oJB -nfZ -ePb -kMi +ggm +rmj +blh +hiW +nep +tLV +tLV +pbg +lCO +ldU +tLV +uTy +fvH +jbs +bsi ykc uXZ uXZ uXZ uXZ oLM -bzn -ePb -oJB -sfs -oke -nnt -oMs -jVl -uww -tPz -hvO -bpI -hvO -hvO -hvO -hvO -hvO -uDw -erE -vUE -hvO -hvO -hvO -hvO -hvO -kuX -kuX -wJB -kuX -kuX -kuX -cVG -cVG -dbV -kuX -kuX -kuX -ddY -kuX -kuX -kuX -kuX -eRO -scO -kuX -kuX -kuX -eRO -kuX -kuX -kuX -kuX -kuX -ddY -kuX -kuX -kuX -uOL +plH +jbs +uTy +tHa +tLV +qBb +sIL +hCr +rXL +daB +ckS +lXK +ckS +ckS +ckS +ckS +ckS +oUD +dJv +iWs +ckS +ckS +ckS +ckS +ckS +xxm +xxm +oMZ +xxm +xxm +xxm +wam +wam +aMe +xxm +xxm +xxm +bzj +xxm +xxm +xxm +xxm +xhk +dvg +xxm +xxm +xxm +xhk +xxm +xxm +xxm +xxm +xxm +bzj +xxm +xxm +xxm +gSJ kGM -hbD -jtx -lhB +xwr +vsI +oBb vYW -uQa +nPp vYW -uQa +nPp vYW vYW ebr @@ -38880,7 +38886,7 @@ vYW vYW vYW vYW -uQa +nPp vYW vYW jQa @@ -38918,10 +38924,10 @@ wUU "} (44,1,1) = {" wUU -nvv -mPk -mPk -mPk +spB +sZA +sZA +sZA pGs pGs pGs @@ -38938,7 +38944,7 @@ pGs pGs huF huF -lPj +xqM huF huF huF @@ -38955,18 +38961,18 @@ huF huF huF huF -mHM +pQj huF huF uQi -uyd -rwP -uQK -qfb -sCJ -oke -oJB -eZk +iOB +tUE +pbg +qil +ldU +tLV +uTy +iPh nQo fjM jeO @@ -38976,69 +38982,69 @@ leT vrw jeO vrw -eBG -kXP -ezd -ukz -ukz -nOO -vFu -imd -jsh -kzJ -kzJ -oZw -oZw -oZw -oZw -oZw -sCk -xuB -bEj -oZw -kzJ -oZw -kzJ -oZw -lVP -lVP -lVP -lfp -lVP -fpf -lVP -lVP -lVP -lVP -lVP -ehD -qCI -lVP -pDD -lVP -lVP -tTo -lVP -lVP -lVP -lVP -tTo -ehD -lVP -lVP -lVP -lVP -hCZ -lVP -fHs -kuX -uOL +iJP +esr +jtc +trW +trW +hVT +pMU +mSN +fVH +cNP +cNP +qzx +qzx +qzx +qzx +qzx +qMS +tNl +oXg +qzx +cNP +qzx +cNP +qzx +drW +drW +drW +iST +drW +snd +drW +drW +drW +drW +drW +iMg +tQf +drW +ihz +drW +drW +aRj +drW +drW +drW +drW +aRj +iMg +drW +drW +drW +drW +gHK +drW +cCw +xxm +gSJ kGM -hbD -dTS -qyH +xwr +msk +hCS vYW -uQa +nPp vYW vYW vYW @@ -39051,7 +39057,7 @@ vYW vYW pJF neq -trQ +rKa vYW vYW vYW @@ -39061,8 +39067,8 @@ vYW vYW vYW vYW -uQa -uQa +nPp +nPp vYW vYW jQa @@ -39071,8 +39077,8 @@ jQa jQa jQa jQa -vct -rgz +lOa +bDq jQa jQa jQa @@ -39100,11 +39106,11 @@ wUU "} (45,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA pGs pGs pGs @@ -39120,7 +39126,7 @@ pGs pGs huF huF -lPj +xqM huF huF huF @@ -39137,93 +39143,93 @@ huF huF huF huF -kGB +bDj huF huF ykc -tPI -itZ -uQK -wGl -sCJ -oke -oJB -wDG -wDG -afR +eOz +cSe +pbg +kRX +ldU +tLV +uTy +pis +pis +kyo oLM -uDQ -iMa -gsw -qZH +uwt +qXW +qRQ +iiT hUU -rrA -aTS -oJB -wIm -xqP +iZB +jnO +uTy +hVp +quz uXZ -qKb -oMs -uww -hvO -tPz -nNZ -hvO -hvO -hvO -hvO -hvO -hvO -bih -hvO -hvO -ost -hvO -tPz -hvO -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -pCp -kuX -kuX -ddY -kuX -kuX -xeV -ybY -ltI -iIW -fao -xeV -pCp -kuX -kuX -kuX -kuX -kuX -kuX -sDj -kuX -uOL +kaq +sIL +rXL +ckS +daB +tfz +ckS +ckS +ckS +ckS +ckS +ckS +wad +ckS +ckS +bNP +ckS +daB +ckS +xxm +xxm +xxm +xxm +xxm +xxm +xxm +xxm +xxm +xxm +xxm +wzI +xxm +xxm +bzj +xxm +xxm +gLg +bDm +ppN +xMj +fjG +gLg +wzI +xxm +xxm +xxm +xxm +xxm +xxm +baK +xxm +gSJ kGM -wkp -tqa +pHC +bKH ebr vYW vYW vYW vYW -uQa +nPp vYW ebr ebr @@ -39243,14 +39249,14 @@ ebr ebr hto vYW -uQa -uQa +nPp +nPp vYW vYW jQa -rgz -rgz -rgz +bDq +bDq +bDq jQa jQa jQa @@ -39282,12 +39288,12 @@ wUU "} (46,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA pGs pGs pGs @@ -39302,7 +39308,7 @@ pGs pGs huF huF -lPj +xqM huF huF huF @@ -39319,84 +39325,84 @@ huF huF huF huF -lPj +xqM huF huF ykc -aDu -oke -uQK -oke -uBX -oke -oJB -oJB -oJB -oPe -roJ -yab -sNl -wty -vzN -mZC -kXn -aFu -jqJ -xqY -muE +bky +tLV +pbg +tLV +jbD +tLV +uTy +uTy +uTy +cvv +qoa +wxB +gYK +iUS +kqf +oSC +vTm +pOx +eJQ +keF +vUu oLM -fYA -fYA -fYA -dQe -lWo -vAF -dQe -yeH -yeH -bUK -lzu -hvO -bih -lzu -yeH -yeH -dxn -lWo -oMs -auE -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -wfT -vDm -vDm -fPU -cnW -foU -ujp -vDm -mVF -vDm -vDm -deX -vDm -vDm -vDm -tOp -sDj -kuX -rlJ +jKt +jKt +jKt +bbZ +mPF +bIz +bbZ +tQM +tQM +npm +cAB +ckS +wad +cAB +tQM +tQM +gBR +mPF +sIL +hkp +ujj +ujj +ujj +ujj +ujj +ujj +ujj +ujj +ujj +ujj +ujj +ujj +ujj +eiA +ggT +ggT +uxK +cov +vhc +xwy +ggT +eJO +ggT +ggT +svb +ggT +ggT +ggT +lHI +baK +xxm +sab sdz ebr ebr @@ -39404,8 +39410,8 @@ ebr ebr vYW vYW -uQa -uQa +nPp +nPp vYW vYW hto @@ -39417,7 +39423,7 @@ vYW fGP vYW vYW -uQa +nPp vYW gEP ebr @@ -39425,13 +39431,13 @@ ebr ebr vYW vYW -uQa -uQa +nPp +nPp vYW vYW jQa -rgz -rgz +bDq +bDq jQa jQa jQa @@ -39464,12 +39470,12 @@ wUU "} (47,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA pGs pGs pGs @@ -39484,7 +39490,7 @@ pGs pGs huF huF -wRR +nPf huF huF huF @@ -39501,35 +39507,35 @@ pGs bZv iUZ huF -wgU +sXj huF huF ykc -nPR -saC -lDN -saC -saC -lDN -saC -mAm -iAx -lMP +cpn +hIy +pTG +hIy +hIy +pTG +hIy +xXf +oYM +pMq ykc -ubT -xwk -lDN -lzP +pnA +xmT +pTG +sPF ykc -rxe -saC -uVe +pAe +hIy +haK ykc uXZ ykc -vYr +pDC vnm -rIU +tmU vnm brX vUT @@ -39537,15 +39543,15 @@ uJO bLB bLB vnm -xWY -hvO -bih -rHv +iQm +ckS +wad +shs cZR nxW nxW -rsM -rtr +joE +tsT nxW nxW mKb @@ -39559,9 +39565,9 @@ qcN qcN qcN lGp -hYp -uqx -hYp +aWk +gxm +aWk bIt bIt pQp @@ -39576,8 +39582,8 @@ ykw bIt bIt kGM -sDj -wir +baK +kGN kGM sdz ebr @@ -39608,7 +39614,7 @@ ggX vYW vYW vYW -mdL +uQm iOv vYW jQa @@ -39646,13 +39652,13 @@ wUU "} (48,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA pGs pGs pGs @@ -39666,7 +39672,7 @@ pGs pGs huF huF -wRR +nPf huF huF huF @@ -39683,16 +39689,16 @@ lYr qjU gvo rlw -eWZ +wLo huF huF ykc ykc oDS -lDN -sGY -sGY -lDN +pTG +lcG +lcG +pTG ykc ykc uXZ @@ -39700,18 +39706,18 @@ uXZ ykc ykc uXZ -oqh +oPZ uXZ ykc uXZ jpm uXZ ykc -hyr -npi -hyr +wgi +xXn +wgi vnm -bPG +gLG vQz hMG jZE @@ -39719,48 +39725,48 @@ vQz iDM vPY bLB -xWY -hvO -bih -rHv +iQm +ckS +wad +shs nxW -wlQ -saq -rsM -maN -faq -qNI -dNW -ykE -lxT -mOO +nwc +nUa +joE +tFG +fVJ +tpc +tzo +uRm +kdI +bta qcN -tJT -xLN +cxq +bKN qcN -rsh -lJo +coR +uWp qcN -lUe -aQc -bft +cSP +ijK +krO ykw -ani -irw -xpw -hJO -syM +iHH +kkx +uwi +jbV +cNx ykw -nPG -egJ -teu -teu -uMB +fgI +aWj +los +los +kix bIt -wox -sJZ -tEJ -iNh +cgT +dOr +gFo +uPI nTG ebr ebr @@ -39790,9 +39796,9 @@ vYW vYW vYW vYW -mdL -mdL -uQa +uQm +uQm +nPp jQa jQa jQa @@ -39828,14 +39834,14 @@ wUU "} (49,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA pGs pGs pGs @@ -39848,7 +39854,7 @@ pGs pGs huF huF -wRR +nPf huF huF huF @@ -39859,90 +39865,90 @@ huF pGs pGs iUZ -vJg +ibc lYr lYr fwo lYr sQR -eWZ +wLo huF huF huF huF ykc -lDN -tjS -tjS -lDN +pTG +hxN +hxN +pTG uXZ -rtP -aqk -okf -wwq -qtr -wxf -hyr -cTV -vyI -jEZ -hyr -cTV -aAY -vyI -wPE -hyr +xpp +oXe +eWV +oEv +nJu +aHY +wgi +iLW +gdt +noT +wgi +iLW +xFk +gdt +qpB +wgi vnm -oiB +iRQ rVi brX oXf jZE -lkz +rba bio bLB -xWY -hvO -bih -lzu +iQm +ckS +wad +cAB nxW -fZI -maN -rsM -cbI -maN -maN -maN -maN -maN -aTh +rQi +tFG +joE +xpG +tFG +tFG +tFG +tFG +tFG +fkp qcN -vhb -kFT +wvJ +eJV qcN -cDr -aLl +pog +ctD qcN -qqA -aQc -hwa +iyL +ijK +cEC bIt -ecb -haT -cQr -qiP -mwH +mzz +eBJ +vKK +grV +hTE bIt -uCc +hMv vgA pOC qWC -dbg +uJs ykw -pRX -sJZ -tEJ -cNu +suL +dOr +gFo +neB nTG jpD ebr @@ -39966,15 +39972,15 @@ vYW vYW vYW vYW -uQa -uQa +nPp +nPp vYW vYW vYW -uQa -uQa -uQa -uQa +nPp +nPp +nPp +nPp jQa jQa jQa @@ -40010,17 +40016,17 @@ wUU "} (50,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA pGs pGs pGs @@ -40030,7 +40036,7 @@ pGs pGs huF huF -wRR +nPf huF huF huF @@ -40044,88 +40050,88 @@ fwo lYr lYr qyT -sJm +sOd lYr tia -ten +kUK huF huF huF huF ykc -stV -sAR -enU -uQK -oBs -hyr -hyr -hyr -aXt -hyr -hyr -hyr -omj -weG -hyr -hyr -hyr -hyr -aXt -hyr -hyr +hFs +jnT +sSn +pbg +gOH +wgi +wgi +wgi +jQr +wgi +wgi +wgi +ddb +kIs +wgi +wgi +wgi +wgi +jQr +wgi +wgi aGx -hfR +kBC gqE mUy uUl ria -mDl +yiV cSq vnm -ePB -hvO -mrd -ciH -kyh -lAk -nMe -ckF -nMe -nMe -aaA -wsZ -wsZ -csb -nMe -ejZ -wVa -wpr +vgZ +ckS +uyM +vMW +wte +gZu +gHA +qhl +gHA +gHA +dKY +nYk +nYk +htr +gHA +vez +dQM +hFO nxW -qir -haC +mPy +tyy nxW -qqA -aQc -qqA +iyL +ijK +iyL bIt -tsX -wkC +hpg +vNA fAO -haT -gBp +eBJ +rdK bIt -gze +oes qWC eOv rJq -dbg +uJs ykw -pRX -sJZ -tEJ -cNu -kyL +suL +dOr +gFo +neB +bMn jpD oAE oAE @@ -40148,13 +40154,13 @@ neq vYW vYW vYW -uQa -uQa +nPp +nPp vYW vYW vYW -uQa -lMb +nPp +bsn vYW vYW gxQ @@ -40192,18 +40198,18 @@ wUU "} (51,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA sNx pGs pGs @@ -40212,7 +40218,7 @@ huF huF huF huF -wRR +nPf huF pGs pGs @@ -40235,85 +40241,85 @@ huF huF huF ykc -wcl -enU -enU -uQK +wfW +sSn +sSn +pbg uXZ -hyr -ohM -hyr -weG -leU -pIe -hyr -hyr -weG -hyr -omj -hyr -pIe -weG -fzx -hyr +wgi +mjF +wgi +kIs +dGg +pJV +wgi +wgi +kIs +wgi +ddb +wgi +pJV +kIs +hmn +wgi bLB -wcE +bhS oXf dbu xxI woJ -iXX +sTN cSq bLB -xWY -hvO -anu -lnG -cAX -vsP -cAX -kDF -nZd -maN -maN -maN -maN -maN -maN +iQm +ckS +bfT +gop +cYq +xYt +cYq +opv +nnY +tFG +tFG +tFG +tFG +tFG +tFG qcN -seY -gjw +cmL +kJc nxW -ygT -wRu +sUn +ohP nxW -qqA -aQc -qqA +iyL +ijK +iyL ykw -pqH -sDo -cXQ -haT -wLR +wAb +cEE +osl +eBJ +jgA ykw -nBj +slm qDR iRw pjH -nqN +eaa ykw -pRP -sJZ -tEJ -cNu -upO +pes +dOr +gFo +neB +mVZ gUP -clG -mMX +lyU +oJT oAE -uQa -uQa +nPp +nPp vYW vYW vdQ @@ -40330,13 +40336,13 @@ neq vYW vYW vYW -uQa -uQa +nPp +nPp cmr vYW vYW -uQa -uQa +nPp +nPp vYW vYW pGs @@ -40374,19 +40380,19 @@ wUU "} (52,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA sNx sNx huF @@ -40394,7 +40400,7 @@ huF huF huF huF -vEU +hpz huF pGs pGs @@ -40406,10 +40412,10 @@ kFV vmw eaC fwo -oCR +itY hAg lYr -bVS +xvo lYr fwo huF @@ -40417,84 +40423,84 @@ huF huF huF ykc -hic -enU -enU -sDf +mWt +sSn +sSn +uzd oLM -omj -jMq +ddb +sRE lEV -ygn +tbO alD aSU ghI lEV -ygn +tbO alD aSU ghI lEV -ygn +tbO alD -hyr +wgi bLB -mDl +yiV gqE mUy cOs ria -lmu +oZF cSq bLB -xWY -hvO -bih -lzu +iQm +ckS +wad +cAB nxW -nnF -maN -wFX -maN -xkj -dLP -sdS -sdS -gBi -xkj +wWw +tFG +hkW +tFG +wOk +lQc +cHF +cHF +aAw +wOk nxW -dmP -wwk +iMS +wLJ qcN -wNV -wRu +spc +ohP qcN -vMU -aQc -qqA +mqg +ijK +iyL ykw -udg -haT -hwN -haT -dGh +fBY +eBJ +xqr +eBJ +gwE pQp -lXc +tyM vgA bRg fXa -pYv -epY -rMN -sJZ -tEJ -cNu -qNP +gWq +vTQ +ofT +dOr +gFo +neB +dJe gUP -bPe -dTS +oWK +msk oAE -nHC +nZY vYW vYW vYW @@ -40512,13 +40518,13 @@ vYW vYW vYW vYW -uQa -uQa +nPp +nPp vYW vYW vYW vYW -uQa +nPp vYW vYW pGs @@ -40556,27 +40562,27 @@ wUU "} (53,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tgM kkF huF huF pGs bJI ahb -wdy +uWL vQK pGs pGs @@ -40585,7 +40591,7 @@ huF huF huF fwo -sJm +sOd lYr lYr wKW @@ -40599,83 +40605,83 @@ huF huF huF ykc -mIL -enU -nOj -uQK +pgD +sSn +khG +pbg uXZ -lhn -pNa -liM -ygn -uWW -weG -fys -liM -ygn -uWW -bQa -fys -liM -ygn -uWW -vyy +iKp +eJF +rDF +tbO +woo +kIs +jJW +rDF +tbO +woo +rzV +jJW +rDF +tbO +woo +odG bLB -joN +gjM jZE mfa dhQ krM -uEE +ksh xWU bLB -xWY -tam -lss -rHv +iQm +owF +ikR +shs nxW -qDv -maN -wFX -xkj -gES -eLE -paB -bkG -fiB -gfr +llK +tFG +hkW +wOk +dnF +xMP +sXV +gnE +mzG +rGS nxW -tGr -cBW -dOk -mau -dnW -kTG -qqA -aQc -qqA +bCH +icd +ppg +gJq +ics +qHm +iyL +ijK +iyL ykw -tnA -woj -uyK -lkI -vZS -iiX -vZS +ohA +gNx +hUf +hAv +api +kre +api jqu qVL jqu -cZN +alK ykw -uEI -jPC -jjg -cNu -rMN +mHN +sKD +spf +neB +ofT gUP -hbD -dTS -tDo +xwr +msk +xJG ebr vYW ckM @@ -40738,38 +40744,38 @@ wUU "} (54,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tgM kkF -tOx +rZH huF pGs dfs fwo -eVW +sUs lYr arF pGs huF huF huF -xKS -qFC -qFC -qFC -kIJ +rWW +rBn +rBn +rBn +qCV cRx lYr pdn @@ -40781,82 +40787,82 @@ huF huF huF ykc -lDN -saC -saC -lDN +pTG +hIy +hIy +pTG ykc -ldr -jMq +kqm +sRE lGT -ygn +tbO uEF aSU ghI lGT -ygn +tbO uEF aSU ghI lGT -ygn +tbO uEF -hyr +wgi vnm -hfR +kBC ePz pRb ceJ oXf -uEE +ksh cSq vnm -xWY -hvO -bih -rHv +iQm +ckS +wad +shs mKb -ffk -ydP -lKV -sdS -gjy -jgQ -gQa -wnK -jgQ -wnK +swx +dpb +pRc +cHF +dwz +gNO +wrY +dhZ +gNO +dhZ nxW -nRW -fYQ +bpL +iMb nSP -fJR -wRu +vYG +ohP qcN -emC -aQc -qqA +pRK +ijK +iyL bIt -uMx -haT -teu -haT -coc +kNq +eBJ +los +eBJ +eNc bIt -nRP +bOH kvG guz thn -vCE -jCA -iMM -oIq -tvv -cNu -rMN +xEV +cfl +usJ +ifg +xhQ +neB +ofT gUP -wkp -tqa +pHC +bKH ebr ebr oAE @@ -40882,10 +40888,10 @@ ebr ggX vYW vYW -uQa +nPp vYW vYW -uQa +nPp pGs pGs pGs @@ -40920,41 +40926,41 @@ wUU "} (55,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tgM kkF -tOx +rZH huF pGs ipZ lYr -iSz +qiH fwo rIG pGs huF huF dEJ -wMw -wMw -aHy -wMw -mrC +fsB +fsB +xmt +fsB +hdo lYr -rjo -gPG +hvg +fhx lYr gLV avI @@ -40963,78 +40969,78 @@ huF huF huF wFP -lFl -lFl -lFl -lFl +agK +agK +agK +agK uQi -hyr -hyr -hyr -weG -hyr -hyr -pIe -hyr -weG -omj -hyr -hyr -hyr -weG -omj -hyr +wgi +wgi +wgi +kIs +wgi +wgi +pJV +wgi +kIs +ddb +wgi +wgi +wgi +kIs +ddb +wgi aGx -hfR +kBC fyP cwQ kzE fyP -uEE +ksh eul bLB -xWY -hvO -bih -rHv +iQm +ckS +wad +shs nxW -qDv -maN -wFX -gBi -mKD -iWf -rzU -hLE -fJw -aEi +llK +tFG +hkW +aAw +lgS +wTO +hkf +aYF +okX +mmY nxW -spd -lBf +rQr +mCv nxW -nkd -wRu +fhE +ohP nxW -qqA -aQc -qqA +iyL +ijK +iyL ykw -ibP -haT -teu -haT -jkq +bjV +eBJ +los +eBJ +oiV ykw -cIB +kjt waB nTS qWC -lLq +mIe ykw -pRP -uXw -sIU -cNu +pes +fuf +cLm +neB kyG kyG gTC @@ -41102,38 +41108,38 @@ wUU "} (56,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tgM kkF -tOx +rZH huF huF tlE lYr -iSz +qiH lYr lYr hCw -pbp -loQ -pDF -wMw -wMw -qNE -wMw -mrC +ias +dmq +wzu +fsB +fsB +rve +fsB +hdo rCf nDk lYr @@ -41145,27 +41151,27 @@ huF huF huF uQi -uaY -uaY -uaY -uaY +hDj +hDj +hDj +hDj uQi -aqw -hyr -pIe -weG -xAs -omj -pJf -djC -weG -fzx -hyr -hyr -pIe -weG -klY -xEc +iuM +wgi +pJV +kIs +uvY +ddb +tqq +gaU +kIs +hmn +wgi +wgi +pJV +kIs +uHV +nBw vnm uCe lEY @@ -41175,54 +41181,54 @@ oXf ugR gNb bLB -xWY -hvO -bih -rHv +iQm +ckS +wad +shs nxW -qDv -kpS -wFX -sdS -ocQ -wnK -eTi -gVQ -qUQ -hMh +llK +gsx +hkW +cHF +ktd +dhZ +hMY +jxC +yiS +iov nxW -hyd -gjw +fxD +kJc nxW -exH -wRu +jJB +ohP nxW -hQo -aQc -qqA +baA +ijK +iyL bIt -aVF -haT -teu -haT -jIo +oRR +eBJ +los +eBJ +nGM bIt -cgb +dLb rRm wph qWC -pcK +reR ykw -pRX -uXw -sIU -cNu +suL +fuf +cLm +neB gTC -tIT -fUZ -fhM -sTA -ukw +uZg +bJo +ddT +oyo +gbg rTT fuS oAE @@ -41284,127 +41290,127 @@ wUU "} (57,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -lUG -rqG +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +pdf +xGb kkF -sUj -vJk -lXT -oDX -wcq -mLB -aTg -ixq -dNh -pbp -wMw -wMw -wMw -wMw -wMw -dob -wMw -fhu -lIE -qFC -pMG -pMG -qFC -kME -paq -gSY -xBS +xFz +pzL +fZt +qAu +xsU +vBA +qXL +wyU +oFm +ias +fsB +fsB +fsB +fsB +fsB +fQU +fsB +rqA +qru +rBn +pRn +pRn +rBn +rnA +tMC +ulP +qmW qqJ -waP -waP -waP -waP +jrd +jrd +jrd +jrd aMC -hyr -cNb -fkF -weG -qkF -leU -wEn -xKo -weG -pJp -iJa -leU -hyr -weG -hyr -omj +wgi +lBk +xpW +kIs +dBO +dGg +dRp +sUV +kIs +qvI +ugK +dGg +wgi +kIs +wgi +ddb epQ sKC epQ epQ epQ sKC -uvw +waZ epQ epQ -ntw -hvO -bih -rHv +lLF +ckS +wad +shs qcN -uUW -maN -wFX -dLN -oPr -rLC -aoo -fyH -iNU -xFZ +tBw +tFG +hkW +jbx +asq +mMo +woW +rUe +hGb +vwt shb -eSg -fMq +bQh +paP iop -lDS -yfh -vgu -kIK -rLU -qqA +wTF +nZW +reL +iEG +dWd +iyL ykw -xXe -oVn -jYX -iFK -wsa +cZU +iQQ +mYw +frU +aIi bIt -eeg -pQF -jcz -jcz -mkn +nXg +llR +xFf +xFf +jFp ykw -pRX -uXw -sIU -cNu +suL +fuf +cLm +neB gTC -tIT -rqx +uZg +iwk aae -qHF -wOL +gaW +neE wTJ fuS oAE @@ -41466,19 +41472,19 @@ wUU "} (58,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tgM xfo xfo ydy @@ -41490,29 +41496,29 @@ itT lYr hkQ bVQ -pbp -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -bnf -vMe -wMw -vLV -wMw -wMw -wMw -xJb -wMw -wMw -wMw -mcr +ias +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +uLn +vfs +fsB +wDB +fsB +fsB +fsB +ins +fsB +fsB +fsB +jjy ccp qpK qAp @@ -41522,71 +41528,71 @@ qAp qAp bgE bgE -erK +mXu qAp bgE -hyr -qtr -weG -gnm -hyr +wgi +nJu +kIs +vbu +wgi sKC -dUh -dUh -vnN -dUh -oUp -cTg -iSO +lrn +lrn +pvw +lrn +daE +rhS +fob sKC -xWY -hvO -bih -euM +iQm +ckS +wad +jNj qcN qcN -maN -sTW +tFG +dND qcN nxW nxW nxW -tRs +nnI nxW nSP qcN -cTr -tjF +bam +qbZ qcN -jNS -xCJ +ydl +hAU qcN -lUe -aQc -qqA +cSP +ijK +iyL bIt ykw -cHl +sRw bIt ykw ykw bIt ykw bIt -cHl +sRw ykw bIt bIt -sjD -uXw -sIU -cNu +iru +fuf +cLm +neB kyG -qym -rJI +fTH +xUR bRi -mBG -pRl +rki +rXe tuV kyG ebr @@ -41602,9 +41608,9 @@ ebr ebr ksX ksX -wff -dEo -rqa +mwl +mpA +mPa ksX ebr ebr @@ -41648,128 +41654,128 @@ wUU "} (59,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tgM aQq -eCj +klU pxa -uKr +hgI ahg -wIg -asx -asx -nKd +iOZ +tBS +tBS +pnB nDL -new -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -kME -wMw -mpH -hcz -wMw -ojm -huy +iee +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +rnA +fsB +cca +qjx +fsB +vbs +xnC qAp -qVO -cOj -cfs +hHy +wUi +iKK qAp -hyr -hyr -weG -hyr -hyr -sAY -eYG -ghr -eYG -eYG -eYG -cTg -vfH +wgi +wgi +kIs +wgi +wgi +xUg +tai +tAz +tai +tai +tai +rhS +vsl epQ -xWY -hvO -bih -rHv +iQm +ckS +wad +shs nxW -xKC -wnK -pVh -uTV -uTV -uTV -uTV -nRT -sWp -kMU -tjF -woI -qUQ +jeE +dhZ +lwx +lVh +lVh +lVh +lVh +kcz +iWa +tVu +qbZ +sSG +yiS qcN nxW nxW qcN -qqA -aQc -qqA -qqA -qqA -qqA -qqA -qqA -qqA -mPl -qqA -qqA -qqA -qqA -gSC +iyL +ijK +iyL +iyL +iyL +iyL +iyL +iyL +iyL +elv +iyL +iyL +iyL +iyL +jfI jcT -bMV -uXw -sIU -pRP +xhU +fuf +cLm +pes kyG -wTM -dgP +iek +nJK bRi -mBG -lvV -nVn +rki +nFG +okC kyG ebr ebr @@ -41782,12 +41788,12 @@ ebr ebr ebr ksX -rmr -cto -cto +tZA +mQL +mQL uKZ xxk -ghs +dIx ksX ebr ebr @@ -41830,128 +41836,128 @@ wUU "} (60,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tgM aQq -boI +xhE clA -miR +deb nqQ tlE -asx -asx -jjZ +tBS +tBS +bqr nDL -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -sIQ -wMw -wMw -mpH -wMw -wMw -wMw +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +kzF +fsB +fsB +cca +fsB +fsB +fsB qzi -jTL -jTL -uGs +dmK +dmK +aJE bgE -omj -cTV -weG -jEZ -hyr +ddb +iLW +kIs +noT +wgi sKC -hPF -uOo -pqO -pqO -xnV -wEL -ewS +czc +okD +jxK +jxK +hYR +lfc +emp sKC -xWY -hvO -bih -rHv +iQm +ckS +wad +shs nxW -qUQ -hGz -eAG -rtx -yiA -mau -mau -gNe -dTC -yaf -wVD -myj -qUQ +yiS +wDV +lsL +iSt +oru +gJq +gJq +uKb +kuJ +pcX +vcT +xnd +yiS nxW -cbe -stv -hwa -hwa -uvX -qqA -qqA -qqA -qqA -qqA -qqA -qqA -qqA -kmu -mtU -qqA -qqA -qqA +xzh +xHH +cEC +cEC +mao +iyL +iyL +iyL +iyL +iyL +iyL +iyL +iyL +cwX +lwB +iyL +iyL +iyL hoP -pRX -lbK -sOj -cug -sGb -xlv +suL +xMa +vFC +mXw +gPw +lQH xZD iJD -gfp -ffY -gvR +aXJ +xRq +rfW kyG ksX ksX @@ -41964,12 +41970,12 @@ ebr ebr ebr ksX -cto -cto -gLo -cto -cLX -cto +mQL +mQL +dFc +mQL +wxT +mQL ksX ebr ebr @@ -42012,146 +42018,146 @@ wUU "} (61,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tgM aQq -vLw +lNz qaE qdL ahg tlE -asx -asx -cQu +tBS +tBS +lOb lqF -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -nFB -wMw -sIQ -wMw -wMw -wMw -wMw -oJm -hyr -hyr -hyr -uAt -lhn -weG -weG -hyr -hyr +fsB +fsB +fsB +fsB +fsB +fsB +fsB +jou +fsB +fsB +fsB +fsB +fsB +jou +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +kta +fsB +kzF +fsB +fsB +fsB +fsB +dLy +wgi +wgi +wgi +oDJ +iKp +kIs +kIs +wgi +wgi epQ -wVA -mRL -iQl -fyZ -dgq -cTg -tQn +vKs +bHm +xyN +kMp +qZZ +rhS +gvl epQ -gnx -hvO -bih -rHv +ftJ +ckS +wad +shs nxW -sbX -eIV -sDQ -eIV -pVh -vsJ -eIV -pqY -sIf -lWh -vSh -aMp -igU +sRH +xYc +rfl +xYc +lwx +uHG +xYc +uwA +gKx +lJK +dyg +kaI +vHl nxW -vMU -qqA -qqA -eBf -bfq -kIK -gPA -kIK -kIK -jxi -pti -kIK -fqs -kIK -kIK -kIK -kIK -kIK -kqe -uEI -obm -tEJ -pRP +mqg +iyL +iyL +cyu +tZb +iEG +wof +iEG +iEG +qGq +rib +iEG +slV +iEG +iEG +iEG +iEG +iEG +qWW +mHN +lbv +gFo +pes kyG -nBl +rdS wKi bRi -mBG -ffY -xZN +rki +xRq +hzh kyG -ghs -cto -cto -tVX -swv +dIx +mQL +mQL +exi +fyq ksX ksX ksX ksX ksX ksX -kcE -cto +eZx +mQL ksX -cDc -cto -cto +hUg +mQL +mQL ksX cty cty @@ -42194,89 +42200,89 @@ wUU "} (62,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -vlm -fjv -wBp -gpJ +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +wJG +tZc +snN +qny xfo bGC qzq ahg nQA tlE -eRM -tCG -aEf +cVE +nkr +vEf nDL -wMw -wMw -wMw -aHy -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw +fsB +fsB +fsB +xmt +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB qAp -hyr -eaQ -hyr +wgi +jdN +wgi qAp -hyr -okf -weG -qtr -hyr +wgi +eWV +kIs +nJu +wgi sKC -xMs -qvv -rXf -lPq -oUp -cTg -nVy +qtX +nyq +wjG +qEA +daE +rhS +sfv sKC -xWY -hvO -bih -rHv +iQm +ckS +wad +shs lGp qcN nxW qcN nSP -pvk +uSr qcN nxW rcq @@ -42286,14 +42292,14 @@ qcN nxW nxW qcN -vMU -qqA -qqA -tYP -qqA -oeF -aQc -qqA +mqg +iyL +iyL +hVM +iyL +cEg +ijK +iyL xgG qvo xgG @@ -42305,35 +42311,35 @@ xgG qvo xgG xgG -rGl -sJZ -tEJ -cNu +sJQ +dOr +gFo +neB kyG -uzb +dXA wKi bRi -mBG -ffY -fYH +rki +xRq +uIv gTC -fhh -cto -qMr -cto -cto -cto -lOc -cto -lOc -cto -lOc -kkw -cto -cto -cto -pyz -cto +dkf +mQL +pYR +mQL +mQL +mQL +xZe +mQL +xZe +mQL +xZe +taB +mQL +mQL +mQL +jRh +mQL ksX cty cty @@ -42376,146 +42382,146 @@ wUU "} (63,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -imk -mPk -mPk -wBp -fjv -mfP -ppU -bah -uZK -kME -wMw -kME -tzP +spB +sZA +sZA +sZA +sZA +gyT +sZA +sZA +snN +tZc +dmc +npa +jMc +xqZ +rnA +fsB +rnA +ktA psd -asx -asx -nKd +tBS +tBS +pnB nDL -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -sTT +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +jou +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +jou +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +qjF bgE -jTL -jTL -lpJ +dmK +dmK +eQf bgE -ldr -hyr -weG -hyr -hyr +kqm +wgi +kIs +wgi +wgi sKC -iTd -iTd -dCz -gZq -eYG -uuj -sFJ -bkC -lbr -urA -lss -rHv +aCt +aCt +gga +tqi +tai +kKq +hRb +lqv +rnG +lna +ikR +shs qcN -rsj -dQT -uUF -hvh -tqr -mrP -sWp -kDH -bzq -aZq +cjw +jQl +cSm +jLL +vng +rqq +iWa +hLv +fLa +beL qcN -qBn -qqA -eBf -kIK -kIK -kIK -ueP -gSC +vOM +iyL +cyu +iEG +iEG +iEG +atd +jfI clX -nsc -qqA +fWC +iyL xgG -azK -xPj -ctw +qFE +uub +rQZ qvo -gvF -pLV -bLI -lrp -pBK +gkV +wMg +mXk +eJz +jSd qvo -vUM -sJZ -tEJ -cNu +cvh +dOr +gFo +neB gTC -qPG -mCx -aLc -mBG -iSi -tTN +sII +rcH +vqA +rki +wbn +pEU gTC -kQb -mUP -mUP -mUP -mUP -mUP -gja -mUP -ior -mUP -gja -mUP -mUP -mUP -mUP -mUP -qWw +xkI +qpI +qpI +qpI +qpI +qpI +kKM +qpI +cgh +qpI +kKM +qpI +qpI +qpI +qpI +qpI +eTM ksX cty hoC @@ -42558,146 +42564,146 @@ wUU "} (64,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -wBp -mfP -ppU -ooP -kap -wMw -wMw -wMw -mrC +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +snN +dmc +npa +mxa +fLj +fsB +fsB +fsB +hdo hzK eat -asx -asx -jjZ +tBS +tBS +bqr lqF -wMw -iyd -qFC -qFC -qFC -qFC -qFC -qFC -leP -qFC -qFC -qFC -vfG -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -kIJ -wMw -wMw -wMw -wMw -wMw +fsB +uOl +rBn +rBn +rBn +rBn +rBn +rBn +fCT +rBn +rBn +rBn +lQF +rBn +rBn +rBn +rBn +rBn +rBn +rBn +rBn +rBn +rBn +rBn +rBn +qCV +fsB +fsB +fsB +fsB +fsB qAp -nwi -igQ -kCb +lDX +tWr +lIx qAp -pJp -omj -weG -hyr -hyr +qvI +ddb +kIs +wgi +wgi epQ -cpA -cpA -tpB -eYG -aQG -sSZ -ncg +dtd +dtd +rHQ +tai +hRP +kgO +qvU epQ -ePB -hvO -bih -rHv +vgZ +ckS +wad +shs nxW -bFj -dQT -eJI -hZo -nJc -wQd -sWp -gEz -maN -bzq +ggl +jQl +kiO +mdt +fyO +cLt +iWa +kHz +tFG +fLa nxW -kmu -qqA -aQc -qqA -qqA -qqA -iat -qqA +cwX +iyL +ijK +iyL +iyL +iyL +vIa +iyL clX -vtP -fqs -vcd -rRz -oJv -ugW +fmP +slV +iuV +xKA +tLL +hWp olU -maQ -vCf -vCf -oXZ -lhm +gSA +hBt +hBt +vjm +srE xgG -gfs -sJZ -vZz -cNu +lpa +dOr +iJg +neB kyG -wHu -uIe -wdx -ses -nFg -nFg -aBO -vAI -cto -fuj -cto -ghs -cto -nuv -cto -nuv -cto -nuv -aCH -ghs -swk -cto -cto -etv +qPq +soH +lED +pVx +eRb +eRb +xqz +vnO +mQL +lWM +mQL +dIx +mQL +xaC +mQL +xaC +mQL +xaC +aBR +dIx +mAp +mQL +mQL +bBX tdN hoC aOg @@ -42740,98 +42746,98 @@ wUU "} (65,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -rYC -fjv -ppU -mfP -sAW -ooP -kap -wMw -wMw -wMw -mrC +spB +sZA +sZA +sZA +sZA +sZA +bog +tZc +npa +dmc +pKc +mxa +fLj +fsB +fsB +fsB +hdo qhQ -jhM -asx -asx -cQu +bOA +tBS +tBS +lOb nDL -wMw -pbp -wCc -ygZ -ygZ -efU -bNN -cYr -ygZ -efU -onr -ahK -ssv -efU -cgA -ahK -ygZ -efU -onr -ahK -uFE -efU -onr -ahK -wCc -mrC -wMw -wMw -wMw -wMw -wMw +fsB +ias +gFI +pnc +pnc +tOr +dXk +vLC +pnc +tOr +bKI +khR +uFa +tOr +hKu +khR +pnc +tOr +bKI +khR +ijm +tOr +bKI +khR +gFI +hdo +fsB +fsB +fsB +fsB +fsB weJ qAp coz qAp bgE -hyr -hyr -weG -hyr -leU +wgi +wgi +kIs +wgi +dGg sKC -pMe -cOK -rmZ -eYG -fAq -ghr -biz +qjX +otn +jRW +tai +xyi +tAz +fxg sKC -xWY -hvO -bih -rHv +iQm +ckS +wad +shs nxW -ivg -sdS -tYg -sdS -xTH -wQd -sWp -dBB -maN -pMy +fKl +cHF +bel +cHF +gQW +cLt +iWa +snG +tFG +omE qcN oHo -qqA -aQc +iyL +ijK xgG xgG qvo @@ -42841,33 +42847,33 @@ xgG qvo xgG xgG -xUq -bNC -ugW +riw +jMG +hWp qvo -hxa -kLd -kLd -gPZ -jlt +uFu +gQL +gQL +iXI +xac qvo -hTZ -sJZ -tEJ -cNu +kCn +dOr +gFo +neB kyG -rYO -jBl -uzr -pOz -qpZ -qpZ +cfG +bQP +aqs +wQf +ljN +ljN kyG -rjH -cto -vTe -wXC -ghs +vAW +mQL +pYS +bAU +dIx ksX ksX ksX @@ -42878,8 +42884,8 @@ ksX ksX ksX mSu -iaM -hbi +twS +rEy ksX mCF aOg @@ -42922,32 +42928,32 @@ wUU "} (66,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -wBp -mfP -mfP -mfP -ooP -mfP -kap -wMw -wMw -wMw -wMw -tzP +spB +sZA +sZA +sZA +sZA +snN +snN +dmc +dmc +dmc +mxa +dmc +fLj +fsB +fsB +fsB +fsB +ktA jhu fFH lNL fFH wPv -wMw -pbp -sHV +fsB +ias +bBg bZU rtm bZU @@ -42969,63 +42975,63 @@ bZU bZU rtm bZU -xsH -mrC -wMw -wMw -wMw -wMw -wMw -paq -rkA -wMw -mcr +tpR +hdo +fsB +fsB +fsB +fsB +fsB +tMC +jHw +fsB +jjy aMC -aCY -hyr -weG -hyr -qkF +sVv +wgi +kIs +wgi +dBO epQ -lRy -dfJ -vDl -qSJ -vcj -leF -ded +aYK +xms +tPN +pDz +qmm +tiH +lfU epQ -lzu -oMs -hca -lzu +cAB +sIL +fCw +cAB qcN -hDX -kfj -krl -vrh -abf -uNJ -oYB -ubF -ckx -bzq +wJq +jmO +dFl +emn +eHa +blV +cGr +uBE +cRH +fLa nxW -ojG -qqA -aQc +joL +iyL +ijK xgG -qzd -eQz -vKD -ixd -xgW -tFX -oTJ +kVZ +sbn +mKE +mfx +ofo +uca +jgW qvo -pWm -bNC -ugW +oxw +jMG +hWp xgG qvo qvo @@ -43033,10 +43039,10 @@ cNA mee qvo xgG -oyx -sJZ -tEJ -cNu +xiQ +dOr +gFo +neB kyG kyG kyG @@ -43045,11 +43051,11 @@ gTC kyG kyG kyG -etv -cto -cto -cto -qEG +bBX +mQL +mQL +mQL +ayz ksX cty cty @@ -43060,8 +43066,8 @@ cty cty iFb kuE -cto -etv +mQL +bBX ksX mCF aOg @@ -43104,32 +43110,32 @@ wUU "} (67,1,1) = {" wUU -nvv -mPk -mPk -mPk -imk -wBp -mfP -ppU -mfP -mfP -mfP -mfP -kap -sSz -miT -wMw -wMw -wMw -new -new -new -new -new -wMw -pbp -irk +spB +sZA +sZA +sZA +gyT +snN +dmc +npa +dmc +dmc +dmc +dmc +fLj +kxM +rgj +fsB +fsB +fsB +iee +iee +iee +iee +iee +fsB +ias +rmw bZU bZU bZU @@ -43151,23 +43157,23 @@ qOh bZU bZU bZU -bwP -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -vLV -wMw +dze +hdo +fsB +fsB +fsB +fsB +fsB +fsB +fsB +wDB +fsB aMC coz -qzb -erK -qzb -qzb +snA +mXu +snA +snA epQ sKC epQ @@ -43178,59 +43184,59 @@ epQ sKC epQ lsU -oMs -pCf +sIL +xrz lsU nSP qcN -uTZ -bVu -sdS -rcA -sdS -sWp -alM -rsM -nZi +fHo +mtl +cHF +uaK +cHF +iWa +ghO +joE +uWC nxW -ojG -qqA -aQc +joL +iyL +ijK qvo -xUq -jMr -kfJ -fFI -rzM -rQY -wiL +riw +wpy +dxD +mpt +jpC +wce +hLp qvo -xUq -bNC -ugW +riw +jMG +hWp xgG -vaV -yfQ -xZO -pAa -jbh +hJn +shZ +ldD +slC +iNP xgG -vUM -sJZ -tEJ -cNu +cvh +dOr +gFo +neB wSx -wjf -oBR -oBR -oBR -oBR -oBR +gOo +eJC +eJC +eJC +eJC +eJC sBX -etv -cto -oxa -vDr +bBX +mQL +uoP +uJc ksX ksX cty @@ -43242,8 +43248,8 @@ cty cty iFb xxk -cto -etv +mQL +bBX iDn meS xSl @@ -43286,32 +43292,32 @@ wUU "} (68,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -fjv -mfP -mfP -sAW -mfP -mfP -mfP -kap -cmU -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -pbp -cYZ +spB +sZA +sZA +sZA +sZA +tZc +dmc +dmc +pKc +dmc +dmc +dmc +fLj +lWz +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +ias +hlP bZU bZU bZU @@ -43333,85 +43339,85 @@ bZU bZU bZU bZU -miF -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -obN -aVs -lzX -sdy -sdy -sdy -sdy -mGb -mGb -mGb -mGb -lgP -mGb -mGb -mGb -mGb -lzu -oMs -hca -lzu -fzy +ipP +hdo +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +nzP +pFp +wDs +oVV +oVV +oVV +oVV +ixX +ixX +ixX +ixX +jjO +ixX +ixX +ixX +ixX +cAB +sIL +fCw +cAB +kWq qcN -tDh -ald -iby -acO -fFs -tZE -iZH -kGo -hMV +uuC +mkX +dUk +bBC +jns +kuG +hGG +slL +cSb qcN -qqA -qqA -aQc +iyL +iyL +ijK xgG -tbQ -jMr -pmy -rzM -rzM -oiM -fPo +fTs +wpy +vDb +jpC +jpC +jHo +nkG qvo -xUq -bNC -ugW +riw +jMG +hWp qvo -aPU -rQY -dWE -mRZ -wbB +tmn +wce +lyi +lAV +pBm xgG -gCi -sJZ -tEJ -cNu +wLs +dOr +gFo +neB sBX -uNq -uNq -uNq -uNq -uNq -uNq +tor +tor +tor +tor +tor +tor sBX -etv -cto -cto +bBX +mQL +mQL ksX ksX cty @@ -43425,7 +43431,7 @@ cty iFb swV xxk -etv +bBX xEG mCF mCF @@ -43468,32 +43474,32 @@ wUU "} (69,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -mfP -mfP -mfP -mfP -mfP -ooP -kap -rgZ -olD -olD -cmk -ufE -iQs -kSz -kSz -kSz -wMw -wMw -pbp -fXH +spB +sZA +sZA +sZA +sZA +snN +dmc +dmc +dmc +dmc +dmc +mxa +fLj +xGS +fjF +fjF +dyx +hlM +mbh +hPB +hPB +hPB +fsB +fsB +ias +xQk bZU bZU bZU @@ -43515,37 +43521,37 @@ bZU bZU bZU bZU -evX -mrC -wMw -wMw -wMw -nFB -wMw -wMw -wMw -wMw -pAp -aVs -bgh -fUn -jjS -fUn -jjS -hvO -ckI -hvO -ckI -hvO -ckI -hvO -ckI -hvO -ckI -hvO -bih -rHv -fzy +bwS +hdo +fsB +fsB +fsB +kta +fsB +fsB +fsB +fsB +cMv +pFp +csW +nHP +xJR +nHP +xJR +ckS +tUy +ckS +tUy +ckS +tUy +ckS +tUy +ckS +tUy +ckS +wad +shs +kWq qcN qcN nxW @@ -43553,47 +43559,47 @@ qcN nxW qcN qcN -sgy -peA -qVl +tzM +iVr +mXy qcN yil -qqA -aQc +iyL +ijK qvo -xUq -jMr -rQY -avy -rzg -rQY -rzM -sSU -rzM -bNC -ugW +riw +wpy +wce +gKO +pmG +wce +jpC +cpb +jpC +jMG +hWp qvo -rzO -rQY -oiM -qOn -vBW +ovj +wce +jHo +tqD +eoW qvo -mVS -iKa -tvv -pRP +xWH +hhD +xhQ +pes sBX -gmE -nfv -nfv -aFh -uNq -pPf +taE +kiW +kiW +eiH +tor +abt sBX -etv -cto -cto +bBX +mQL +mQL iFb cty cty @@ -43606,13 +43612,13 @@ cty cty iFb wNz -cto -etv +mQL +bBX iDn iDn ksX ksX -cba +nGj ksX xxk xxk @@ -43650,32 +43656,32 @@ wUU "} (70,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -rYC -ooP -sAW -mfP -mfP -ooP -ooP -tOB -tpV -asx -cfq -qAI -pEo -ohC -euS -vWn -fWE -ezx -inj -pbp -sHV +spB +sZA +sZA +sZA +sZA +bog +mxa +pKc +dmc +dmc +mxa +mxa +cgM +byh +tBS +oIJ +hQk +afy +puY +qWz +byQ +bkS +hck +aWr +ias +bBg bZU bZU bZU @@ -43697,85 +43703,85 @@ bZU bZU bZU bZU -xsH -mrC -wMw -wMw -wMw -wMw -bnf -cHY -wMw -rSA -pAp -aVs -bgh -fUn -jjS -fUn -jjS -hvO -ckI -hvO -ckI -hvO -ckI -hvO -jty -hvO -ckI -hvO -bih -rHv -uiq +tpR +hdo +fsB +fsB +fsB +fsB +uLn +wmT +fsB +aDd +cMv +pFp +csW +nHP +xJR +nHP +xJR +ckS +tUy +ckS +tUy +ckS +tUy +ckS +bnk +ckS +tUy +ckS +wad +shs +ufO nxW -sbX -wMx -jqK -sjR -sbX +sRH +eKE +pAE +oDY +sRH nxW -tex -gJs -niF +cNj +oDL +uKx nxW yil -qqA -dYn -vcd -lFS -bRQ -lFS -uzs -lFS -lFS -fAs +iyL +kvp +iuV +kUM +vnW +kUM +avB +kUM +kUM +ldX krL -rRz -eZc -lFS -xqN -lFS -lFS -lFS -bQH -qnf -sBF -cug -gia -avl -cug -xBv -vLk -ptw -ptw -qjd -uNq -mey +xKA +cdh +kUM +dPl +kUM +kUM +kUM +cJb +uWK +wNY +mXw +lmn +tQq +mXw +evd +man +mFv +mFv +pew +tor +btx wSx -bez -cto -cto +uPY +mQL +mQL iFb cty cty @@ -43788,25 +43794,25 @@ cty iFb owM xxk -cto -etv -cto -cto -vTe -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto +mQL +bBX +mQL +mQL +pYS +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL xxk -cto -pOa +mQL +tAC iDn mCF mCF @@ -43832,32 +43838,32 @@ wUU "} (71,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -ooP -mfP -mfP -mfP -ooP -mfP -tOB -lZR -aCo -lZR -aBY -ooP -vLI -pYH -haR -kap -wMw -tZr -pbp -irk +spB +sZA +sZA +sZA +sZA +snN +mxa +dmc +dmc +dmc +mxa +dmc +cgM +ccd +tZj +ccd +mTO +mxa +urV +pSh +xMR +fLj +fsB +mbA +ias +rmw bZU bZU bZU @@ -43879,85 +43885,85 @@ bZU bZU bZU bZU -hEs -mrC -wMw -wMw -vpr -wMw -pFF -wMw -wMw -wMw -pAp -aVs -kdV -gvM -gvM -gvM -gvM -yeH -yeH -yeH -yeH -lNX -bUK -yeH -yeH -yeH -lzu -hrG -mos -rHv -nnw +dac +hdo +fsB +fsB +kUS +fsB +bOM +fsB +fsB +fsB +cMv +pFp +oOq +vsH +vsH +vsH +vsH +tQM +tQM +tQM +tQM +oXh +npm +tQM +tQM +tQM +cAB +mjt +vYT +shs +nGb nSP -tQz -xug -gjw -jZO -djb +amT +rwk +kJc +nxA +xPR nSP -tyT -peA -ubH +ncG +iVr +cKb nxW -qqA -qqA +iyL +iyL bYT xgG -xUq -tkT -rzg -rzg -rQY -jMr -rzM -sSU -rzM -bNC -rzM -rzM -rzM -rzM -rzM -qFO -iWK -rzM -rMN -kyK -epO -pRP +riw +opF +pmG +pmG +wce +wpy +jpC +cpb +jpC +jMG +jpC +jpC +jpC +jpC +jpC +tou +bjG +jpC +ofT +pQn +qsi +pes wSx -tXg -cic -cic -ceo -cic -hmm +nzA +hzL +hzL +xGe +hzL +nCQ wSx -pQw -cto -cto +xcF +mQL +mQL iFb cty cty @@ -43969,25 +43975,25 @@ cty cty mCF wOR -cto -cto -etv +mQL +mQL +bBX xxk -cto -vTe -cto -cto +mQL +pYS +mQL +mQL xxk -cto -cto -vTe -sgl -cto +mQL +mQL +pYS +lpK +mQL xxk -cto -fLu -cto -cto +mQL +jnL +mQL +mQL xxk ksX mCF @@ -44014,32 +44020,32 @@ wUU "} (72,1,1) = {" wUU -nvv -mPk -mPk -imk -mPk -xVw +spB +sZA +sZA +gyT +sZA +fQP dXg dXg -mfP -mfP -mfP -mfP -xLB -gnC -mYR -asx -aBY -ooP -vzi -ooP -ooP -kap -wMw -ygY -pbp -cYZ +dmc +dmc +dmc +dmc +rni +veI +inL +tBS +mTO +mxa +knM +mxa +mxa +fLj +fsB +oAa +ias +hlP bZU bZU bZU @@ -44061,23 +44067,23 @@ bZU qOh bZU bZU -miF -mrC -wMw -wMw -wMw -vpr -wMw -wMw -wMw -vLV -mcr +ipP +hdo +fsB +fsB +fsB +kUS +fsB +fsB +fsB +wDB +jjy aMC bgE -qzb -erK -qzb -qzb +snA +mXu +snA +snA pGJ pGJ pGJ @@ -44085,63 +44091,63 @@ pGJ pGJ pGJ xxV -pXL -oMs -xWY -hvO -bih -rHv -nnw -jCE -qUQ -gjw -eOh -tGr -jnA -jKz -prh -wVa -esz +jDS +sIL +iQm +ckS +wad +shs +nGb +uTh +yiS +kJc +qax +bCH +qXg +nfE +mnM +dQM +ngz qcN -qqA -qqA -aQc +iyL +iyL +ijK xgG -xJx -oiM -rzM -rzM -kaY -jDO -uEz +quo +jHo +jpC +jpC +fzt +lSV +uNM itb -bjA -fWz -jhL +rCe +bGn +rWl itb -rft -brM -kTo -map -vBW +oji +vVa +aen +pzd +eoW qvo -mVS -sJZ -tEJ -cNu +xWH +dOr +gFo +neB sBX -pIz -lpv -wxu -lpv -xFw -lpv -nTj -etv -cto -cto +xIP +bFz +mVr +bFz +wbC +bFz +bMY +bBX +mQL +mQL nNe -dNZ +dbH eCu eov mCF @@ -44151,26 +44157,26 @@ cty hoC mCF wOR -cto -cto -etv -cto -cto -cto -cto -cto -cto -cto +mQL +mQL +bBX +mQL +mQL +mQL +mQL +mQL +mQL +mQL feM -cto -cto -cto -cto -cto -cto -cto -cto -cto +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL ksX mCF aOg @@ -44196,32 +44202,32 @@ wUU "} (73,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ +spB +sZA +sZA +sZA +sZA +snN +arf dXg dXg -mfP -ooP -mfP -ssw -vQF -xOX -lId -tyV -ooP -vzi -vzi -vLI -kap -oLa -vUQ -pbp -fXH +dmc +mxa +dmc +hXT +guw +sxI +hCU +htI +mxa +knM +knM +urV +fLj +vOl +wOq +ias +xQk bZU bZU bZU @@ -44243,23 +44249,23 @@ bZU bZU bZU bZU -kMy -lEm -wMw -wMw -xXr -wMw -plm -wMw -rSA -wMw -wMw -kdf -hyr -htP -hyr -hyr -leU +rEP +gEK +fsB +fsB +gKZ +fsB +hvM +fsB +aDd +fsB +fsB +rwD +wgi +hUk +wgi +wgi +dGg pGJ iaO uRU @@ -44267,61 +44273,61 @@ uRU uRU reG pGJ -neU -oMs -xWY -hrG -mos -rHv -nnw +xWF +sIL +iQm +mjt +vYT +shs +nGb nxW -lYA -gjw -wdh -lEM -rNo +mIb +kJc +gbQ +ebj +ddK qcN -maN -rsM -gwW +tFG +joE +bSO qcN yil -qqA -aQc +iyL +ijK qvo -smO -rQY -rzM -vPe -tOK -jMr -wbB +xdf +wce +jpC +gKM +lkS +wpy +pBm qvo -xUq -tkT -ugW +riw +opF +hWp xgG -klu -rQY -oiM -jYl -lEw +dUf +wce +jHo +fLr +paM xgG -iMp -sJZ -tEJ -cNu +bBA +dOr +gFo +neB sBX -kNe -ptM -lpv -lpv -lpv -uuv +ilf +goJ +bFz +bFz +bFz +uwH wSx -rjH -wOC -gMm +vAW +evj +oyd iFb kxe awJ @@ -44333,9 +44339,9 @@ mCF jdm mCF wOR -cto -cto -etv +mQL +mQL +bBX xxk ksX ksX @@ -44350,9 +44356,9 @@ ksX ksX ksX ksX -azw -cto -cto +sUq +mQL +mQL xxk mCF xGV @@ -44378,32 +44384,32 @@ wUU "} (74,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -uYJ +spB +sZA +sZA +sZA +sZA +snN +jWM dXg dXg -mfP -mfP -mfP -mfP -xLB -xOX -bCM -kMe -kMe -kMe -kMe -kMe -cEm -fZB -wMw -pbp -sHV +dmc +dmc +dmc +dmc +rni +sxI +wLQ +mBk +mBk +mBk +mBk +mBk +oqD +uod +fsB +ias +bBg bZU bZU bZU @@ -44425,23 +44431,23 @@ bZU bZU bZU bZU -xsH -mrC -wMw -wMw -wMw -rSA -wMw -rSA -wMw -rSA -wMw -sid -hyr -hyr -hyr -hyr -hyr +tpR +hdo +fsB +fsB +fsB +aDd +fsB +aDd +fsB +aDd +fsB +mJC +wgi +wgi +wgi +wgi +wgi pGJ nio bte @@ -44449,61 +44455,61 @@ mxv qHJ afg pGJ -bOO -lnG -rKf -erE -ivD -rHv -nnw +kGm +gop +iFJ +dJv +mTP +shs +nGb qcN -dUA -qUQ -bVq -woI -xVA +pKd +yiS +kFM +sSG +jxZ nxW -mVN -doa -srX +evk +qYB +hhJ qcN dmR yil -aQc +ijK xgG -lMq -jOR -wIH -gkL -xkb -wdX -xxZ +mEZ +iFT +uPu +fHi +tyH +cim +tpE qvo -gFW -mXs -qwB +mMg +rak +kJx xgG -lnw -mbt -jBp -ilQ -rzM +dNz +gqT +wbZ +vSM +jpC qvo -vUM -fPn -jjg -cNu +cvh +bet +spf +neB sBX -uNh -sNa +uCZ +oOz ffe lSG ffe kSd wSx -etv -cto -cto +bBX +mQL +mQL iFb kmW mCF @@ -44516,9 +44522,9 @@ mCF mCF wOR noj -cto -etv -cto +mQL +bBX +mQL ksX cty cty @@ -44532,9 +44538,9 @@ cty cty cty ksX -cto -cto -cto +mQL +mQL +mQL xxk mCF mCF @@ -44560,32 +44566,32 @@ wUU "} (75,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +snN +arf +arf dXg dXg dXg -mfP -mfP -tOB -xOX -tkV -asx -asx -asx -cDm -asx -asx -paq -wMw -pbp -irk +dmc +dmc +cgM +sxI +uCb +tBS +tBS +tBS +dhs +tBS +tBS +tMC +fsB +ias +rmw bZU bZU bZU @@ -44607,51 +44613,51 @@ bZU bZU bZU bZU -bwP -mrC -wMw -wMw -wMw -wMw -wMw -wMw -euH -pLp -wMw -kdf -hyr -hyr +dze +hdo +fsB +fsB +fsB +fsB +fsB +fsB +hBy +kxQ +fsB +rwD +wgi +wgi giN -htP -bmV -afz +hUk +bWX +nuj xyO eDQ eDQ eDQ xyO -fZe -tfj -mGb -lzu -hrG -mos -rHv -shG +uGA +suB +ixX +cAB +mjt +vYT +shs +wOu qcN qcN nxW nSP -hli +pXn nxW qcN nSP -jGk +urb nxW qcN -pco -qqA -aQc +tbz +iyL +ijK xgG xgG qvo @@ -44668,23 +44674,23 @@ xgG xgG xgG qvo -mjA -wQi +uvR +jyv xgG -vUM -sJZ -tEJ -cNu +cvh +dOr +gFo +neB wSx -rOL -sNa +lNc +oOz dnh osX oBJ osX wSx -etv -cto +bBX +mQL xxk eov mCF @@ -44699,8 +44705,8 @@ mCF wOR xxk mxB -eJS -cto +vqT +mQL ksX cty cty @@ -44714,9 +44720,9 @@ cty cty cty ksX -cto -cto -cto +mQL +mQL +mQL xxk aOg aOg @@ -44742,32 +44748,32 @@ wUU "} (76,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +fQP +arf +arf +arf dXg dXg dXg dXg -tOB -asx -asx -kzo -izB -fZx -asx -hOp -asx -wMw -wMw -pbp -cYZ +cgM +tBS +tBS +alI +whe +qmJ +tBS +lPx +tBS +fsB +fsB +ias +hlP bZU rtm bZU @@ -44789,74 +44795,74 @@ bZU bZU rtm bZU -miF -mrC -wMw -wMw -wMw -wMw +ipP +hdo +fsB +fsB +fsB +fsB xVQ kyz kqA fOO aMC aMC -aqw +iuM giN -cTV -hyr -bmV -qxu +iLW +wgi +bWX +mQq eDQ svD oNy teT eDQ -lzu -gqX -hvO -ckI -tam -lss -rHv -oMs -kiE -xNY -qqA -qqA -aQc -qqA -kWZ -rVZ -aQc -qqA -nfk -qqA -qqA -aQc -kWZ -rVZ -qqA -qqA -qqA -qqA -qqA -xNY -qqA +cAB +upI +ckS +tUy +owF +ikR +shs +sIL +gjH +dSr +iyL +iyL +ijK +iyL +nxz +ccJ +ijK +iyL +mGx +iyL +iyL +ijK +nxz +ccJ +iyL +iyL +iyL +iyL +iyL +dSr +iyL sah haq eRE iPw pbf xgG -wwd -mjA -rzM +rwr +uvR +jpC qvo -eea -sJZ -tEJ -cNu +skW +dOr +gFo +neB wSx wSx wSx @@ -44865,7 +44871,7 @@ wSx wSx wSx wSx -etv +bBX xxk xxk mCF @@ -44879,10 +44885,10 @@ mCF mCF mCF mnL -cto -cto -etv -cto +mQL +mQL +bBX +mQL ksX cty cty @@ -44896,9 +44902,9 @@ cty cty cty ksX -cto -fLu -cto +mQL +jnL +mQL ksX aOg aOg @@ -44924,59 +44930,59 @@ wUU "} (77,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -pAX -qwQ -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +bog +arf +kLx +oYk +arf +arf +arf dXg xFS -vZR -apt -dKy -qVD -fXu -asx -asx -asx -wMw -wMw -pbp -wCc -uaV -uaV -nXR -fUF -jyq -uaV -nXR -fUF -jyq -uaV -nXR -kvQ -jyq -uaV -nXR -fUF -jyq -uaV -nXR -fUF -jyq -wCc -mrC -wMw -olD -olD -olD +jzx +rNy +rcM +dPx +ecr +tBS +tBS +tBS +fsB +fsB +ias +gFI +meB +meB +wha +bok +bgu +meB +wha +bok +bgu +meB +wha +gOY +bgu +meB +wha +bok +bgu +meB +wha +bok +bgu +gFI +hdo +fsB +fjF +fjF +fjF teH oaO wns @@ -44986,69 +44992,69 @@ kqA giN giN giN -hyr -bmV -qxu +wgi +bWX +mQq eDQ eDQ oNy eDQ eDQ -lzu -gqX -hvO -ckI -hvO -mrd -ogq -qgy -mlT -kIK -kIK -kIK -bfq -kIK -jAx -kIK -bfq -akf +cAB +upI +ckS +tUy +ckS +uyM +bOl +rUm +aNo +iEG +iEG +iEG +tZb +iEG +rFb +iEG +tZb +xJN snE -kIK -kIK +iEG +iEG pLF -jAx -kIK -kIK -kIK -kIK -kIK -kIK -fAQ -qqA +rFb +iEG +iEG +iEG +iEG +iEG +iEG +qmN +iyL qvo vOW rKB jHJ tXE qvo -mqt -qhN -kXZ +jlK +swh +rYF qvo -ueg -sJZ -tEJ -cNu +qWj +dOr +gFo +neB lNb -apY -vzt -ezt -ezt -ezt -ezt -ezt +sQV +lIR +kwA +kwA +kwA +kwA +kwA toU -cto +mQL xxk mCF aOg @@ -45061,9 +45067,9 @@ mCF mCF hoC owM -qEG -cto -etv +ayz +mQL +bBX xxk xxk mCF @@ -45078,9 +45084,9 @@ cty cty cty ksX -cto -cto -cto +mQL +mQL +mQL ksX hoC mCF @@ -45106,59 +45112,59 @@ wUU "} (78,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -daS -qwQ +spB +sZA +sZA +sZA +sZA +fQP +arf +kCI +arf gVO jaF qgm -lTR +kLx dXg dXg xFS eqg -bJV -bJV -bJV +ngA +ngA +ngA qTs -asx -asx -xOI -qoE -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -jgL -mrC -asx -asx -asx +tBS +tBS +rPs +hpc +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +fjF +lGK +hdo +tBS +tBS +tBS kqA aSe rFv @@ -45167,70 +45173,70 @@ iFm kqA lGD giN -hyr -hyr +wgi +wgi qOV -qxu +mQq eDQ mlN eDQ mxv eDQ -lzu -vfg -yeH -lzu -hrG -mos -rHv -oMs -kiE -qqA -qqA -qqA -qqA +cAB +wPM +tQM +cAB +mjt +vYT +shs +sIL +gjH +iyL +iyL +iyL +iyL yil -qqA +iyL gxi -qqA -qqA +iyL +iyL sKN -qqA -qqA -qJF -qqA -gjs -qqA -qqA -qqA -qqA -qqA -aQc -qqA +iyL +iyL +lhW +iyL +dYc +iyL +iyL +iyL +iyL +iyL +ijK +iyL qvo slB tNT bur vRI oxi -qnf -ayo -wbB +uWK +cSM +pBm qvo -ueg -fPn -aBB -ozz -lmd -hys -hys -hys -hys -hys -hys -hys +qWj +bet +aPN +upF +vYL +lkb +lkb +lkb +lkb +lkb +lkb +lkb pGP -cto +mQL xxk mCF aOg @@ -45243,9 +45249,9 @@ mCF mCF hoC owM -ghs -cto -etv +dIx +mQL +bBX xxk xxk mCF @@ -45260,9 +45266,9 @@ mCF cty cty ksX -cto -cto -cto +mQL +mQL +mQL ksX hoC mCF @@ -45288,70 +45294,70 @@ wUU "} (79,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -lTR +spB +sZA +sZA +sZA +sZA +snN +arf +arf +kLx scL vLo lnO -qwQ -qwQ -qwQ +arf +arf +arf dXg -qwQ -qwQ -qwQ -pAX +arf +arf +arf +oYk rMl -asx -fZB -asx -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -mrC -asx -fZB -asx +tBS +uod +tBS +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +hdo +tBS +uod +tBS kqA kEB sSp hlw vhJ bgE -kpN +dNp giN -hyr -hyr -hyr +wgi +wgi +wgi pGJ nio lkH @@ -45359,26 +45365,26 @@ eaN lYF srW pGJ -mFY -oMs -xWY -hvO -bih -rHv -qMl +yeD +sIL +iQm +ckS +wad +shs +pHL xRF srY -hFE -egp +nrg +ikF xRF yil qio yil jcT -ojG -aQc -qqA -vMU +joL +ijK +iyL +mqg clX clX qio @@ -45386,32 +45392,32 @@ qio qio qio qio -qqA -aQc -qqA +iyL +ijK +iyL xgG duw aDQ mcN aAg xgG -sLU -qOn -wbB +gjr +tqD +pBm qvo -ueg -sJZ -tEJ -ouV +qWj +dOr +gFo +fYb lNb -ezt -ezt -ezt -ezt +kwA +kwA +kwA +kwA ixr ixr ixr -etv +bBX xxk xxk mCF @@ -45425,9 +45431,9 @@ bls mCF cty owM -cto -cto -etv +mQL +mQL +bBX xxk xxk mCF @@ -45442,9 +45448,9 @@ aOg cty cty ksX -cto -cto -cto +mQL +mQL +mQL ksX cty mCF @@ -45470,59 +45476,59 @@ wUU "} (80,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +fQP +arf +arf +arf eGX hKK fLY -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +arf +arf +arf +arf +arf +arf +arf +arf btU -asx -asx -wCR +tBS +tBS +fKD gsQ icb -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -mrC -asx -dlr -asx +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +fsB +hdo +tBS +sJl +tBS bgE pTg ycY @@ -45533,7 +45539,7 @@ giN giN giN giN -rfn +iAr pGJ dXd tGV @@ -45541,26 +45547,26 @@ tGV tGV itP pGJ -vNY -oMs -xWY -hrG -mos -rHv -oMs +fKy +sIL +iQm +mjt +vYT +shs +sIL snl -kTD -lLZ -dKc +eNd +sWO +ttz snl yil yil tiF yil -ojG -aQc -qqA -qqA +joL +ijK +iyL +iyL clX qio qio @@ -45568,34 +45574,34 @@ aUA vpQ qio qio -hLY -aXz -lhp +kUy +fMM +gVE xgG xgG qvo xgG xgG xgG -rgy -mRZ -wDN +lmv +lAV +nZf xgG -rGl -sJZ -fnq -cNu +sJQ +dOr +nOc +neB bkM ngg bkM ixr -ezt +kwA dad ixr ixr toU -cto -cto +mQL +mQL iFb mCF mCF @@ -45607,10 +45613,10 @@ mCF cty cty owM -diu -cto -etv -cto +ifW +mQL +bBX +mQL ksX mCF aOg @@ -45624,9 +45630,9 @@ aOg cty cty ksX -bxx -bxx -bxx +juj +juj +juj ksX cty mCF @@ -45652,29 +45658,29 @@ wUU "} (81,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -ebN -eha -tNy +spB +sZA +sZA +sZA +sZA +snN +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +vXf +deu +vWq gXf unH kKX @@ -45683,9 +45689,9 @@ wfK wfK ebm bJI -asx -asx -asx +tBS +tBS +tBS bJI bJI oJb @@ -45693,9 +45699,9 @@ wfK wfK ebm bJI -asx -asx -asx +tBS +tBS +tBS bJI bJI oJb @@ -45711,10 +45717,10 @@ egV bTf cKK duN -hyr -nRH -nRH -feW +wgi +mPg +mPg +psE giN pGJ pGJ @@ -45723,61 +45729,61 @@ pGJ bhF pGJ pGJ -oBj -oMs -xWY -hvO -mrd -ogq -ciH +oIE +sIL +iQm +ckS +uyM +bOl +vMW tIV -hKe -fWU -mXO +xIJ +ike +tqW xRF ira yil yil -qqA -qqA -aQc +iyL +iyL +ijK yil -qqA +iyL qio qio pGj iIc -aAC -wSL -axv -lDh -jQe -mHa +tTW +wgP +jyK +mNb +gpq +pCm sah jxe orH uIl odw qvo -feV -qOn -wbB +iYt +tqD +pBm xgG -xff -sJZ -tEJ -cNu +sPG +dOr +gFo +neB bkM bkM ngg -ipl +qKl ixr exj ixr -gxX -etv -cto -cto +vVd +bBX +mQL +mQL iFb mCF jdm @@ -45790,7 +45796,7 @@ cty cty owM rXS -cto +mQL toU xxk ksX @@ -45806,9 +45812,9 @@ aOg aOg ksX ksX -qYd -fLu -cto +mMk +jnL +mQL ksX ksX hoC @@ -45834,29 +45840,29 @@ wUU "} (82,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy +spB +sZA +sZA +sZA +sZA +snN +jWM +kLx +kLx +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +kLx +arf +sqh +vWq gPL hKK srU @@ -45865,28 +45871,28 @@ lYr pdn cRx bJI -asx -fZB -asx +tBS +uod +tBS pUi rIG lYr -awr +trl lYr -aHu +dFT tEc -asx -viY -asx +tBS +nZJ +tBS gfc -sFN +jUv lYr lYr lYr kRH bJI -rgf -asx +aec +tBS aMC hLt kUj @@ -45894,71 +45900,71 @@ ixw rmV kqA giN -hyr +wgi giN iSW giN qUW -hyr -pJf +wgi +tqq giN -kIV -hyr +qNS +wgi thS -oMs -vAF -xWY -hrG -mos -rHv -oMs +sIL +bIz +iQm +mjt +vYT +shs +sIL snl -qgR -dvw -qWt +pnY +vbC +bWV snl yil yil yil gkF -iwc -aQc +dnq +ijK yil -qqA +iyL qio qio vDf -gvJ -sLO -lum -lxR -rpN -jQe -xvj +ftp +hxV +kfK +vNK +jGU +gpq +lXO xgG oWr iAX lIU tXE xgG -pJZ -qOn -wbB +xNa +tqD +pBm qvo -fkE -sJZ -tEJ -cNu -xBO +shC +dOr +gFo +neB +rZd bkM ngg -tsz +row chs ixr ixr -gxX -etv -cto +vVd +bBX +mQL xxk iFb mCF @@ -45972,9 +45978,9 @@ hoC cty owM xxk -cto -etv -tcX +mQL +bBX +pLn ksX vOo aOg @@ -45987,11 +45993,11 @@ mCF aOg aOg ksX -kgC -wtU -cto -cto -jps +cyo +msC +mQL +mQL +cbL ksX ksX mCF @@ -46016,50 +46022,50 @@ wUU "} (83,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -aTY +spB +sZA +sZA +sZA +sZA +snN +arf +wEp dXg -aTY -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -sUK +wEp +arf +kLx +arf +arf +arf +arf +arf +arf +arf +arf +kLx +sqh +vWq +kxI +lUi eGX wXc -sJm -bVS +sOd +xvo kRH eOa -asx -dlr -asx +tBS +sJl +tBS itQ qKZ qyJ -vAZ +qAN vmw kRH eOa -svG -dlr -asx +pvq +sJl +tBS itQ qKZ qyJ @@ -46068,7 +46074,7 @@ lYr hZE bVX eOa -asx +tBS aMC hLt rmo @@ -46076,28 +46082,28 @@ qfC xbm kqA giN -hyr +wgi giN -hyr +wgi ovD hxO hxO -rbd -hyr -oZA -htP +bYI +wgi +oPO +hUk jrq -oMs -oMs -hmp -oMs -hca -lzu -oMs -yjp -lDk -oKN -sJB +sIL +sIL +uVD +sIL +fCw +cAB +sIL +cZY +dfB +eIP +dMq xRF yil yil @@ -46105,42 +46111,42 @@ yil qio sMJ sKN -qqA -qqA +iyL +iyL qio qio oRD -wSL +wgP vVz -wSL -hlF -hLQ -boV -dkl +wgP +vcQ +ybZ +pnE +oSq qvo opW nOz djH vRI oxi -rVI -hQb -lEw +nGT +vKR +paM xgG -hUs -sJZ -tEJ -cNu -qnm +une +dOr +gFo +neB +ePG bkM ngg -qLq +nbq chs ixr ixr nTG -etv -cto +bBX +mQL xxk mCF mCF @@ -46153,11 +46159,11 @@ mCF mCF cty vVJ -cto -cto -etv -cto -wFx +mQL +mQL +bBX +mQL +gtX mCF aOg aOg @@ -46169,12 +46175,12 @@ mCF aOg aOg ksX -kgC -lun -cto -cto -drK -cto +cyo +iVI +mQL +mQL +vfV +mQL ksX mCF mCF @@ -46198,59 +46204,59 @@ wUU "} (84,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -wBp -rYC +spB +sZA +sZA +sZA +sZA +snN +snN +bog dXg -qwQ -lTR +arf +kLx gVO jaF jaF jaF qgm -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR +arf +arf +arf +arf +arf +sqh +vWq +kxI +arf +kLx scL -dOS +egW rfV lnO -fHf -eha -tNy -eXg -jLS -lTR +pUC +deu +vWq +jFi +bQE +kLx scL oGv lsN lnO -fHf -eha -tNy -eXg -jLS -lTR +pUC +deu +vWq +jFi +bQE +kLx scL oGv -rKM +vqe lnO -lTR -fHf -wPl +kLx +pUC +kpq aMC kqA kqA @@ -46258,22 +46264,22 @@ bgE bgE bgE aMC -ldr -hyr +kqm +wgi iSW giN giN mMJ -cZZ -htP -ooe -ukX +jyN +hUk +tVk +eGV wHk -evV +aPd aVQ lsU -oMs -pCf +sIL +xrz lsU fkR fkR @@ -46286,33 +46292,33 @@ pVN pVN fkR fkR -gSn -qqA -tDF +qHw +iyL +eTT qio qio qio -qfL -wSL -wyE -axv -hLY -boV -nLI +nYu +wgP +pgP +jyK +kUy +pnE +xPI qvo tgk bLp dWN sRM xgG -qCk -gsq -atz +jFF +bhY +dhR xgG -vUM -sJZ -tEJ -ciu +cvh +dOr +gFo +cJK bkM bkM chs @@ -46321,7 +46327,7 @@ chs ixr poz nTG -etv +bBX xxk xxk mCF @@ -46335,9 +46341,9 @@ mCF mCF mCF wOR -cto -cto -etv +mQL +mQL +bBX xxk xxk mCF @@ -46351,10 +46357,10 @@ ksX ksX ksX loP -lYQ -cto -cto -wgv +jFl +mQL +mQL +fKP mMu xxk iDn @@ -46380,59 +46386,59 @@ wUU "} (85,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +kCI dXg -aTY +wEp scL lsN gcF wnA lnO -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR +arf +arf +arf +arf +arf +sqh +vWq +kxI +arf +kLx scL gDI jSX fLY -lTR -eDY -tNy -oLZ -lTR -lTR +kLx +sqh +vWq +kxI +kLx +kLx scL kvC jSX fLY -lTR -eDY -tNy -oLZ -lTR -lTR +kLx +sqh +vWq +kxI +kLx +kLx scL oGv oGv lnO -lTR +kLx dXg -fHf +pUC jEG hET hET @@ -46440,7 +46446,7 @@ koZ hET wft aMC -sNT +lsV giN vFl sXb @@ -46453,34 +46459,34 @@ mRq sXb mRq xzj -oxA -oMs -hca -wRB +eIK +sIL +fCw +vWt fkR -qps -bVI -pqG -bVI -gan -bVI -bVI -bVI -gKn -nDC -aQc -tDF -tDF -tDF +kvD +ghh +dkN +ghh +eSu +ghh +ghh +ghh +qJV +mDf +ijK +eTT +eTT +eTT qio qio -rja -gvJ -szS -axv -lDh -boV -dkl +wDU +ftp +hrj +jyK +mNb +pnE +oSq xgG xgG qvo @@ -46491,10 +46497,10 @@ xgG qvo xgG xgG -vUM -sJZ -tEJ -fMP +cvh +dOr +gFo +pRI pKs chs chs @@ -46504,12 +46510,12 @@ ixr ixr ixr toU -cto +mQL xxk meS kce -wSM -wSM +lFm +lFm cty cty mCF @@ -46517,9 +46523,9 @@ mCF mCF mCF wOR -cto -cto -etv +mQL +mQL +bBX swV xxk mCF @@ -46530,13 +46536,13 @@ cty mCF mCF iDn -wTE -cto -cto -cto -cto +hfv +mQL +mQL +mQL +mQL xxk -cto +mQL xxk xxk xEG @@ -46562,59 +46568,59 @@ wUU "} (86,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -uYJ -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +jWM +kLx scL vom hJq hXe lnO -qwQ -pAX -qwQ -qwQ -uYJ -eDY -tNy -oLZ -qwQ -qwQ +arf +oYk +arf +arf +jWM +sqh +vWq +kxI +arf +arf eGX hKK fLY -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR +kLx +arf +sqh +vWq +kxI +kLx +kLx eGX hKK fLY -lTR -lTR -eDY -jzL -oLZ -lTR -lTR +kLx +kLx +sqh +rfX +kxI +kLx +kLx scL oGv oGv lnO dXg -lTR -lTR +kLx +kLx qTZ hKK bbG @@ -46622,61 +46628,61 @@ hKK hKK gdJ vKv -bZA +sRy giN giN sXb -egH -pJQ -aVt -tzw -dSA -cGc -aVt -iet +eBg +urQ +dVA +iMj +uoT +wRh +dVA +raD sXb -xWY -hvO -bih -rHv +iQm +ckS +wad +shs pVN -cMf -khb +kIa +mUm vDe vio dHY wrg -jfn -hPD -ugi +bjE +vUc +oNS pVN -aQc -tDF -bzf +ijK +eTT +bhw gyz clX -azr -aAC -wSL -wSL -axv -edu -boV -nLI -jfP -bak -cmf -ezc -ezc -bak -uOF -bak -tQy -fEm -vUM -sJZ -tEJ -cNu +gng +tTW +wgP +wgP +jyK +cHI +pnE +xPI +aNr +odh +cKl +qra +qra +odh +cDW +odh +iSk +oOs +cvh +dOr +gFo +neB pKs chs chs @@ -46685,13 +46691,13 @@ ixr ixr ixr exj -etv +bBX xxk xxk aOg kce -wSM -rWG +lFm +umF cty aOg aOg @@ -46701,7 +46707,7 @@ mCF wOR xxk xxk -gAK +ayh xxk mrY mCF @@ -46712,15 +46718,15 @@ eoV mCF mCF iDn -fLu -cto -cto -kDJ +jnL +mQL +mQL +xXD ncd ckG -cto -cto -cto +mQL +mQL +mQL iDn xGV aOg @@ -46744,71 +46750,71 @@ wUU "} (87,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -aTY -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +wEp +kLx eGX hKK vDw aag lnO -qwQ -lTR -qwQ -qwQ -lTR -eDY -tNy -oLZ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -eDY +arf +kLx +arf +arf +kLx +sqh +vWq +kxI +arf +arf +kLx +arf +arf +arf +kLx +sqh +vWq +kxI +kLx +kLx +kLx +kLx +kLx +kLx +kLx +sqh iAP -sgn +naa dXg dXg scL oGv hXR lnO -lTR -lTR -lTR -lTR -lTR -lTR -lTR -aTY +kLx +kLx +kLx +kLx +kLx +kLx +kLx +wEp qsb vKv -hsl +uVr iSW giN mRq -oyb +aSC jzZ mCY pjn @@ -46817,53 +46823,53 @@ jzZ mCY jzZ mRq -xWY -hvO -bih -rHv +iQm +ckS +wad +shs pVN -cMf -khb +kIa +mUm xtZ cbK ara wrC eTP -hPD -uQH +vUc +tpo pVN -aQc -dkl -dkl -mOx -iZT -roT -gdO -wSL -gvJ -hlF -suE -dkV -sff -sff -hLF -nVk -rZA -hLF -nVk -nVk -nVk -mlT -nbA -nbA -lQA -ptY -uzg +ijK +oSq +oSq +mBd +oev +ePe +tDD +wgP +ftp +vcQ +qme +qwP +bBP +bBP +jlj +qKm +rJu +jlj +qKm +qKm +qKm +aNo +wgc +wgc +lmJ +xBQ +gTg bkM chs chs chs -rCs +uLc ixr ixr ixr @@ -46872,7 +46878,7 @@ xxk xxk kce mCF -wSM +lFm cty cty aOg @@ -46882,9 +46888,9 @@ mCF mCF owM mxB -cto -etv -cto +mQL +bBX +mQL ksX cty mCF @@ -46895,14 +46901,14 @@ mCF mCF xEG xxk -cto -cto -cto -cto -wgv -cto -fLu -cto +mQL +mQL +mQL +mQL +fKP +mQL +jnL +mQL ksX aBK aOg @@ -46926,71 +46932,71 @@ wUU "} (88,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -aTY -qwQ -aTY +spB +sZA +sZA +sZA +sZA +sZA +sZA +fQP +arf +arf +wEp +arf +wEp dFt hKK fLY -lTR -qwQ -lTR -qwQ -qwQ -eDY -tNy -oLZ -qwQ -qwQ -qwQ -aqh -qwQ -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -aTY -lTR -lTR -lTR -eDY -cpF -cpF +kLx +arf +kLx +arf +arf +sqh +vWq +kxI +arf +arf +arf +niq +arf +kLx +arf +sqh +vWq +kxI +kLx +kLx +kLx +wEp +kLx +kLx +kLx +sqh +twC +twC dXg -lTR +kLx scL oGv oGv lnO -lTR -lTR -lTR -lTR -lTR -aTY -lTR -lTR +kLx +kLx +kLx +kLx +kLx +wEp +kLx +kLx vEe vKv -hsl +uVr giN -hyr +wgi mRq -nih +mxb jzZ lZa gyw @@ -46999,48 +47005,48 @@ jzZ mCY jzZ mRq -xWY -hvO -bih -rHv -mXx -tpL -khb -dnA +iQm +ckS +wad +shs +gxv +ojb +mUm +eRZ lQg ara xHt nZk -hPD -mZi -mXx -aQc -qXO -tso -bbW -qQk -per -mVY -opP -lMl -pRR -rpN -aXz -oXm -oXm -xne -xne -xne -xne -mtx -cWs -xne -tQy -rMN -lMD -oRK -tEJ -bZI +vUc +yaJ +gxv +ijK +gGb +anX +eFO +eDd +qRb +kvh +vWE +iDR +wqD +jGU +fMM +nPb +nPb +mtR +mtR +mtR +mtR +nJO +raI +mtR +iSk +ofT +dmx +tlP +gFo +jLX bkM ngg dtH @@ -47049,7 +47055,7 @@ chs ixr ixr ixr -mMZ +eoU xxk xxk mCF @@ -47064,9 +47070,9 @@ dda mCF owM xxk -cto -etv -cto +mQL +bBX +mQL ksX cty mCF @@ -47079,12 +47085,12 @@ ksX ksX ksX ksX -aMN +nHq xxk -cto -cto -esw -cto +mQL +mQL +llT +mQL ksX aOg mCF @@ -47108,71 +47114,71 @@ wUU "} (89,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -qwQ -qwQ -qwQ -qHl -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -pAX -lTR -lTR -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +bog +arf +kLx +arf +arf +arf +hAH +arf +kLx +arf +arf +arf +arf +arf +sqh +vWq +kxI +arf +oYk +kLx +kLx +arf dXg -qwQ -eDY -tNy -oLZ -lTR -lTR -aTY -lTR -lTR -lTR -lTR -fHf -cpF -lTR -lTR +arf +sqh +vWq +kxI +kLx +kLx +wEp +kLx +kLx +kLx +kLx +pUC +twC +kLx +kLx gVO uTu oGv oGv lnO -lTR -lTR -lTR -lTR -lTR -lTR -lTR +kLx +kLx +kLx +kLx +kLx +kLx +kLx gVO bEY aMC -hyr +wgi giN mpL sXb -nih +mxb jzZ mCY gyw @@ -47181,34 +47187,34 @@ pKg mCY jzZ mRq -xWY -hvO -bih -rHv -hPD -tpL -khb +iQm +ckS +wad +shs +vUc +ojb +mUm urd hla lVW lZh nZk -hPD -mZi -hPD -aQc -qXO -tso -qBO -eUh -izP -khB -nTH -pNT -izP -eUh -aXz -nYy +vUc +yaJ +vUc +ijK +gGb +anX +qXY +ohL +kcP +iZt +rPP +jPD +kcP +ohL +fMM +nOE xNR ydx xNR @@ -47219,10 +47225,10 @@ xNR ydx xNR xNR -rMN -mzv -fqu -rMN +ofT +cpQ +wVZ +ofT bkM bkM bkM @@ -47231,8 +47237,8 @@ pKs pKs bkM spN -etv -cto +bBX +mQL xxk mCF mCF @@ -47245,10 +47251,10 @@ gCh dda mCF owM -cto -cto -etv -cto +mQL +mQL +bBX +mQL ksX mCF mCF @@ -47261,12 +47267,12 @@ mCF hoC cty ksX -kgC -qYd -cto -cto -cto -cto +cyo +mMk +mQL +mQL +mQL +mQL ksX aOg mCF @@ -47290,51 +47296,51 @@ wUU "} (90,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -msj -daS -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +kxR +kCI +oYk +arf +arf +arf +arf +arf +oYk +arf +arf +arf +arf +arf +sqh +vWq +kxI +arf dXg -qwQ -qwQ +arf +arf dXg -qwQ -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -daS -lTR -lTR -lTR -lTR -lTR +arf +arf +sqh +vWq +kxI +kLx +kLx +kLx +kLx +kLx +kCI +kLx +kLx +kLx +kLx +kLx scL hXR oGv @@ -47342,19 +47348,19 @@ oGv lnO dXg dXg -daS -lTR -lTR +kCI +kLx +kLx gVO jaF aqq cwE cwE -ngC -hyr +ozh +wgi iSW sXb -djh +eBC jzZ jzZ gyw @@ -47363,58 +47369,58 @@ jzZ jzZ sia sXb -xWY -hvO -bih -rHv +iQm +ckS +wad +shs pVN -cMf -khb +kIa +mUm qLs iwg ara hAh nZk -hPD -uQH +vUc +tpo pVN -aQc +ijK bum -azh -fEb -nLI -nLI -ovp -mIQ -fnX -ujR -dkl -boV -dkl +bKs +gPn +xPI +xPI +mvV +bGv +uZd +hsJ +oSq +pnE +oSq xNR iLd iTP jZG tNE vYQ -lgb -fEI -wfy +ugz +vwY +lZW xNR gFx aFg umT gCH gFx -vrj -mkt -aUP -jeo -kbp -xgU +dbS +rXY +uZI +nxK +ovw +nej xxk -etv -cto +bBX +mQL xxk mCF mCF @@ -47427,11 +47433,11 @@ mCF mCF aOg wOR -cto -cto +mQL +mQL toU -cto -cba +mQL +nGj mCF mCF jdm @@ -47443,11 +47449,11 @@ aOg aOg cty ksX -kgC -qYd -cto +cyo +mMk +mQL xxk -cto +mQL ksX ksX mCF @@ -47472,71 +47478,71 @@ wUU "} (91,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -aTY -qwQ -qwQ -qwQ -aTY -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -oLZ -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +kLx +wEp +arf +arf +arf +wEp +kLx +arf +arf +arf +arf +kLx +arf +sqh +vWq +kxI +arf dXg dXg -qwQ +arf dXg -qwQ -aqh -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -eDY -cpF -lTR -lTR +arf +niq +sqh +vWq +kxI +kLx +kLx +kLx +kLx +kLx +kLx +kLx +sqh +twC +kLx +kLx scL oGv -tmC +rbb hXR lnO dXg -daS -lTR -lTR -lTR +kCI +kLx +kLx +kLx scL oGv cwE cwE -qqM -hsl -hyr +xRC +uVr +wgi giN -dVq -tzw +cEt +iMj jzZ jzZ rdx @@ -47544,59 +47550,59 @@ pol pol pol pol -dVq -lbr -urA -lss -rHv +cEt +rnG +lna +ikR +shs pVN -daA -khb +grm +mUm urd mwd ara ara nZk -hPD -uQH +vUc +tpo pVN -dYn -rmB -rmB -dxt -rxa -rxa -wEU -sNp -rmB -rmB -tcq -jyw -xya +kvp +gwx +gwx +tXz +tTx +tTx +mCd +ayr +gwx +gwx +xvg +mFN +mDE ydx mSc wpX qQt jNT qeu -thY -mPI -bTm -snP +fGx +dHv +dpD +dDJ qhF ffx umT eDF gFx -fvw -tEJ -ozC -qIi -vZz -ezt +rrE +gFo +pSz +vrL +iJg +kwA xxk toU -cto +mQL xxk mCF mCF @@ -47610,8 +47616,8 @@ aOg xGV wOR xxk -cto -etv +mQL +bBX xxk ksX aOg @@ -47626,9 +47632,9 @@ aOg cty ksX ksX -qYd -cto -fLu +mMk +mQL +jnL ksX ksX mCF @@ -47654,51 +47660,51 @@ wUU "} (92,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -pAX -lTR -lTR -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -nFD -lTR -lTR -lTR -lTR -lTR -lTR -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +fQP +kLx +arf +oYk +kLx +kLx +kLx +kLx +arf +arf +arf +arf +arf +arf +sqh +vWq +kxI +arf +kLx +kLx +arf +arf +arf +arf +sqh +vWq +kxI +dbi +kLx +kLx +kLx +kLx +kLx +kLx +kLx stl -caD -lTR +fAH +kLx scL oGv hXR @@ -47706,19 +47712,19 @@ oGv pfd qgm dXg -lTR -lTR -lTR +kLx +kLx +kLx scL oGv cwE cwE -hsl -hsl -hyr -hyr +uVr +uVr +wgi +wgi sXb -esO +xRO dYp wZF fjH @@ -47727,29 +47733,29 @@ wZF jzZ dYX sXb -ePB -hvO -mrd -ogq +vgZ +ckS +uyM +bOl riJ -spP -fdw +jkX +jYM xtZ ifZ eMi qRy moK -hPD -uQH +vUc +tpo riJ -aQc -qqA -qqA +ijK +iyL +iyL pbt iLD pbt pbt -cLY +rlq iLD iLD pbt @@ -47761,24 +47767,24 @@ vNu cdL oWs qFZ -syL -lsR -clD +dKd +kxK +miI ydx -xGp +eTo aFg aPe qnp gFx -wLF -oCi -sgq -mAB -tEJ -jUt -mOG +qUN +mGY +vGL +fdD +gFo +rwA +kmn toU -cto +mQL xxk mCF jdm @@ -47792,9 +47798,9 @@ aOg aOg iHE xxk -cto -etv -cto +mQL +bBX +mQL xxk mCF mCF @@ -47808,9 +47814,9 @@ aOg aOg cty cqZ -bxx -bxx -bxx +juj +juj +juj ksX mCF mCF @@ -47836,71 +47842,71 @@ wUU "} (93,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -aTY -lTR -lTR -lTR -lTR -uoh -lTR -lTR -lTR -cpF -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +arf +arf +kLx +arf +arf +oYk +arf +arf +arf +arf +arf +arf +sqh +vWq +kxI +arf +arf +arf +arf +arf +arf +kLx +sqh +vWq +kxI +wEp +kLx +kLx +kLx +kLx +eSj +kLx +kLx +kLx +twC +kLx scL rMb oGv oGv oGv lnO -lTR -lTR -lTR +kLx +kLx +kLx dXg scL hXR cwE cwE -hsl -hsl +uVr +uVr giN -hyr +wgi sXb -tzw +iMj aJP svH kBo @@ -47909,54 +47915,54 @@ ybm lWf jzZ mRq -xWY -hvO -bih -rHv +iQm +ckS +wad +shs pVN -cMf -khb +kIa +mUm urd ara ara -iGm +agk nZk -hPD -uQH +vUc +tpo pVN -aQc -qqA -pZD +ijK +iyL +bIo iLD -lQO -cvW -pYV -iJk -foz -juL -iBz -tPS -lUT +xFA +hau +vpB +uOw +mFK +kLl +uSa +eUJ +uHv xNR trC yhy sJq iwo tMY -jTY -xxo -uLP +gxg +hAd +iRC xNR nIF qeh otO qhF tjO -cwe -wpm -vDC -tEJ -tEJ +cfh +rPN +wqQ +gFo +gFo pKs xxk toU @@ -47974,9 +47980,9 @@ hoC hoC owM xxk -cto -etv -cto +mQL +bBX +mQL xxk meS aOg @@ -47990,9 +47996,9 @@ aOg aOg cty cqZ -cto -cto -cto +mQL +mQL +mQL ksX mCF mCF @@ -48018,51 +48024,51 @@ wUU "} (94,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -uYJ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +kLx +jWM +arf +arf +arf +arf +arf +kLx +arf +arf dXg -qwQ -qwQ -eDY -tNy -oLZ -qwQ -aqh -lTR -qwQ -qwQ -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -aTY -lTR -lTR +arf +arf +sqh +vWq +kxI +arf +niq +kLx +arf +arf +kLx +arf +sqh +vWq +kxI +kLx +kLx +wEp +kLx +kLx dXg -lTR -lTR -lTR -lTR -lTR +kLx +kLx +kLx +kLx +kLx scL oGv oGv @@ -48070,19 +48076,19 @@ hXR oGv pfd qgm -lTR -lTR -lTR +kLx +kLx +kLx scL oGv cwE bgE yeJ giN -hyr +wgi iSW mRq -tzw +iMj aJP ogj akk @@ -48091,34 +48097,34 @@ gdN lWf jzZ mRq -xWY -hvO -bih -rHv +iQm +ckS +wad +shs pVN -cMf -khb +kIa +mUm urd hAh ara ara nZk -hPD -uQH +vUc +tpo pVN -aQc -qqA -qqA +ijK +iyL +iyL iLD -wno -jCr -iNE -xbA -akO -jCr -iNE -jCr -bLy +gSs +hAC +acu +wqZ +qEJ +hAC +acu +hAC +uwM xNR xNR xNR @@ -48134,14 +48140,14 @@ eUH kIb vPK eDF -fFm -eIT -xdz -yeG -frQ +fKL +thk +faF +oeX +ofc bkM rXS -etv +bBX xxk xxk mCF @@ -48156,9 +48162,9 @@ cty cty owM ksX -cto -etv -cto +mQL +bBX +mQL xxk mCF aOg @@ -48172,9 +48178,9 @@ mCF aOg hoC cqZ -cto +mQL mxB -cto +mQL ksX mCF mCF @@ -48200,61 +48206,61 @@ wUU "} (95,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -lTR -lTR -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +fQP +arf +kLx +arf +arf +arf +arf +kLx +kLx +kLx +kLx dXg -qwQ -qwQ -eDY -tNy -oLZ -pAX -qwQ -qwQ -qwQ -uoh -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -cpF +arf +arf +sqh +vWq +kxI +oYk +arf +arf +arf +eSj +kLx +arf +sqh +vWq +kxI +kLx +kLx +kLx +kLx +kLx +kLx +kLx +kLx +twC gVO jaF uTu -tmC +rbb oGv -dOS +egW hXR oGv lnO -lTR -lTR -lTR +kLx +kLx +kLx scL oGv cwE @@ -48264,7 +48270,7 @@ iks giN iSW mRq -tzw +iMj jzZ oos fGM @@ -48273,49 +48279,49 @@ oos jzZ jzZ mRq -xWY -tam -lss -rHv -mXx -tpL -khb -hIo +iQm +owF +ikR +shs +gxv +ojb +mUm +iEV hOv wYa god nZk -hPD -mZi -mXx -aQc -qqA -qqA +vUc +yaJ +gxv +ijK +iyL +iyL iLD -nRy -qlW -oXE -uYF -hen -sJx -kZn -qvQ -bLy +uAL +rbW +cFi +fxr +vfp +wGc +ilA +fny +uwM ydx bAE kIg nmC ben agi -hDk -aZb -rAy +dce +nEr +bcY xNR fvd aFg woF uYL -bGz +nYe chr eDF fXG @@ -48323,9 +48329,9 @@ gFx gFx bkM aFt -etv -cto -cto +bBX +mQL +mQL xxk ksX ksX @@ -48338,9 +48344,9 @@ ksX ksX eEd eEd -iaM -hbi -iaM +twS +rEy +twS eEd mCF mCF @@ -48354,8 +48360,8 @@ mCF mCF mCF cqZ -cto -cto +mQL +mQL xxk xEG jdm @@ -48382,49 +48388,49 @@ wUU "} (96,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +bog +arf +arf +arf +kLx +arf +arf +arf +arf dXg dXg -lTR -qwQ -pAX -eDY -tNy -wJl -rlI -rlI -rlI -rlI -rlI -rlI -rlI -mEy -tNy -oLZ -lTR -lTR -lTR +kLx +arf +oYk +sqh +vWq +bVz +iPg +iPg +iPg +iPg +iPg +iPg +iPg +fSU +vWq +kxI +kLx +kLx +kLx dXg dXg dXg -lTR -lTR -lTR +kLx +kLx +kLx scL hXR oGv @@ -48434,65 +48440,65 @@ oGv oGv oGv lnO -lTR -lTR +kLx +kLx gVO lzD upH cwE bgE -fuh -kWR +mXW +gZN iSW iSW sXb -ibo -tzw -ejK -keE -fpe -tzw -tzw -tzw +aqW +iMj +eKa +dzS +hfk +iMj +iMj +iMj sXb -ntw -hvO -bih -rHv -hPD -tpL -khb +lLF +ckS +wad +shs +vUc +ojb +mUm urd pku -xUH +cZK xHt nZk -hPD -mZi -hPD -aQc -qqA -qqA +vUc +yaJ +vUc +ijK +iyL +iyL iLD -nRy -vPj -cHR -uYF -hen -hWA -nBD -qvQ -uXX +uAL +wkk +yiF +fxr +vfp +eKv +gOL +fny +rXy xNR gZI vNu vNu iAc qFZ -hPd -wLv -dSs -lvG +vyK +xBK +blt +wcU gFx aFg qlx @@ -48503,24 +48509,24 @@ gFx sgz qhF qhF -qnN -mUP +eus +qpI nDl -mUP +qpI qMW qMW -mUP -mUP -mUP +qpI +qpI +qpI qMW -mUP -mUP +qpI +qpI qMW -mUP -mUP -mUP -mUP -mUP +qpI +qpI +qpI +qpI +qpI pGP xxk eEd @@ -48536,9 +48542,9 @@ mCF mCF mCF ksX -cto -cto -cto +mQL +mQL +mQL iDn mCF mCF @@ -48564,49 +48570,49 @@ wUU "} (97,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -uYJ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +jWM +arf +arf +arf +arf +arf +kLx dXg dXg -qwQ -qwQ -lTR -eDY -vss -vss -vss -vss -vss -vss -vss -vss -vss -vss -tNy -oLZ -lTR -lTR -lTR +arf +arf +kLx +sqh +rsA +rsA +rsA +rsA +rsA +rsA +rsA +rsA +rsA +rsA +vWq +kxI +kLx +kLx +kLx dXg dXg -lTR -lTR -lTR -lTR +kLx +kLx +kLx +kLx scL oGv oGv @@ -48616,15 +48622,15 @@ oGv oGv hXR lnO -lTR -lTR +kLx +kLx scL oGv hXR cwE -lat -hyr -xYC +cJg +wgi +sKs dPR giN sXb @@ -48637,44 +48643,44 @@ sXb mRq mRq xzj -xWY -hvO -bih -rHv +iQm +ckS +wad +shs pVN -cMf -khb +kIa +mUm xtZ vcc ara gfA eTP -hPD -uQH +vUc +tpo pVN -aQc -qqA -hwa +ijK +iyL +cEC iLD -wno +gSs pbt pbt -uYF -hen +fxr +vfp pbt pbt -qvQ -bLy +fny +uwM ydx seZ pbd mnm kWj wkM -thY -mPI -tQI -snP +fGx +dHv +wFf +dDJ wrB ffx ddc @@ -48683,27 +48689,27 @@ nIR agl aZv vZm -xGp +eTo vZs -cTw -cto -cto +hTP +mQL +mQL mxB -cto -cto +mQL +mQL xxk -cto -cto -cto -cto -kul -cto +mQL +mQL +mQL +mQL +rET +mQL xxk -cto -cto -cto -cto -etv +mQL +mQL +mQL +mQL +bBX mxB ksX cty @@ -48718,9 +48724,9 @@ mCF mCF mCF ksX -cto -cto -cto +mQL +mQL +mQL ksX mCF mCF @@ -48746,116 +48752,116 @@ wUU "} (98,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +arf +arf +arf +arf +arf +arf +kLx +kLx dXg -qwQ -qwQ -lTR -eDY -tNy -qLf -bJV -bJV -bJV -bJV -bJV -bJV -bJV -eha -tNy -oLZ -daS -lTR -lTR -lTR +arf +arf +kLx +sqh +vWq +pLS +ngA +ngA +ngA +ngA +ngA +ngA +ngA +deu +vWq +kxI +kCI +kLx +kLx +kLx dXg -lTR -aTY -lTR -lTR +kLx +wEp +kLx +kLx scL oGv hXR oGv -tgE +sPA hXR gJy oGv lnO -lTR -lTR +kLx +kLx scL vcz hXR cwE -leU -hyr -hyr -nRH -nRH -nRH -nRH -nRH -nRH -vqZ -hyr -aXm -rPT -rPT +dGg +wgi +wgi +mPg +mPg +mPg +mPg +mPg +mPg +aYV +wgi +sLy +jut +jut qAp -xWY -xuW -bih -rHv +iQm +tvW +wad +shs pVN -cMf -khb +kIa +mUm xKv gWd vfj qBy fbQ -hPD -uQH +vUc +tpo pVN -aQc -qqA -bft +ijK +iyL +krO pbt -kPj -xFO -stU -uYF -hen -jCr -jCr -aAj -cGd +erf +tlB +sXY +fxr +vfp +hAC +hAC +jZR +hIJ xNR gLZ vNu pRs ssZ vzH -bNt -syL -syL +uKL +dKd +dKd ydx hwP vuE @@ -48868,25 +48874,25 @@ bpT hoK lWJ bkM -dIK -vTe -vTe -cto -cto -cto -cto -cto -cto -eBT -bnc -fhV -lYi -oeO -cto +vMN +pYS +pYS +mQL +mQL +mQL +mQL +mQL +mQL +gtI +wUO +mCc +kBk +iCK +mQL ubJ -cto -eJS -owk +mQL +vqT +fju ksX cty cty @@ -48901,9 +48907,9 @@ aOg wBc glp xxk -cto -cto -cba +mQL +mQL +nGj vOo mCF mCF @@ -48928,49 +48934,49 @@ wUU "} (99,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR -vEg -qwQ -qwQ -eDY -tNy -nhY -rlI -rlI -rlI -rlI -bvF -rlI -hAI +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +jWM +kLx +arf +arf +arf +arf +arf +arf +kLx +kLx +cQv +arf +arf +sqh +vWq +dZd +iPg +iPg +iPg +iPg +bgr +iPg +vAU qDr -tNy -oLZ -lTR -lTR -lTR +vWq +kxI +kLx +kLx +kLx gVO jaF qgm -lTR -lTR -lTR +kLx +kLx +kLx eGX hKK sRs @@ -48980,64 +48986,64 @@ oGv jSX hKK fLY -lTR -lTR +kLx +kLx scL hXR oGv cwE -cTV -hyr -sZe -hyr +iLW +wgi +bvW +wgi iSW giN iSW iSW giN -vAz +grP giN giN -rbd -hyr +bYI +wgi jrq -xWY -hvO -bih -euM +iQm +ckS +wad +jNj fkR -oBG -ufV -ufV -ufV -rIN -ufV -ufV -ufV -lTb +sVV +epE +epE +epE +pPD +epE +epE +epE +rOW fkR -pvs -qqA -gYg +agV +iyL +cPQ pbt -qXn -hiD -hiD -fQE -oFq -hiD -vqU -oFq -nzr +ejo +lcX +lcX +hdZ +wDM +lcX +ujN +wDM +qjW xNR pYx sQs rSX alh owY -klP -ryG -cIP +eMh +fod +tnI xNR nWS aFg @@ -49050,13 +49056,13 @@ oKo laa gkx pKs -ghs -cto -cto -gLo -oEX -ghs -vTe +dIx +mQL +mQL +dFc +aix +dIx +pYS bkM bkM pKs @@ -49066,9 +49072,9 @@ pKs pKs bkM aFt -cto -etv -cto +mQL +bBX +mQL ksX cty cty @@ -49083,9 +49089,9 @@ aOg mCF iDn xxk -cto -cto -cba +mQL +mQL +nGj mCF mCF mCF @@ -49110,105 +49116,105 @@ wUU "} (100,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -ctE +spB +sZA +sZA +sZA +sZA +sZA +sZA +fQP +kLx +arf +arf +arf +arf +arf +arf +kLx +arf +arf +arf +arf +arf +sqh +vWq +qqz gYh gYh tSK eQm gYh rHE -uKY -eDY -tNy -oLZ -lTR -aTY -lTR +ruh +sqh +vWq +kxI +kLx +wEp +kLx scL vGn lnO -lTR -lTR -lTR -lTR -lTR +kLx +kLx +kLx +kLx +kLx scL hXR oGv oGv lnO -lTR -lTR -lTR -lTR +kLx +kLx +kLx +kLx eGX sRs oGv cwE bgE -rAj -bGe -hyr +qBm +eHf +wgi iSW -cZZ -iJa +jyN +ugK nKy pth uBV -jjN +bjc giN -hyr -hyr +wgi +wgi qAp -xWY -hvO -bih -rHv +iQm +ckS +wad +shs fkR fkR pVN pVN pVN -xDy +pVf pVN pVN pVN fkR fkR -ojJ -kEV -iRZ +hpa +viT +jFS pbt iLD -jCr -fiv +hAC +lfG uWA iLD -jCr -pbM +hAC +uup iLD iLD xNR @@ -49221,7 +49227,7 @@ xNR ydx xNR xNR -ldJ +gCV aFg umT scD @@ -49240,17 +49246,17 @@ bkM pKs bkM bkM -gIB -uLY -oFd -cLD -oFd -mcs -kus +dMQ +vin +fcY +shL +fcY +uBM +cEp aFt -wOC -etv -cto +evj +bBX +mQL ksX cty cty @@ -49264,9 +49270,9 @@ phA aOg mCF ksX -cto -cto -bng +mQL +mQL +mYb ksX mCF mCF @@ -49292,69 +49298,69 @@ wUU "} (101,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +kLx +arf dXg -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -lTR -eDY -tNy -ctE +arf +arf +arf +arf +arf +arf +kLx +arf +arf +kLx +sqh +vWq +qqz gYh oKi -opd +xoB iEe diK rHE -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR +kxI +sqh +vWq +kxI +kLx +kLx +kLx eGX hKK fLY -lTR -lTR -lTR -lTR -lTR +kLx +kLx +kLx +kLx +kLx scL oGv hXR oGv lnO -lTR -lTR -lTR -nFD -aTY +kLx +kLx +kLx +dbi +wEp scL oGv cwE bgE -jEZ -cjf -pyk -vEM +noT +gmX +mMB +jWC bgE pGs pGs @@ -49365,42 +49371,42 @@ iSW uXR pGs pGJ -gnx -hvO -bih -mux -pot -kmb -mvI -mvI -mvI -wVE -mvI -mvI -pot -fJb -mvI -wVE -mvI -mvI -mvI -uLY -pGS -pGS -ihn -uLY -mJh -pGS -uLY -mvI -mvI -mvI -mvI -mvI -wmC -aED -pie -guE +ftJ +ckS +wad +utD +tuH +ozF +ipY +ipY +ipY +xIR +ipY +ipY +tuH +mHg +ipY +xIR +ipY +ipY +ipY +vin +iUU +iUU +prB +vin +qUY +iUU +vin +ipY +ipY +ipY +ipY +ipY +oie +sun +avo +dhG qus scD gFx @@ -49408,30 +49414,30 @@ aFg umT gFx dDu -xGp +eTo gFx vZm pUW quR lPk -jNW -rMN -mvI -mvI -wmC -mvI -uLY +bRK +ofT +ipY +ipY +oie +ipY +vin pKs -iTF -tEJ -tEJ -tEJ -tEJ -tEJ -gbG +pdD +gFo +gFo +gFo +gFo +gFo +gHI upL -cto -etv +mQL +bBX xxk ksX cty @@ -49446,9 +49452,9 @@ aOg aOg mCF cqZ -cto -cto -cto +mQL +mQL +mQL xEG mCF aOg @@ -49474,61 +49480,61 @@ wUU "} (102,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +kCI +arf dXg -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -ctE +arf +kLx +arf +arf +arf +arf +arf +arf +kLx +arf +sqh +vWq +qqz gYh dlh ncn lXv sFc rHE -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -cpF -lTR -lTR +kxI +sqh +vWq +kxI +kLx +kLx +kLx +kLx +kLx +kLx +kLx +kLx +twC +kLx +kLx scL oGv -xzc +cxt oGv lnO -daS -lTR -lTR -lTR -lTR +kCI +kLx +kLx +kLx +kLx scL oGv foQ @@ -49547,42 +49553,42 @@ pGs pGs pGs pGJ -xWY -hvO -bih -hvO -tEJ -rtV -tEJ -tEJ -tEJ -uXw -tEJ -tEJ -tEJ -rwV -tEJ -uXw -tEJ -tEJ -hgB -tEJ -aLn -tEJ -uXw -tEJ -azv -tEJ -tEJ -qDt -xAO -tvv -tEJ -tEJ -tEJ -oMl -oKx -bGy +iQm +ckS +wad +ckS +gFo +jko +gFo +gFo +gFo +fuf +gFo +gFo +gFo +rYs +gFo +fuf +gFo +gFo +sKI +gFo +sBi +gFo +fuf +gFo +cHT +gFo +gFo +vTn +tTS +xhQ +gFo +gFo +gFo +uiY +pGW +tSB tak pJs umT @@ -49595,26 +49601,26 @@ umT kTs lRz umT -lIT -qeK -bGy -aLn -tEJ -tEJ -tEJ -rMN -etf -rMN -tEJ -tEJ -tEJ -hgB -tEJ -gbG +cYk +gBa +tSB +sBi +gFo +gFo +gFo +ofT +xjt +ofT +gFo +gFo +gFo +sKI +gFo +gHI upL -fky -etv -cto +rwi +bBX +mQL ksX cty cty @@ -49628,9 +49634,9 @@ aOg mCF hoC cqZ -cto -cto -cto +mQL +mQL +mQL iDn aOg aOg @@ -49656,70 +49662,70 @@ wUU "} (103,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +bog +arf +arf +arf dXg -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -ctE +arf +arf +arf +kLx +arf +arf +arf +arf +arf +sqh +vWq +qqz rHE -psk +atn gyE anA uqU ipi -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -uoh -lTR +kxI +sqh +vWq +kxI +kLx +kLx +kLx +kLx +kLx +kLx +eSj +kLx stl -cpF +twC gVO uTu -rKM +vqe oGv oGv lnO -aTY -lTR -lTR -lTR -lTR +wEp +kLx +kLx +kLx +kLx scL oGv rMb oGv oGv -vss -vss +rsA +rsA gJy -dOS +egW pGs pGs pGs @@ -49729,42 +49735,42 @@ pGs pGs pGs pGJ -fQr -hvO -pXp -oZw -oGc -ngm -oGc -oGc -oGc -eAJ -oGc -oGc -oGc -lEc -cit -eAJ -oGc -oGc -eAJ -oGc -buB -oGc -eAJ -oGc -oGc -oGc -oGc -kyr -eVU -sOj -oGc -oGc -oGc -bNi -lEc -tSg +lJr +ckS +fpd +qzx +kyk +uxA +kyk +kyk +kyk +xKZ +kyk +kyk +kyk +lfk +osQ +xKZ +kyk +kyk +xKZ +kyk +ucq +kyk +xKZ +kyk +kyk +kyk +kyk +mRu +njk +vFC +kyk +kyk +kyk +kjd +lfk +tix hNb fjC hNb @@ -49777,26 +49783,26 @@ hNb rBa hNb mgq -jfD -uQJ -tSg -oGc -oGc -oGc -oGc -cug -cug -cug -oGc -oGc -oGc -ezW -tEJ -gbG +rtg +tIi +tix +kyk +kyk +kyk +kyk +mXw +mXw +mXw +kyk +kyk +kyk +qTp +gFo +gHI upL -cto -etv -cto +mQL +bBX +mQL ksX ksX ksX @@ -49810,9 +49816,9 @@ mCF mCF mCF cqZ -cto -cto -cto +mQL +mQL +mQL iDn aOg aOg @@ -49838,50 +49844,50 @@ wUU "} (104,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -bLl +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +kLx +arf +sqh +vWq +cnm rHE rjM gLw hso -ijO +xtk rHE -wJl -mEy -tNy -oLZ -lTR -uoh -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR +bVz +fSU +vWq +kxI +kLx +eSj +kLx +kLx +kLx +kLx +kLx +kLx +kLx +kLx scL oGv oGv @@ -49890,16 +49896,16 @@ oGv pfd jaF oAC -lTR -lTR -lTR +kLx +kLx +kLx eGX hKK sRs oGv -kin -vss -vss +otT +rsA +rsA oGv hXR pGs @@ -49911,42 +49917,42 @@ pGs pGs pGs pGJ -arg -oMs -qPs -lzu -rBP -afx -rBP -rBP -rBP -rBP -rBP -gvE -rBP -qQN -fjU -rBP -rBP -rBP -gvE -uLY -rBP -rBP -pqC -rBP -rBP -dYy -rMN -pGi -poU -dYy -hUx -hUx -hUx -cNF -oBQ -frQ +nXf +sIL +xiy +cAB +xQf +fLE +xQf +xQf +xQf +xQf +xQf +shf +xQf +xni +oJl +xQf +xQf +xQf +shf +vin +xQf +xQf +mWH +xQf +xQf +hai +ofT +qrN +tdD +hai +rNZ +rNZ +rNZ +fzi +xGE +ofc gFx vZm skY @@ -49959,30 +49965,30 @@ lFA wba nNz gFx -mXV -lMv -oDz -gFt -rBP -gvE -rBP -uLY +dII +ybi +rHx +hcw +xQf +shf +xQf +vin pKs -uLY -uLY -uLY -uLY -iKa -xAO -gmT +vin +vin +vin +vin +hhD +tTS +jzo upL -cto -etv +mQL +bBX xxk ksX -cFe -cFe -cFe +vLT +vLT +vLT ksX iFb iFb @@ -49991,10 +49997,10 @@ mCF mCF mCF mCF -cba -cto -cto -cto +nGj +mQL +mQL +mQL ksX aOg aBK @@ -50020,68 +50026,68 @@ wUU "} (105,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR -eDY -vss -vss +spB +sZA +sZA +sZA +sZA +sZA +sZA +fQP +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +kLx +kLx +sqh +rsA +rsA gLw sKF aSt gLw pNk aSt -vss -vss -tNy -oLZ -lTR -lTR -lTR -lTR -daS -lTR -lTR -lTR -lTR -lTR +rsA +rsA +vWq +kxI +kLx +kLx +kLx +kLx +kCI +kLx +kLx +kLx +kLx +kLx scL oGv hXR oGv -tmC +rbb oGv oGv lnO -lTR -lTR -daS -lTR -lTR +kLx +kLx +kCI +kLx +kLx scL hXR oGv -vss -gMi +rsA +cjc oGv oGv pGs @@ -50093,22 +50099,22 @@ pGs pGs pGs juW -wUj -bLN -viP -wUj +bAq +tnm +mRN +bAq juW nTG nTG nTG lNb -vqd +wxV lNb nTG nTG nTG pNf -vqd +wxV lNb nTG nTG @@ -50119,15 +50125,15 @@ wVf sPs wVf wVf -qUf -uIH -jQg +aye +kBD +gdu wVf -qhZ +wHC wVf -qhZ +wHC wVf -qhZ +wHC wVf wjV abE @@ -50153,30 +50159,30 @@ pYn kgw kgw pYn -uLY -pEE -tEJ -buH +vin +nns +gFo +hFe aFt -cto +mQL toU -cto -cto -qYE -cto -cto -cto -ghs +mQL +mQL +ddF +mQL +mQL +mQL +dIx iFb cty cty mCF jdm mCF -cba +nGj xxk xxk -cto +mQL ksX mCF aOg @@ -50202,70 +50208,70 @@ wUU "} (106,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -daS -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +kCI +arf +kLx +arf +arf +arf +arf +arf +kLx dXg dXg -qwQ -eDY -vss -czA +arf +sqh +rsA +voY gLw dXr -qyW +dOO idr gLw gLw -czA -vss -tNy -wJl -rlI -rlI -rlI -rlI -lTR -rlI -lTR -lTR -lTR -lTR +voY +rsA +vWq +bVz +iPg +iPg +iPg +iPg +kLx +iPg +kLx +kLx +kLx +kLx scL oGv oGv ibs -lQW +pta gux -kGD +jNd kgm -mQG -lTR -lTR -aTY -lTR +smc +kLx +kLx +wEp +kLx scL oGv nee -vss -gMi +rsA +cjc oGv -qFe +uJG oGv pGs pGs @@ -50275,23 +50281,23 @@ pGs pGs pGs juW -faP -ftF -bEX -pnL +eUi +cgq +naE +rrZ juW -gDh -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -gDh -uEc -viK -gAV -xJZ +lZF +uQq +uQq +uQq +uQq +uQq +uQq +lZF +kQV +nhS +mwZ +uQq wqb kBZ hPj @@ -50301,54 +50307,54 @@ qyk jBw hlK wVf -gwG -pJn -krP +kBd +gGa +iMY wVf -kof -cHf -phd -cHf -qDw +uHh +fmv +klo +fmv +aAN wVf -pBS -viK -xJZ -yeF +lqc +nhS +uQq +afS cdb cdb wjV cdb cdb -kqE +aTn cdb -rRq -usB +auA +lHj pYn -qTz -bjP -bjP -sre -bjP +ihd +gec +gec +edQ +gec pYn iIt xFE cBq pYn -tVl -fPn -aBB -tuL +iOu +bet +aPN +hgW mzt -mUP -chE -mUP -mUP -mUP -uVy -mUP -qWw -cto +qpI +rhG +qpI +qpI +qpI +mno +qpI +eTM +mQL iFb cty cty @@ -50356,9 +50362,9 @@ hoC mCF jdm ksX -cto -cto -cto +mQL +mQL +mQL xxk mCF aOg @@ -50384,68 +50390,68 @@ wUU "} (107,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +fQP +arf +kLx +arf +arf +arf +arf +arf +arf +kLx dXg -lTR +kLx dXg -qwQ -eDY -tNy -aJD +arf +sqh +vWq +vwR eQm jFt qCE abu -tnD +nPo hFM -qLf -eha -vss -vss -vss -vss -vss -vss +pLS +deu +rsA +rsA +rsA +rsA +rsA +rsA stl -lTR -lTR -lTR -lTR -cpF +kLx +kLx +kLx +kLx +twC eGX sRs lsN hXR ibs eFB -kGD +jNd mnz -lTR -lTR -lTR +kLx +kLx +kLx gVO jaF uTu oGv oGv -vss -vss +rsA +rsA oGv oGv oGv @@ -50457,23 +50463,23 @@ juW juW juW juW -xzr -eFJ -trh -qdk -wUj -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -viK -gAV -xJZ +lCv +gKc +uKM +wuL +bAq +uQq +uQq +uQq +uQq +uQq +uQq +uQq +uQq +uQq +nhS +mwZ +uQq wqb kBZ hPj @@ -50481,56 +50487,56 @@ wVf xLE ioc vqY -oaR +qJY sPs -gwG -pJn -krP -qhZ -gwG -xOo -xOo -xOo -nHA -qhZ -uqw -viK -xJZ -xJZ -xJZ -ccU -sCA -aKk -xJZ -xJZ +kBd +gGa +iMY +wHC +kBd +wEB +wEB +wEB +oAB +wHC +lel +nhS +uQq +uQq +uQq +xKt +saD +jBQ +uQq +uQq cdb -wMn -viK +dKs +nhS lhJ -wot -jvh -jvh -jvh -wot +rCd +nwu +nwu +nwu +rCd pYn wkq wCE sMn rrp -uLY -sJZ -tEJ -uLY +vin +dOr +gFo +vin aFt -xZv -mPT -cto -cto -cto -cto -cto +kiF +vqQ +mQL +mQL +mQL +mQL +mQL toU -cto +mQL cty cty cty @@ -50539,8 +50545,8 @@ mCF mCF glp xxk -cto -cto +mQL +mQL rgg mCF mCF @@ -50566,96 +50572,96 @@ wUU "} (108,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS -lTR -qwQ -qwQ -qwQ -lTR -qwQ -lTR -qwQ -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +kCI +kLx +arf +arf +arf +kLx +arf +kLx +arf +kLx dXg -lTR -qwQ -eDY -tNy -ctE +kLx +arf +sqh +vWq +qqz hFM fQh gLw oMg mhf eQm -oLZ -eDY -tNy -qLf -bJV -bJV -bJV -lTR -bJV -lTR -lTR -lTR -cpF -lTR -lTR +kxI +sqh +vWq +pLS +ngA +ngA +ngA +kLx +ngA +kLx +kLx +kLx +twC +kLx +kLx scL oGv -vss +rsA oGv hwL -pun +wsz oTE -coQ -lTR -lTR +fGm +kLx +kLx scL lsN oGv -dOS +egW nee -vss -gMi +rsA +cjc oGv hXR oGv hXR pGs juW -wGs -oVm -fLZ -esB +llt +pKm +jhs +dzJ juW -xzr -hus -wuR -rVS -kSN -lVc -lVc -lVc -lVc -lVc -uTq -lVc -lVc -lVc -qRP -xJZ -xJZ +lCv +xkJ +cKJ +wLW +hRi +gkn +gkn +gkn +gkn +gkn +rpD +gkn +gkn +gkn +xgi +uQq +uQq wqb kBZ wVf @@ -50665,44 +50671,44 @@ jQB psb idw sPs -gwG -pJn -krP +kBd +gGa +iMY wVf -vyX -dpO -xOo -iIL -qDs +uxu +igc +wEB +wUW +spl wVf -qvO -viK -xJZ -xJZ -xJZ -xJZ -jew -iXR -xJZ -xJZ -cYB -gDh -viK +vNm +nhS +uQq +uQq +uQq +uQq +hNH +rrg +uQq +uQq +tqZ +lZF +nhS kgw -nXB -jvh -mPf -qdd -dhp +tvK +nwu +dFy +mNs +wVb pYn wic pqj ydI uMu -uLY -pEE -tEJ -uLY +vin +nns +gFo +vin bkM pKs bkM @@ -50710,8 +50716,8 @@ bkM bkM pKs bkM -cto -etv +mQL +bBX xxk cty cty @@ -50720,9 +50726,9 @@ cty mCF mCF iDn -cto -cto -cto +mQL +mQL +mQL ksX hoC mCF @@ -50748,96 +50754,96 @@ wUU "} (109,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -qwQ -qwQ -qwQ -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +bog +arf +kLx +arf +arf +arf +kLx dXg -lTR -lTR -qwQ -lTR -lTR -qwQ -eDY -tNy -ctE +kLx +kLx +arf +kLx +kLx +arf +sqh +vWq +qqz gYh xuJ fgW npF trB gYh -eBm -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR +iyt +sqh +vWq +kxI +kLx +kLx +kLx +kLx +kLx +kLx +kLx +kLx +kLx +kLx +kLx scL oGv -vss -vss +rsA +rsA oGv oGv ecX -lTR -lTR -lTR +kLx +kLx +kLx scL oGv oGv oGv hXR -vss -gMi +rsA +cjc oGv oGv oGv eCg ltB szp -qdk -eFJ -cgj -iPH +wuL +gKc +ufx +kGa szp -xzr -eFJ -trh -qdk -wUj -gtz -sKu -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -mvA -xJZ -xJZ +lCv +gKc +uKM +wuL +bAq +jAZ +lJR +uQq +uQq +uQq +uQq +uQq +uQq +uQq +wfo +uQq +uQq wqb kBZ wVf @@ -50847,54 +50853,54 @@ idw eRD gyX eTb -mnc -xMq -krP +hqs +wFn +iMY wVf wVf xvF -aiR -qhZ +qfw +wHC wVf wVf -okI -lab -lVc -lVc -lVc -jfw -okJ -gjz -lVc -iFZ -xJZ -xJZ -viK +iDI +oip +gkn +gkn +gkn +gln +eLm +lbz +gkn +sAU +uQq +uQq +nhS pYn -diQ -hhW -tKI -doO -bBo +xav +wKt +pgF +aUp +cjv bMf rPD bTA iOQ qOF -orT -iKa -tvv -uLY +wQD +hhD +xhQ +vin pKs -hrI -pXG +sgs +oOb bkM -vAR -iDS +xDz +iEZ bkM -cto -etv -cto +mQL +bBX +mQL cty cty cty @@ -50902,9 +50908,9 @@ cty cty mCF iDn -cto -cto -qEG +mQL +mQL +ayz ksX cty hoC @@ -50930,96 +50936,96 @@ wUU "} (110,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +jWM +kLx +arf +arf +arf +arf +kLx +arf +arf +arf +arf dXg -qwQ -eDY -tNy -ctE +arf +sqh +vWq +qqz hFM aSt xQJ -uVR +mDz saQ hFM -oLZ -eDY -tNy -oLZ +kxI +sqh +vWq +kxI dXg dXg -lTR -uoh -lTR -lTR -lTR -lTR -lTR -lTR -lTR +kLx +eSj +kLx +kLx +kLx +kLx +kLx +kLx +kLx scL oGv -vss -vss +rsA +rsA jSX hKK wDi -coQ -lTR -daS +fGm +kLx +kCI scL oGv -rKM +vqe hXR oGv -vss -vss +rsA +rsA hmR oGv oGv oGv oDU szp -ekg -noC -ktN -qSj -nGE -qSj -ktN -che -qdk +gtk +mzP +hrQ +qYe +bwh +qYe +hrQ +wYf +wuL juW wqb -crC -xJZ +cru +uQq ryD -xJZ +uQq ryD joV wqb wqb -viK -xJZ -tBm +nhS +uQq +qmE wqb kBZ wVf @@ -51029,29 +51035,29 @@ idw idw idw wVf -tCM -xMq -fqY +wEl +wFn +uuX wVf -qPk -uFJ -xOo -uFJ -eMD +nig +pUc +wEB +pUc +eFV wVf wVf wVf -qhZ +wHC wVf -qhZ +wHC wVf -vOr -qhZ +wNZ +wHC wVf -viK -xJZ -xJZ -viK +nhS +uQq +uQq +nhS pYn pYn kgw @@ -51063,20 +51069,20 @@ htU pqj ydI pYn -jDW -uVY -sIU -uLY +eUL +qhm +cLm +vin vke -iad -fkj +bnt +ofS pKs -tXF -uhD +jMi +jOt bkM -rmr -etv -cto +tZA +bBX +mQL iFb cty cty @@ -51084,9 +51090,9 @@ cty cty cty cqZ -ghs +dIx xxk -cto +mQL ksX cty cty @@ -51112,96 +51118,96 @@ wUU "} (111,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -qwQ -lTR -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -ctE +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +kLx +arf +kLx +arf +kLx +arf +arf +arf +arf +arf +kLx +arf +sqh +vWq +qqz gYh hFM gYh gYh hFM gYh -uKY -eDY -tNy -oLZ +ruh +sqh +vWq +kxI dXg -lTR -nFD -lTR -lTR -lTR +kLx +dbi +kLx +kLx +kLx dXg -eDY -vss -caD -lTR +sqh +rsA +fAH +kLx scL oGv -dOS +egW oGv pfd qgm -lTR -lTR -lTR -lTR +kLx +kLx +kLx +kLx scL hXR oGv -vss -inN -abK -abK -inN -inN -inN -inN -inN -tmm -qdk -eFJ -eFJ -xzr +rsA +oMo +rcY +rcY +oMo +oMo +oMo +oMo +oMo +xMT +wuL +gKc +gKc +lCv szp -xzr -eFJ -trh -qdk +lCv +gKc +uKM +wuL juW kBZ kBZ joV keY -xJZ +uQq ryD ryD ryD ryD -viK -xJZ -wXu +nhS +uQq +qEm wqb kBZ wVf @@ -51211,54 +51217,54 @@ vPi pBo wVf wVf -hXv -pJn -krP -qhZ -gwG -xOo -cvX -xOo -nHA +plO +gGa +iMY +wHC +kBd +wEB +rGW +wEB +oAB kMf -fjx -xhs -abl +hrJ +vxe +wRA wVf -liE -jZw -xMq -vnU -qhZ -viK -xJZ -mdj -icJ -cYB -eoq -xJZ -uEc -xJZ -iGM +uAh +rui +wFn +rTf +wHC +nhS +uQq +jRf +oue +tqZ +gjL +uQq +kQV +uQq +mju pYn jjl nkF xGJ ddz -tuL -xNb -mzf -hfo +hgW +ubf +qGb +jje veW -oam -nCE +aWG +jFZ wWx -vqw -hNc +pYB +kUE bkM -cto -etv -cto +mQL +bBX +mQL iFb cty cty @@ -51266,9 +51272,9 @@ cty cty cty ksX -cto -bdc -cto +mQL +uZO +mQL ksX cty cty @@ -51294,54 +51300,54 @@ wUU "} (112,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -lTR -qwQ -lTR -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +kLx +kLx +arf +kLx +kLx dXg -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -lmS -bJV -bJV -bJV -qmF -bJV -bJV -nHH -eDY -tNy -oLZ -lTR -lTR -lTR -lTR +arf +arf +arf +arf +arf +arf +arf +sqh +vWq +mJq +ngA +ngA +ngA +kjA +ngA +ngA +ciQ +sqh +vWq +kxI +kLx +kLx +kLx +kLx dXg -lTR +kLx dXg -lTR -tNy -caD +kLx +vWq +fAH gVO uTu rfV -vss +rsA oGv oGv pfd @@ -51352,36 +51358,36 @@ jaF uTu oGv nee -vss +rsA oGv rMb oGv oGv -rKM +vqe oGv oGv rkH szp -ekg -eFJ -eFJ -xzr +gtk +gKc +gKc +lCv szp -xzr -eFJ -trh -qdk +lCv +gKc +uKM +wuL juW kBZ kBZ kBZ -xJZ -quP +uQq +xnX ryD fbr ryD ryD -viK +nhS sHO ryD wqb @@ -51393,53 +51399,53 @@ wVf wVf wVf wVf -hJl -pJn -krP -qhZ -gwG -wOS -wrv -cNh -eOu +ktf +gGa +iMY +wHC +kBd +iJX +iUY +amJ +aQk kMf -apI -uoO -mnc -jJX -mnc -mnc -xMq -agJ -qhZ -lab -lVc -lVc -pfr -pbw -lVc -lVc -qjg -lVc -iFZ -pIj +qad +ppY +hqs +cAQ +hqs +hqs +wFn +bOx +wHC +oip +gkn +gkn +ltG +rGP +gkn +gkn +rSj +gkn +sAU +pQv pYn pYn pYn pYn -kus -gHH -uLY -uLY +cEp +mbK +vin +vin pKs -prY -fkj +gRI +ofS pKs -tXF -rBi +jMi +xnP pKs -cto -etv +mQL +bBX xxk owM iFb @@ -51448,8 +51454,8 @@ iFb iFb iFb ksX -cto -cto +mQL +mQL xxk ksX ksX @@ -51476,39 +51482,39 @@ wUU "} (113,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +fQP +arf +kLx +arf +arf dXg dXg -lTR -lTR -qwQ -lTR -lTR -lTR -qwQ -eDY -tNy -wJl -rlI -rlI -rlI -rlI -rlI -rlI -rlI -mEy -tNy +kLx +kLx +arf +kLx +kLx +kLx +arf +sqh +vWq +bVz +iPg +iPg +iPg +iPg +iPg +iPg +iPg +fSU +vWq dyo jaF jaF @@ -51517,9 +51523,9 @@ jaF qgm dXg dXg -lTR +kLx stl -cpF +twC scL oGv oGv @@ -51530,12 +51536,12 @@ oGv oGv oGv oGv -tmC +rbb oGv oGv -fxK -vss -vss +nqI +rsA +rsA dXg eCg iZP @@ -51544,27 +51550,27 @@ tXv tXv oGv szp -sYi -gXO -aZX -dCE +gDp +vet +aqo +xQE juW -sic -ftF -bEX -pnL +cBp +cgq +naE +rrZ juW kBZ kBZ kBZ -xJZ -xJZ +uQq +uQq ryD ryD ryD ryD -viK -xJZ +nhS +uQq ryD ryD kBZ @@ -51575,36 +51581,36 @@ vco pja idw wVf -jhe -pJn -krP -qhZ -gwG -xOo -eqB -xOo -nHA +qYk +gGa +iMY +wHC +kBd +wEB +bxX +wEB +oAB kMf -eOZ -hzm -uiy +axj +oPT +upc wVf -qhZ +wHC wVf -bdJ +dRE wVf wVf -gfj -fEA -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -vlw -viK -wXu +jnx +pvp +uQq +uQq +uQq +uQq +uQq +uQq +enL +nhS +qEm vHs vHs vHs @@ -51614,32 +51620,32 @@ vHs vHs bkM bkM -cEu -fkj +tfn +ofS bkM ncX bkM bkM -xag -etv -cto -iaM -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -wXC -cto -cto -cto +gWz +bBX +mQL +twS +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL +mQL +bAU +mQL +mQL +mQL xxk xEG mCF @@ -51658,55 +51664,55 @@ wUU "} (114,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -daS -qwQ -qwQ -lTR -lTR -qwQ -qwQ -lTR -qwQ -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +kCI +arf +arf +kLx +kLx +arf +arf +kLx +arf +kLx dXg -qwQ -eDY -vss -vss -vss -vss -vss -vss -vss -vss -vss -vss -tNy +arf +sqh +rsA +rsA +rsA +rsA +rsA +rsA +rsA +rsA +rsA +rsA +vWq hNq oGv oGv oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +kLx +kLx +kLx +kLx +kLx pgg oGv oGv rMb -vss +rsA oGv hXR oGv @@ -51715,9 +51721,9 @@ oGv nwq iaH kAN -nRU -nRU -nRU +sOR +sOR +sOR rQU ihY cCk @@ -51729,12 +51735,12 @@ wOO wOO wOO wOO -wkt +fqm wOO -nUf -cbq -hHE -nUf +hSr +tJG +jvV +hSr wOO wOO wOO @@ -51745,8 +51751,8 @@ ryD ryD ryD ryD -lDm -xJZ +uKW +uQq joV ryD kBZ @@ -51757,36 +51763,36 @@ rTu hkZ xRx sPs -xsi -pJn -krP +yiT +gGa +iMY wVf -vtR -hzm -xOo -hzm -vEa +gKp +oPT +wEB +oPT +kox wVf wVf wVf -qhZ +wHC wVf -ezZ -lyp -pJn -pBb +wbs +uDS +gGa +dRA wVf -qhZ +wHC wVf -qhZ +wHC wVf wVf wVf wVf wVf -xJZ -viK -xJZ +uQq +nhS +uQq vHs eBs xcf @@ -51794,34 +51800,34 @@ xcf xcf cGV vHs -gaw -rBP -sJF -aWP -rBP -rBP -lZb +wBw +xQf +tdH +ngo +xQf +xQf +xnq wMj -cto -etv -vTe -iaM +mQL +bBX +pYS +twS mxB -cto -cto +mQL +mQL xxk wNz xxk -cto -cto -cto -cto -cto +mQL +mQL +mQL +mQL +mQL xxk xxk xxk -cto -cto +mQL +mQL xxk iDn mCF @@ -51840,66 +51846,66 @@ wUU "} (115,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -qwQ -qwQ -lTR -qwQ -qwQ -lTR -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +kLx +arf +arf +kLx +arf +arf +kLx +arf dXg dXg -lTR -qwQ -eDY -tNy -qLf -bJV -bJV -bJV -bJV -bJV -bJV -bJV -eha -tNy +kLx +arf +sqh +vWq +pLS +ngA +ngA +ngA +ngA +ngA +ngA +ngA +deu +vWq hNq hXR oGv oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +kLx +kLx +kLx +kLx +kLx scL oGv -tmC -vss +rbb +rsA oGv oGv oGv -rKM +vqe oGv hXR ihY oDB cFw -dwN -jks -jks +kPV +lvd +lvd epN cFw cFw @@ -51910,16 +51916,16 @@ pGs pGs pGs wOO -gXN -sPY -sPY -qId -iVt -pZl -qId -cud -kOS -dWl +wLc +tgb +tgb +qJr +ljy +uTm +qJr +jQq +dXT +aRZ wOO kBZ kBZ @@ -51927,8 +51933,8 @@ kBZ ryD kBZ wqb -smE -xJZ +rkl +uQq ryD jeW joV @@ -51939,36 +51945,36 @@ iYE dos idw wVf -ivX -pJn -krP +woV +gGa +iMY wVf wVf -qhZ -qto -qhZ +wHC +vLg +wHC wVf wVf -xdJ -aGX -eHB +sLX +rIo +aQv wVf -unh -ydQ -eKw -mnc -ilZ -mnc -bCA -fVt +ttq +iVG +tbJ +hqs +ism +hqs +qjs +tJA wVf -ixh -xKL -baH +frv +wVJ +oQO wVf -xJZ -viK -xJZ +uQq +nhS +uQq vHs imz mwD @@ -51976,35 +51982,35 @@ ezb wWd ggk vHs -xlb -xAO -uVY -tEJ -tEJ -tEJ -twm +tVe +tTS +qhm +gFo +gFo +gFo +rlU lNb -cto -etv -vTe -dfP -cto -wXC -cto -cto +mQL +bBX +pYS +jqn +mQL +bAU +mQL +mQL xxk xxk -cto -cto -gLo +mQL +mQL +dFc xxk -cto -cto -fLu -cto -cto -cto -cto +mQL +mQL +jnL +mQL +mQL +mQL +mQL ksX hoC mCF @@ -52022,54 +52028,54 @@ wUU "} (116,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -lTR -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -eDY -tNy -oLZ -lTR -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +fQP +arf +kLx +kLx +arf +kLx +arf +arf +arf +arf +kLx +arf +arf +arf +sqh +vWq +kxI +kLx +arf dXg -qwQ -qwQ -lTR +arf +arf +kLx dXg -eDY -tNy +sqh +vWq hNq oGv oGv hXR lsN lnO -lTR -daS -lTR -lTR -lTR +kLx +kCI +kLx +kLx +kLx scL oGv oGv -vss +rsA gJy hXR oGv @@ -52080,9 +52086,9 @@ ihY cFw cel fSa -jks -coX -mUz +lvd +bRV +rAE cFw cFw qtv @@ -52092,16 +52098,16 @@ pGs pGs pGs wOO -faX -kCA -kCA -cbq -kCA -mZI -adR -vmc -wYF -rsB +eWr +nBp +nBp +tJG +nBp +fIb +pPn +eFZ +kCt +rGs wOO kBZ kBZ @@ -52109,8 +52115,8 @@ kBZ kBZ kBZ wqb -viK -xJZ +nhS +uQq ryD ryD ryD @@ -52121,53 +52127,53 @@ iHh eRD jSN ylX -mnc -xMq -oVr -uFJ -uFJ -uFJ -xOo -uFJ -rsL -uFJ -kMN -ppw -irj -rsL -diW -pJn -xOo -rwh +hqs +wFn +eFN +pUc +pUc +pUc +wEB +pUc +wKl +pUc +gwm +nok +oMB +wKl +hqZ +gGa +wEB +bsk wVf -vLU -pJn -xOo -wku -cKC -xOo -jcC +lsP +gGa +wEB +jSY +vqJ +wEB +juR wVf -xJZ -viK -oef -fEz +uQq +nhS +qYV +xmx fpY eQC kWB kWB fpY -gOe -rQk -tEJ -uXw -tEJ -tEJ -tEJ -lHH +dOu +khW +gFo +fuf +gFo +gFo +gFo +oES bkM mdN -bnB +eSe mdN eEd ksX @@ -52186,7 +52192,7 @@ iDn iDn xxk xxk -cto +mQL ksX hoC mCF @@ -52204,66 +52210,66 @@ wUU "} (117,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -lTR -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -qwQ -lTR +spB +sZA +sZA +sZA +sZA +sZA +sZA +bog +arf +kLx +kLx +arf +arf +kLx +arf +arf +arf +arf +arf +arf +kLx +sqh +vWq +kxI +arf +kLx dXg dXg -qwQ -qwQ +arf +arf dXg -eDY -tNy +sqh +vWq hNq oGv upH oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +kLx +kLx +kLx +kLx +kLx scL upH oGv hXR -vss +rsA oGv oGv jju ihY ihY -hQl +xKY vyp cFw -jks -jks -jks +lvd +lvd +lvd cFw cFw cFw @@ -52274,25 +52280,25 @@ pGs pGs pGs wOO -dwP -kCA -tlT -cbq -tlT -ljx -cbq -tlT -loh -rsB -poE -tlT -hlp +tyZ +nBp +jpU +tJG +jpU +mmw +tJG +jpU +hnJ +rGs +dMl +jpU +eHX kBZ kBZ kBZ wqb -viK -xJZ +nhS +uQq ryD ryD ryD @@ -52303,54 +52309,54 @@ lZU vqY tiw sPs -oXp -jVK -uUS -yeY -yeY -fER -yeY -yeY -haX -yeY -haX -cdy -jjE -haX -vvS -rKy -xOo -hoG -qhZ -vLU -eye -xOo -wku -xOo -qEa -iqW +rqp +neN +mod +oCF +oCF +iZs +oCF +oCF +cCK +oCF +cCK +lXM +nhV +cCK +xhz +ccg +wEB +bNK +wHC +lsP +bqT +wEB +jSY +wEB +hzY +wSV wVf -xJZ -viK -oef -jgY +uQq +nhS +qYV +qMC kWB kWB mXi rmf kWB -ltA -jpM -tEJ -mQC -aBB -jjg -tEJ -rtu +wOE +suH +gFo +mkq +aPN +spf +gFo +goP bkM -iaM -hbi -iaM +twS +rEy +twS eEd cty cty @@ -52368,7 +52374,7 @@ mCF iDn xxk xxk -ghs +dIx ksX cty mCF @@ -52386,56 +52392,56 @@ wUU "} (118,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -qwQ -lTR -qwQ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +jWM +arf +kLx +arf +arf +kLx +kLx +arf +arf +arf +arf +arf +arf +sqh +vWq mIU jaF jaF jaF jaF qgm -vEg -qwQ -eDY -tNy +cQv +arf +sqh +vWq jdu hXR oGv oGv hXR lnO -lTR -lTR -lTR +kLx +kLx +kLx stl -lTR +kLx scL oGv oGv -jks -gkG -nRU +lvd +uaR +sOR jjj vuQ ihY @@ -52445,9 +52451,9 @@ iaT cFw rSl utZ -coX +bRV cFw -dvT +iCt cFw pkj wUF @@ -52456,25 +52462,25 @@ pGs pGs pGs wOO -mNm -kCA -tlT -cbq -dNU -kDd -cbq -aFK -kCA -jaL -poE -tlT -mQh +vvw +nBp +jpU +tJG +hKj +xSz +tJG +naA +nBp +wby +dMl +jpU +ktk kBZ kBZ ryD hcI wXs -xJZ +uQq ryD ryD ryD @@ -52485,9 +52491,9 @@ idw izy hJw wVf -hek -hUp -gfg +oLB +kJo +aNe wVf wVf wVf @@ -52499,40 +52505,40 @@ oyT xvF wVf wVf -mLt -pJn -xOo -oCN -qhZ -vLU -nmQ -ghb +xzU +gGa +wEB +mBR +wHC +lsP +wUs +ybN wVf -gwG -xOo -mAP +kBd +wEB +gDd wVf -xJZ -tYw -oef -jgY +uQq +aZL +qYV +qMC kWB wmt sgp eQC kWB -ltA -jpM -tEJ -uXw -tEJ -tEJ -tEJ -twm +wOE +suH +gFo +fuf +gFo +gFo +gFo +rlU lNb -iaM -gAK -cto +twS +ayh +mQL ksX cty cty @@ -52549,8 +52555,8 @@ mCF mCF ksX mxB -cto -bng +mQL +mYb ksX cty mCF @@ -52568,43 +52574,43 @@ wUU "} (119,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +arf +arf +arf +kLx +kLx +arf +arf +arf +arf +arf +arf +kLx +sqh +vWq igB oGv oGv oGv oGv lnO -lTR -lTR -eDY -tNy +kLx +kLx +sqh +vWq igB oGv oGv -tmC +rbb oGv pfd jaF @@ -52617,7 +52623,7 @@ oGv hXR ihY cFw -kmo +piS cFw epN qkq @@ -52627,10 +52633,10 @@ nwq cFw cFw fWW -jks -jks +lvd +lvd cFw -tkh +fCO cFw nwq cFw @@ -52638,25 +52644,25 @@ pGs pGs pGs wOO -pNJ -kCA -tlT -mYd -oSe -ssg -rKL -tlT -kCA -cil -cuc -tlT -mrT +uKg +nBp +jpU +iGt +tVm +pwF +ezJ +jpU +nBp +oxO +qKL +jpU +hUl kBZ ryD ryD ryD wXs -xJZ +uQq ryD ryD ryD @@ -52667,54 +52673,54 @@ hty wVf wVf wVf -qhZ -jsf -qhZ +wHC +hUq +wHC wVf eyt eyt eyt eyt wVf -ohi -wpi -uFJ -eHB +eUO +dMs +pUc +aQv wVf -dQr -pJn -bPL -tUd +ekG +gGa +oOA +cyi wVf -rmL -qsh -oCy +vbt +eZJ +aFH wVf -cur -syb -gEO +qHG +gCO +bSE wVf -rDD -viK -oef -jgY +vOZ +nhS +qYV +qMC kWB cAx aXA kWB kWB -xyJ -aFX -tEJ -uXw -tEJ -tEJ -tEJ -twm +jJQ +rJW +gFo +fuf +gFo +gFo +gFo +rlU lNb -iaM -etv -cto +twS +bBX +mQL ksX ksX iFb @@ -52729,10 +52735,10 @@ cty mCF mCF mCF -cba +nGj xxk -cto -cto +mQL +mQL ksX xEG iDn @@ -52750,39 +52756,39 @@ wUU "} (120,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -lTR -lTR -lTR -qwQ -qwQ -lTR -eDY -tNy +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +jWM +kLx +arf +arf +arf +arf +kLx +kLx +kLx +kLx +arf +arf +kLx +sqh +vWq igB oGv lsN -tmC +rbb hXR pfd jaF jaF tGw -tNy +vWq igB oGv hXR @@ -52800,7 +52806,7 @@ gfk ihY xnS vyp -jks +lvd cFw cFw cFw @@ -52809,8 +52815,8 @@ cFw cFw gJN wop -jks -rUI +lvd +qRx nwq cFw cFw @@ -52820,25 +52826,25 @@ nwq cFw pGs qnW -bgl -kCA -tlT -mYd -iht -hTd -rKL -tlT -kCA -aIq -tlT -eGL -mrT +aCC +nBp +jpU +iGt +pEQ +hia +ezJ +jpU +nBp +nym +jpU +pqL +hUl kBZ tkF ryD ryD wXs -xJZ +uQq ryD ryD eyt @@ -52849,24 +52855,24 @@ wVf wVf eyt wqb -wXu -viK -xJZ +qEm +nhS +uQq wqb eyt eyt eyt eyt wVf -jtI -xOo -uoO -mnc -kCT -mnc -aQR -shP -gBV +jHR +wEB +ppY +hqs +ePH +hqs +bUu +mBS +kyW wVf xvF wVf @@ -52876,9 +52882,9 @@ wVf wVf wVf wVf -sKu -viK -xJZ +lJR +nhS +uQq vHs imz wDv @@ -52886,18 +52892,18 @@ bSu wdI szh vHs -iad -lIo -xNb -aBB -aBB -wXD -pdr +bnt +hDm +ubf +aPN +aPN +aHE +jHn bkM -kRp -mNO -qWw -cto +tPh +aPk +eTM +mQL xxk iFb hoC @@ -52913,9 +52919,9 @@ aOg mCF ksX xxk -cto -cto -cto +mQL +mQL +mQL xxk xxk ksX @@ -52932,29 +52938,29 @@ wUU "} (121,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf dXg -qwQ -qwQ +arf +arf btU -tNy +vWq igB hXR rMb @@ -52964,63 +52970,63 @@ oGv oGv oGv eoj -tNy +vWq igB oGv oGv oGv -rKM +vqe fkd oGv hXR svt -vss +rsA mmO -dOS +egW oGv dXg ihY xnS -fPq -jks -upb -upb -jks -jks -upb -upb -jks -jks -qTE +rVU +lvd +mAQ +mAQ +lvd +lvd +mAQ +mAQ +lvd +lvd +tUn cFw cFw cFw jsG -jks +lvd cFw cFw nwq nwq oSX -mvO -kCA -tlT -mYd -hbP -iIC -rKL -tlT -kCA -cil -wae -sdZ -hwZ +maC +nBp +jpU +iGt +ilK +dXe +ezJ +jpU +nBp +oxO +uBz +dlZ +hzk kBZ kBZ ryD ryD apj -xJZ +uQq ryD ryD kbQ @@ -53031,36 +53037,36 @@ eyt eyt eyt wqb -xJZ -viK -xJZ +uQq +nhS +uQq wqb eyt eyt eyt eyt wVf -mca -hzm -beM -jai +luH +oPT +iFD +mMF wVf -xWj -pJn -xOo -tKr +nVR +gGa +wEB +mOp wVf -lIb -wGV -eij +hAW +rso +gmL wVf -ieu -qAr -mIG +jEw +xbC +ktF wVf -eFW -viK -xJZ +icz +nhS +uQq vHs dmN iYi @@ -53068,18 +53074,18 @@ iYi iYi rjn vHs -bPm -wVE -ioA -jsO -ciR -wVE -fiA +kha +xIR +iZl +mqH +mAM +xIR +ufN bkM -eQr -iaM -hbi -gMm +cNU +twS +rEy +oyd xxk iFb mCF @@ -53095,11 +53101,11 @@ aOg mCF iDn xxk -sgl -cto -cto -cto -cto +lpK +mQL +mQL +mQL +mQL ksX aOg mCF @@ -53114,39 +53120,39 @@ wUU "} (122,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +spB +sZA +sZA +sZA +sZA +sZA +sZA +fQP +kLx +arf +arf +arf +arf +arf +arf +arf +arf dXg dXg -qwQ -tqV -mEy -tNy +arf +tDm +fSU +vWq jKW hej -dOS +egW oGv oGv -rKM +vqe oGv fZX nOM -tNy +vWq jKW hej rMb @@ -53156,16 +53162,16 @@ oGv oGv oGv svt -tNy +vWq mmO oGv oGv oGv cFw ngY -jks -qVb -jks +lvd +cno +lvd kPZ cFw cFw @@ -53177,23 +53183,23 @@ jJC pFd vuQ cel -jks -jks +lvd +lvd nwq cFw cFw fsC wOO -fFx -kCA -tlT -mYd -imZ -jPe -rKL -tOd -kCA -rpH +kSr +nBp +jpU +iGt +gyK +oSB +ezJ +agD +nBp +ghe wOO wOO wOO @@ -53202,8 +53208,8 @@ wOO oSX wOO jPM -xJZ -xJZ +uQq +uQq ryD lFk kbQ @@ -53213,9 +53219,9 @@ eyt jqw eyt wqb -xJZ -viK -xJZ +uQq +nhS +uQq wqb wqb wqb @@ -53227,22 +53233,22 @@ xvF wVf xvF wVf -umA -mve -xOo -hoG -qhZ -xOo -ppw -xOo +iDe +afO +wEB +bNK +wHC +wEB +nok +wEB wVf -wpM -vpV -nmN +kSF +tTP +wcN wVf -xJZ -viK -xJZ +uQq +nhS +uQq vHs vHs vHs @@ -53260,10 +53266,10 @@ eHl uXS uXS uXS -hbi -cto +rEy +mQL xxk -vhI +gTZ mCF mCF aOg @@ -53278,11 +53284,11 @@ mCF iDn xxk qAS -fYs +kCh dDG -wws -poC -cba +nBO +yeA +nGj aOg aOg aOg @@ -53296,96 +53302,96 @@ wUU "} (123,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -pdK -pdK -pdK -pdK +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +arf +arf +arf +arf +gZV +gZV +gZV +gZV kgp -pdK -pdK -gVP -aQN -jzB -aQN +gZV +gZV +cyx +lmj +gfy +lmj geK -qNu +sTQ wlB wlB wlB -ghW +iLh mnU -aQN -jzB -aQN +lmj +gfy +lmj geK wlB wlB lTg -ghW +iLh wlB mnU -suY -aQN -hMg +fek +lmj +suZ lTg wlB wlB -res -res -kZe -lrR -jks +wtA +wtA +rtp +tch +lvd qKM -mUz +rAE cFw cFw ihY cFw -ewv -jks +gSg +lvd nwq gwD cFw -jks -jks +lvd +lvd cFw cFw cFw nwq oSX -vQL -kCA -tlT -mYd -wRi -leO -rKL -mSf -kCA -rsB +mkF +nBp +jpU +iGt +fnA +eRK +ezJ +fTV +nBp +rGs wOO -thp -thp -eGd -pkT -pAZ +bDk +bDk +aNV +rTs +afI wOO -rWY -xJZ -xJZ +gqs +uQq +uQq ryD kbQ kbQ @@ -53395,57 +53401,57 @@ jqw kbQ eyt wqb -rDD -wng -lVc -lVc -lVc -lVc -lVc -elO -lVc -lVc -lVc -lVc -lVc -gRS -enH -eKw -bCA -oCN +vOZ +aVj +gkn +gkn +gkn +gkn +gkn +npx +gkn +gkn +gkn +gkn +gkn +fnG +pbs +tbJ +qjs +mBR wVf wVf -aFM +ylY wVf wVf -pRy -vpV -mIG -obS -xJZ -hfn +uzu +tTP +ktF +pEu +uQq +rxV ryD -xJZ +uQq kfG eyt eyt uXS -vZv +uIF kNa -sGo -eQZ -xwY +fCy +xpd +aKY uXS -xOz -eQZ -sGo +nso +xpd +fCy kNa -oAm +hTL uXS -hbi -cto +rEy +mQL mMu -vhI +gTZ mCF aOg aOg @@ -53459,12 +53465,12 @@ mCF mCF xEG xxk -cto -cto -cto -eGq -aTC -cba +mQL +mQL +mQL +gsN +mZP +nGj aOg aOg aOg @@ -53478,30 +53484,30 @@ wUU "} (124,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -lTR -qwQ -qwQ -urD -urD -urD +spB +sZA +sZA +sZA +sZA +sZA +sZA +bog +arf +kLx +kLx +arf +arf +jFR +jFR +jFR kgp -pdK -pdK +gZV +gZV fpq kVq -aQN -hQV -aQN +lmj +iWA +lmj geK wlB lTg @@ -53509,9 +53515,9 @@ wlB wlB wlB mnU -aQN -ocz -aQN +lmj +eiD +lmj geK wlB wlB @@ -53520,16 +53526,16 @@ wlB wlB mnU wlB -aHw -aQN -vMo -qNu +jiw +lmj +hNk +sTQ wlB wlB -iUH +bAc cel -jks -jks +lvd +lvd cFw ihY cFw @@ -53537,97 +53543,97 @@ cFw vYy deE nwq -aBz +gHB xfz ihY cel -jks -jks -jks -jks +lvd +lvd +lvd +lvd cFw nwq oSX -uwQ -kCA -tlT -cbq -oga -kca -cbq -tlT -kCA -rsB +cej +nBp +jpU +tJG +qpF +jeX +tJG +jpU +nBp +rGs oSX -fEu -fEu -fEu -fEu -pCO +wgt +wgt +wgt +wgt +hal oSX -viK -xJZ -xJZ +nhS +uQq +uQq wqb -tVj +xJY kbQ kbQ kbQ kbQ kbQ lFk -bPk -xJZ -viK -xJZ -sxY -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -qhZ -rqn -kGF -pJn -tUd -qhZ -hyp -iNr -vZl -qhZ -tdy -vpV -dNY -obS +mAI +uQq +nhS +uQq +obg +uQq +uQq +uQq +uQq +uQq +uQq +uQq +uQq +uQq +wHC +jgv +eQK +gGa +cyi +wHC +ulI +cbh +mrU +wHC +cUR +tTP +vFp +pEu ryD -viK -xJZ -xJZ +nhS +uQq +uQq kfG eyt eyt uXS uXS uXS -tlG -eQZ -rWx +fSe +xpd +bcI uXS -sGo -pmh -iAa +fCy +nuL +eiL uXS uXS uXS -hbi -cto -cto -vhI +rEy +mQL +mQL +gTZ mCF aOg mCF @@ -53642,10 +53648,10 @@ mCF ksX dzH xxk -cto -cto -cto -bst +mQL +mQL +mQL +mBw ksX lVQ xGV @@ -53660,30 +53666,30 @@ wUU "} (125,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -daS -qwQ -qwQ -qwQ -pdK -pdK -pdK -urD -pdK -pdK +spB +sZA +sZA +sZA +sZA +sZA +sZA +fQP +arf +kCI +arf +arf +arf +gZV +gZV +gZV +jFR +gZV +gZV nsN mnU -aQN -aQN -aQN +lmj +lmj +lmj geK vLh hDw @@ -53691,9 +53697,9 @@ qZV qZV oyl mnU -aQN -aQN -aQN +lmj +lmj +lmj geK vLh hDw @@ -53701,114 +53707,114 @@ qZV qZV oyl fmu -xVX +bdR wlB lTg -aQN +lmj wlB lTg wlB cFw cel -jks -jks +lvd +lvd cFw cFw -jks +lvd ebi xmL otH iWX -jks +lvd kDk -xWL +avK cFw -jks +lvd uAM cFw cFw cFw tlq oSX -oUO -kCA -tlT -syt -tlT -xdW -cbq -tlT -kCA -rsB +hgR +nBp +jpU +faW +jpU +rPG +tJG +jpU +nBp +rGs oSX -lur -lur -lur -fEu -thp +xPB +xPB +xPB +wgt +bDk oSX -viK -xJZ +nhS +uQq ryD ryD -tVj +xJY kbQ jqw kbQ kbQ kbQ ofC -uvr -xJZ -viK -xJZ -xJZ -sny -vlw -xJZ -xJZ -xxs -iXR -xJZ -xJZ -gDh -qhZ -beE -orb -pJn -xOo -dpz -xOo -kiG -lxy -qhZ -bUg -vpV -lNq -obS +cor +uQq +nhS +uQq +uQq +fpE +enL +uQq +uQq +rnv +rrg +uQq +uQq +lZF +wHC +pCg +pru +gGa +wEB +kPc +wEB +nkp +wpQ +wHC +cbc +tTP +aNW +pEu ryD wXs -xJZ +uQq ryD kfG xAx eyt uXS -vZv +uIF kNa -sGo -wlq -sGo +fCy +lez +fCy uXS -aud -vHY -sGo +jdQ +pyQ +fCy kNa -oAm +hTL uXS -hbi -cto -cto +rEy +mQL +mQL iFb mCF aOg @@ -53842,68 +53848,68 @@ wUU "} (126,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -urD -urD -pdK -pdK -pdK -urD +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +arf +arf +arf +arf +jFR +jFR +gZV +gZV +gZV +jFR nsN bys kkt -hsa +vHy ksu njC riM -aQN -aQN -aQN -hsa +lmj +lmj +lmj +vHy xDd rUc -hsa +vHy ksu bVe yhZ -aQN -aQN -aQN -hsa -wlB -aQN -aQN -kYF +lmj +lmj +lmj +vHy +wlB +lmj +lmj +npk kgp kgp wlB -ghW +iLh cFw cFw cFw osE cFw cFw -eSo -dvT +hXE +iCt cFw tPK -jks -jks -upb -jks +lvd +lvd +mAQ +lvd qSR wop cFw @@ -53912,38 +53918,38 @@ cFw pGs pGs wOO -pCV -kCA -tlT -iGS -tlT -qqs -adR -gkS -vmc -oDN +qSF +nBp +jpU +rrK +jpU +kOx +pPn +ezl +eFZ +uwp agM -aDZ -aDZ -rTv -fEu -thp +umH +umH +jau +wgt +bDk oSX -mZk -xJZ -xJZ -imu -tVj -tVj -tVj -tVj -tVj -tVj -tVj -uvr -xJZ -viK -xJZ +nVL +uQq +uQq +gYJ +xJY +xJY +xJY +xJY +xJY +xJY +xJY +cor +uQq +nhS +uQq wqb eyt eyt @@ -53955,43 +53961,43 @@ wVf xvF wVf wVf -xOo -xOo -jVK -mnc -mnc -mnc -xMq -kYn +wEB +wEB +neN +hqs +hqs +hqs +wFn +ioC wVf -fHx -vpV -qVS +mtM +tTP +bbf wVf -rWY -viK -xJZ -xJZ +gqs +nhS +uQq +uQq vph qIF sgk uXS uXS uXS -jGz -hsx -rWx +mRz +udb +bcI uXS -xzd -eQZ -sGo +aYd +xpd +fCy uXS uXS uXS wGQ xxk -cto -kmI +mQL +qtb mCF jdm mCF @@ -54024,47 +54030,47 @@ wUU "} (127,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -qqR -qwQ -qwQ -lTR -pdK -pdK -pdK -pdK -pdK -urD +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +jWM +aUy +arf +arf +kLx +gZV +gZV +gZV +gZV +gZV +jFR nBc gsC lTg -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj lTg wlB kgp @@ -54082,98 +54088,98 @@ jjj jjj ihY ihY -teg -jks -jks +aCU +lvd +lvd cFw cFw gDr -dvT +iCt nwq cFw cFw pGs wOO -fCB -kCA -tlT -cbq -mSf -ljx -cbq -tlT -kCA -xPV +ouo +nBp +jpU +tJG +fTV +mmw +tJG +jpU +nBp +aIt hst -rKl -lur -cbg -fEu -swM +eAF +xPB +jnK +wgt +oLm wOO -viK -xJZ -xJZ +nhS +uQq +uQq wqb -tVj -tVj +xJY +xJY qIF kbQ qIF tTU kbQ -uvr -xJZ -viK -gDh +cor +uQq +nhS +lZF wqb eyt eyt eyt eyt wVf -sBN -xOo -xOo -xOo -aRL -xOo -xOo -vrO -vAg +uYW +wEB +wEB +wEB +icv +wEB +wEB +cWP +nJy wVf -gwG -jVK -iPI -fLn -jhv -aQu -ocr +kBd +neN +brR +aRo +aFE +eEB +enx wVf -ybt -viK -xJZ -vlw +pGl +nhS +uQq +enL qIF kbQ kbQ uXS -dGR +hCM kNa -eqn -eQZ -sGo +qEV +xpd +fCy uXS -vzY -eQZ -eqn +dVY +xpd +qEV kNa -oAm +hTL uXS -hbi -cto -cto -kmI +rEy +mQL +mQL +qtb mCF mCF mCF @@ -54206,47 +54212,47 @@ wUU "} (128,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -wBp -uYJ -qwQ -qwQ -qwQ -qwQ -pdK -pdK -pdK -pdK -pdK -pdK -urD +spB +sZA +sZA +sZA +wwS +sZA +sZA +snN +jWM +arf +arf +arf +arf +gZV +gZV +gZV +gZV +gZV +gZV +jFR nsN usQ -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -wlB -aQN -aQN +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +lmj +wlB +lmj +lmj wlB kgp kgp @@ -54264,11 +54270,11 @@ cFw epN cFw ihY -hQl -jks -jks +xKY +lvd +lvd fSa -jks +lvd cFw cFw cFw @@ -54276,27 +54282,27 @@ cFw cFw fsC oSX -bgl -mSD -gkS -adR -gkS -xRt -yjK -lsT -kCA -hUY +aCC +jIe +ezl +pPn +ezl +oFh +kBY +shv +nBp +ogt oSX -lur -rtR -osr -aDZ -aDZ -nOg -pfr -lVc -lVc -iFZ +xPB +jbM +kPB +umH +umH +kMo +ltG +gkn +gkn +sAU kbQ kbQ kbQ @@ -54305,9 +54311,9 @@ kbQ sgk eyt wqb -xJZ -viK -xJZ +uQq +nhS +uQq wqb eyt eyt @@ -54319,23 +54325,23 @@ wVf xvF wVf wVf -hay -hZD -byl -gmK +oJz +gdZ +mGA +vVX wVf -vap -jVK -eUv +tnF +neN +qsI wVf -twh -aqb -ptP +qrq +pzK +nXw wVf -mNT -viK -xJZ -xJZ +nxS +nhS +uQq +uQq kfG nMJ uqW @@ -54343,18 +54349,18 @@ uXS uXS uXS uXS -bHc -rWx +lPs +bcI uXS -sGo -qQe +fCy +prg uXS uXS uXS uXS -hbi -cto -cto +rEy +mQL +mQL iFb hoC mCF @@ -54388,33 +54394,33 @@ wUU "} (129,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -daS -uYJ -qwQ -pdK -pdK -pdK -pdK -pdK +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +arf +kLx +kCI +jWM +arf +gZV +gZV +gZV +gZV +gZV fpq cVq mtT lTg -nCl -nCl -nCl -aQN -aQN +yay +yay +yay +lmj +lmj kgp kgp kgp @@ -54423,62 +54429,62 @@ kgp kgp kgp kgp -nCl -nCl -nCl -aQN +yay +yay +yay +lmj dOm -aQN -nCl -nCl -nCl -nCl -nCl -aQN +lmj +yay +yay +yay +yay +yay +lmj wlB gDr ihY ihY mgT -bfX -uRa -uRa -uRa -eoB -kjp -uRa -lNd -jks -fbJ -lch -fbJ -lch -fbJ -lch -fbJ -lch -tZm -mvi -kCA -sHs -cbq -kCA -kCA -pkX -nsl -kCA -hUY +umg +lrm +lrm +lrm +pPj +iCd +lrm +eBR +lvd +rRy +oze +rRy +oze +rRy +oze +rRy +oze +euX +vkg +nBp +wxr +tJG +nBp +nBp +vym +ket +nBp +ogt oSX -eYM -lur -rpI -rrr -rrr +tHQ +xPB +vTW +mxT +mxT wOO -fga -uwJ -xJZ -viK +bQY +vMY +uQq +nhS kbQ kbQ qIF @@ -54487,9 +54493,9 @@ qIF uet eyt wqb -rpd -viK -xJZ +qIc +nhS +uQq wqb eyt eyt @@ -54502,41 +54508,41 @@ xAx kjN wVf xvF -nNv +evm wVf wVf wVf wVf -vXW +dKQ wVf wVf wVf wVf wVf wVf -rDD -viK -xJZ -xJZ +vOZ +nhS +uQq +uQq kbQ kbQ eyt uXS -pjk -qZr +jeM +igA kNa -tKw -nFf +uHC +rhd uXS -vzY -eQZ +dVY +xpd kNa -sGo -rWx +fCy +bcI uXS -hbi -cto -wXC +rEy +mQL +bAU iFb cty mCF @@ -54570,24 +54576,24 @@ wUU "} (130,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -rYC -wLB -mPW -wBp -lze -pdK -urD -pdK -urD -urD +spB +sZA +sZA +sZA +sZA +sZA +sZA +snN +bog +eaA +rRC +snN +voy +gZV +jFR +gZV +jFR +jFR nsN wlB kAH @@ -54595,7 +54601,7 @@ kgp kgp wsn wlB -aQN +lmj kgp kgp wlB @@ -54610,27 +54616,27 @@ pNR vll bbK bSQ -iQr -tCV -tCV -iQr -iQr -tCV -iQr -iQr -sIK -foE -nnb -pmW -keb -nnb -wtk -wDH -nLH -wDH -nnb -nnb -nnb +rVg +tOM +tOM +rVg +rVg +tOM +rVg +rVg +fPA +tNt +sLE +pNr +nOS +sLE +ljF +jFB +wpY +jFB +sLE +sLE +sLE cFw cFw nwq @@ -54640,27 +54646,27 @@ gDr cFw mcB oSX -oIC -jtU -jtU -qId -jtU -oBP -kLA -vnH -jtU -dID +wiD +eZU +eZU +qJr +eZU +sSs +jjC +nLo +eZU +dXK wOO -gar -dgF -uZa -mEB -mEB +pPN +dHu +jjt +lyj +lyj oSX -dJI -xJZ -xJZ -viK +fvS +uQq +uQq +nhS ryD ouy ofC @@ -54669,9 +54675,9 @@ jJf cFz eyt wqb -xJZ -viK -xJZ +uQq +nhS +uQq wqb eyt eyt @@ -54684,40 +54690,40 @@ qIF kbQ qIF kbQ -tVj +xJY kbQ eyt wVf -oWO -nzd -xqG +aJf +njJ +bmi wVf eyt eyt eyt wqb -xJZ -viK -xJZ -xJZ +uQq +nhS +uQq +uQq kbQ kbQ kbQ uXS -vZv -vZO +uIF +nfF uXS -jCN -rWx +oRl +bcI uXS -tcS -dnU +pWu +rTn uXS -sGo -oAm +fCy +hTL uXS -hbi -cto +rEy +mQL mxB eHZ aOg @@ -54752,67 +54758,67 @@ wUU "} (131,1,1) = {" wUU -nvv -cUN -mPk -cUN -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC +spB +wwS +sZA +wwS +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +bog fpq mwI cVq cVq pZT nsN -mdg +kwC lTg kgp nit wlB -aQN -slw +lmj +xci kgp eia lTg -hVL +oYu wlB qAy -hmh +aUX wlB -ebF +hjq ggr kgp kyP wlB wlB -tCV -iQr -aCX -tCV -iQr -iQr -iQr -tCV -eJN -vuA -vuA -bcD -pmW -pmW -nnb -nnb -sIK -nnb -nnb -nnb -nnb +tOM +rVg +trw +tOM +rVg +rVg +rVg +tOM +mNf +sUr +sUr +huT +pNr +pNr +sLE +sLE +fPA +sLE +sLE +sLE +sLE nwq ebi cFw @@ -54823,14 +54829,14 @@ cFw kuO slE cqC -sPh -qId -qxa +atZ +qJr +aNM wOO wOO -nUf -kIz -nUf +hSr +mJB +hSr wOO wOO wOO @@ -54840,10 +54846,10 @@ wOO wOO wOO wqb -xJZ -xJZ -viK -xJZ +uQq +uQq +nhS +uQq tCA kbQ kbQ @@ -54851,9 +54857,9 @@ vcR eyt eyt wqb -xJZ -viK -xJZ +uQq +nhS +uQq wqb eyt eyt @@ -54866,22 +54872,22 @@ kbQ qIF sgk kbQ -tVj +xJY kbQ eyt wVf -jUM -dnV -kTI +xky +pqZ +nCy wVf eyt eyt wqb wqb -xJZ -viK -xJZ -xJZ +uQq +nhS +uQq +uQq kfG ofC kbQ @@ -54898,8 +54904,8 @@ uXS uXS uXS uXS -hbi -cto +rEy +mQL xxk eHZ aOg @@ -54934,19 +54940,19 @@ wUU "} (132,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cUN -mPk -cJL -mPk -xVw +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +wwS +sZA +eXL +sZA +fQP nsN xNA xNA @@ -54961,7 +54967,7 @@ wlB bYO lTg wlB -nKf +lSR wlB wlB wlB @@ -54969,36 +54975,36 @@ wlB wlB tgK wlB -aQN +lmj wlB wlB bbK wlB -iQr -iQr +rVg +rVg bSQ -qNu +sTQ wlB wlB -aQN +lmj wlB aKJ mrR cFw cFw -dYW -jks +dRV +lvd cFw cFw xmL fMI eHv cFw -jks +lvd cFw cFw cFw -mUz +rAE nwq cFw cFw @@ -55010,10 +55016,10 @@ oSX oSX slE xAg -axh -enu -iQS -cRZ +gVr +dqM +dAu +exv vVH kBZ kBZ @@ -55022,10 +55028,10 @@ kBZ kBZ kBZ wqb -gDh -xJZ -viK -xJZ +lZF +uQq +nhS +uQq tCA kbQ kbQ @@ -55033,9 +55039,9 @@ eyt eyt eyt wqb -xJZ -viK -wXu +uQq +nhS +qEm wqb eyt eyt @@ -55047,40 +55053,40 @@ qIF kbQ kbQ kbQ -wQh -tVj -tVj +fEQ +xJY +xJY eyt wVf -gqN -nrd -gnZ +goS +chS +mXa wVf eyt eyt wqb -oJW -xJZ -eQa -lVc -lVc -lVc -lVc -lVc -mCe -lVc -lVc -lVc -pfr -lVc -feR -lVc -pfr -vJp -lVc -mUP -fnj -baa +mMC +uQq +pIm +gkn +gkn +gkn +gkn +gkn +mjB +gkn +gkn +gkn +ltG +gkn +xmv +gkn +ltG +lZD +gkn +qpI +xex +amA mMu xhA eHZ @@ -55116,22 +55122,22 @@ wUU "} (133,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -mPk -mPk -mPk -cUN -mPk +spB +sZA +sZA +sZA +wwS +sZA +sZA +sZA +sZA +sZA +wwS +sZA wcb wlH tMZ -ghW +iLh wlB beK mtT @@ -55139,33 +55145,33 @@ kgp kgp wlB wlB -hmh +aUX wlB jwX -aQN -aQN +lmj +lmj sKz wlB tez tmZ rXk wlB -aQN -hmh +lmj +aUX wlB bbK -mdg +kwC dWV -tCV -jKs +tOM +vst wlB wlB kgp doH -nCl +yay bbK xmL -iUH +bAc icm cFw nwq @@ -55176,11 +55182,11 @@ cFw pll jNn eNA -jks +lvd cFw -jks -jks -jks +lvd +lvd +lvd cFw cFw nwq @@ -55192,10 +55198,10 @@ xSZ qEt biS vVH -dsz -enu -iQS -wxD +kqo +dqM +dAu +dxV vVH kBZ kBZ @@ -55204,10 +55210,10 @@ kBZ kBZ kBZ wqb -rDD -xJZ -viK -stw +vOZ +uQq +nhS +hKB ouy kbQ kbQ @@ -55215,9 +55221,9 @@ kbQ eyt eyt wqb -rDD -viK -gha +vOZ +nhS +xoQ wqb eyt eyt @@ -55229,7 +55235,7 @@ kbQ kbQ ofC tTU -tVj +xJY sgk jqw eyt @@ -55241,28 +55247,28 @@ wVf eyt eyt wqb -qQd -xJZ -viK -xJZ -vlw -xJZ -xJZ +viJ +uQq +nhS +uQq +enL +uQq +uQq ryD -xJZ -xJZ -xJZ -xJZ -xJZ +uQq +uQq +uQq +uQq +uQq ryD -xJZ -xJZ -xJZ -xJZ -xJZ -cto -tuZ -sgl +uQq +uQq +uQq +uQq +uQq +mQL +jkb +lpK wNz xxk eHZ @@ -55298,24 +55304,24 @@ wUU "} (134,1,1) = {" wUU -nvv -cUN -mPk -cUN -mPk -mPk -mPk -mPk -mPk -cUN -cUN -cUN +spB +wwS +sZA +wwS +sZA +sZA +sZA +sZA +sZA +wwS +wwS +wwS pCa tMZ wlB eia wlB -ghW +iLh lTg wlB wlB @@ -55329,22 +55335,22 @@ wlB wlB qNX ehY -urD +jFR nsN lTg -aQN -aQN +lmj +lmj gjC wlB wlB dWV -iQr -jKs +rVg +vst wlB kgp kgp kgp -nCl +yay wlB cFw tPK @@ -55353,16 +55359,16 @@ nwq cFw cFw cel -jks +lvd cFw tPK qkq xpe -jks -jks -jks -mtp -coX +lvd +lvd +lvd +pZg +bRV cFw cFw cFw @@ -55374,10 +55380,10 @@ nwq nwq oep vVH -won -vSu -iQS -wxD +uFI +vSG +dAu +dxV vVH kBZ kBZ @@ -55386,20 +55392,20 @@ kBZ kBZ kBZ wqb -bFD -xJZ -viK -xJZ -lFE +wbX +uQq +nhS +uQq +nOu kbQ kbQ kbQ eyt eyt wqb -xJZ -viK -xJZ +uQq +nhS +uQq wqb eyt eyt @@ -55411,7 +55417,7 @@ kbQ kbQ kbQ kbQ -tVj +xJY kbQ kbQ kbQ @@ -55424,28 +55430,28 @@ eyt eyt wqb wqb -xJZ -viK -ouP -vlw -pOg -xJZ -xJZ -wXu +uQq +nhS +exN +enL +bGB +uQq +uQq +qEm ryD ryD -xJZ -xJZ -xJZ -gDh -vlw +uQq +uQq +uQq +lZF +enL ryD -vXx -xJZ -fLu -iaM -pyz -cto +npP +uQq +jnL +twS +jRh +mQL xxk hBA mCF @@ -55480,18 +55486,18 @@ wUU "} (135,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA wfR dYd wlB @@ -55507,26 +55513,26 @@ wlB lTg wlB wlB -mdg +kwC wlB beK cVq cVq mtT wlB -aQN -aQN +lmj +lmj wlB -oyv +aci lTg wlB -iQr -iQr +rVg +rVg lTg wlB gjC kgp -nCl +yay wlB cFw ihY @@ -55535,20 +55541,20 @@ ihY cSc jrr jrr -vUx +feZ jrr cSc cCk cFw cFw -jks -jks -jks -coX +lvd +lvd +lvd +bRV nwq cFw cFw -tkh +fCO cFw nwq wUF @@ -55556,10 +55562,10 @@ cFw cFw uFO vVH -iQS -aQY -iQS -iQS +dAu +fGL +dAu +dAu vVH kBZ kBZ @@ -55569,9 +55575,9 @@ kBZ kBZ wqb wqb -xJZ -viK -sKu +uQq +nhS +lJR ouy kbQ kbQ @@ -55579,10 +55585,10 @@ kbQ eyt eyt wqb -rWY -viK -xJZ -bPk +gqs +nhS +uQq +mAI jqw kbQ kbQ @@ -55593,7 +55599,7 @@ kbQ mED kbQ sgk -tVj +xJY kbQ kbQ kbQ @@ -55606,19 +55612,19 @@ eyt eyt eyt wqb -xJZ -viK -xJZ +uQq +nhS +uQq ouy ouy ouy wVp iwT ouy -nZP -nZP -nZP -nZP +ruE +ruE +ruE +ruE ouy ouy ouy @@ -55662,18 +55668,18 @@ wUU "} (136,1,1) = {" wUU -nvv -mPk -cUN -mPk -mPk -mPk -mPk -cUN -mPk -mPk -rUa -cUN +spB +sZA +wwS +sZA +sZA +sZA +sZA +wwS +sZA +sZA +pkP +wwS xDE wlB wlB @@ -55682,31 +55688,31 @@ lTg wlB wlB wlB -mdg +kwC wlB wlB wlB -ghW +iLh wlB lTg wlB -ghW +iLh wlB wlB lTg wlB wlB -mdg +kwC wlB -qNu +sTQ wlB wlB wlB -iQr -iDE +rVg +fxZ doH -gXw -aQN +uIu +lmj wlB lTg wlB @@ -55718,30 +55724,30 @@ nwq cFw nwq nwq -qTE +tUn ihY ihY cFw ykU -jks +lvd nwq cFw fSa cFw -jks -jks -jks -jks +lvd +lvd +lvd +lvd cFw cFw cFw dgY kuO vVH -iQS -fnl -iQS -iQS +dAu +aAy +dAu +dAu vVH kBZ kBZ @@ -55751,9 +55757,9 @@ kBZ kBZ kBZ wqb -xJZ -viK -gDh +uQq +nhS +lZF ouy sgk kbQ @@ -55761,9 +55767,9 @@ qIF eyt eyt wqb -oJW -viK -xJZ +mMC +nhS +uQq wqb kbQ sgk @@ -55772,10 +55778,10 @@ kbQ kbQ kbQ kbQ -tVj -tVj -ykx -tVj +xJY +xJY +hpu +xJY kbQ kbQ sgk @@ -55788,9 +55794,9 @@ jqw eyt eyt eyt -rDD -viK -xJZ +vOZ +nhS +uQq ouy eyt eyt @@ -55844,21 +55850,21 @@ wUU "} (137,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cUN -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +wwS +sZA +sZA iWj wlB -mdg +kwC lTg wlB wlB @@ -55883,11 +55889,11 @@ wlB lTg wlB wlB -tfc -tCV -iQr +kjO +tOM +rVg wlB -ghW +iLh wlB wlB rBq @@ -55896,7 +55902,7 @@ xmL deE cFw cFw -jks +lvd cFw cFw cFw @@ -55905,7 +55911,7 @@ cFw deq cFw cFw -jks +lvd cFw mEs ihY @@ -55913,17 +55919,17 @@ wop cFw cFw cFw -jks +lvd cFw cFw -dvT +iCt cFw kuO vVH -iQS -enu -apH -iQS +dAu +dqM +jUd +dAu vVH kBZ wqb @@ -55933,19 +55939,19 @@ wqb kBZ kBZ wqb -xJZ -viK -gDh -lFE +uQq +nhS +lZF +nOu sgk kbQ jqw eyt eyt wqb -xJZ -viK -xJZ +uQq +nhS +uQq tFQ iyv tTU @@ -55954,10 +55960,10 @@ kbQ jqw kbQ kbQ -tVj -tVj -tVj -tVj +xJY +xJY +xJY +xJY eyt eyt kbQ @@ -55970,9 +55976,9 @@ kbQ eyt eyt eyt -xJZ +uQq wXs -xJZ +uQq ouy eyt kbQ @@ -56026,18 +56032,18 @@ wUU "} (138,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +eXL iWj hPq wlB @@ -56058,27 +56064,27 @@ wlB chX lTg lTg -jtH +fKd lTg lTg -jtH -jtH -jtH +fKd +fKd +fKd lTg lTg -tCV -iQr +tOM +rVg wlB wlB wlB wlB -nCl +yay wlB xmL cFw cFw cFw -jks +lvd cFw cFw cFw @@ -56087,47 +56093,47 @@ cFw tEM hzx cFw -jks +lvd nwq nwq ihY ihY cFw mDm -dvT +iCt nwq -jks +lvd cFw cFw cFw kuO vVH -nxl -enu -iQS -hza +uaF +dqM +dAu +soo aoC vVH rql -qcD -kAl +cdF +wLG vVH wqb kBZ wqb -xJZ -viK -klf +uQq +nhS +kPu ouy kbQ sgk kbQ eyt wqb -xxs -xJZ -viK -xJZ +rnv +uQq +nhS +uQq tWA tWA tLu @@ -56136,7 +56142,7 @@ wqb wqb tWA gey -uvr +cor tWA wqb wqb @@ -56144,17 +56150,17 @@ wqb wqb tLu tLu -xJZ -xJZ -xJZ +uQq +uQq +uQq wqb tLu wqb wqb wqb -xJZ -viK -xJZ +uQq +nhS +uQq ouy eyt qIF @@ -56208,18 +56214,18 @@ wUU "} (139,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA rJv rXk lTg @@ -56249,18 +56255,18 @@ jqd lTg lTg lTg -kFn +kby wlB -iQr +rVg wlB lTg -nCl +yay wlB -iig -jks +niH +lvd cFw cFw -jks +lvd cFw cFw nwq @@ -56268,8 +56274,8 @@ ihY ihY fxX iaH -mio -nRU +lma +sOR jjj hjn ihY @@ -56278,65 +56284,65 @@ cFw cFw cFw cFw -jks -jks +lvd +lvd cFw cFw kuO uti -kxU -enu -iQS -iQS -iQS -iQS -jXn -iQS -iQS -tkr -imu -xJZ -xJZ -xJZ -viK -xJZ +gIE +dqM +dAu +dAu +dAu +dAu +rgM +dAu +dAu +pNO +gYJ +uQq +uQq +uQq +nhS +uQq ouy tCA kbQ tCA wqb wqb -xJZ -xJZ -viK -xJZ -xJZ -xJZ -xJZ -xJZ -wXu -xJZ +uQq +uQq +nhS +uQq +uQq +uQq +uQq +uQq +qEm +uQq ryD ryD -xJZ +uQq keY -xJZ -vlw -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ +uQq +enL +uQq +uQq +uQq +uQq +uQq +uQq +uQq +uQq +uQq +uQq +uQq +uQq +uQq wXs -xJZ +uQq kbQ kbQ kbQ @@ -56390,21 +56396,21 @@ wUU "} (140,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -vhB +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tyY nsN -ghW +iLh wlB lTg wlB @@ -56436,10 +56442,10 @@ wlB lTg wlB hPq -aQN +lmj wlB xmL -qTE +tUn cFw cFw cFw @@ -56447,11 +56453,11 @@ ebi cFw ihY ihY -gFA +oVs nwq -upb -jks -jks +mAQ +lvd +lvd cFw epN cFw @@ -56460,65 +56466,65 @@ vbS cFw cFw cFw -jks -jks +lvd +lvd cFw nwq ezU uti -sPD -hdV -pDW -pDW -pDW -eVH -pDW -pDW -pDW -pDW -lVc -lVc -lVc -lVc -pfr -lVc -lVc -lVc -lVc -lVc -lVc -pbw -lVc -lVc -pfr -nch -lVc -lVc -lVc -lVc -xpk -lVc -elO -lVc -lVc -lVc -lVc -lVc -lVc +wLN +pYN +qQT +qQT +qQT +dTN +qQT +qQT +qQT +qQT +gkn +gkn +gkn +gkn +ltG +gkn +gkn +gkn +gkn +gkn +gkn +rGP +gkn +gkn +ltG +kkq +gkn +gkn +gkn +gkn +dlx +gkn +npx +gkn +gkn +gkn +gkn +gkn +gkn xza -lVc -lVc -lVc -elO -lVc -lVc -lVc -tlM -lVc -lVc -lVc -cpC -xJZ +gkn +gkn +gkn +npx +gkn +gkn +gkn +hxi +gkn +gkn +gkn +kYT +uQq kbQ ofC kbQ @@ -56572,19 +56578,19 @@ wUU "} (141,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -mPk -mPk -mPk -pRa -cJL -rYC +spB +sZA +sZA +sZA +wwS +sZA +sZA +sZA +sZA +sZA +igL +eXL +bog nsN wlB wlB @@ -56615,10 +56621,10 @@ lTg wlB lTg lTg -iQr +rVg kgp kgp -nCl +yay wlB cFw tPK @@ -56631,75 +56637,75 @@ cFw ihY fvV cFw -coX +bRV cFw cFw -dvT +iCt nwq cFw cFw cFw nwq cFw -jks -jks +lvd +lvd cFw cFw nwq kuO uti -fmy -iQS -iQS -iQS -iQS -iQS -iQS -axs -iQS -iQS -xJZ -xJZ -xJZ -xJZ -xJZ +pYb +dAu +dAu +dAu +dAu +dAu +dAu +fnR +dAu +dAu +uQq +uQq +uQq +uQq +uQq ryD ryD oPV -xJZ -xJZ -eKF -bPk -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -vlw -xJZ -xJZ -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xJZ -xJZ -xJt -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xJZ -vlw -xJZ -xJZ -xJZ -vXx +uQq +uQq +pSI +mAI +uQq +uQq +uQq +uQq +uQq +uQq +enL +uQq +uQq +uQq +uQq +fpE +uQq +uQq +uQq +uQq +uQq +nbw +uQq +uQq +fpE +uQq +uQq +uQq +uQq +enL +uQq +uQq +uQq +npP ryD kbQ kbQ @@ -56754,19 +56760,19 @@ wUU "} (142,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -wBp +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +snN nsN wlB wlB @@ -56800,20 +56806,20 @@ rhu wlB kgp kgp -nCl +yay wlB cFw cFw ihY ihY -qTE +tUn cFw cFw nwq cFw -hQl +xKY cFw -coX +bRV cFw nwq cFw @@ -56823,39 +56829,39 @@ cFw cFw ihY wop -gkG -nRU +uaR +sOR jjj jjj -mcp +cmB tdt xAg xAg -bSD -kAl -kAl +bDD +wLG +wLG vVH vVH vVH vVH vVH vVH -gfu -xJZ -xJZ -gfu -sny +icp +uQq +uQq +icp +fpE sVr ryD ryD -xJZ -iLc -dUL -bPk -sny -xJZ -xJZ -mHh +uQq +mEt +iWr +mAI +fpE +uQq +uQq +lZi wqb wqb tLu @@ -56864,21 +56870,21 @@ wqb wqb wqb wqb -bPk +mAI tLu tWA gey tWA wqb wqb -bPk +mAI wqb -bPk +mAI wqb wqb tLu -bPk -bPk +mAI +mAI wqb iwT wVp @@ -56936,18 +56942,18 @@ wUU "} (143,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +eXL ovT mtT wlB @@ -56978,11 +56984,11 @@ wlB wlB wlB lTg -eqT -iQr +hap +rVg eia kgp -nCl +yay wlB cFw nwq @@ -56995,18 +57001,18 @@ cFw cFw cFw cFw -jks +lvd cFw ihY ihY cFw -jks +lvd cFw ihY ihY xfz cFw -jks +lvd cFw eHs cFw @@ -57023,20 +57029,20 @@ bzz fNm vVH oET -slA -gfG +oGP +rpO oET oET iwT iwT iwT -lFE +nOu tCA ouy ouy ouy tCA -lFE +nOu ouy ouy kbQ @@ -57049,7 +57055,7 @@ kbQ kbQ kbQ kbQ -tVj +xJY kbQ kbQ liq @@ -57118,18 +57124,18 @@ wUU "} (144,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL iWj wlB gjC @@ -57161,11 +57167,11 @@ lTg uHD rhu lTg -fIk +hOZ wlB kgp -nCl -ghW +yay +iLh nwq cFw cFw @@ -57173,22 +57179,22 @@ nwq cFw cFw cFw -upb +mAQ cFw cFw cFw -jks +lvd cFw uAM ihY cFw -agn +sdf cFw ejk nwq -nak +smd cFw -jks +lvd nwq cFw cFw @@ -57300,18 +57306,18 @@ wUU "} (145,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL iWj wlB wlB @@ -57342,8 +57348,8 @@ wlB lTg lTg lTg -kFH -iQr +ssM +rVg wlB kgp kgp @@ -57353,19 +57359,19 @@ cFw cFw xfz cel -jks -jks -jks -gtv -jks -jks -coX +lvd +lvd +lvd +gYb +lvd +lvd +bRV cFw cFw cFw cFw cFw -jks +lvd pll cFw cFw @@ -57482,23 +57488,23 @@ wUU "} (146,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +eXL +igL xDE wlB lTg wlB -mdg +kwC wlB lTg lTg @@ -57525,8 +57531,8 @@ lTg pXT lTg cxT -bDs -aQN +yaO +lmj kgp kgp wlB @@ -57553,7 +57559,7 @@ eHs cFw nwq bGU -pmM +gVX bGU bGU rvD @@ -57563,7 +57569,7 @@ rvD bGU rvD rvD -elP +vLf bGU bGU rvD @@ -57664,18 +57670,18 @@ wUU "} (147,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rUa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +pkP rJv rXk wlB @@ -57715,11 +57721,11 @@ lTg cFw cFw xmL -jks -jks +lvd +lvd cFw cFw -ykA +eAN cFw cFw cFw @@ -57729,14 +57735,14 @@ nwq nwq cFw cFw -agn +sdf tPK udp cFw bGU bGU -pmM -cYw +gVX +hnv bGU bGU trI @@ -57846,19 +57852,19 @@ wUU "} (148,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPW +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +rRC nsN wlB lTg @@ -57889,22 +57895,22 @@ uHD wlB lTg dOl -iQr +rVg wlB kgp kgp wlB cFw -iUH -wfh -jks +bAc +cPe +lvd nwq wop gDr cFw cFw -jks -jks +lvd +lvd udp cFw nwq @@ -57913,7 +57919,7 @@ nwq nwq cFw nwq -tkh +fCO nwq bGU bGU @@ -57925,7 +57931,7 @@ rvD bGU bGU bGU -pYK +kxo bGU rvD bLV @@ -57949,13 +57955,13 @@ eyt eyt qIF uqW -gaJ -tVj +mDs +xJY qfu -eQI -tVj -tVj -tVj +nuS +xJY +xJY +xJY eyt eyt eyt @@ -58028,19 +58034,19 @@ wUU "} (149,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPW +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL +rRC nsN wlB wlB @@ -58071,7 +58077,7 @@ lTg wlB lTg wlB -iQr +rVg kgp kgp kgp @@ -58085,7 +58091,7 @@ cFw cFw cFw cFw -jks +lvd cFw fSa fSa @@ -58104,7 +58110,7 @@ trI bGU bLV bGU -elP +vLf bGU rvD bGU @@ -58113,13 +58119,13 @@ bGU bGU bGU rvD -pYK +jtB bGU bGU bGU bGU bGU -elP +vLf rvD bGU bGU @@ -58133,9 +58139,9 @@ tXu tXu ouy ouy -uon -kvz -fUC +pdv +kLN +tHJ ouy ouy tXu @@ -58146,8 +58152,8 @@ tXu tXu tXu tXu -vqG -tVj +ikg +xJY kbQ qIF qfu @@ -58210,19 +58216,19 @@ wUU "} (150,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -wLB +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL +eaA nsN hPq wlB @@ -58253,10 +58259,10 @@ sbP uHD lTg lTg -iQr -aQN +rVg +lmj kgp -nCl +yay lTg cFw nwq @@ -58291,7 +58297,7 @@ bGU lzT bGU rvD -uFq +uMw bGU bGU bGU @@ -58313,11 +58319,11 @@ eyt eyt eyt eyt -qTh +nKj ouy -qaX -rTi -rTi +gvw +fjq +fjq ouy nhI vjO @@ -58328,8 +58334,8 @@ oAJ liz vDP ouy -cwk -sCp +sYt +lwg kkc vqK kbQ @@ -58392,26 +58398,26 @@ wUU "} (151,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -wBp +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +snN nsN wlB -qNu +sTQ lTg wlB lTg -mdg +kwC lTg lTg lTg @@ -58434,11 +58440,11 @@ lTg lTg lTg lTg -iQr -iQr -aQN +rVg +rVg +lmj wlB -nCl +yay wlB cFw ykU @@ -58457,7 +58463,7 @@ pgn kgA nwq kyp -oWf +boO kyp kyp kyp @@ -58509,12 +58515,12 @@ fPJ bGU oBq kjr -kVE -ibi -dRI -jrv -fZP -vqG +rCz +mJO +oRX +iXl +qGx +ikg pGs pGs pGs @@ -58574,18 +58580,18 @@ wUU "} (152,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +eXL wHt mtT wlB @@ -58604,12 +58610,12 @@ lTg lTg wlB gjC -mdg +kwC lTg lTg lTg lTg -ghW +iLh wlB lTg wlB @@ -58617,19 +58623,19 @@ wlB lTg wlB wlB -iQr -aQN +rVg +lmj wlB -nCl +yay wlB cFw cFw -wfh -agn +cPe +sdf nwq cFw cFw -qTE +tUn nNB cFw cFw @@ -58644,8 +58650,8 @@ cFh kyp elI fWd -dRs -dRs +ide +ide pjD dTG cFh @@ -58691,11 +58697,11 @@ huE lzT bGU rKS -vEi -dir -xHz -tVj -xcz +hSG +hVV +gMD +xJY +udT pGs pGs pGs @@ -58756,18 +58762,18 @@ wUU "} (153,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL iWj wlB lTg @@ -58777,7 +58783,7 @@ wlB wlB lTg wlB -ghW +iLh wlB wlB wlB @@ -58800,14 +58806,14 @@ wlB lTg wlB wlB -aQN -aQN -nCl +lmj +lmj +yay wlB cFw nwq ihY -vlL +oNc gcB jNE cFw @@ -58825,10 +58831,10 @@ dTG kyp kyp hds -exX -xFb -ulb -dRs +dSY +yjX +dcP +ide qvS hWv bGU @@ -58837,7 +58843,7 @@ rvD lzT bGU vNB -elP +vLf bGU bGU bGU @@ -58846,7 +58852,7 @@ bGU bGU rvD bGU -uFq +uMw bGU rvD bGU @@ -58858,7 +58864,7 @@ bGU bGU bGU kyD -uFq +uMw qZJ bGU kyD @@ -58873,9 +58879,9 @@ huE lzT lzT gzm -rTi -sCp -inV +fjq +lwg +aTK ouy ouy huF @@ -58938,25 +58944,25 @@ wUU "} (154,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL rJv rXk wlB wlB wlB wlB -ghW +iLh wlB wlB wlB @@ -58975,7 +58981,7 @@ phk wlB wlB bnH -mdg +kwC wlB wlB lTg @@ -58984,7 +58990,7 @@ wlB lTg hPq kgp -nCl +yay wlB nwq cFw @@ -58995,22 +59001,22 @@ ihY nwq nwq wUF -oWf +boO lci kyp kyp nCF kGJ plq -dRs +ide qvS kyp -hEv +jmB hds -ulb -dRs -dRs -dRs +dcP +ide +ide +ide qvS kyp bGU @@ -59050,7 +59056,7 @@ kyD bGU bGU kyD -pYK +kxo fFw pYI huE @@ -59120,19 +59126,19 @@ wUU "} (155,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -wBp +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +eXL +snN nsN tLS wlB @@ -59147,7 +59153,7 @@ wlB wlB wlB lTg -mdg +kwC wlB xCZ wlB @@ -59166,7 +59172,7 @@ wlB lTg kgp kgp -aQN +lmj wlB kyp kyp @@ -59184,17 +59190,17 @@ kyp kyp cFh hds -dRs +ide qvS kyp kyp hds -dRs -xFb -xFb -xFb +ide +yjX +yjX +yjX qvS -uWo +hik bGU rvD bGU @@ -59206,7 +59212,7 @@ bGU lzT lzT bGU -pYK +kxo bLV bGU bGU @@ -59302,19 +59308,19 @@ wUU "} (156,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +snN nsN wlB wlB @@ -59325,32 +59331,32 @@ wlB lTg lTg wlB -qNu +sTQ wlB wlB wlB wlB wlB pDl -dyl +ryR lTg aCW wlB wlB -qNu +sTQ mJH wlB lTg wlB lTg -aQN -ayx +lmj +mvr kgp kgp kyP -aQN +lmj lTg -iHN +lin kyp kyp kyp @@ -59366,15 +59372,15 @@ cFh kyp kyp hds -dRs +ide qvS cFh kyp hds -ulb -dRs -xFb -xFb +dcP +ide +yjX +yjX pjD dTG bGU @@ -59484,19 +59490,19 @@ wUU "} (157,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -rUa -wBp +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +pkP +snN nsN eNk wlB @@ -59514,9 +59520,9 @@ lTg wlB cFZ nti -ola +dZy ayF -ueB +cVX lTg wlB lTg @@ -59525,12 +59531,12 @@ wlB wlB wlB wlB -aQN -aQN +lmj +lmj tMZ pvQ lTg -aQN +lmj wlB kyp cFh @@ -59548,20 +59554,20 @@ elI jek jek fWd -xFb +yjX qvS cFh kyp hds -dRs -xFb -tHc -xFb -dRs +ide +yjX +mub +yjX +ide pjD gPi xfQ -bUP +jim veV jTR bGU @@ -59583,9 +59589,9 @@ bGU rvD lzT bGU -elP +vLf bLV -pYK +kxo bGU bGU bGU @@ -59599,7 +59605,7 @@ bGU kyD bGU huE -uFq +uMw bGU huE bGU @@ -59666,21 +59672,21 @@ wUU "} (158,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +bog nsN -iFc +wVt qAy lTg lTg @@ -59688,7 +59694,7 @@ wlB wlB wlB wlB -ghW +iLh lTg wlB gjC @@ -59696,7 +59702,7 @@ wlB lTg yjH mUv -hgc +kjQ sZd wlB gOp @@ -59704,10 +59710,10 @@ wlB qNX rXk wlB -ghW +iLh kAH wlB -aQN +lmj tMZ lTg tmZ @@ -59719,32 +59725,32 @@ kyp jTj elI fWd -xFb -xFb -dRs +yjX +yjX +ide qvS kyp kyp kyp hds -exX -dRs -xFb -dRs +dSY +ide +yjX +ide qvS cFh cFh hds -dRs -xFb -xFb -xFb -dRs -dRs -dRs -bUP -bUP -bUP +ide +yjX +yjX +yjX +ide +ide +ide +jim +jim +jim ghN rvD bGU @@ -59752,7 +59758,7 @@ qoI gPi gPi jTR -elP +vLf bGU lzT lzT @@ -59818,16 +59824,16 @@ bsf bsf bsf avD -mqe -mqe +aQH +aQH avD -hRs +gAy cHV wsG -hRs +gAy avD -mqe -mqe +aQH +aQH avD bsf bsf @@ -59848,19 +59854,19 @@ wUU "} (159,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +fQP nBc tmZ rXk @@ -59879,7 +59885,7 @@ tmZ rXk wlB wlB -aQN +lmj lTg kAH wlB @@ -59889,50 +59895,50 @@ wlB lTg wlB wlB -aQN -aQN +lmj +lmj tMZ -pTI -rnL -pdK +vUw +qJe +gZV pjD jek jek jek fWd -xFb -xFb -xFb -xFb +yjX +yjX +yjX +yjX pjD jek jek jek fWd -xFb -xFb -dRs -xFb +yjX +yjX +ide +yjX qvS kyp kyp hds -dRs -dRs -dRs -xFb -dRs -dRs -xFb -xFb -xFb -bUP +ide +ide +ide +yjX +ide +ide +yjX +yjX +yjX +jim ghN bGU bGU ejM -bUP -bUP +jim +jim veV jTR bGU @@ -59970,7 +59976,7 @@ pYI lzT lzT bGU -pYK +kxo pYI qZJ kyD @@ -60000,16 +60006,16 @@ pDX bsf avD avD -uvd -lFT +lbF +wFe avD -kjI -snS -snS -kjI +xGC +oZU +oZU +xGC avD -qcC -uvd +xly +lbF avD avD bsf @@ -60030,21 +60036,21 @@ wUU "} (160,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -pdK -pdK +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +snN +gZV +gZV jJn wlB wlB @@ -60055,9 +60061,9 @@ nBc tmZ tmZ sXc -pdK -pdK -pdK +gZV +gZV +gZV nsN wlB tLS @@ -60074,48 +60080,48 @@ wlB lTg tMZ fbw -pdK -pdK -pdK -xFb -xFb -xFb -xFb -dRs -xFb -xFb -dRs -xFb -xFb -dRs -xFb -dRs -xFb -dRs -dRs -xFb -xFb +gZV +gZV +gZV +yjX +yjX +yjX +yjX +ide +yjX +yjX +ide +yjX +yjX +ide +yjX +ide +yjX +ide +ide +yjX +yjX pjD jek jek fWd -dRs -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -bUP +ide +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +jim ghN bGU ylB ejM -bUP -xFb -bUP +jim +yjX +jim veV jTR bGU @@ -60124,7 +60130,7 @@ bGU lzT bGU bGU -pYK +kxo bGU bGU bGU @@ -60140,10 +60146,10 @@ bGU rqg gPi xeU -dRs -spv -spv -aXn +ide +lcF +lcF +qYy kyj gPi bko @@ -60181,18 +60187,18 @@ bsf bsf bsf avD -fFK -uvd -smx -aCl -kjI -kjI -kjI -kjI -aCl -nzb -uvd -uvd +bVL +lbF +kLj +iBS +xGC +xGC +xGC +xGC +iBS +wTP +lbF +lbF avD bsf bsf @@ -60212,34 +60218,34 @@ wUU "} (161,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -wBp -rnL -pdK +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +eXL +snN +qJe +gZV nBc tmZ tmZ tmZ tmZ sXc -rnL -pdK -pdK -pdK -urD -rnL -pdK +qJe +gZV +gZV +gZV +jFR +qJe +gZV nBc tmZ tmZ @@ -60256,49 +60262,49 @@ wlB wlB pvQ tMZ -pdK -pdK -pdK -dRs -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -byC -xFb -xFb -xFb -xFb -xFb -xFb -byC -xFb -dRs -dRs -dRs -dRs -dRs -byC -xFb -dRs -xFb -xFb -xFb -exX -xFb -bUP +gZV +gZV +gZV +ide +yjX +yjX +yjX +yjX +yjX +yjX +yjX +ide +hsC +yjX +yjX +yjX +yjX +yjX +yjX +hsC +yjX +ide +ide +ide +ide +ide +hsC +yjX +ide +yjX +yjX +yjX +dSY +yjX +jim veV gPi gPi xfQ -bUP -xFb -bUP -bUP +jim +yjX +jim +jim veV jTR bGU @@ -60319,26 +60325,26 @@ bko gPi bko gPi -wts -dRs -spv -dRs -spv -spv -spv -dRs -dRs -spv +aEr +ide +lcF +ide +lcF +lcF +lcF +ide +ide +lcF ghN pZS kyD bGU bGU pZS -vXG +fhT bGU bGU -uFq +uMw rvD bGU rvD @@ -60363,18 +60369,18 @@ bsf bsf bsf avD -pBf -fFK -bye +jzV +bVL +rRO avD -fJI -kjI -kjI -vnb +wiV +xGC +xGC +xBL avD -gBM -uvd -uvd +cRj +lbF +lbF avD bsf bsf @@ -60394,42 +60400,42 @@ wUU "} (162,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -lze -wBp -xVw -mPW -bBV -mPW -xVw -wBp -wBp -wBp -bBV -mPW -mPW -wLB -wBp -mPW -wBp -xVw -rYC -xVw -wBp -mPW -wBp -bBV +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +voy +snN +fQP +rRC +vBJ +rRC +fQP +snN +snN +snN +vBJ +rRC +rRC +eaA +snN +rRC +snN +fQP +bog +fQP +snN +rRC +snN +vBJ rJv tWT uxM @@ -60438,50 +60444,50 @@ tWT uxM loO ifO -wBp -xVw -rYC -xVw -wBp -wBp -xVw -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -xVw -rYC -wBp -mPW -wLB -wBp -mPW -wLB -bBV -wLB -mPW -wBp -xFb -xFb -bUP -bUP -bUP -bUP -hwE -xFb -xFb -nKR -bUP +snN +fQP +bog +fQP +snN +snN +fQP +snN +snN +bog +fQP +snN +snN +snN +snN +bog +fQP +snN +snN +snN +snN +fQP +bog +snN +rRC +eaA +snN +rRC +eaA +vBJ +eaA +rRC +snN +yjX +yjX +jim +jim +jim +jim +iIV +yjX +yjX +ovq +jim veV gPi gPi @@ -60497,20 +60503,20 @@ bGU qoI gPi xfQ -spv -dRs -esA -dRs -esA -dRs -spv -dRs -dRs -spv -spv -dRs -spv -spv +lcF +ide +lvr +ide +lvr +ide +lcF +ide +ide +lcF +lcF +ide +lcF +lcF ghN gRj bGU @@ -60520,7 +60526,7 @@ pZS kyD qhO kyD -cYw +hnv bGU bGU rvD @@ -60550,8 +60556,8 @@ avD avD avD avD -lms -lms +fqe +fqe avD avD avD @@ -60576,97 +60582,97 @@ wUU "} (163,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -cJL -mPk -mPk -mPk -pRa -mPk -rUa -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -pRa -rUa -pRa -pRa -mPk -pRa -pRa -rUa -pRa -pRa -uhi +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL +sZA +eXL +sZA +sZA +sZA +igL +sZA +pkP +sZA +sZA +sZA +sZA +eXL +sZA +sZA +sZA +sZA +igL +pkP +igL +igL +sZA +igL +igL +pkP +igL +igL +mPM kkF -mPk -mPk -mPk -mPk -cJL -mPk -mPk -cJL -mPk -cJL -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -pRa -mPk -mPk -mPk -rUa -pRa -wLB -dRs -xFb -xFb -bUP -xFb -bUP -xFb -xFb -xFb -xFb -bUP -bUP -bUP -bUP +sZA +sZA +sZA +sZA +eXL +sZA +sZA +eXL +sZA +eXL +sZA +sZA +sZA +sZA +eXL +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +eXL +sZA +sZA +igL +sZA +sZA +sZA +pkP +igL +eaA +ide +yjX +yjX +jim +yjX +jim +yjX +yjX +yjX +yjX +jim +jim +jim +jim veV gPi gPi @@ -60677,22 +60683,22 @@ gPi gPi gPi xfQ -bUP -bUP -spv -dRs -spv -ulb -spv -dRs -dRs -esA -spv -spv -dRs -dRs -spv -dRs +jim +jim +lcF +ide +lcF +dcP +lcF +ide +ide +lvr +lcF +lcF +ide +ide +lcF +ide veV bko gPi @@ -60727,18 +60733,18 @@ bsf bsf bsf avD -qxb -aEg -snS -qxb +eCW +pRZ +oZU +eCW brT -nEE -kjI +cYG +xGC brT -qxb -aEg -snS -qxb +eCW +pRZ +oZU +eCW avD bsf bsf @@ -60758,130 +60764,130 @@ wUU "} (164,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -rUa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +igL +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +eXL +sZA +sZA +sZA +sZA +pkP kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPW -exX -xFb -xFb -xFb -xFb -xFb -xFb -xFb -ulb -dRs -xFb -dRs -xFb -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -dRs -dRs -dRs -dRs -spv -dRs -dRs -spv -hwE +jMe +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +rRC +dSY +yjX +yjX +yjX +yjX +yjX +yjX +yjX +dcP +ide +yjX +ide +yjX +jim +jim +jim +jim +jim +jim +jim +jim +jim +jim +ide +ide +lcF +ide +ide +lcF +ide +ide +lcF +ide +ide +ide +ide +ide +ide +lcF +ide +ide +lcF +iIV ghN pZS -lYD -fTh +xUX +irK kyD bGU bGU @@ -60909,18 +60915,18 @@ mMz bsf bsf avD -oWU -kjI -jub -kjI -szZ -kjI -kjI -szZ -kjI -kjI -jub -kjI +xKX +xGC +ozQ +xGC +apQ +xGC +xGC +apQ +xGC +xGC +ozQ +xGC avD bsf bsf @@ -60940,131 +60946,131 @@ wUU "} (165,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +jMe kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -esA -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -dRs -dRs -dRs -spv -spv -dRs -spv -dRs -dRs +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +fQP +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +lvr +ide +ide +lcF +ide +ide +lcF +ide +ide +ide +ide +ide +lcF +lcF +ide +lcF +ide +ide aaG dkS -qlw -tjn -pmM +nAS +xen +gVX bGU qZJ pGs @@ -61087,22 +61093,22 @@ bsf bsf crq ulv -uvd +lbF avD bsf avD -qxb -snS -pcH -qxb +eCW +oZU +oAL +eCW brT -kjI -kjI +xGC +xGC brT -qxb -snS -snS -qxb +eCW +oZU +oZU +eCW avD bsf gFH @@ -61122,133 +61128,133 @@ wUU "} (166,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -xFb -xFb -xFb -xFb -dRs -dRs -ulb -dRs -dRs -dRs -dRs -dRs -dRs -spv -esA -dRs -dRs -spv -dRs -dRs -dRs -spv -spv -dRs -dRs -fPy -spv -dRs -spv -dRs -dRs -esA -ihC +jMe +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +bog +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +ide +yjX +yjX +yjX +yjX +ide +ide +dcP +ide +ide +ide +ide +ide +ide +lcF +lvr +ide +ide +lcF +ide +ide +ide +lcF +lcF +ide +ide +xhg +lcF +ide +lcF +ide +ide +lvr +onA ghN -pmM -hTX -evW -pYK -elP +gVX +ijU +gUi +kxo +vLf rvD pGs pGs @@ -61268,9 +61274,9 @@ gNE bsf avD ulv -uvd -uvd -aEQ +lbF +lbF +pYX avD avD brT @@ -61278,8 +61284,8 @@ brT brT brT brT -rco -rco +joS +joS brT brT brT @@ -61288,8 +61294,8 @@ brT avD avD ofJ -uvd -uvd +lbF +lbF crq gFH mMz @@ -61304,127 +61310,127 @@ wUU "} (167,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +jMe kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -xFb -xFb -dRs -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -esA -spv -dRs -dRs -spv -spv -dRs -dRs -dRs -spv -esA -spv -spv -dRs -dRs -esA -dRs -esA -dRs -bUP +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +fQP +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +yjX +ide +yjX +yjX +ide +yjX +yjX +ide +ide +ide +ide +ide +ide +ide +lvr +lcF +ide +ide +lcF +lcF +ide +ide +ide +lcF +lvr +lcF +lcF +ide +ide +lvr +ide +lvr +ide +jim ghN bGU trI @@ -61451,27 +61457,27 @@ bsf ulv mol mol -fof +wwi avD -vNT -vNT -xka -vNT -vNT +edb +edb +uwF +edb +edb brT -snS -kjI -kjI -snS +oZU +xGC +xGC +oZU brT -rmS -rmS -xka -fbW -rnj +azu +azu +uwF +asW +lqw oJX -pqf -uvd +lay +lbF ulv gFH bsf @@ -61486,127 +61492,127 @@ wUU "} (168,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -byC -xFb -xFb -xFb -xFb -xFb -xFb -byC -xFb -xFb -xFb -byC -xFb -xFb -xFb -byC -xFb -dRs -dRs -dRs -exX -dRs -exX -dRs -esA -dRs -lxs -dRs -dRs -esA -spv -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -spv -spv -dRs -dRs -bUP +jMe +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +snN +hsC +yjX +yjX +yjX +yjX +yjX +yjX +hsC +yjX +yjX +yjX +hsC +yjX +yjX +yjX +hsC +yjX +ide +ide +ide +dSY +ide +dSY +ide +lvr +ide +mPp +ide +ide +lvr +lcF +ide +ide +ide +ide +ide +ide +ide +ide +lcF +lcF +ide +ide +jim veV jTR bGU @@ -61631,29 +61637,29 @@ bsf bsf mMz crq -uvd -uvd -uvd +lbF +lbF +lbF brT -kjI -snS -xka -snS -kjI -rco -sUG -kjI -kjI -qpD -lvS -kjI -snS -xka -nFy -ojF +xGC +oZU +uwF +oZU +xGC +joS +moi +xGC +xGC +eVu +pBa +xGC +oZU +uwF +aYP +wHD brT -uvd -uvd +lbF +lbF crq ulv bsf @@ -61668,128 +61674,128 @@ wUU "} (169,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +jMe kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -wBp -wLB -mPW -wLB -bBV -xVw -wBp -wBp -wBp -xVw -wBp -rYC -wBp -xVw -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -bBV -wBp -xBH -dRs -dRs -dRs -dRs -dRs -dRs -esA -spv -dRs -dRs -dRs -dRs -spv -esA -esA -dRs -dRs -dRs -bUP -bUP +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +snN +snN +eaA +rRC +eaA +vBJ +fQP +snN +snN +snN +fQP +snN +bog +snN +fQP +snN +snN +snN +bog +fQP +snN +snN +snN +vBJ +snN +euo +ide +ide +ide +ide +ide +ide +lvr +lcF +ide +ide +ide +ide +lcF +lvr +lvr +ide +ide +ide +jim +jim ghN bGU bGU @@ -61813,30 +61819,30 @@ bsf bsf bsf ulv -uvd +lbF crq -uvd +lbF brT -bPx -snS -xka -snS -cRn +sJG +oZU +uwF +oZU +tOb brT -czG -izi -izi -snS +urL +pAu +pAu +oZU brT -kjI -snS -xka -ndp -kjI +xGC +oZU +uwF +kAC +xGC brT -uvd -kEK -uvd +lbF +odA +lbF gFH bsf bsf @@ -61850,128 +61856,128 @@ wUU "} (170,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL -mPk -mPk -mPk -mPk -mPk -cJL -mPk -tTq -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -spv -spv -spv -spv -spv -spv -dRs -dRs -dRs -dRs -bUP -ucL +jMe +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +eXL +sZA +sZA +sZA +sZA +sZA +eXL +sZA +xdm +ide +ide +ide +ide +ide +ide +ide +ide +lcF +lcF +lcF +lcF +lcF +lcF +ide +ide +ide +ide +jim +eBN ghN bGU bGU @@ -61996,30 +62002,30 @@ bsf bsf ulv ulv -uvd -uvd +lbF +lbF brT -kjI -snS -xka -snS -kjI -mRs -snS -kjI -kjI -snS -mRs -kjI -snS -xka -eBS -kjI +xGC +oZU +uwF +oZU +xGC +pBP +oZU +xGC +xGC +oZU +pBP +xGC +oZU +uwF +oZg +xGC brT -uvd -uvd -uvd -uvd +lbF +lbF +lbF +lbF bsf gRU bsf @@ -62032,128 +62038,128 @@ wUU "} (171,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +jMe kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -mPk -rYC -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +sZA +sZA +sZA +bog +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +jim ghN bGU bGU @@ -62177,30 +62183,30 @@ bsf gRU bsf brT -kEK -uvd -uvd +odA +lbF +lbF brT -kjI -kjI -rco -kjI -gms -mRs -snS -kjI -kjI -snS -mRs -gms -kjI -lvS -nkq -kjI +xGC +xGC +joS +xGC +qsd +pBP +oZU +xGC +xGC +oZU +pBP +qsd +xGC +pBa +bhn +xGC brT -uvd -uvd -uvd +lbF +lbF +lbF brT bsf bsf @@ -62214,132 +62220,132 @@ wUU "} (172,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rUa -mPW -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -ulb -bUP +jMe +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +pkP +rRC +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +dcP +jim veV jTR bGU -akg +tvg bGU rvD rvD @@ -62359,30 +62365,30 @@ bsf bsf bsf ulv -uvd -uvd -uvd +lbF +lbF +lbF brT -kjI -snS -xka -snS -snS -mRs -snS -kjI -kjI -snS -mRs -snS -snS -xka -dBA -kjI +xGC +oZU +uwF +oZU +oZU +pBP +oZU +xGC +xGC +oZU +pBP +oZU +oZU +uwF +pze +xGC brT -uvd -uvd -uvd +lbF +lbF +lbF brT bsf bsf @@ -62396,129 +62402,129 @@ wUU "} (173,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +jMe kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +fQP +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +jim ghN bGU bGU @@ -62541,30 +62547,30 @@ bsf bsf bsf brT -uvd -uvd -uvd +lbF +lbF +lbF brT -cRn -vNT +tOb +edb brT -snS -snS +oZU +oZU brT -snS -ujg -kjI -snS +oZU +kdg +xGC +oZU brT -snS -snS +oZU +oZU brT -qwU -kjI +pyF +xGC brT -uvd -uvd -uvd +lbF +lbF +lbF brT bsf bsf @@ -62578,129 +62584,129 @@ wUU "} (174,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +jMe +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +snN +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +jim veV jTR bGU @@ -62723,30 +62729,30 @@ bsf bsf bsf ulv -uvd -uvd -uvd +lbF +lbF +lbF brT -kjI -vNT +xGC +edb brT -reA +bUE brT brT -snS -kjI -kjI -snS +oZU +xGC +xGC +oZU brT brT -rmS +azu brT -qwU -nnk +pyF +bjW brT -uvd -uvd -uvd +lbF +lbF +lbF brT bsf bsf @@ -62760,130 +62766,130 @@ wUU "} (175,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +jMe kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -wBp -byC -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -xFb -bUP -bUP +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +snN +hsC +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +yjX +yjX +jim +jim ghN bGU vNB @@ -62905,30 +62911,30 @@ bsf bsf bsf ulv -uvd -uvd -uvd +lbF +lbF +lbF brT -kjI -vNT +xGC +edb brT brT brT -oKy -snS -kjI -kjI -snS -oKy +uNl +oZU +xGC +xGC +oZU +uNl brT brT brT -iqU -kjI +hKp +xGC brT -uvd -uvd -uvd +lbF +lbF +lbF brT bsf bsf @@ -62942,130 +62948,130 @@ wUU "} (176,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -xFb -dRs -dRs -tHc -jFL +jMe +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +bog +yjX +yjX +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +ide +yjX +yjX +ide +ide +mub +xnl ghN bGU bGU @@ -63087,30 +63093,30 @@ bsf bsf bsf brT -uvd -uvd -uvd +lbF +lbF +lbF brT -kqQ +koB avD brT -cNJ -cNJ -snS -czG -kjI -kjI -snS -snS -cNJ -cNJ +gFl +gFl +oZU +urL +xGC +xGC +oZU +oZU +gFl +gFl brT avD -cFu +kOV brT -uvd -uvd -uvd +lbF +lbF +lbF brT bsf bsf @@ -63124,130 +63130,130 @@ wUU "} (177,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +jMe kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -byC -xFb -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -dRs -dRs -xFb -dRs -xFb -dRs -dRs -xFb -xFb -jFL +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +snN +hsC +yjX +yjX +yjX +ide +ide +ide +ide +ide +ide +ide +yjX +ide +ide +yjX +ide +yjX +ide +ide +yjX +yjX +xnl ghN vNB rvD @@ -63269,30 +63275,30 @@ bsf bsf bsf brT -uvd -uvd -dHD +lbF +lbF +fmn avD avD avD -snS -snS -snS -snS -izi -kjI -cTb -izi -snS -snS -snS -snS +oZU +oZU +oZU +oZU +pAu +xGC +hxR +pAu +oZU +oZU +oZU +oZU avD avD avD -uvd -uvd -uvd +lbF +lbF +lbF brT bsf bsf @@ -63306,130 +63312,130 @@ wUU "} (178,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -xFb -xFb -dRs -xFb -byC -dRs -xFb -dRs -byC -xFb -xFb -dRs -byC -dRs -xFb -byC -xFb -xFb -xFb -byC -xFb -exX +jMe +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +snN +yjX +yjX +ide +yjX +hsC +ide +yjX +ide +hsC +yjX +yjX +ide +hsC +ide +yjX +hsC +yjX +yjX +yjX +hsC +yjX +dSY kyj jTR dlD @@ -63451,31 +63457,31 @@ bsf bsf bsf brT -uvd -uvd -uvd -wNI -xqS -rco -kjI -kjI -kjI -kjI -kjI -fhA -cUE -kjI -kjI -kjI -kjI -atM -pTc -lvt -lFr -uvd -uvd -uvd -uvd +lbF +lbF +lbF +wUn +uLz +joS +xGC +xGC +xGC +xGC +xGC +iKc +iFp +xGC +xGC +xGC +xGC +ert +sNh +fai +lFt +lbF +lbF +lbF +lbF bsf bsf bsf @@ -63488,131 +63494,131 @@ wUU "} (179,1,1) = {" wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB hJB -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -xVw -rYC -xVw -wBp -wBp -wBp -xVw -wBp -rYC -wBp -wBp -xVw -wBp -wBp -rYC -wBp -xVw -wBp -rYC -xVw -wBp -xVw -rYC +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +snN +fQP +bog +fQP +snN +snN +snN +fQP +snN +bog +snN +snN +fQP +snN +snN +bog +snN +fQP +snN +bog +fQP +snN +fQP +bog enZ iAE pGs @@ -63633,30 +63639,30 @@ bsf bsf bsf brT -uvd -uvd -iwV -uvd -smx -rco -izi -kjI -kjI -kjI -kjI -oKy -oKy -kjI -kjI -kjI -kjI -izi -pTc -nzb -uvd -iwV -uvd -uvd +lbF +lbF +uPW +lbF +kLj +joS +pAu +xGC +xGC +xGC +xGC +uNl +uNl +xGC +xGC +xGC +xGC +pAu +sNh +wTP +lbF +uPW +lbF +lbF ulv bsf bsf @@ -63759,43 +63765,43 @@ wUU wUU wUU wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL -mPk -mPk -mPk -cJL -pRa -mPk -mPk -mPk -rUa -imk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +eXL +sZA +sZA +sZA +eXL +igL +sZA +sZA +sZA +pkP +gyT rJv iAE pGs @@ -63815,29 +63821,29 @@ bsf bsf bsf brT -uvd -uvd -uvd -eIr -uxi -rco -kjI -snS -kjI -snS -izi -kjI -kjI -izi -snS -kjI -snS -snS -hTQ -vPh -nau -uvd -uvd +lbF +lbF +lbF +fgP +whm +joS +xGC +oZU +xGC +oZU +pAu +xGC +xGC +pAu +oZU +xGC +oZU +oZU +gCA +aPz +hRm +lbF +lbF ulv crq bsf @@ -63941,44 +63947,44 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -pRa -imk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +igL +igL +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +gyT +sZA +igL +gyT rJv pGs pGs @@ -63997,31 +64003,31 @@ bsf bsf bsf ulv -uvd -uvd -uvd +lbF +lbF +lbF brT avD avD avD brT -mvv -snS -snS -kjI -kjI -snS -czG -pjm +cLW +oZU +oZU +xGC +xGC +oZU +urL +pmC brT avD avD avD brT -uvd -uvd +lbF +lbF ulv -uvd +lbF bsf bsf bsf @@ -64123,47 +64129,47 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -xTA -pRa -wBp -fjv -mPW +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +gyT +eWJ +igL +snN +tZc +rRC mZH kdq tWT @@ -64178,30 +64184,30 @@ hre bsf bsf bsf -uvd -uvd -uvd -uvd +lbF +lbF +lbF +lbF ulv bsf bsf -kjI -bPF -kjI -jUY -pwc -kjI -kjI -oKy -asf -ahD -idn +xGC +tsA +xGC +qgF +fMk +xGC +xGC +uNl +aLS +aFw +cRO avD bsf bsf brT -uvd -uvd +lbF +lbF ulv brT bsf @@ -64305,54 +64311,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -xTA -pRa -imk -cJL -xTA -pRa -pRa -pRa -mPk -rUa -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +gyT +sZA +eWJ +igL +gyT +eXL +eWJ +igL +igL +igL +sZA +pkP +igL iWj hre bsf @@ -64361,30 +64367,30 @@ hre bsf bsf crq -uvd -uvd -uvd +lbF +lbF +lbF brT bsf bsf avD -jQG -kjI -jUY -oKy -kjI -kjI -pfL -asf -aIm -cwp +olq +xGC +qgF +uNl +xGC +xGC +xzQ +aLS +xzp +nKi avD bsf bsf brT -uvd -uvd -uvd +lbF +lbF +lbF brT bsf bsf @@ -64487,54 +64493,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -pRa -mPk -pRa -pRa -pRa -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL +sZA +igL +igL +sZA +igL +igL +igL +igL xDE kkv dsi @@ -64542,32 +64548,32 @@ dsi bsf bsf bsf -uvd +lbF eiK -uvd -uvd +lbF +lbF ulv bsf mMz -kjI -ydZ -kjI -jUY -rAf -kjI -kjI -oKy -asf -qLH -jYs -kjI +xGC +mkG +xGC +qgF +fpp +xGC +xGC +uNl +aLS +nJs +vFI +xGC bsf mMz -uvd -uvd -uvd -kEK -uvd +lbF +lbF +lbF +odA +lbF bsf bsf bsf @@ -64669,54 +64675,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk -imk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -pRa -mPk -rUa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +gyT +sZA +sZA +gyT +sZA +sZA +igL +sZA +igL +igL +sZA +igL +sZA +pkP iWj tOV dsi @@ -64725,29 +64731,29 @@ hre gRU bsf ulv -dHD -kEK -uvd +fmn +odA +lbF ulv bsf bsf -qEn -iSC -kjI -jUY -oKy -kjI -kjI -pfL -asf -vmY -mke -kjI +iyA +vDJ +xGC +qgF +uNl +xGC +xGC +xzQ +aLS +kdN +tCp +xGC bsf bsf brT -uvd -uvd +lbF +lbF ulv ulv bsf @@ -64851,54 +64857,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -pRa -pRa -pRa -pRa -mPk -pRa -pRa -pRa -mPk -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +gyT +sZA +igL +igL +igL +igL +sZA +igL +igL +igL +sZA +igL iWj tRN dsi @@ -64907,29 +64913,29 @@ hre bsf bsf brT -uvd -uvd -uvd -kEK +lbF +lbF +lbF +odA kTu bsf avD brT -gsu -snS -snS -izi -izi -snS -snS -pjm +rHg +oZU +oZU +pAu +pAu +oZU +oZU +pmC brT -kjI +xGC mMz bsf brT -uvd -uvd +lbF +lbF ulv brT bsf @@ -65033,54 +65039,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -pRa -pRa -mPk -pRa -pRa -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +igL +igL +sZA +igL +igL +sZA +igL +igL +igL rJv iAE hre @@ -65089,9 +65095,9 @@ hre bsf bsf ulv -uvd -uvd -uvd +lbF +lbF +lbF brT gRU mLJ @@ -65099,21 +65105,21 @@ avD brT brT brT -uTA -jbR -kjI -snS +jYq +iZp +xGC +oZU brT brT brT avD bhU bsf -uvd -uvd -uvd -uvd -uvd +lbF +lbF +lbF +lbF +lbF mMz bsf bsf @@ -65215,55 +65221,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -hfZ -mPk -mPk -pRa -mPk -mPk -pRa -pRa -mPk -jhK -mPk -mPk -cJL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +hUW +sZA +sZA +igL +sZA +sZA +igL +igL +sZA +uJM +sZA +sZA +eXL xDE aOG tRN @@ -65273,27 +65279,27 @@ bsf lqa ulv ulv -uvd +lbF brT vdV tPE qza -kjI -rco -kjI -snS -aJp -kjI -snS -kjI -hTQ -kjI +xGC +joS +xGC +oZU +aKA +xGC +oZU +xGC +gCA +xGC vus xfD mMz ulv -uvd -uvd +lbF +lbF brT brT bsf @@ -65397,41 +65403,41 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tgM xce byF xce @@ -65447,36 +65453,36 @@ xce xce xce gBP -hXq -hXq -hXq -hXq -hXq +xda +xda +xda +xda +xda qbX -uvd -iwV -uvd +lbF +uPW +lbF ulv bsf -jeT +xfL lbX -izi -rco -izi -dTe -kjI -kjI -kjI -izi -qAd -izi -xuX -tfC +pAu +joS +pAu +ult +xGC +xGC +xGC +pAu +nkk +pAu +eCP +tSj bsf brT -uvd -uvd -uvd +lbF +lbF +lbF bsf bsf bsf @@ -65579,55 +65585,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL +igL +igL +cSj iWj bsf vxi @@ -65636,28 +65642,28 @@ hre vxi esK vBZ -kEK +odA eiK ulv bsf jwf ehM -kjI -rco -eRQ -kjI -snS -snS -kjI -kjI -qAd -kjI +xGC +joS +gDE +xGC +oZU +oZU +xGC +xGC +nkk +xGC cXa rYi bsf brT -uvd -rDK +lbF +nrm ulv bsf bsf @@ -65761,55 +65767,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL +igL +igL +cSj rJv sXn hre @@ -65826,21 +65832,21 @@ jXp avD avD brT -yaC -yaC +feb +feb brT brT -yaC -yaC +feb +feb brT avD avD xfD bsf ulv -uvd +lbF ulv -kEK +odA bsf bsf bsf @@ -65943,56 +65949,56 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL +igL +igL +cSj +igL rJv apG vxi @@ -66001,27 +66007,27 @@ dsi bsf pTO vxi -uvd +lbF brT bsf bsf avD -vOa -kjI -kjI -kjI -snS -snS -kjI -kjI -kjI -ueQ +qVR +xGC +xGC +xGC +oZU +oZU +xGC +xGC +xGC +uHj avD bsf bsf crq -uvd -uvd +lbF +lbF bsf bsf bsf @@ -66125,57 +66131,57 @@ cLP cLP cLP wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL rJv iAE bsf @@ -66188,16 +66194,16 @@ ulv gNE gNE avD -gSE -asf -kjI -izi -snS -snS -izi -kjI -jUY -bTN +ekc +aLS +xGC +pAu +oZU +oZU +pAu +xGC +qgF +rEK avD bsf bsf @@ -66331,34 +66337,34 @@ wUU wUU wUU wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL iWj bsf dsi @@ -66370,16 +66376,16 @@ gFY lqM lqM ulv -kEK -kjI -kjI -kjI -lDz -oPb -ijo -kjI -kjI -ueQ +odA +xGC +xGC +xGC +haZ +nwN +oVB +xGC +xGC +uHj ulv bsf bsf @@ -66513,34 +66519,34 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL rJv iAE hre @@ -66552,15 +66558,15 @@ bsf bsf vxi ulv -uvd -uvd -kjI -izi -snS -snS -izi -kjI -kEK +lbF +lbF +xGC +pAu +oZU +oZU +pAu +xGC +odA avD sOw bsf @@ -66695,35 +66701,35 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -rUa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL +pkP iWj bsf hre @@ -66735,14 +66741,14 @@ bsf bsf nEY avD -cdc -kjI -qEn +mtE +xGC +iyA avD avD -dUS +hie eiK -uvd +lbF ulv bsf bsf @@ -66877,34 +66883,34 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL +igL +igL +cSj +igL +igL +igL ovT uNz vxi @@ -66917,13 +66923,13 @@ pDX bsf lVf iyk -kZl +smw eiK -hoU -fxR -fxR -kjI -kjI +seP +oMe +oMe +xGC +xGC fcF ulv bsf @@ -67059,17 +67065,17 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +tgM lwm tjs lwm @@ -67087,11 +67093,11 @@ tjs lwm lwm hjK -stK -hXq -hXq -hXq -hXq +noW +xda +xda +xda +xda qCT qCT qCT @@ -67100,13 +67106,13 @@ bsf bsf fVw ulv -kjI -kjI -kjI -kjI -kjI +xGC +xGC +xGC +xGC +xGC ulv -uvd +lbF ulv uaU bsf @@ -67241,33 +67247,33 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -jhK -mPk -pRa -mPk -mPk -pRa -pRa -mPk -vjZ -aAr -fGN -wFJ -xrl -pRa -hfZ +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +uJM +sZA +igL +sZA +sZA +igL +igL +sZA +fAA +nKW +vmx +rAC +dwW +igL +hUW iWj tRN hre @@ -67281,13 +67287,13 @@ qCT gRU bsf luu -uvd +lbF crq -kjI -hoU -kjI +xGC +seP +xGC ulv -kEK +odA ulv nmH hmg @@ -67423,33 +67429,33 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -pRa -pRa -pRa -pRa -itL -kif -fGN -fGN -xrl -pRa -mPk +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +sZA +sZA +igL +igL +igL +igL +tgM +avt +vmx +vmx +dwW +igL +sZA xDE hre gOj @@ -67465,10 +67471,10 @@ bsf bsf hte sOw -kZl +smw ulv -hoU -kZl +seP +smw ulv avD doP @@ -67605,32 +67611,32 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -kWf -cKB -mdM -mdM -hjf -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL +sZA +igL +sjI +wwT +xrb +xrb +nRm +igL fDH ymb hre @@ -67647,10 +67653,10 @@ bsf bBt bsf avD -gRN +pHK crq -uli -kEK +xrK +odA ulv lqM vRW @@ -67787,31 +67793,31 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -pRa -pRa -mPk -pRa -pRa -pRa -pRa -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL +igL +igL +sZA +igL +igL +igL +igL +igL ovT ymb hre @@ -67831,7 +67837,7 @@ bsf hte sOw akn -iwV +uPW ulv hte bsf @@ -67969,30 +67975,30 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -pRa -pRa -pRa -pRa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +sZA +igL +igL +igL +igL +igL +igL ovT dTu gOj @@ -68151,30 +68157,30 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -pRa -pRa -pRa -rUa +spB +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +sZA +igL +igL +sZA +igL +igL +igL +igL +pkP xDE hre tRN @@ -68333,29 +68339,29 @@ cLP cLP cLP wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB +spB oTs vgH pGs @@ -68515,29 +68521,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc iax pGs pGs @@ -68697,29 +68703,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc iax pGs pGs @@ -68879,29 +68885,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc iax pGs pGs @@ -69061,29 +69067,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc iax pGs pGs @@ -69243,29 +69249,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -69425,29 +69431,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -69607,29 +69613,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -69789,29 +69795,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -69971,29 +69977,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -70153,29 +70159,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -70335,29 +70341,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -70517,21 +70523,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -70699,21 +70705,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs @@ -70881,21 +70887,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc +vpc pGs pGs pGs diff --git a/maps/map_files/New_Varadero/sprinkles/.gitkeep b/maps/map_files/New_Varadero/sprinkles/.gitkeep new file mode 100644 index 000000000000..8b137891791f --- /dev/null +++ b/maps/map_files/New_Varadero/sprinkles/.gitkeep @@ -0,0 +1 @@ + diff --git a/maps/map_files/New_Varadero/standalone/clfship.dmm b/maps/map_files/New_Varadero/standalone/clfship.dmm new file mode 100644 index 000000000000..b0f1f792f29a --- /dev/null +++ b/maps/map_files/New_Varadero/standalone/clfship.dmm @@ -0,0 +1,3084 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ao" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"ar" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_r_w" + }, +/area/lv624/lazarus/crashed_ship) +"av" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"aO" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/lv624/lazarus/crashed_ship) +"bs" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_6_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"bv" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"bO" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"bP" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"bZ" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/crashed_ship) +"cp" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"cr" = ( +/obj/item/stool, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"cu" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"cL" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"cM" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_4_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"cQ" = ( +/obj/item/stack/rods, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"cY" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastocean) +"da" = ( +/turf/open/floor/almayer/greencorner/north, +/area/lv624/lazarus/crashed_ship) +"de" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"dg" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/varadero/exterior/monsoon) +"dh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"dl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/gm/coast/beachcorner/north_east, +/area/varadero/exterior/eastbeach) +"dt" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"dA" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"dH" = ( +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"dK" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"dV" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/lv624/lazarus/crashed_ship) +"eb" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ef" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"eK" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/eastbeach) +"eL" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/varadero/exterior/eastocean) +"eN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"eS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/closed/wall/rock/brown, +/area/varadero/exterior/eastbeach) +"fd" = ( +/obj/structure/window_frame/colony, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"fg" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 3; + pixel_y = 20 + }, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"fr" = ( +/turf/open/gm/dirt, +/area/varadero/exterior/eastocean) +"fw" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"fH" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/lv624/lazarus/crashed_ship) +"ga" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/monsoon) +"go" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_s_w" + }, +/area/lv624/lazarus/crashed_ship) +"gu" = ( +/turf/closed/shuttle/ert, +/area/lv624/lazarus/crashed_ship) +"gT" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"gW" = ( +/obj/item/weapon/gun/rifle/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"ha" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/attached_gun/flamer, +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"hg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastocean) +"hC" = ( +/obj/structure/girder, +/obj/item/stack/rods, +/turf/open/gm/coast/west, +/area/lv624/lazarus/crashed_ship) +"hF" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/lv624/lazarus/crashed_ship) +"ic" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"iq" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"iC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/east, +/area/lv624/lazarus/crashed_ship) +"iH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bunk Beds" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"iJ" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2" + }, +/area/lv624/lazarus/crashed_ship) +"iZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bridge" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"jb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Medical Bay" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"jt" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"jI" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"ka" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"kh" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/lv624/lazarus/crashed_ship) +"kF" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/toy/katana, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"kH" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"kO" = ( +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"lc" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"le" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -8 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 9 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"lj" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"lt" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 + }, +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/eastbeach) +"lz" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"lN" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"mp" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"mw" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/crashed_ship) +"mx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 8; + closed = 0; + density = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"mG" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"mO" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_1" + }, +/area/lv624/lazarus/crashed_ship) +"mS" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"mV" = ( +/obj/effect/overlay/palmtree_r{ + icon_state = "palm2" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"mZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Dining Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"ns" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan9" + }, +/area/lv624/lazarus/crashed_ship) +"nw" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"oi" = ( +/obj/item/stack/rods, +/turf/open/gm/river/ocean/deep_ocean, +/area/lv624/lazarus/crashed_ship) +"ol" = ( +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"oV" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"oW" = ( +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"oZ" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"pc" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_white_t_up" + }, +/area/lv624/lazarus/crashed_ship) +"pd" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) +"ph" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"pp" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"pq" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"pr" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"py" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/varadero/exterior/eastocean) +"pH" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"pI" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"pO" = ( +/obj/structure/machinery/computer/communications{ + icon_state = "commb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/gm/river/ocean/deep_ocean, +/area/lv624/lazarus/crashed_ship) +"pP" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/exterior/eastbeach) +"pS" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"pV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/heavy_barrel, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"qy" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"rc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/emerald/northwest, +/area/lv624/lazarus/crashed_ship) +"rg" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"rq" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -10 + }, +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"rr" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"rz" = ( +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"rA" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + density = 1; + closed = 0 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"rQ" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) +"sa" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"sc" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"sm" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"sn" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_3" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"so" = ( +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ss" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"st" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/eastocean) +"sB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -4 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"sE" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"ti" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/tool/screwdriver, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"tF" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"tH" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Cargo Bay"; + pixel_y = 32 + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"tJ" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_2" + }, +/area/lv624/lazarus/crashed_ship) +"tM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" + }, +/obj/item/paper/prison_station/pirate_note/clfship, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"tV" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"um" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"uq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"ur" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"uM" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"uQ" = ( +/obj/structure/machinery/computer/station_alert{ + icon_state = "atmosb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"uW" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"vv" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"vI" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"vM" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 3 + }, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"wc" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = -3; + pixel_y = 20 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/lv624/lazarus/crashed_ship) +"wI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"wJ" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) +"wK" = ( +/turf/open/gm/coast/south, +/area/varadero/exterior/eastocean) +"wS" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"wZ" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) +"xd" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"xv" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"xz" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = -3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3 + }, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"xQ" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_color = "green"; + phone_id = "Medical Bay"; + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"yg" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"yk" = ( +/obj/effect/overlay/palmtree_r{ + icon_state = "palm2" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"yo" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"yw" = ( +/turf/open/gm/coast/west, +/area/varadero/exterior/lz2_near) +"yx" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"yB" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) +"yE" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/eastocean) +"yQ" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"yS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_y = 1 + }, +/obj/item/stack/sheet/plasteel{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/orange/southeast, +/area/lv624/lazarus/crashed_ship) +"yT" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = -3 + }, +/turf/open/floor/almayer/green/southwest, +/area/lv624/lazarus/crashed_ship) +"yU" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"zd" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"zn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"zK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"zP" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"zU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"zY" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Ab" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Aj" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Al" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_3" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastocean) +"AA" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_3" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"AK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/incendiary{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"AU" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Be" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_9_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Bh" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/toolbox, +/obj/item/toy/deck/uno{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Bl" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Bm" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Bu" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"Bz" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"BA" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"BM" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"BS" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/lv624/lazarus/crashed_ship) +"BW" = ( +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Ca" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Cw" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/lv624/lazarus/crashed_ship) +"CC" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"CJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/window_frame/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"CK" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"CY" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Ds" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_right" + }, +/area/lv624/lazarus/crashed_ship) +"Dz" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"DA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Cargo Hold" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"DE" = ( +/turf/open/gm/coast/west, +/area/varadero/exterior/eastocean) +"DN" = ( +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"DU" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"Ep" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"EU" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"EW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/rifle/mar40/lmg{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"EX" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/dirt, +/area/varadero/exterior/eastocean) +"Fc" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_2_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Fl" = ( +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Fs" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Fz" = ( +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"FH" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + icon_state = "plasteel_closed_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"FN" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/lv624/lazarus/crashed_ship) +"Gc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Gh" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1" + }, +/area/lv624/lazarus/crashed_ship) +"Gm" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"Go" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"Gr" = ( +/obj/item/storage/bag/trash, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Gt" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"GB" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/gm/coast/west, +/area/varadero/exterior/eastocean) +"GG" = ( +/obj/item/stack/rods, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/lv624/lazarus/crashed_ship) +"GP" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"Hb" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/restraint/handcuffs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/green/southeast, +/area/lv624/lazarus/crashed_ship) +"Ho" = ( +/turf/open/gm/coast/west, +/area/varadero/exterior/monsoon) +"Hq" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"Hx" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"HB" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_medic, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Im" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3" + }, +/area/lv624/lazarus/crashed_ship) +"In" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"IJ" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/lv624/lazarus/crashed_ship) +"IM" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"IO" = ( +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"Jg" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan8" + }, +/area/lv624/lazarus/crashed_ship) +"Jp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/backpack/general_belt{ + pixel_y = 3 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Jr" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/eastbeach) +"JB" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"JK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"JL" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer/green/northwest, +/area/lv624/lazarus/crashed_ship) +"JN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Engineering Storage" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"JQ" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/lv624/lazarus/crashed_ship) +"Ka" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 + }, +/obj/item/storage/backpack/general_belt, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"Kl" = ( +/obj/item/stool, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Km" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/eastocean) +"Ky" = ( +/obj/item/lightstick/variant/planted, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"KH" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"KJ" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"KM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Ll" = ( +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"Lm" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Lp" = ( +/turf/open/gm/coast/north, +/area/varadero/exterior/eastocean) +"LM" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"LU" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"Mg" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"Mk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/emerald/northeast, +/area/lv624/lazarus/crashed_ship) +"Mq" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_left" + }, +/area/lv624/lazarus/crashed_ship) +"Ms" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"MF" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"MG" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) +"MH" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/lv624/lazarus/crashed_ship) +"MS" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastocean) +"Nc" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"Ny" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/closed/wall/rock/brown, +/area/varadero/exterior/eastbeach) +"NU" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Oh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Op" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"OA" = ( +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"OU" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"Pg" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastocean) +"Pl" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"Pp" = ( +/obj/item/circuitboard/apc{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/cell{ + pixel_x = -2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Pq" = ( +/obj/item/stool, +/turf/open/gm/river/ocean/deep_ocean, +/area/lv624/lazarus/crashed_ship) +"Px" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"Py" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/adv, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"PP" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing fifty reposessed USCM MRE packets."; + name = "\improper CLF Supply MRE crate (x50)" + }, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"PR" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Qa" = ( +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"Qc" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Armoury"; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"Qe" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Qp" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Qq" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Qs" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan21" + }, +/area/lv624/lazarus/crashed_ship) +"Qv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/transmitter/clf_net/rotary{ + phone_category = "CR-116"; + phone_color = "yellow"; + phone_id = "Engineering" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"QM" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/lv624/lazarus/crashed_ship) +"QQ" = ( +/turf/closed/wall/rock/brown, +/area/varadero/exterior/eastbeach) +"QY" = ( +/obj/structure/machinery/power/smes/buildable/charged, +/turf/open/floor/almayer/orange/north, +/area/lv624/lazarus/crashed_ship) +"Rg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"Rn" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"Rp" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastocean) +"Rr" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Rs" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/lv624/lazarus/crashed_ship) +"Rw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"RH" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_3" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"RN" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"RS" = ( +/obj/item/stack/rods, +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"RX" = ( +/obj/effect/vehicle_spawner/van/fixed{ + color = "#4a9eed"; + desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; + name = "CLF Van" + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"So" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"SA" = ( +/obj/structure/girder/displaced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"SS" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"SW" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/clothing/accessory/storage/webbing, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"Tg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Tp" = ( +/obj/item/tank/oxygen/red, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Tt" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"TQ" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"TS" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"TZ" = ( +/obj/structure/girder/displaced, +/turf/open/gm/river/ocean/deep_ocean, +/area/lv624/lazarus/crashed_ship) +"Ua" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_3_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Ug" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" + }, +/area/lv624/lazarus/crashed_ship) +"Uj" = ( +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Uy" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"UJ" = ( +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"UP" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"UU" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_3" + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"UV" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_2_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"UW" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan2" + }, +/area/lv624/lazarus/crashed_ship) +"Vn" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"Vv" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"Vy" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/turf/open/floor/almayer/orange/northeast, +/area/lv624/lazarus/crashed_ship) +"VC" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"VE" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"VL" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"VO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper General Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"VV" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/lv624/lazarus/crashed_ship) +"Wb" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Wf" = ( +/turf/open/floor/almayer/greencorner, +/area/lv624/lazarus/crashed_ship) +"Wi" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/blue/north, +/area/lv624/lazarus/crashed_ship) +"Wl" = ( +/turf/closed/wall/rock/brown, +/area/varadero/exterior/eastocean) +"Wr" = ( +/turf/closed/wall/rock/brown, +/area/varadero/exterior/monsoon) +"WP" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"WV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"XB" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "clf_umbilical_1"; + pixel_x = 1; + pixel_y = 28; + range = 20 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"XM" = ( +/turf/closed/wall/rock/brown, +/area/varadero/exterior/lz2_near) +"Yb" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"Ye" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"Yq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Yu" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Yz" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"YS" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"YU" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + dir = 8 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"YX" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/orange/southwest, +/area/lv624/lazarus/crashed_ship) +"Za" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Zc" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"Zq" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Zr" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/monsoon) +"ZC" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"ZL" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"ZM" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"ZX" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) + +(1,1,1) = {" +XM +Ll +rz +rz +zK +rz +rz +rz +rz +rz +rz +dK +rz +fd +fd +QQ +Mg +Ye +rz +mV +rz +rz +UJ +UJ +wJ +UJ +RH +UJ +Ky +UJ +wZ +UJ +rQ +UJ +UJ +UJ +UJ +UJ +rQ +lc +"} +(2,1,1) = {" +ao +MG +rz +Ye +Jr +eK +rz +rz +eS +mx +Bu +xv +xv +xv +xv +Ny +QQ +QQ +rz +rz +UJ +rQ +UJ +UJ +Zr +ga +UJ +yk +UJ +UJ +rQ +UJ +Wr +UJ +rQ +yB +UJ +UJ +UJ +UJ +"} +(3,1,1) = {" +ao +Ll +rz +Hx +dl +pP +rz +Ye +RN +rz +rz +rz +LM +rz +rz +lt +eK +Cw +gu +gu +ar +gu +gu +JQ +Yz +uM +Op +py +fr +UJ +Wr +Wr +Wr +rQ +UJ +UJ +UJ +rQ +UJ +UJ +"} +(4,1,1) = {" +ao +Ll +rz +rz +Rg +BA +Ye +rz +RN +Zc +yU +rz +rz +rz +Ye +Lp +wK +Qs +pq +YX +mO +rc +Gm +Jg +JQ +Yz +uM +Op +py +UJ +rQ +Wr +Wr +rQ +UJ +UJ +rQ +UJ +UJ +UJ +"} +(5,1,1) = {" +ao +Ll +rz +Ye +QQ +CJ +UP +In +RN +rz +rz +rz +Ye +fr +fr +Cw +gu +BS +wc +kh +mO +eN +bv +yQ +Jg +FN +Hq +wK +Al +UJ +UJ +rQ +Wr +UJ +Px +wZ +UJ +UJ +UJ +UJ +"} +(6,1,1) = {" +ao +Ll +Ye +rz +QQ +QQ +QQ +QQ +Ye +Ye +sE +MS +EX +fr +fr +Qs +VE +Pp +Qp +Tg +mO +sc +dH +dA +zU +Ds +gu +gu +gu +gu +gu +FN +UJ +Px +UJ +UJ +UJ +rQ +Wr +rQ +"} +(7,1,1) = {" +jt +Ll +fr +fr +Wl +Wl +fr +fr +hg +fr +fr +fr +Cw +IO +Oh +kO +QY +Tg +Yu +Qv +mO +xQ +Tg +Tg +tM +mO +PP +Nc +ZX +um +oZ +Jg +JQ +Yz +uM +Op +UJ +Wr +Wr +UJ +"} +(8,1,1) = {" +jt +MG +pd +fr +fr +fr +fr +fr +Rp +cY +Cw +Zq +BS +YU +Ca +mO +Vy +Tg +JB +yS +mO +Rw +dA +Tg +VC +mO +jI +Pl +RX +BW +Pl +Fl +Jg +JQ +Yz +uM +Op +UJ +UJ +UJ +"} +(9,1,1) = {" +jt +Ll +fr +py +py +fr +st +DE +GB +DE +hC +So +zd +Tp +Fz +pc +tJ +JN +tJ +tJ +go +dt +MH +HB +zn +mO +pS +Pl +jI +BW +VL +yx +Fl +Jg +JQ +Yz +uM +Op +UJ +UJ +"} +(10,1,1) = {" +yw +Km +fr +fr +Pg +st +yE +EU +Cw +SA +go +de +Gr +Rr +BW +BW +Tg +Tg +rq +yT +mO +Ka +dA +Tg +dH +DA +mw +pp +mw +bZ +OU +zP +Fc +Fl +Jg +gu +gu +FN +Ho +ga +"} +(11,1,1) = {" +vI +eL +DE +DE +DE +yE +EU +Cw +BS +IJ +RS +tV +oV +ti +Fl +mO +Bz +Tg +Tg +xz +mO +Mk +iC +Tg +Tg +Tg +Fl +eb +cQ +ZL +ZM +KH +sn +AA +Za +sa +Fl +UW +LU +dg +"} +(12,1,1) = {" +vI +EU +EU +EU +EU +Hq +EU +TZ +IJ +BW +mO +UU +BW +sa +Fs +mO +CY +dH +Tg +Qa +pc +tJ +tJ +Tg +jb +go +NU +oW +sa +UV +pH +Fs +sa +BW +GG +BW +Fz +UW +EU +LU +"} +(13,1,1) = {" +vI +Hq +EU +EU +EU +EU +bP +pO +Pq +Fz +Zq +yg +Uj +BW +Bl +yo +WP +kH +Tg +Tg +VO +Tg +Tg +Tg +CC +mO +XB +BW +ka +BW +ss +Fl +Fz +dV +Fz +oV +Pl +rr +EU +LU +"} +(14,1,1) = {" +ph +ef +Tt +Tt +ef +Tt +oi +Fz +IJ +JK +pc +lz +wS +sa +tJ +go +Rn +ol +ol +OA +dH +CC +Tg +CC +DN +vv +Ab +Ua +Fl +sa +bs +Fl +GG +dV +BW +Fz +BW +SS +EU +EU +"} +(15,1,1) = {" +nw +Tt +ef +Tt +Tt +ef +yo +Fl +oV +BW +iZ +yg +BW +oV +Jp +pc +tJ +tJ +tJ +tJ +go +wI +Tg +IM +Go +mO +Ep +Uy +BW +mG +rA +sa +sa +Fz +sa +dV +Pl +sm +EU +EU +"} +(16,1,1) = {" +Tt +nw +Tt +Tt +Tt +Tt +hF +uQ +Kl +Fl +BW +mp +MF +sa +kH +mO +iq +Bm +Py +Gc +mO +CC +EW +le +DN +vv +Fl +CK +cM +sa +rA +IJ +BW +rg +IJ +IJ +Pl +SS +EU +Hq +"} +(17,1,1) = {" +Tt +Tt +nw +nw +nw +nw +Rs +fH +Fl +sa +mO +UU +sa +BW +WV +yo +ic +AK +Bh +Gc +mO +xd +KM +sB +Go +mO +tH +Fl +Fl +Fz +pr +BW +IJ +IJ +Fz +IJ +IJ +pI +EU +EU +"} +(18,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +nw +Rs +fH +Lm +vv +KJ +dH +Tg +dH +mO +cu +gT +gT +gT +mO +Qc +YS +Yb +DN +mO +Aj +FH +Gt +Fl +bO +Za +Fl +Fz +BW +BW +Fz +UW +EU +EU +"} +(19,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +Tt +nw +mO +Dz +mO +lj +dH +Tg +Tg +mZ +Tg +Tg +Tg +Tg +mZ +Tg +Tg +TS +Go +tF +BW +BM +gW +DU +lN +ZC +ZC +uW +Za +Fl +sa +UW +EU +EU +"} +(20,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +Tt +nw +Rs +aO +go +zY +lj +Tg +dH +dH +gT +gT +gT +gT +dH +dH +Tg +CC +DN +lz +Fl +zd +eb +Ms +Fz +Wb +Be +Fl +ns +aO +aO +VV +TQ +EU +"} +(21,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +nw +nw +mO +AU +Qe +Tg +dH +pc +tJ +tJ +tJ +tJ +go +Wi +Tg +IM +Go +mO +NU +BW +PR +Fz +Qq +eb +BM +ns +QM +Im +iJ +Gh +nw +nw +"} +(22,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +nw +Rs +aO +fH +Tg +dH +mO +JL +kF +vM +da +iH +dH +Tg +CC +DN +mO +dh +Fl +so +BW +cp +Fl +ns +QM +Im +iJ +Gh +nw +Tt +Tt +"} +(23,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +nw +nw +Rs +aO +aO +go +Yq +kH +cr +Tg +Tg +mS +Tg +Tg +pV +mO +uq +sa +Fz +sa +cL +ns +QM +Im +iJ +Gh +nw +Tt +Tt +Tt +"} +(24,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +nw +nw +nw +Qs +Vn +Vv +OA +Wf +mO +ur +fH +dH +ha +Mq +aO +aO +aO +aO +aO +VV +nw +nw +nw +nw +Tt +Tt +Tt +Tt +"} +(25,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +nw +Rs +aO +fH +fg +fw +mO +av +mO +qy +ns +VV +nw +nw +nw +nw +nw +nw +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +"} +(26,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +nw +nw +Qs +SW +Hb +mO +GP +mO +ns +QM +Im +iJ +Gh +nw +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +"} +(27,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +nw +Rs +aO +aO +Ug +aO +Ug +QM +Im +iJ +Gh +nw +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +"} +(28,1,1) = {" +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +nw +nw +nw +nw +nw +nw +nw +nw +nw +nw +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +Tt +"} diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 2baad841c255..94b344082653 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -14,10 +14,6 @@ "aad" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior) -"aaf" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "aag" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/snow/brown_base/layer0, @@ -59,11 +55,6 @@ /obj/structure/bed/nest, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"aap" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "aaq" = ( /obj/effect/decal/remains/xeno, /turf/open/auto_turf/snow/brown_base/layer0, @@ -75,14 +66,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"aat" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/minehead) "aau" = ( /obj/structure/platform/strata{ dir = 1 @@ -116,12 +99,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aaz" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "aaA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/spray/cleaner, @@ -231,11 +208,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"aaR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "aaS" = ( /obj/structure/bedsheetbin, /obj/structure/machinery/light/small, @@ -358,17 +330,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"abt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"abu" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "abv" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, @@ -378,12 +339,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aby" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "abz" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -394,75 +349,9 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"abB" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/upp, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "abC" = ( /turf/closed/wall/resin/membrane/strata/on_tiles, /area/strata/ug/interior/jungle/deep/minehead) -"abD" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"abE" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/tool/crowbar, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"abF" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"abH" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"abI" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cdeathalarm_kit, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"abJ" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/attachments, -/obj/item/storage/box/attachments, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"abK" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/landmark/wo_supplies/storage/mines, -/obj/effect/landmark/wo_supplies/storage/mines, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"abL" = ( -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/surface/rack, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"abM" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "abN" = ( /obj/item/stack/rods, /obj/structure/bed/chair{ @@ -483,18 +372,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"abP" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/exterior/paths/cabin_area) -"abQ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/exterior/paths/cabin_area) "abR" = ( /obj/structure/platform/strata{ dir = 1 @@ -505,76 +382,11 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"abS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"abT" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/tool/crowbar, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"abU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"abV" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"abW" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"abX" = ( -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"abY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"abZ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aca" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"acb" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) "acc" = ( /obj/structure/platform/strata, /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"acd" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "ace" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -608,63 +420,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"acj" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"ack" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"acl" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"acm" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"acn" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"aco" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner, -/obj/item/paper_bin, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"acp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"acq" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"acr" = ( -/obj/item/stack/rods, -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"acs" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/inflatable/door, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "act" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/ice/layer1, @@ -698,90 +453,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"acx" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"acy" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"acz" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"acA" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"acB" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"acE" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"acF" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"acG" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/stool, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"acH" = ( -/obj/item/stool, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"acI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"acJ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"acK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"acL" = ( -/obj/structure/machinery/scoreboard{ - id = "basketball"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"acM" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/corpsespawner/russian, -/obj/structure/bed/roller, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"acN" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/hive) "acO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -800,29 +471,9 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"acR" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"acS" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"acT" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) "acU" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"acV" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) "acW" = ( /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, @@ -833,71 +484,10 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"acY" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"acZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ada" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"adb" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"adc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"add" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"ade" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"adf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"adg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) "adh" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/bball/nest) -"adi" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"adj" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "adk" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -924,9 +514,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"ado" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) "adq" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -936,99 +523,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead) -"ads" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/nearlz2) -"adt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"adw" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"adx" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"ady" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"adz" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"adA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"adB" = ( -/obj/structure/closet/basketball, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) "adC" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"adD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"adE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"adF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"adG" = ( -/obj/structure/closet/basketball, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"adH" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) "adI" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/platform/strata, @@ -1049,260 +547,37 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"adM" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "adN" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"adO" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"adP" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "adQ" = ( /turf/closed/wall/wood, /area/strata/ug/interior) -"adR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) "adS" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/research_decks/security) -"adT" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"adU" = ( -/obj/structure/closet/secure_closet/security/soro, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"adV" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) "adW" = ( /obj/item/stack/rods, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"adX" = ( -/obj/structure/barricade/handrail/strata, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"adY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"adZ" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aea" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeb" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aec" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aed" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"aee" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"aef" = ( -/obj/structure/inflatable/door, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "aeg" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"aeh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aei" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"aej" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"aek" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aem" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "aen" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"aep" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeq" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"aer" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aes" = ( -/obj/structure/bed/nest, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"aet" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"aeu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "aev" = ( /obj/effect/landmark/corpsespawner/upp, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"aex" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "aez" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"aeB" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeD" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"aeE" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) "aeJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -1317,35 +592,6 @@ /obj/structure/bedsheetbin, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"aeM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"aeN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"aeR" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeT" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "aeU" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer1, @@ -1359,13 +605,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"aeX" = ( -/obj/structure/filingcabinet{ - layer = 2.9 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "aeY" = ( /turf/closed/shuttle/ert{ icon_state = "upp27" @@ -1376,97 +615,14 @@ icon_state = "upp25" }, /area/strata/ug/interior/jungle/deep/structures/res) -"afa" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"afb" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/item/stack/rods, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"afc" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"afd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"afe" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "aff" = ( /obj/item/lightstick/planted, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/mountain) -"afg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"afh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"afi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"afj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "afk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ag/interior/outpost/gen/bball/nest) -"afl" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"afm" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"afn" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "afo" = ( /obj/structure/inflatable/door, /turf/open/gm/dirt, @@ -1477,40 +633,6 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"afr" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"afs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"aft" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"afu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) "afv" = ( /obj/structure/platform/strata{ dir = 1 @@ -1524,11 +646,6 @@ icon_state = "upp22" }, /area/strata/ug/interior/jungle/deep/structures/res) -"afx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) "afy" = ( /turf/closed/shuttle/ert{ icon_state = "upp23" @@ -1540,51 +657,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) -"afA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/obj/item/device/megaphone, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"afD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"afE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"afF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"afG" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"afH" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) "afI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -1600,43 +672,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/maintenance) -"afK" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"afL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"afM" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"afN" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"afO" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/dogtag, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/gen/bball) -"afP" = ( -/obj/structure/machinery/washing_machine, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) "afQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -1646,22 +681,6 @@ "afS" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) -"afT" = ( -/obj/structure/inflatable/door, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"afU" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "afV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -1669,35 +688,12 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"afW" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"afX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"afY" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) "afZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"aga" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "agb" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -1713,36 +709,10 @@ "age" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"agf" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"agg" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"agh" = ( -/obj/structure/machinery/washing_machine, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) "agi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"agl" = ( -/obj/structure/machinery/light/small, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"agm" = ( -/obj/structure/inflatable/door, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "agn" = ( /obj/structure/barricade/handrail/strata, /turf/open/floor/plating, @@ -1752,66 +722,11 @@ icon_state = "upp4" }, /area/strata/ug/interior/jungle/deep/structures/res) -"agp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) -"agq" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"agr" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"ags" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"agt" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"agu" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) "agv" = ( /turf/closed/shuttle/ert{ icon_state = "upp5" }, /area/strata/ug/interior/jungle/deep/structures/res) -"agw" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"agx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"agy" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"agz" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) "agA" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -1823,93 +738,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"agB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"agC" = ( -/obj/effect/decal/remains/xeno, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"agD" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"agE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"agF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"agG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "agH" = ( /obj/structure/barricade/snow{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"agI" = ( -/obj/structure/bed/nest, -/obj/item/weapon/gun/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"agJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"agK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"agL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"agM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) "agN" = ( /obj/structure/sign/safety/fire_haz, /turf/closed/wall/strata_outpost/reinforced, @@ -1917,14 +751,6 @@ "agO" = ( /turf/open/space/basic, /area/space) -"agP" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"agQ" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "agR" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) @@ -1948,50 +774,19 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"agY" = ( +/obj/structure/bookcase, +/obj/item/book/manual/atmospipes, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "ahc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"ahd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"ahe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"ahf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) "ahg" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/paths/cabin_area/central) -"ahh" = ( -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"ahi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) "ahj" = ( /obj/item/stack/catwalk, /obj/structure/disposalpipe/segment{ @@ -2014,90 +809,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"ahm" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) "ahn" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/interior/outpost/gen/bball/nest) -"aho" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/paper_bin, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ahp" = ( -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ahq" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) "ahr" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/flight_control) -"ahs" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"aht" = ( -/obj/structure/bed/nest, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"ahu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ahv" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/structure/largecrate/guns/russian, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"ahw" = ( -/obj/structure/machinery/processor, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ahx" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ahy" = ( -/obj/structure/kitchenspike, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) "ahz" = ( /obj/structure/barricade/snow{ dir = 8 @@ -2131,10 +849,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"ahJ" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) "ahK" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/tearlake) @@ -2145,10 +859,6 @@ }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"ahM" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) "ahN" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -2156,69 +866,11 @@ }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"ahO" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"ahP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"ahQ" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"ahR" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "ahS" = ( /obj/item/stack/rods, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"ahT" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ahU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"ahV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"ahW" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"ahX" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) "ahY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -2245,31 +897,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"aih" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aii" = ( -/obj/structure/machinery/computer/guestpass, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aij" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aik" = ( -/obj/item/storage/firstaid/adv, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ail" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) "aim" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" @@ -2306,36 +933,11 @@ }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"air" = ( -/obj/item/stool, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) "ais" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" }, /area/strata/ug/interior/jungle/deep/structures/res) -"ait" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"aiu" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aiv" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) "aiw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 @@ -2348,68 +950,18 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) -"aiy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"aiz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) "aiA" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) -"aiB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"aiC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "aiD" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball) -"aiE" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"aiF" = ( -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"aiG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) "aiH" = ( /obj/structure/sign/safety/fridge, /turf/closed/wall/strata_outpost/reinforced, @@ -2421,17 +973,6 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"aiJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) "aiK" = ( /obj/structure/barricade/snow{ dir = 4 @@ -2443,19 +984,6 @@ /obj/structure/machinery/weather_siren, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/bball) -"aiM" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aiN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aiO" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/personal_storage) "aiP" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -2470,34 +998,12 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/tearlake) -"aiU" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aiV" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) "aiW" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"aiX" = ( -/obj/item/clipboard, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aiY" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) "aiZ" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, @@ -2518,15 +1024,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"ajd" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aje" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "ajf" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -2536,37 +1033,12 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"ajg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/flight_control) "ajh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"aji" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"ajj" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"ajk" = ( -/obj/item/weapon/gun/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "ajl" = ( /obj/effect/decal/cleanable/blood, /turf/closed/wall/resin/strata/on_tiles, @@ -2578,56 +1050,10 @@ /obj/item/storage/belt/shotgun, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/hive) -"ajn" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 9 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ajo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/eggplantparm, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ajp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/jellysandwich, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ajr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pspoon, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ajs" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ajt" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) "aju" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"ajv" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/disposals) "ajw" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -2637,180 +1063,30 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"ajx" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/lightreplacer, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajC" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"ajD" = ( -/obj/item/clipboard, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ajE" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "ajF" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; opacity = 0 }, /area/strata/ug/interior/jungle/deep/structures/res) -"ajG" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"ajH" = ( -/obj/structure/bookcase, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ajI" = ( -/obj/item/stool, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ajJ" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "ajK" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) -"ajM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "ajN" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball) -"ajO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ajQ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"ajR" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"ajS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window{ - pixel_y = 31 - }, -/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 13 - }, -/obj/structure/machinery/door/window{ - pixel_y = 10 - }, -/obj/structure/window{ - dir = 8; - pixel_y = 10 - }, -/obj/structure/window, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"ajT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/cash_register/off/open{ - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"ajU" = ( -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 22 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"ajV" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) "ajW" = ( /obj/item/stack/rods, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"ajX" = ( -/obj/structure/closet/wardrobe/suit, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajY" = ( -/obj/structure/closet/wardrobe/red, -/obj/item/clothing/suit/imperium_monk, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajZ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/clothing/suit/storage/bomber, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) "aka" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"akb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/mass_spectrometer, -/obj/item/device/matter_decompiler, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) "ake" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/jungle/deep/minehead) -"akf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"akg" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) "akh" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; @@ -2845,30 +1121,6 @@ opacity = 0 }, /area/strata/ug/interior/jungle/deep/structures/res) -"akn" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"ako" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"akp" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"akq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) "akr" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -2891,47 +1143,12 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/nearlz1) -"akt" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"aku" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"akv" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"akw" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"akx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"aky" = ( -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) "akz" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"akA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) "akB" = ( /obj/structure/barricade/snow{ dir = 1 @@ -2941,15 +1158,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"akC" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"akD" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) "akE" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost, @@ -2966,25 +1174,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"akK" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"akL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"akM" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"akN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) "akO" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating, @@ -2997,13 +1186,6 @@ }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"akQ" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) "akR" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/gen/bball) @@ -3018,76 +1200,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"akU" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"akV" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"akW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"akX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"akY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cubancarp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"ala" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/fishfingers, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"alb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"alc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballspagetti, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"ald" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"ale" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/toastedsandwich, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 8; - pixel_y = 17 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"alf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) "ali" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -3101,54 +1213,10 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"alk" = ( -/obj/structure/closet/wardrobe/medic_white, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"all" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alm" = ( -/obj/structure/closet/secure_closet/personal, +"alt" = ( +/obj/structure/window/reinforced/tinted, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aln" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alo" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Chunkeez Diner door" - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"alq" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"alr" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"als" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/area/strata/ag/interior/administration) "alv" = ( /obj/structure/barricade/snow, /obj/effect/decal/cleanable/blood, @@ -3160,94 +1228,12 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"alx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) "aly" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/structures/res) "alz" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/nearlz1) -"alA" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"alB" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"alC" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"alD" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"alE" = ( -/obj/structure/lz_sign/sorokyne_sign/interior, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"alF" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"alG" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"alH" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"alI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mushroompizzaslice, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"alJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"alK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/omelette, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"alL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"alM" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "alN" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/strata_decals/catwalk/prison, @@ -3255,10 +1241,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"alQ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "alR" = ( /obj/structure/barricade/snow{ dir = 1 @@ -3269,71 +1251,10 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"alT" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alV" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alW" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alY" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alZ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"amc" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"amd" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) "ame" = ( /obj/structure/mirror, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/res) -"amf" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"amg" = ( -/obj/structure/surface/rack, -/obj/item/spacecash/c500, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "ami" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted/devroom) @@ -3362,57 +1283,18 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"amp" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) "amq" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"amr" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"ams" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"amt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) "amu" = ( /obj/structure/prop/almayer/computers/sensor_computer1, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/research_decks/security) -"amv" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "amw" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"amz" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "amA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -3434,26 +1316,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"amL" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"amM" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"amN" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"amO" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) "amP" = ( /obj/structure/machinery/shower{ dir = 1 @@ -3472,25 +1334,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"amY" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"amZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"ana" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "anb" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -3505,10 +1348,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) -"and" = ( -/obj/item/stool, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) "ane" = ( /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/structures/res) @@ -3516,210 +1355,37 @@ /obj/item/storage/firstaid/adv, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"ang" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"anh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"ani" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "anj" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"ank" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"anl" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"anm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"ann" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"ano" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"anp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"anq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"anr" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"ans" = ( -/obj/structure/closet/secure_closet/security/soro, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"ant" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"anu" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"anv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) "anw" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"anx" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"anz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"anA" = ( -/obj/structure/machinery/space_heater, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"anB" = ( -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"anC" = ( -/obj/item/device/megaphone, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "anE" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"anF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) "anG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen/personal_storage) -"anI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) "anJ" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/north_outpost) -"anK" = ( -/obj/structure/machinery/washing_machine, -/obj/item/facepaint/skull, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"anL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"anM" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) "anN" = ( /obj/structure/platform/strata/metal{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"anP" = ( -/obj/structure/bedsheetbin, -/obj/item/device/binoculars/range, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) "anR" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -3732,15 +1398,6 @@ /obj/structure/sign/safety/medical, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/personal_storage) -"anV" = ( -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"anW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) "aoa" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -3751,71 +1408,16 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"aod" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "aoi" = ( /obj/effect/spawner/random/tool, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"aoj" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"aok" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement2, -/area/strata/ag/interior/landingzone_1) -"aol" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "aom" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"aon" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"aoo" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"aop" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/canteen) -"aoq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/canteen) -"aor" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/canteen) -"aos" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"aot" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"aou" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) "aov" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -3824,24 +1426,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"aox" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"aoz" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) "aoA" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer0, @@ -3850,77 +1434,11 @@ /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted/devroom) -"aoC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aoD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aoE" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/security) -"aoF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"aoH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"aoI" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aoJ" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aoK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aoL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aoM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aoO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aoP" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 6; - icon_state = "p_stair_full" +"aoP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 6; + icon_state = "p_stair_full" }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) @@ -3932,45 +1450,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"aoR" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/minehead) "aoT" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"aoU" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"aoV" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/holobadge, -/obj/item/storage/box/holobadge, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"aoW" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"aoX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"aoY" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) "apc" = ( /obj/structure/machinery/floodlight/landing, /turf/open/asphalt/cement, @@ -3983,95 +1468,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"apf" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"aph" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"api" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"apj" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"apk" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"apl" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"apm" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"app" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"apr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"aps" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"apt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"apu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"apv" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"apw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"apx" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"apy" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "apz" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/cabin_area) @@ -4083,185 +1479,23 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"apC" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/radiation, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"apD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"apE" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/suit/bluetag, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"apF" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"apG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) "apI" = ( /obj/structure/curtain/open/shower, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen/personal_storage) -"apJ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"apK" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"apL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"apM" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"apN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"apO" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) "apP" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"apS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/item/reagent_container/food/snacks/monkeyburger{ - pixel_x = -9; - pixel_y = 12 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 6; - pixel_y = 19 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) "apT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, /turf/open/floor/plating, /area/strata/ag/interior/landingzone_1) -"apU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/knife, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"apV" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"apW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"apX" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"apY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"apZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"aqa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"aqb" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"aqc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"aqd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"aqe" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"aqf" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) "aqg" = ( /obj/structure/sign/nosmoking_2, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms) -"aqh" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"aqi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stool, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) "aqj" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2 @@ -4280,17 +1514,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/research_decks/security) -"aqn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"aqo" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) "aqp" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced, @@ -4304,115 +1527,17 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) -"aqs" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"aqt" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"aqv" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/obj/item/storage/box/cups, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aqy" = ( +"aqF" = ( /obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"aqz" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aqA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"aqB" = ( -/obj/item/storage/box/nade_box/tear_gas, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aqC" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) -"aqD" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) -"aqE" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aqG" = ( -/obj/structure/machinery/computer/communications{ dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqJ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqK" = ( -/obj/item/stool, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqL" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqM" = ( -/obj/item/stool, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "aqN" = ( /obj/item/lightstick/planted, /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted/devroom) -"aqP" = ( -/obj/item/device/aicard, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqQ" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) "aqR" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -4425,76 +1550,10 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"aqT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"aqU" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/structures/res) -"aqV" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/structures/res) -"aqW" = ( -/obj/item/clipboard, -/obj/item/clipboard, -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/structures/res) -"aqX" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"aqY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"aqZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"ara" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"arb" = ( -/obj/item/storage/belt/security, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"arc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"ard" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) "are" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"arh" = ( -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) -"ari" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) "arj" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -4518,9 +1577,6 @@ /obj/structure/surface/rack, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"aro" = ( -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/north_outpost) "arp" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer1, @@ -4538,235 +1594,55 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"ars" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"art" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/holobadge, -/obj/item/storage/box/evidence, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aru" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"arv" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ +"arB" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"arw" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"arx" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"ary" = ( -/obj/structure/bed/chair{ +"arI" = ( +/obj/structure/sign/prop3, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/canteen) +"arK" = ( +/obj/structure/platform/strata/metal, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/deep/minehead) +"arL" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/deep/minehead) +"arM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/minehead) +"arN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/minehead) +"arQ" = ( +/obj/structure/closet/fireaxecabinet, +/turf/closed/wall/strata_outpost, +/area/strata/ug/interior/jungle/deep/structures/res) +"arS" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/strata/ag/interior/landingzone_1) +"arZ" = ( +/obj/structure/platform/strata{ dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"arz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"arA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"arB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/security) -"arC" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/stack/folding_barricade, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"arE" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"arF" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) -"arG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) -"arH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"arI" = ( -/obj/structure/sign/prop3, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/canteen) -"arJ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"arK" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/deep/minehead) -"arL" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/deep/minehead) -"arM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/minehead) -"arN" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/minehead) -"arO" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"arP" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"arQ" = ( -/obj/structure/closet/fireaxecabinet, -/turf/closed/wall/strata_outpost, -/area/strata/ug/interior/jungle/deep/structures/res) -"arR" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"arS" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/strata/ag/interior/landingzone_1) -"arT" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"arU" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"arV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"arW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"arX" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"arY" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"arZ" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata, +/obj/structure/platform/strata, /obj/structure/machinery/light/small{ dir = 8 }, /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/dorms) -"asb" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"asc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"asd" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"ase" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) "asf" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -4783,13 +1659,6 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/dorms) -"asi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) "asj" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -4808,12 +1677,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"asm" = ( -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/research_decks) -"asn" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/research_decks) "aso" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/effect/decal/cleanable/blood/gibs/core, @@ -4822,27 +1685,6 @@ "asp" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"asq" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"ass" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "ast" = ( /obj/item/storage/box/donkpockets, /obj/structure/machinery/light/small, @@ -4862,148 +1704,22 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"asw" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "asx" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"asy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"asz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"asA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"asB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "asD" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ug/interior/jungle/deep/structures/res) -"asE" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "asF" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"asG" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"asJ" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asK" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asL" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asN" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asR" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asS" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asT" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asU" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asV" = ( /obj/structure/surface/table/woodentable, /obj/item/device/defibrillator, @@ -5015,118 +1731,18 @@ /obj/item/frame/firstaid_arm_assembly, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"asX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 9 - }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"asY" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/spawner/random/powercell, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"asZ" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "ata" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"atb" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"atc" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"atd" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/item/device/megaphone, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/deep/minehead) -"ate" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/deep/minehead) "atf" = ( /obj/structure/platform/strata/metal{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"atg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c500, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"ath" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"ati" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"atj" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement/cement2, -/area/strata/ug/interior/jungle/deep/structures/res) -"atk" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/deep/structures/res) -"atl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/deep/structures/res) -"atm" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"atn" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) "ato" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/platform/strata{ @@ -5137,23 +1753,9 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"atp" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"atq" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"atr" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) +"ats" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "att" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -5181,19 +1783,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"atz" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"atA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "atB" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -5218,38 +1807,12 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"atF" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"atG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) "atI" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"atJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"atL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "atO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -5257,11 +1820,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"atP" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/coatrack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "atQ" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -5285,210 +1843,48 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"atU" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"atV" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/device/encryptionkey/dutch, -/obj/item/dogtag, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"atW" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "atY" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/deep/minehead) -"atZ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/effect/spawner/random/tool, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/deep/minehead) "aua" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"aub" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"auc" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"aud" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aue" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"auf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/deep/structures/res) -"aug" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/deep/structures/res) -"auh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/deep/structures/res) "aui" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/maintenance) -"auj" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"auk" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"aul" = ( +"auv" = ( +/obj/structure/sign/safety/restrictedarea, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/interior/dorms/maintenance) +"auw" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"aum" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"auz" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ug/interior/jungle/deep/structures/res) +"auC" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/interior/dorms/canteen) +"auL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"aun" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"auo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"aup" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"auq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"aur" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/explosive_mines, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"aus" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"auv" = ( -/obj/structure/sign/safety/restrictedarea, -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/interior/dorms/maintenance) -"auw" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"auz" = ( -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ug/interior/jungle/deep/structures/res) -"auA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"auB" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"auC" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/interior/dorms/canteen) -"auD" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"auE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"auF" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/security) -"auH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"auI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"auJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"auK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"auL" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/security) -"auM" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/security) +"auM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) @@ -5499,49 +1895,10 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"auP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "auQ" = ( /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auU" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/dogtag, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auV" = ( -/obj/item/clothing/gloves/white, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auW" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auX" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auY" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "auZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -5566,26 +1923,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"avc" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"avd" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"ave" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/deep/minehead) -"avf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/deep/minehead) "avg" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/strata, @@ -5602,86 +1939,23 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"avj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"avk" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"avl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) "avm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"avn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) "avr" = ( /obj/item/weapon/wirerod, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"avs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"avt" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) "avu" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"avv" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"avw" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"avx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"avz" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/obj/structure/coatrack, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"avA" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) "avB" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -5697,13 +1971,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"avD" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) "avE" = ( /obj/effect/decal/strata_decals/grime/grime2{ dir = 4 @@ -5729,30 +1996,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"avJ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"avK" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "avL" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/engi) @@ -5767,170 +2010,10 @@ /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"avQ" = ( -/obj/structure/machinery/light/small, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"avR" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"avS" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"avT" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"avU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"avV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"avW" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"avX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"avY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/box/explosive_mines, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"avZ" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"awa" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) "awb" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"awc" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"awd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"awe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"awf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"awg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"awh" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"awi" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"awj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"awk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"awl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/space_mountain_wind, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"awm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"awo" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"awp" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "awq" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/restricted/devroom) @@ -5954,19 +2037,6 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"awv" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"aww" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) "awx" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" @@ -6000,22 +2070,6 @@ "awC" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/structures/res) -"awD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"awE" = ( -/obj/structure/surface/rack, -/obj/item/toy/deck, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"awF" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) "awG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/strata_decals/catwalk/prison, @@ -6042,25 +2096,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"awL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"awM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) "awN" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -6078,18 +2113,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"awQ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/adminext) "awR" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -6100,33 +2123,10 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"awS" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/toy/deck, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"awT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "awU" = ( /obj/structure/closet/secure_closet/personal, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball) -"awW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "awX" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ @@ -6147,10 +2147,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"axa" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "axb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -6159,23 +2155,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"axc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"axd" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"axe" = ( -/obj/structure/bed/chair, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "axf" = ( /obj/structure/tunnel/maint_tunnel{ pixel_y = 16 @@ -6189,19 +2168,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"axi" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"axj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "axk" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer0, @@ -6209,42 +2175,6 @@ "axm" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball) -"axn" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"axp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"axq" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"axr" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/wy_mre, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"axt" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"axu" = ( -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) "axv" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/outpost/gen/bball) @@ -6254,71 +2184,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"axA" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"axC" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"axD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"axE" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/camera/autoname{ - dir = 4 +"axH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"axF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"axG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/structure/bed/chair, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"axH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"axI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"axJ" = ( -/obj/item/device/t_scanner, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"axK" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "axL" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/deck, @@ -6346,46 +2217,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"axO" = ( -/obj/item/reagent_container/food/drinks/shaker, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"axP" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"axQ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"axR" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"axS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"axT" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "axU" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -6398,11 +2229,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/minehead/ruins) -"axW" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/handcuffs, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) "axX" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -6423,46 +2249,6 @@ "ayc" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/structures/res) -"ayd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aye" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ayf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"ayg" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"ayh" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"ayj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"ayk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"ayl" = ( -/obj/structure/inflatable/popped, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) "aym" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -6522,43 +2308,12 @@ "ayw" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"ayx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "ayz" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/north_outpost) -"ayA" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/adminext) -"ayC" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"ayD" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"ayE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "ayF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 @@ -6575,57 +2330,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"ayI" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"ayK" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"ayL" = ( -/obj/item/stack/rods, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"ayM" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"ayN" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/attachments, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "ayO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/north_outpost) -"ayS" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) "ayW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -6640,62 +2350,16 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"ayY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aza" = ( -/obj/item/poster, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"azb" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"azd" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) "aze" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"azf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"azg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "azh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"azi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "azj" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -6703,37 +2367,12 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"azl" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) "azm" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"azo" = ( -/obj/item/dogtag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"azp" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"azq" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"azr" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "azs" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/strata, @@ -6757,37 +2396,6 @@ "azx" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/nearlz1) -"azy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"azz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"azA" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"azB" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"azC" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) "azD" = ( /obj/structure/bed/chair{ dir = 4 @@ -6806,48 +2414,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"azG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/surgical, -/obj/item/storage/surgical_tray, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"azH" = ( -/obj/structure/machinery/optable, -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"azI" = ( -/obj/structure/machinery/bioprinter, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"azL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"azM" = ( -/obj/structure/mirror{ - pixel_y = 24 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) "azO" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost, @@ -6885,10 +2451,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"azV" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "azX" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -6909,68 +2471,15 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/north_outpost) -"aAd" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/fence, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"aAe" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) "aAf" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/platform/strata/metal, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aAg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"aAh" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aAj" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aAk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aAm" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aAn" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aAo" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -6979,63 +2488,12 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aAp" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aAr" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aAs" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aAt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aAu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aAv" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aAw" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/wy_mre, -/obj/item/tool/crowbar, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aAx" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"aAz" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "aAB" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -7043,72 +2501,10 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"aAC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aAD" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aAF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"aAG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aAJ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aAK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aAL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aAM" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"aAO" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aAP" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "aAR" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/north_outpost) @@ -7156,16 +2552,6 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"aAY" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/milk, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aAZ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aBa" = ( /obj/item/dogtag, /obj/effect/decal/cleanable/blood, @@ -7175,13 +2561,11 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/minehead/ruins) -"aBc" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +"aBd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/mushroompizzaslice, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) "aBe" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, @@ -7193,23 +2577,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"aBi" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"aBj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"aBk" = ( -/obj/structure/machinery/light/small, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) "aBl" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -7220,37 +2587,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"aBm" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/holosign/surgery, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"aBn" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"aBo" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/bcircuit, -/area/strata/ag/interior/dorms) -"aBp" = ( -/obj/structure/morgue, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "aBq" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -7259,18 +2595,6 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"aBs" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"aBt" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) "aBu" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/reagent_dispensers/fueltank, @@ -7301,15 +2625,20 @@ "aBy" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ug/interior/jungle/deep/structures/res) -"aBI" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"aBJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"aBA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"aBB" = ( +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"aBJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata, /area/strata/ag/exterior/research_decks) "aBM" = ( /obj/item/tool/extinguisher, @@ -7321,18 +2650,6 @@ /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aBQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aBR" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aBS" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood{ @@ -7340,124 +2657,18 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aBT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aBU" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aBW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aBX" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aBY" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aBZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aCa" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) "aCb" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"aCc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aCd" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"aCe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"aCf" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"aCg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aCh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "aCi" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aCj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/ale, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aCl" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms) @@ -7467,33 +2678,21 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"aCo" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aCq" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ - dir = 1 +"aCp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aCr" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aCs" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "aCt" = ( /obj/item/stack/rods, /obj/item/stack/sheet/metal/medium_stack, @@ -7511,10 +2710,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"aCw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) "aCy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -7533,42 +2728,16 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"aCC" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "aCD" = ( /obj/structure/closet, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"aCE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) "aCG" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"aCH" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"aCI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/bcircuit, -/area/strata/ag/interior/dorms) -"aCK" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) "aCL" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/asphalt/cement, @@ -7612,31 +2781,6 @@ /obj/structure/machinery/light/small, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/north_outpost) -"aCT" = ( -/obj/structure/prop/dam/truck/cargo, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"aCU" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"aCV" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aCW" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aCY" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aDa" = ( /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer2, @@ -7649,75 +2793,11 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) -"aDe" = ( -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aDf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aDg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "aDh" = ( /obj/item/stack/snow, /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"aDi" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aDk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aDl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aDn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aDo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aDp" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"aDq" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "aDr" = ( /obj/structure/machinery/chem_dispenser/soda/beer, /turf/open/floor/interior/plastic, @@ -7735,13 +2815,6 @@ "aDu" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aDw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/coatrack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aDx" = ( /obj/effect/decal/cleanable/blood{ layer = 3 @@ -7757,16 +2830,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) -"aDC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"aDD" = ( -/obj/structure/closet, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) "aDE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) @@ -7774,46 +2837,6 @@ /obj/structure/sign/double/maltesefalcon/left, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"aDG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"aDH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"aDI" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"aDJ" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"aDK" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/dorms_quad) -"aDL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/dorms_quad) "aDM" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -7845,181 +2868,15 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"aDU" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"aDV" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"aDW" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"aDX" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"aDY" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) "aDZ" = ( /obj/structure/platform/strata/metal{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aEa" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"aEb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aEc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) "aEe" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen) -"aEf" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"aEg" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aEh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/carrotfries, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aEi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aEj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aEk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/item/device/encryptionkey/dutch, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aEl" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aEm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aEn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aEo" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aEq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 - }, -/obj/structure/largecrate/random, -/obj/item/seeds/walkingmushroommycelium, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aEr" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/clothing/suit/xenos, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aEs" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aEt" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aEu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aEv" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aEw" = ( /obj/structure/bed/chair{ dir = 4 @@ -8032,12 +2889,6 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/minehead/ruins) -"aEy" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aEC" = ( /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer0, @@ -8046,35 +2897,11 @@ /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_res) -"aEF" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"aEG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"aEH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) "aEI" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"aEJ" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"aEK" = ( -/obj/structure/machinery/chem_dispenser/soda/beer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) "aEL" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced, @@ -8143,287 +2970,46 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aFb" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aFc" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"aFs" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aFd" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"aFt" = ( +/obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aFf" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aFg" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aFi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aFj" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/m56d_hmg/mg_turret{ + dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"aFv" = ( +/obj/structure/machinery/light/small, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/north_outpost) +"aFx" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/north_carp) -"aFk" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"aFl" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFn" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFp" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFq" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFs" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aFt" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/m56d_hmg/mg_turret{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aFu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aFv" = ( -/obj/structure/machinery/light/small, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/north_outpost) -"aFw" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aFx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aFz" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aFA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aFB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) -"aFC" = ( -/obj/structure/machinery/light/small, -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "aFD" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aFE" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aFG" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aFH" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aFI" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aFJ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aFL" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"aFM" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"aFN" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"aFO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"aFP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) "aFQ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/cleanable/blood, @@ -8434,38 +3020,6 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"aFR" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"aFS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"aFT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) "aFV" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer2, @@ -8484,10 +3038,6 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"aGc" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "aGd" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -8519,16 +3069,15 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"aGh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "aGi" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"aGk" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "aGl" = ( /obj/structure/machinery/power/apc{ dir = 4; @@ -8537,19 +3086,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aGm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aGn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aGp" = ( /obj/structure/sign/safety/laser, /turf/closed/wall/strata_outpost/reinforced, @@ -8565,13 +3101,6 @@ "aGs" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/security) -"aGt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aGu" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -8584,45 +3113,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aGx" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aGy" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aGz" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aGA" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aGB" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "aGC" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, @@ -8635,10 +3125,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"aGE" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "aGF" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xtracks" @@ -8654,63 +3140,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aGH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aGI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aGJ" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aGK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aGL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"aGM" = ( -/obj/item/stack/sandbags, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aGN" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "aGO" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -8720,22 +3155,6 @@ "aGP" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"aGQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aGR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aGS" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aGU" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -8744,78 +3163,19 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_res) -"aGX" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) "aGY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"aGZ" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"aHa" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) "aHb" = ( /obj/structure/sign/poster, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"aHc" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"aHd" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/item/tool/kitchen/utensil/pknife, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"aHe" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4 - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) -"aHf" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) "aHh" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/north_outpost) -"aHi" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) "aHj" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -8830,50 +3190,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"aHl" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"aHm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"aHo" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"aHq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aHr" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aHs" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aHt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aHu" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -8917,28 +3233,6 @@ /obj/structure/platform_decoration/strata/metal, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aHJ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aHK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aHL" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "aHM" = ( /obj/item/stool, /obj/structure/machinery/light/small{ @@ -8946,41 +3240,15 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aHN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aHO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) "aHP" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"aHR" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aHS" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) -"aHT" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aHU" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aHV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aHW" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) "aHY" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -8991,10 +3259,6 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"aIa" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aIb" = ( /obj/item/stack/sheet/wood, /obj/item/stack/rods, @@ -9005,105 +3269,40 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"aIf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"aIg" = ( +"aIo" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata, +/area/strata/ag/interior/dorms) +"aIs" = ( +/obj/structure/flora/grass/ice/brown/snowgrassbb_1, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/southresearch) +"aIw" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/adminext) +"aIz" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, /obj/structure/platform/strata/metal{ dir = 8 }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/adminext) +"aIC" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"aIh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/adminext) +"aIG" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"aIi" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"aIj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"aIk" = ( -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"aIl" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"aIm" = ( -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"aIn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/enchiladas, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"aIo" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms) -"aIp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/mushroom, -/obj/item/tool/kitchen/utensil/pspoon, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"aIs" = ( -/obj/structure/flora/grass/ice/brown/snowgrassbb_1, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/southresearch) -"aIw" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 5 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/adminext) -"aIz" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/adminext) -"aIC" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/adminext) -"aIG" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 +/obj/structure/platform/strata/metal{ + dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) @@ -9137,13 +3336,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"aIS" = ( -/obj/structure/machinery/autolathe/full, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aIT" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -9153,106 +3345,20 @@ "aIU" = ( /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead/ruins) -"aIV" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aIW" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aIX" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aIZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aJb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aJc" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aJd" = ( /obj/structure/sign/safety/terminal, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"aJe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aJf" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aJk" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/structures/res) "aJl" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aJm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "aJn" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"aJo" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aJp" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -9271,40 +3377,6 @@ /obj/structure/sign/safety/bridge, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"aJu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aJv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aJw" = ( -/obj/structure/toilet, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"aJA" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) "aJB" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, @@ -9315,34 +3387,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aJD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aJE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aJF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aJG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"aJH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aJI" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aJJ" = ( /obj/structure/barricade/wooden, /obj/item/stack/rods, @@ -9361,44 +3405,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"aJO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"aJP" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"aJQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/syndicate, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) "aJR" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"aJS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) -"aJT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) "aJV" = ( /obj/item/stack/snow, /turf/open/auto_turf/snow/brown_base/layer1, @@ -9472,13 +3484,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"aKj" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "aKk" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -9491,37 +3496,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aKm" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"aKn" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aKp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aKq" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aKr" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aKs" = ( /obj/effect/decal/cleanable/generic, /obj/structure/platform/strata/metal{ @@ -9557,10 +3531,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"aKw" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "aKx" = ( /obj/item/clothing/suit/storage/hazardvest, /obj/item/clothing/suit/storage/hazardvest, @@ -9590,50 +3560,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aKB" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"aKC" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aKD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aKF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"aKG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "aKK" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -9652,55 +3578,10 @@ "aKM" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aKN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"aKQ" = ( -/obj/structure/machinery/chem_dispenser/soda/beer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"aKR" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"aKS" = ( -/obj/item/stack/sandbags, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"aKT" = ( -/obj/structure/surface/table/woodentable, -/obj/item/pizzabox/meat, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"aKU" = ( -/obj/item/stool, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) "aKV" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aKW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aKX" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "aKY" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -9715,14 +3596,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"aLb" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aLc" = ( /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ @@ -9730,81 +3603,13 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"aLf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"aLg" = ( -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"aLh" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"aLi" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) -"aLj" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) -"aLk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/small, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) "aLl" = ( /obj/structure/sign/poster, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms) -"aLo" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/dorms_quad) -"aLp" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) "aLq" = ( /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aLr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/blue, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) -"aLs" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"aLt" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) "aLu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/ice/layer1, @@ -9837,12 +3642,11 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/dorms_quad) -"aLB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"aLE" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) "aLF" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/strata, @@ -9852,13 +3656,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aLH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aLL" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer2, @@ -9872,10 +3669,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/dorms_quad) -"aLO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aLP" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/strata, @@ -9888,237 +3681,57 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aLS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aLT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/item/tool/stamp, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"aMw" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ug/interior/jungle/deep/east_dorms) +"aMx" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/south_res) +"aMy" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 }, -/obj/item/device/flashlight/lamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aLU" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/south_res) +"aMz" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aLW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/south_res) +"aME" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"aMF" = ( +/obj/structure/machinery/weather_siren{ + dir = 4; + pixel_x = 18; + pixel_y = 10 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aLZ" = ( -/obj/structure/pipes/vents/pump{ +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/dorms) +"aMG" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aMb" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aMc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/dorms_quad) +"aMH" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aMd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/dorms_quad) +"aMI" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) -"aMf" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aMg" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue4, -/area/strata/ag/interior/outpost/admin) -"aMh" = ( -/turf/open/floor/strata/blue4/north, -/area/strata/ag/interior/outpost/admin) -"aMi" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"aMj" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"aMk" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"aMl" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"aMm" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"aMn" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"aMo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aMp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aMq" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"aMr" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aMs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) -"aMt" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aMu" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aMv" = ( -/obj/structure/bed, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aMw" = ( -/turf/closed/wall/strata_outpost, -/area/strata/ug/interior/jungle/deep/east_dorms) -"aMx" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/south_res) -"aMy" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/south_res) -"aMz" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "fullgrass_1" - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/south_res) -"aMA" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"aMB" = ( -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"aMC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"aMD" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"aME" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aMF" = ( -/obj/structure/machinery/weather_siren{ - dir = 4; - pixel_x = 18; - pixel_y = 10 - }, -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/dorms) -"aMG" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/dorms_quad) -"aMH" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/dorms_quad) -"aMI" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/dorms_quad) -"aMJ" = ( -/obj/structure/platform/strata/metal{ +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/dorms_quad) +"aMJ" = ( +/obj/structure/platform/strata/metal{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer0, @@ -10138,42 +3751,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aMM" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -10 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"aMN" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) "aMO" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) -"aMP" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"aMQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aMS" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -10199,44 +3782,12 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/dorms_quad) -"aMW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aMX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aMY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aMZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aNa" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aNb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aNc" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/stack/sheet/plasteel/medium_stack, @@ -10253,15 +3804,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aNf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "aNh" = ( /obj/structure/sign/safety/terminal, /turf/closed/wall/strata_outpost, @@ -10270,6 +3812,10 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) +"aNk" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aNl" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) @@ -10288,47 +3834,9 @@ /obj/structure/platform_decoration/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/dorms_quad) -"aNs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) -"aNt" = ( -/turf/open/floor/strata/blue3/east, -/area/strata/ag/interior/outpost/admin) "aNu" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/engi) -"aNv" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"aNw" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aNx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aNy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aNz" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/camera/autoname{ @@ -10351,23 +3859,6 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/dorms_quad) -"aNC" = ( -/obj/structure/closet/crate, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aND" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aNE" = ( -/obj/structure/machinery/space_heater, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 3; - pixel_y = 14 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aNF" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -10382,17 +3873,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"aNI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"aNJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) "aNL" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall/strata_outpost, @@ -10422,15 +3902,6 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"aNO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) "aNP" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -10438,99 +3909,19 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aNQ" = ( -/obj/item/explosive/grenade/phosphorus, -/obj/structure/surface/rack, -/obj/item/folder/red, -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"aNR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"aNS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) -"aNT" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "aNU" = ( /obj/item/lightstick/red/planted, /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aNV" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"aNW" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"aNX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"aNZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "aOa" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aOb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aOc" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aOd" = ( /obj/structure/platform/strata/metal, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aOe" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aOf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aOg" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -10544,25 +3935,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aOi" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aOj" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aOk" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aOl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 @@ -10572,13 +3950,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aOm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aOn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -10586,92 +3957,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aOo" = ( -/obj/structure/machinery/photocopier, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aOp" = ( -/obj/item/stack/catwalk, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"aOq" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aOr" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/south_res) -"aOt" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aOu" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aOv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -9; - pixel_y = 15 - }, -/obj/item/toy/deck, -/obj/item/storage/box/cups, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aOw" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aOx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) -"aOy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aOz" = ( /obj/item/lightstick/red/planted, /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/dorms_quad) -"aOA" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aOB" = ( /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer1, @@ -10689,55 +3979,12 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aOG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/sodawater, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aOJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aOK" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aOL" = ( -/obj/structure/closet/crate/science, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aOM" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/item/stool, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aON" = ( -/obj/item/stack/sheet/wood, -/obj/structure/closet/crate/internals, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aOP" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) "aOR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aOS" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "aOT" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer0, @@ -10778,11 +4025,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aPb" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) "aPc" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -10821,13 +4063,6 @@ /obj/item/tool/extinguisher, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/south) -"aPl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) "aPm" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/admin) @@ -10838,19 +4073,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/dorms_quad) -"aPo" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/item/folder/red, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"aPp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) "aPq" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -10872,176 +4094,29 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aPu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 +"aPH" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/exterior/research_decks) -"aPx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"aPy" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aPz" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - req_one_access = null - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"aPB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aPC" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aPD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aPE" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aPF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aPG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aPH" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"aPI" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"aPJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 4 +"aPI" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"aPJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aPK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aPL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aPN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aPO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aPP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aPQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aPR" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aPS" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "aPT" = ( /obj/effect/decal/cleanable/generic, /obj/structure/platform_decoration/strata/metal, /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aPW" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "aPX" = ( /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer4, @@ -11057,24 +4132,6 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aQb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aQc" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) "aQd" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/light/small{ @@ -11082,18 +4139,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aQe" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aQf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aQg" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -11116,17 +4161,6 @@ /obj/structure/barricade/deployable, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aQj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) "aQk" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 @@ -11140,15 +4174,6 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aQm" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "aQn" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /obj/structure/platform/strata/metal{ @@ -11156,24 +4181,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aQp" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aQq" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aQr" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aQs" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aQt" = ( /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/east_dorms) @@ -11188,62 +4199,10 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/nearlz1) -"aQw" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "aQx" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/south) -"aQy" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"aQz" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"aQA" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"aQB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"aQD" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"aQF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"aQG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) "aQH" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -11270,19 +4229,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"aQP" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"aQQ" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aQR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) "aQS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -11296,50 +4242,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aQV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/lady_finger, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aQW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aQX" = ( -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aQY" = ( -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aQZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aRa" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aRb" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aRc" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/crowbar, @@ -11380,25 +4282,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"aRk" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aRm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aRn" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/bar) "aRo" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light/small, @@ -11419,44 +4302,15 @@ /obj/structure/machinery/m56d_hmg, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aRr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aRs" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aRv" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen/bar) -"aRx" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) "aRy" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aRz" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"aRA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) "aRB" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -11464,68 +4318,14 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"aRC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"aRD" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/machinery/light/small, +"aRE" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +/area/strata/ag/interior/outpost/security) "aRF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aRG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"aRI" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"aRJ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms/south) -"aRK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms/south) -"aRL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) -"aRM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) "aRO" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer2, @@ -11548,57 +4348,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/foyer) -"aRX" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"aRZ" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aSb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aSc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aSd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aSe" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aSf" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aSj" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -11606,89 +4355,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"aSk" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aSl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aSm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aSn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 - }, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/bar) -"aSo" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/bar) -"aSp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"aSq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"aSr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aSs" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aSt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aSu" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aSv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/stack/medical/bruise_pack, -/obj/item/device/radio, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aSw" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aSz" = ( -/turf/open/floor/prison/floor_plate, -/area/strata/ug/interior/jungle/deep/east_dorms) "aSA" = ( /obj/item/organ/eyes, /obj/effect/decal/cleanable/blood, @@ -11710,17 +4376,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"aSG" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement14, -/area/strata/ag/interior/landingzone_1) -"aSH" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) "aSJ" = ( /obj/item/lightstick/planted, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -11738,9 +4393,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aSN" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/interior/landingzone_1) "aSP" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -11748,64 +4400,18 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/nearlz1) -"aSQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) "aSR" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/nearlz1) -"aSS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"aST" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"aSU" = ( -/obj/structure/bookcase, -/obj/item/book/manual/atmospipes, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"aSV" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) "aSW" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aSX" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"aSY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"aSZ" = ( -/obj/structure/surface/rack, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/weldingtool, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) "aTb" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer3, @@ -11829,10 +4435,6 @@ "aTi" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aTk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "aTn" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -11844,27 +4446,6 @@ /obj/structure/largecrate/random/case/small, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/foyer) -"aTs" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"aTt" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"aTu" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) "aTv" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -11872,118 +4453,18 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"aTy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"aTz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"aTA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aTB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aTC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aTD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) "aTE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aTG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/lady_finger, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aTH" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aTI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aTK" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aTL" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aTM" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aTN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aTP" = ( -/obj/item/tool/mop, -/obj/structure/janitorialcart, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"aTQ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) "aTR" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -11991,76 +4472,27 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aTT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/blue3/east, -/area/strata/ag/interior/outpost/admin) -"aTU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aTV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aTW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) "aTX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"aTY" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) "aTZ" = ( /obj/effect/decal/cleanable/generic, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aUb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "aUc" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aUe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aUf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) "aUg" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/north_carp) @@ -12071,49 +4503,9 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) -"aUo" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "aUp" = ( /turf/closed/wall/wood, /area/strata/ag/interior/paths/cabin_area/central) -"aUq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"aUr" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/nearlz1) -"aUs" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"aUt" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"aUu" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"aUv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) "aUx" = ( /obj/structure/platform/strata/metal, /obj/structure/stairs/perspective{ @@ -12144,10 +4536,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aUE" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "aUF" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -12160,140 +4548,16 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/foyer) -"aUM" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"aUN" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) -"aUR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) "aUS" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"aUT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"aUU" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"aUV" = ( -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aUX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"aUY" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aUZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aVa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aVc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aVd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aVe" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aVf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"aVg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) "aVh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -12305,17 +4569,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"aVj" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aVk" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer3, @@ -12327,14 +4580,6 @@ "aVm" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/interior/administration) -"aVn" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aVp" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -12348,35 +4593,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aVx" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"aVy" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/flask, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"aVz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) -"aVA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) -"aVB" = ( -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) "aVD" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/stairs/perspective{ @@ -12386,33 +4602,9 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"aVE" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/barman_recipes, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aVF" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aVG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"aVH" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aVJ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aVK" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/north_carp) @@ -12445,24 +4637,11 @@ "aVT" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/hotsprings) -"aVW" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "aVX" = ( /obj/structure/platform_decoration/strata/metal, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"aVY" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) "aVZ" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/administration) @@ -12497,18 +4676,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/marsh/river) -"aWi" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/marsh/river) -"aWj" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/marsh/river) "aWk" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -12561,37 +4728,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aWB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"aWE" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"aWF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"aWG" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"aWH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"aWK" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) "aWL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, @@ -12632,23 +4768,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aWV" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aWW" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aWZ" = ( /obj/structure/bed/chair{ dir = 4 @@ -12660,15 +4779,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"aXa" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) "aXb" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/platform_decoration/strata{ @@ -12677,67 +4787,12 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aXc" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"aXd" = ( -/obj/item/storage/pill_bottle/bicaridine, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"aXe" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"aXf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"aXg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) -"aXh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) -"aXi" = ( -/obj/structure/machinery/reagentgrinder/industrial, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) "aXk" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aXn" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aXo" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aXp" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin4) @@ -12748,41 +4803,12 @@ "aXr" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/north_carp) -"aXs" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/shed_five_caves) "aXt" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/hotsprings) "aXu" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/hotsprings) -"aXv" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"aXw" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"aXx" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"aXy" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) "aXB" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, @@ -12854,6 +4880,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) +"aXX" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/north_outpost) "aXY" = ( /obj/effect/decal/cleanable/generic, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -12861,13 +4891,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aXZ" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "aYa" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/brown_base/layer2, @@ -12929,116 +4952,19 @@ /obj/item/stack/catwalk, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"aYw" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"aYx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"aYy" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/hotsprings) "aYz" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/jungle/deep/structures/res) -"aYA" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"aYB" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"aYD" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"aYE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"aYG" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/foyer) -"aYH" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aYI" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aYK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aYL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aYO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aYP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +"aYN" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + layer = 2.1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) "aYQ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"aYR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aYT" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aYW" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) "aYX" = ( /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer2, @@ -13051,17 +4977,15 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/north_lz_caves) -"aZb" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/stack/medical/advanced/bruise_pack, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) "aZc" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/north_lz_caves) +"aZd" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "aZe" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -13069,15 +4993,6 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aZh" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) "aZi" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -13103,88 +5018,24 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/river) -"aZm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"aZn" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "aZo" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/north_lz_caves) -"aZp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"aZq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"aZr" = ( -/obj/item/tool/kitchen/rollingpin, -/obj/item/stack/sandbags, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) "aZs" = ( /obj/structure/barricade/snow{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aZt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"aZu" = ( -/obj/item/storage/box/cups, -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/book/manual/surgery, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) "aZv" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/river) -"aZw" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_hacking, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aZx" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/river) -"aZy" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/security_space_law, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aZz" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -13210,45 +5061,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/north_lz_caves) -"aZD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aZE" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/item/clothing/suit/storage/hazardvest, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/wo_supplies/storage/m56d, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"aZF" = ( -/obj/structure/toilet, -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"aZG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "aZH" = ( /obj/item/stack/rods, /turf/open/auto_turf/strata_grass/layer1, @@ -13272,6 +5084,10 @@ "aZL" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/north_carp) +"aZN" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "aZO" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) @@ -13300,25 +5116,9 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"aZX" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) "aZY" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/disposals) -"aZZ" = ( -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"baa" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) "bab" = ( /obj/structure/bed/chair, /turf/open/auto_turf/snow/brown_base/layer1, @@ -13332,10 +5132,6 @@ /obj/structure/tunnel, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"bae" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) "baf" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -13361,11 +5157,6 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/north_lz_caves) -"bal" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "bam" = ( /obj/item/tool/wrench, /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -13390,35 +5181,6 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bao" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"bap" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"baq" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"bar" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) "bas" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -13426,26 +5188,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"bat" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"bau" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) "bav" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, @@ -13456,12 +5198,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"baA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) "baC" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -13497,11 +5233,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"baL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "baM" = ( /obj/structure/bed/chair{ dir = 1 @@ -13509,29 +5240,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"baN" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"baQ" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"baR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"baS" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) "baT" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -13544,12 +5252,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"baV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) "baX" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -13571,28 +5273,12 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) -"bbd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/foyer) "bbe" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outpost/engi/drome) -"bbf" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bbg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "bbh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -13608,40 +5294,6 @@ "bbj" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"bbk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bbl" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bbm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bbn" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"bbo" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bbp" = ( -/obj/structure/bed/stool, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "bbq" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/gen/foyer) @@ -13655,29 +5307,10 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"bbv" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"bbw" = ( -/obj/structure/kitchenspike, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"bbx" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) "bby" = ( /obj/structure/sign/safety/fridge, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) -"bbz" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) "bbA" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -13685,31 +5318,16 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"bbB" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/wood, -/obj/item/stack/sandbags, -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"bbE" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"bbC" = ( -/obj/structure/machinery/reagentgrinder, /obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/vents/pump{ +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"bbD" = ( -/obj/structure/machinery/processor, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "bbF" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; @@ -13717,23 +5335,16 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"bbG" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/ripley_build_and_repair, -/obj/item/book/manual/surgery, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"bbI" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"bbH" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) -"bbJ" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "bbK" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -13754,18 +5365,9 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin4) -"bbN" = ( -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "bbO" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin4) -"bbP" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "bbT" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -13782,15 +5384,6 @@ }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/hotsprings) -"bbX" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "bbZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer1, @@ -13841,20 +5434,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"bck" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) "bcm" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"bco" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "bcp" = ( /obj/structure/barricade/handrail/strata, /obj/structure/barricade/handrail/strata{ @@ -13919,13 +5502,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) -"bcF" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) "bcG" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -13982,19 +5558,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/river) -"bcR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/device/radio, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"bcS" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "bcT" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -14020,57 +5583,11 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"bcX" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/research_decks) "bcY" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"bda" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"bdb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"bdd" = ( -/obj/item/tool/crowbar, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"bde" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"bdg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) "bdi" = ( /obj/structure/bed/chair{ dir = 1 @@ -14080,65 +5597,19 @@ "bdj" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin4) -"bdk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/storage/box/cups, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "bdl" = ( /obj/structure/floodgate, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) -"bdm" = ( -/obj/effect/landmark/corpsespawner/russian, -/obj/structure/bed/roller, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "bdn" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"bdp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bdq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bds" = ( -/obj/item/clipboard, -/obj/item/clipboard, -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bdt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bdu" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bdv" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bdw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"bdw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) @@ -14247,10 +5718,6 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/river) -"bdU" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) "bdV" = ( /obj/structure/platform/strata{ dir = 1 @@ -14312,24 +5779,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/engi/drome) -"beg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/admin) -"beh" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/admin) "bei" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer1, @@ -14365,22 +5814,15 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) -"beq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"ber" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) "bes" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) +"beu" = ( +/obj/structure/toilet, +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "bev" = ( /obj/structure/barricade/snow{ dir = 4 @@ -14391,41 +5833,12 @@ /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"bex" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"bey" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "bez" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) -"beA" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"beB" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "beD" = ( /obj/effect/spawner/random/toolbox{ pixel_y = 12 @@ -14438,23 +5851,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"beF" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/west_engi) "beG" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/east_carp) @@ -14503,45 +5899,12 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) -"beS" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"beT" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"beU" = ( -/obj/item/clipboard, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"beV" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "beW" = ( /obj/structure/barricade/snow{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) -"beX" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/item/storage/briefcase, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) "beY" = ( /obj/structure/bed/chair, /obj/structure/barricade/snow{ @@ -14609,19 +5972,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh) -"bfm" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"bfn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "bfo" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -14652,14 +6002,6 @@ /obj/effect/decal/cleanable/blood, /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) -"bfu" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/research_decks) "bfv" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -14684,34 +6026,16 @@ "bfy" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) -"bfz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"bfD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) +"bfC" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "bfE" = ( /obj/structure/platform/strata/metal{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"bfF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) "bfI" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/strata, @@ -14720,49 +6044,14 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) -"bfM" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) "bfN" = ( /obj/structure/sign/safety/radio_rad, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"bfO" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"bfP" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"bfQ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) "bfS" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"bfU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"bfV" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) "bfW" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/admin) @@ -14770,62 +6059,6 @@ /obj/structure/sign/safety/fire_haz, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"bga" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bgb" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bgc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bgd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bge" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bgf" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bgg" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "bgh" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) @@ -14862,12 +6095,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"bgp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) "bgq" = ( /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer2, @@ -14922,18 +6149,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) -"bgz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"bgA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) "bgB" = ( /obj/structure/platform/strata, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -14976,13 +6191,6 @@ "bgK" = ( /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/gen/bball/nest) -"bgL" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) "bgM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 @@ -15038,20 +6246,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh) -"bgV" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"bgW" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "bgX" = ( /obj/structure/tunnel, /turf/open/auto_turf/ice/layer1, @@ -15088,19 +6282,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/shed_five_caves) -"bhp" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"bhq" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/nearlz1) "bhr" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -15157,22 +6338,10 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/administration) -"bhy" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) "bhz" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/administration) -"bhA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "bhB" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -15181,15 +6350,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) -"bhC" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bhD" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "bhE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -15200,30 +6360,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outpost/engi/drome) -"bhF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bhG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/strata_decals/grime/grime1, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"bhH" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"bhI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "bhJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -15269,10 +6405,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) -"bhQ" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "bhR" = ( /obj/structure/closet, /turf/open/auto_turf/snow/brown_base/layer2, @@ -15284,10 +6416,6 @@ "bhT" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/shed_five_caves) -"bhU" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) "bhV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -15307,21 +6435,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/river) -"bhZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) "bia" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"bib" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) "bic" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, @@ -15340,25 +6457,6 @@ /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh) -"bii" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"bij" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"bik" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"bil" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) "bim" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, @@ -15426,16 +6524,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/shed_five_caves) -"biC" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"biD" = ( -/obj/structure/coatrack, -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "biE" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -15463,16 +6551,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"biK" = ( -/obj/structure/machinery/space_heater, -/obj/item/device/flashlight/lamp{ - pixel_y = 11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "biN" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -15499,136 +6577,25 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/vanyard) -"biT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"biU" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"biV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"biW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) -"biX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"biZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bja" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bjb" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "bjc" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/admin) "bjd" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/vanyard) -"bje" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bjf" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bjg" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"bjh" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bji" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "bjj" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/river) -"bjk" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ +"bjm" = ( +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/machinery/shower{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/east_carp) -"bjl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"bjn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bjo" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"bjp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "bjr" = ( /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) @@ -15780,6 +6747,14 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/shed_five_caves) +"bkc" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "bkd" = ( /obj/structure/platform/strata{ dir = 1 @@ -15847,43 +6822,12 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/shed_five_caves) -"bkt" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"bku" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) "bkv" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/administration) -"bkw" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"bkx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "bky" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, @@ -15904,13 +6848,6 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"bkB" = ( -/obj/structure/window/framed/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) "bkC" = ( /obj/structure/bed/chair{ dir = 4 @@ -15950,17 +6887,11 @@ "bkI" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/shed_five_caves) -"bkJ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/research_decks) +"bkK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "bkL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -15971,10 +6902,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/foyer) -"bkP" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/med) "bkT" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/deep/minehead) @@ -15996,13 +6923,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"bkY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"bkZ" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) "bla" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer3, @@ -16014,10 +6934,6 @@ /obj/structure/sign/safety/medical, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/foyer) -"bld" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "ble" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/center) @@ -16031,23 +6947,12 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/shed_five_caves) -"blh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"bli" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) "blk" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/shed_five_caves) -"bll" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "blm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -16084,13 +6989,6 @@ /obj/structure/machinery/light/small, /turf/open/auto_turf/ice/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"blu" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/mountain) "blv" = ( /obj/structure/platform/strata{ dir = 1 @@ -16163,12 +7061,6 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"blI" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) "blJ" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) @@ -16191,19 +7083,6 @@ /obj/structure/bed/chair, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"blN" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"blO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -9; - pixel_y = 15 - }, -/obj/item/paper_bin, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "blP" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/crash) @@ -16213,48 +7092,15 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"blR" = ( -/obj/item/tool/pen/blue, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"blS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"blT" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"blU" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"blV" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) "blW" = ( /turf/closed/shuttle/ert{ icon_state = "upp5" }, /area/strata/ag/exterior/marsh/crash) -"blX" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"blY" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "bma" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/crash) -"bmb" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) "bmc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light/small, @@ -16263,28 +7109,12 @@ "bme" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"bmf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"bml" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) "bmm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/shed_five_caves) -"bmo" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) "bmp" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) @@ -16295,21 +7125,6 @@ /obj/structure/inflatable, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bms" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"bmt" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "bmu" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/brown_base/layer3, @@ -16416,23 +7231,12 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/crash) -"bmX" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) "bmY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"bmZ" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/exterior/paths/cabin_area) -"bna" = ( -/obj/structure/barricade/snow, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) "bnb" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -16499,15 +7303,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"bnv" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/north_lz_caves) -"bnw" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/north_lz_caves) "bnx" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -16535,27 +7330,11 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bnE" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "bnF" = ( /obj/structure/bed/roller, /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bnG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"bnH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "bnI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, @@ -16603,32 +7382,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/shed_five_caves) -"bnS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"bnT" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"bnU" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "bnW" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/gibs/down, @@ -16642,12 +7395,6 @@ /obj/structure/inflatable/door, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bnZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "boa" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood, @@ -16707,15 +7454,6 @@ /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"boj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "bok" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood, @@ -16739,36 +7477,11 @@ /obj/structure/inflatable/door, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bop" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "boq" = ( /obj/item/stack/medical/splint, /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bos" = ( -/obj/item/paper_bin, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"bot" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"bou" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "bov" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -16781,51 +7494,18 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"box" = ( -/obj/item/device/motiondetector, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"boy" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/item/weapon/harpoon, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"boz" = ( -/obj/item/storage/fancy/cigarettes/lady_finger, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "boC" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) -"boD" = ( -/obj/item/reagent_container/food/drinks/coffee, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "boE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"boF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "boG" = ( /obj/structure/platform/strata{ dir = 1 @@ -16848,21 +7528,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"boJ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/research_decks) -"boL" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) "boM" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/barricade/snow{ @@ -16871,34 +7536,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"boN" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"boO" = ( -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"boP" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/obj/item/storage/box/gloves, -/obj/item/storage/box/pillbottles, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"boQ" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) "boS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -16911,37 +7548,12 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"boU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"boV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"boW" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) "boX" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"boY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) "boZ" = ( /obj/structure/platform/strata{ dir = 1 @@ -16967,18 +7579,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"bpe" = ( -/obj/structure/closet/emcloset, -/obj/item/coin/marine/engineer, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) "bpf" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -17004,12 +7604,6 @@ /obj/item/tool/crowbar, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bpl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "bpm" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/outpost/gen/bball/nest) @@ -17046,33 +7640,20 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) +"bpv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) "bpw" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bpx" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "bpy" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bpz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "bpA" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer0, @@ -17085,101 +7666,6 @@ /obj/structure/inflatable/popped/door, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bpE" = ( -/obj/item/storage/briefcase, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bpF" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"bpG" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"bpH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bpI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"bpJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"bpK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"bpL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bpM" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bpN" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bpO" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bpP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"bpS" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) "bpT" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, @@ -17189,31 +7675,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bpV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"bpX" = ( -/obj/structure/closet/bombcloset, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"bpY" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) "bpZ" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood, @@ -17224,35 +7685,12 @@ /obj/effect/decal/cleanable/blood/gibs/down, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bqb" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) "bqc" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bqd" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/item/stack/medical/bruise_pack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"bqe" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) "bqf" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/platform/east/scrub) @@ -17260,12 +7698,6 @@ /obj/item/stack/medical/splint, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"bqh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) "bqo" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer3, @@ -17283,6 +7715,13 @@ /obj/item/reagent_container/food/snacks/cheesecakeslice, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/platform/east/scrub) +"bqt" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/marsh) "bqu" = ( /obj/structure/bed/chair{ dir = 8 @@ -17366,6 +7805,14 @@ /obj/item/clipboard, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) +"bqT" = ( +/obj/item/book/manual/surgery, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "bqV" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 @@ -17378,12 +7825,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"bqY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "bqZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -17409,12 +7850,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"brd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) "bre" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -17428,11 +7863,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"brg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "brh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer2, @@ -17451,9 +7881,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/southresearch) -"brn" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/north_lz_caves) "bro" = ( /obj/item/storage/box/masks{ pixel_x = -5; @@ -17471,58 +7898,24 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"brr" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) "brs" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/platform/east/scrub) -"brt" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"bru" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "brv" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/strata/ag/interior/administration) -"brw" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"brx" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) "bry" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"brB" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) "brC" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/southresearch) -"brD" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) "brE" = ( /obj/structure/platform/strata{ dir = 4 @@ -17580,10 +7973,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"brS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) "brT" = ( /obj/structure/prop/power_transformer, /turf/open/auto_turf/snow/brown_base/layer0, @@ -17645,14 +8034,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"bsk" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bsl" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) "bsm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -17666,120 +8047,20 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bso" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"bsp" = ( -/obj/structure/prop/ice_colony/tiger_rug{ - layer = 2.1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"bsq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) "bsr" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bss" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"bst" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/machinery/door/airlock/almayer/medical/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) "bsu" = ( /obj/structure/platform_decoration/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bsv" = ( -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"bsw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) -"bsx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/gen/foyer) -"bsy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) "bsz" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/foyer) -"bsA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"bsB" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"bsC" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bsD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bsG" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bsH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bsI" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bsJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"bsK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "bsM" = ( /obj/structure/platform/strata/metal, /obj/item/lightstick/red/planted, @@ -17789,13 +8070,6 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bsO" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "bsP" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/auto_turf/snow/brown_base/layer1, @@ -17815,14 +8089,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"bsS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "bsT" = ( /obj/structure/platform/strata{ dir = 8 @@ -17852,12 +8118,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bsY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "bsZ" = ( /obj/structure/platform_decoration/strata{ dir = 4 @@ -17974,12 +8234,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/crash) -"btz" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "btA" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer1, @@ -17990,43 +8244,18 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/crash) -"btC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "btE" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"btG" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) "btH" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"btI" = ( -/obj/item/storage/secure/briefcase, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"btJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/platform/east/scrub) "btK" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer0_mud, @@ -18037,12 +8266,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"btM" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) "btN" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -18054,14 +8277,9 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"btT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"btU" = ( -/obj/structure/closet, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +"btQ" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) "btV" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -18107,16 +8325,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/crash) -"buc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"bud" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "bue" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer1, @@ -18141,6 +8349,11 @@ /obj/effect/decal/cleanable/ash, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) +"bun" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/gloves/latex, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "buo" = ( /obj/structure/bed/chair{ dir = 4 @@ -18185,17 +8398,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"buy" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/computer/guestpass{ - dir = 4; - reason = "Visitor" - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "buz" = ( /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/auto_turf/snow/brown_base/layer2, @@ -18264,112 +8466,23 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"buP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"buQ" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"buR" = ( -/obj/structure/bookcase, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "buS" = ( /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/crash) -"buT" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"buU" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"buV" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"buW" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"buX" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"buY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"buZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"bvb" = ( -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. There are a few pushpins dangling from it. Crudely carved into the baseboard is a picture of what seems to be a screaming warlock. To their right is a whip lashing out comically over what you figure are software engineers slaving over a box labeled CM13. The words 'spriterz rule' is carved beneath the box."; - pixel_y = 32 - }, -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bvc" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bvd" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "bve" = ( /obj/structure/displaycase, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"bvf" = ( -/obj/structure/lamarr, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bvh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"bvm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bvj" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"bvk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bvl" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "bvn" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -18384,14 +8497,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh) -"bvt" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/effect/landmark/wo_supplies/storage/belts/m41abelt, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "bvu" = ( /obj/structure/cargo_container/ferret/left, /turf/open/auto_turf/snow/brown_base/layer2, @@ -18450,6 +8555,15 @@ /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) +"bvH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) "bvJ" = ( /obj/structure/lz_sign/sorokyne_sign, /turf/open/auto_turf/snow/brown_base/layer1, @@ -18457,10 +8571,6 @@ "bvK" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/engi/drome) -"bvL" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) "bvM" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer0, @@ -18586,27 +8696,9 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/nearlz2) -"bwn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bwo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "bwp" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/administration) -"bwq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) "bwr" = ( /obj/structure/platform/strata{ dir = 1 @@ -18640,12 +8732,6 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/nearlz2) -"bwy" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/platform/east/scrub) "bwA" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -18670,15 +8756,6 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/platform/east/scrub) -"bwF" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) "bwH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -18714,10 +8791,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/nearlz2) -"bwR" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) "bwT" = ( /obj/structure/platform/strata{ dir = 8 @@ -18814,47 +8887,22 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/nearlz2) -"bxl" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"bxm" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"bxn" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/obj/structure/kitchenspike, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "bxo" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/nearlz2) -"bxr" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) "bxs" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/administration) -"bxu" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 +"bxw" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "bxy" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/marsh) @@ -18880,17 +8928,6 @@ /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"bxE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bxF" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) "bxG" = ( /obj/structure/platform/strata{ dir = 4 @@ -18904,12 +8941,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/nearlz2) -"bxI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "bxJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ @@ -18917,43 +8948,6 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bxL" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bxM" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bxN" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bxO" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bxP" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) "bxQ" = ( /obj/structure/platform/strata{ dir = 4 @@ -18970,19 +8964,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh) -"bxT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bxV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) "bxW" = ( /obj/structure/platform/strata{ dir = 1 @@ -18992,10 +8973,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"bxX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/northeast, -/area/strata/ag/interior/outpost/med) "bxY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -19034,12 +9011,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"bye" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) "byf" = ( /obj/structure/platform/strata{ dir = 4 @@ -19066,12 +9037,6 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted) -"byl" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) "bym" = ( /obj/structure/barricade/snow{ dir = 4 @@ -19101,18 +9066,9 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted) -"byv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/white_cyan4/north, -/area/strata/ag/interior/outpost/med) -"byF" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) +"byL" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "byN" = ( /obj/structure/platform_decoration/strata, /obj/effect/blocker/sorokyne_cold_water, @@ -19141,120 +9097,15 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"byY" = ( -/obj/item/tool/pen/blue, -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"byZ" = ( -/mob/living/simple_animal/cat/Runtime{ - desc = "Also known as Bernie. Fond of potted plants and Space Carp flavored treats."; - name = "Bernard" - }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"bza" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"bzb" = ( -/obj/item/clipboard, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bzc" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bzd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bzf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"bzg" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) "bzh" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior) -"bzk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"bzl" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bzm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bzn" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bzo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bzp" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"bzq" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"bzr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"bzs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"bzt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"bzw" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "bzx" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -19262,40 +9113,17 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"bzG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ +"bzA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"bzQ" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"bzH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"bzM" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/stack/rods, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"bzN" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"bzR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) "bzV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -19313,21 +9141,10 @@ "bAf" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/river) -"bAi" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) -"bAp" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) "bAq" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/nearlz1) -"bAr" = ( -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) "bAt" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/canteen) @@ -19373,55 +9190,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"bAB" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"bAF" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"bAG" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"bAH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bAI" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"bAJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"bAK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"bAL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) "bAM" = ( /obj/structure/machinery/alarm{ dir = 8; @@ -19442,40 +9210,42 @@ /obj/item/coin/uranium, /turf/open/asphalt/cement, /area/strata/ag/interior/administration) -"bAR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"bAQ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "bAS" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"bAT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"bAW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +"bBc" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"bBg" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"bBk" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) +/area/strata/ag/interior/outpost/security) +"bBm" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "bBr" = ( /obj/structure/flora/bush/ausbushes/genericbush, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"bBB" = ( -/turf/open/floor/strata/white_cyan4/east, -/area/strata/ag/interior/outpost/med) +"bBF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "bBN" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "leafybush_2" @@ -19487,47 +9257,13 @@ icon_state = "upp20" }, /area/strata/ug/interior/jungle/deep/structures/res) -"bBQ" = ( -/obj/structure/disposalpipe/segment{ +"bCb" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"bBT" = ( -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"bBU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/southwest, -/area/strata/ag/interior/outpost/med) -"bBV" = ( -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) -"bBX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1; - icon_state = "commb" - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"bBY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "bCd" = ( /obj/structure/platform/strata{ dir = 1 @@ -19535,127 +9271,13 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"bCf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"bCh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"bCm" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bCn" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/storage/box/masks{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bCo" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bCp" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"bCq" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"bCt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"bCv" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 1; - id_tag = "bunker_or1"; - name = "\improper Operating Room 1" - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/med) -"bCw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"bCx" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"bCy" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "bCz" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi/drome) -"bCA" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bCH" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bCK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bCL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"bCN" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"bCJ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/research_decks/security) "bCP" = ( /obj/structure/window/reinforced/tinted{ dir = 4 @@ -19664,12 +9286,6 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"bCY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "bDl" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8; @@ -19681,67 +9297,6 @@ "bDm" = ( /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead) -"bDn" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"bDo" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"bDq" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"bDr" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bDs" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bDt" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bDv" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"bDy" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/rack, -/obj/item/device/radio, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bDz" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"bDA" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) "bDB" = ( /obj/item/trash/plate{ pixel_x = 1; @@ -19797,17 +9352,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"bDT" = ( -/obj/structure/fence, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"bDU" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) "bEh" = ( /obj/structure/platform/strata{ dir = 4 @@ -19816,13 +9360,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"bEy" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"bEE" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) "bER" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -19860,16 +9397,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"bFf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/folder/red, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"bFg" = ( -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "bFi" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -19881,70 +9408,26 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"bFl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"bFs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"bFv" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) -"bFx" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"bFB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"bFC" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bFF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) "bFG" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/cabin_area) +"bFI" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"bFJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/reagent_container/spray/pepper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "bFX" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "sunnybush_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"bFZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "bGa" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, @@ -19955,17 +9438,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"bGc" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"bGd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) "bGg" = ( /obj/structure/platform/strata{ dir = 8 @@ -19974,235 +9446,49 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"bGk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"bGi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "bGo" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/research_decks) -"bGq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/storage/briefcase, -/obj/structure/machinery/camera/autoname{ - dir = 4 +"bGF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/strata/metal{ + dir = 8 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bGr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bGs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"bGx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/bicaridine, -/obj/structure/machinery/door/window/eastright{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"bGy" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bGD" = ( -/obj/structure/machinery/photocopier, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bGH" = ( -/obj/structure/bed/chair{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"bGW" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"bHi" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"bGJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"bGM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"bGO" = ( -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) "bHj" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/minehead) -"bHo" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"bHp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"bHq" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"bHr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bHs" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bHt" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/maintenance) -"bHy" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"bHA" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bHB" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bHD" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"bHE" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"bHF" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"bHH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bHN" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bHP" = ( +"bHL" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bHQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bHS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"bHT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"bHV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"bHW" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bHY" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"bIb" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bIp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bIq" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"bIr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ug/interior/jungle/deep/structures/engi) +"bIl" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) "bIt" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -20219,12 +9505,6 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"bIv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) "bIx" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/queen_spawn, @@ -20242,16 +9522,6 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/maintenance) -"bIE" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) "bIH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -20269,13 +9539,15 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/maintenance) -"bIL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "bIM" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/north_lz_caves) +"bIR" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) "bIV" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -20290,52 +9562,6 @@ /obj/structure/closet/secure_closet/personal, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"bIY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bJb" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"bJc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"bJg" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"bJx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"bJy" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bJz" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bJC" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "bJE" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -20364,134 +9590,36 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bJV" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bJW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bJX" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bKa" = ( -/obj/item/clipboard, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bKb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"bKc" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bKn" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +"bKh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"bKj" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"bKp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"bKC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/area/strata/ag/interior/outpost/canteen/personal_storage) +"bKk" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"bKv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"bKD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms/south) "bKK" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"bKL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bKM" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "bKN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ag/interior/paths/cabin_area/central) -"bKO" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/reagent_container/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" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bKP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/med) -"bKR" = ( -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/med) -"bKS" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "bKT" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -20499,140 +9627,76 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) -"bKZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"bLa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "bLb" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/admin) -"bLi" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "bLj" = ( /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/north_outpost) -"bLk" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"bLo" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"bLt" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "bLz" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"bLA" = ( -/obj/item/device/radio, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bLB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"bLC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "bLD" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"bLH" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"bLJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"bLK" = ( +"bLE" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ag/interior/dorms/south) "bLR" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"bMd" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/north_lz_caves) -"bMB" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/north_lz_caves) -"bME" = ( -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/mountain) -"bMF" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bMG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/north_lz_caves) -"bMP" = ( -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) -"bMQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"bMR" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"bMV" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"bLX" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bMX" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bMZ" = ( +/area/strata/ag/interior/tcomms) +"bLY" = ( +/obj/item/tool/kitchen/knife/butcher, /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballsoup, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"bNa" = ( -/obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) +"bMs" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"bMy" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) +"bME" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/mountain) +"bMI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/device/flashlight/lamp{ + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"bMS" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/item/stack/medical/bruise_pack, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "bNh" = ( /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, @@ -20648,17 +9712,14 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"bNm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) "bNq" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/north_outpost) +"bNL" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "bNM" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -20682,10 +9743,15 @@ "bNW" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ag/interior/mountain) -"bOh" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) +"bNY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) "bOj" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -20695,187 +9761,48 @@ /obj/structure/platform_decoration/strata/metal, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bOp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +"bOr" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bOq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"bOQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"bOs" = ( -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"bOt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"bOv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"bOw" = ( -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"bOx" = ( -/obj/item/clipboard, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"bOz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/storage/pill_bottle/antitox/skillless, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"bOA" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bOE" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"bOF" = ( -/obj/item/book/manual/surgery, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bOG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"bOH" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bOV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) +/area/strata/ag/interior/outpost/engi/drome) "bOZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"bPe" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "bPf" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/personal_storage) -"bPn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) "bPo" = ( /turf/closed/shuttle/ert{ icon_state = "upp_rightengine" }, /area/strata/ug/interior/jungle/deep/structures/res) -"bPq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bPr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "bPs" = ( /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"bPt" = ( -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"bPu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"bPv" = ( -/obj/item/tool/kitchen/knife/butcher, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) "bPy" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/shed_five_caves) -"bPA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"bPX" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bPY" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bPZ" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bQa" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"bQg" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) +"bPK" = ( +/obj/structure/fence, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"bQc" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "bQi" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; @@ -20888,61 +9815,21 @@ opacity = 0 }, /area/strata/ug/interior/jungle/deep/structures/res) -"bQp" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"bQq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"bQs" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"bQu" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "This jukebox only takes quarters and you seem to be out of them at the moment."; - icon = 'icons/obj/structures/props/misc.dmi'; - icon_state = "jukebox"; - name = "Rockin Robin 2300 Jukebox"; - pixel_x = -5; - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"bQv" = ( -/obj/item/stack/sandbags, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) "bQA" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"bQS" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bQT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bQU" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) +"bQD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"bQY" = ( +/obj/item/tool/wrench, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "bRb" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -20950,9 +9837,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"bRe" = ( -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/north_lz_caves) "bRf" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/north_lz_caves) @@ -20972,50 +9856,10 @@ "bRl" = ( /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"bRp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bRs" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"bRu" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"bRw" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"bRT" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"bRU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"bRY" = ( -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"bRZ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +"bRC" = ( +/obj/structure/closet/crate/radiation, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "bSa" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -21024,18 +9868,6 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bSd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"bSv" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) "bSD" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -21044,94 +9876,38 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bSE" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"bSF" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"bSG" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"bSI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"bSJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"bSN" = ( +"bSQ" = ( /obj/structure/surface/rack, -/obj/item/storage/box/gloves, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"bST" = ( -/obj/item/storage/briefcase, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"bTa" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/research_decks/security) -"bTb" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"bTk" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/north_outpost) -"bTl" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/north_outpost) -"bTp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bTr" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +/area/strata/ag/interior/outpost/engi/drome) +"bSR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + req_one_access = null }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "bTD" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"bTE" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bTF" = ( -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bTG" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"bTK" = ( +/obj/structure/bed/nest, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/bed/chair, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"bTL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "bTS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -21143,187 +9919,28 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/research_decks/security) -"bUm" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"bUn" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"bUo" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"bUp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bUq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"bUs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"bUt" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"bUu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"bUv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bUx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 +"bUD" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/floor3/east, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/exterior/research_decks) -"bUF" = ( -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/minehead) -"bUI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "bUJ" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) -"bUK" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bUL" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"bUM" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"bUO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/canteen) -"bUU" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"bUV" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) "bUX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/gen/bball/nest) -"bUY" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/reagent_container/spray/pepper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"bUZ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"bVa" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"bVc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"bVd" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"bVf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"bVn" = ( +"bVh" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"bVo" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"bVr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bVs" = ( +/obj/item/reagent_container/food/condiment/sugar, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/area/strata/ag/interior/outpost/canteen/bar) "bVw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -21338,17 +9955,6 @@ "bVx" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/water) -"bVF" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/clothing/gloves/latex, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bVL" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/condimentbottles, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "bVM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -21358,15 +9964,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"bVU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) "bVV" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -21374,124 +9971,49 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/security) +"bVW" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "bVX" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bWa" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/north_lz_caves) -"bWc" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bWd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bWe" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/minehead) -"bWi" = ( -/obj/structure/largecrate/random, -/obj/item/storage/belt/shotgun, -/obj/item/storage/backpack/lightpack, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"bWk" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"bWl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ag/interior/outpost/engi) -"bWm" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick, -/obj/item/storage/box/lightstick, -/obj/item/storage/box/lightstick, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"bWw" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bWx" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bWy" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"bWB" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bWD" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/north_outpost) -"bWH" = ( -/obj/structure/platform_decoration/strata/metal{ +"bWl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ag/interior/outpost/engi) +"bWt" = ( +/obj/structure/largecrate/random, +/obj/item/toy/deck, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/center) +"bWH" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"bWK" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"bWM" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) "bWN" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bWZ" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"bXa" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"bXc" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ +"bWS" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"bWT" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bXd" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ @@ -21513,35 +10035,12 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/dorms) -"bXg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"bXi" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/research_decks) -"bXj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/research_decks) -"bXq" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"bXv" = ( -/obj/structure/bed/chair{ +"bXl" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"bXw" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) "bXC" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -21551,23 +10050,17 @@ /obj/effect/landmark/corpsespawner/doctor, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) +"bXD" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) "bXG" = ( /obj/effect/spawner/random/tool, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"bXQ" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) "bXV" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"bXW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) "bXY" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall/strata_outpost/reinforced, @@ -21577,30 +10070,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/dorms) -"bYb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"bYg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"bYk" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/security) "bYl" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/effect/decal/cleanable/blood, @@ -21610,39 +10079,14 @@ /obj/item/stool, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"bYu" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"bYA" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"bYD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +"bYn" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "bYE" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"bYG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) "bYJ" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -21658,77 +10102,22 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"bYN" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"bYR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) "bYS" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"bYU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "bYV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"bZf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"bZh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) "bZj" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/administration) -"bZq" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"bZB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bZC" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"bZD" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"bZE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bZG" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bZH" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, @@ -21762,49 +10151,6 @@ "bZX" = ( /turf/open/gm/coast/east, /area/strata/ug/exterior/jungle/deep/carplake_center) -"bZY" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/plump_pie, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"cac" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"cad" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"caf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/security) -"cah" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"cak" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"cam" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cao" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/interior/plastic, @@ -21829,25 +10175,10 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"caE" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"caI" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/adminext) -"caL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, +"caP" = ( +/obj/structure/machinery/light/small, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"caM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ag/interior/outpost/canteen/personal_storage) "caV" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood, @@ -21870,39 +10201,26 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"cbi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/emergency, -/obj/item/device/radio, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/north_lz_caves) "cbj" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"cbp" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, +"cbk" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/attachments, +/obj/item/storage/box/attachments, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "cbu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/emergency, /obj/item/device/radio, /turf/open/asphalt/cement, /area/strata/ag/exterior/north_lz_caves) -"cbv" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"cbz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cbE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -21931,101 +10249,15 @@ "cbO" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) -"cbR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"cbS" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"cbW" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"ccc" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) "ccd" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/research_decks) -"ccg" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/gen/bball) -"cch" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"cci" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "ccj" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/north_outpost) -"cck" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"ccn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"cco" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/security) -"ccp" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ccq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ccr" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "ccs" = ( /turf/open/floor/strata, /area/strata/ag/exterior/paths/adminext) -"cct" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"ccu" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"ccy" = ( -/obj/structure/fence, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/adminext) "ccz" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -22069,48 +10301,23 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) -"ccW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"ccX" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"ccY" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "cdb" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"cdc" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"cdd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/device/flashlight/lamp{ - pixel_x = -4; - pixel_y = 14 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "cdh" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cdj" = ( -/obj/structure/bed/chair{ - dir = 4 +"cdk" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "cdl" = ( /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, @@ -22118,9 +10325,6 @@ "cdm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/canteen) -"cdn" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "cdo" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) @@ -22133,27 +10337,10 @@ "cdA" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/bball) -"cdC" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = null - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/storage/pill_bottle/alkysine, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) "cdD" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"cdF" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "cdG" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -22162,17 +10349,9 @@ /obj/structure/sign/double/maltesefalcon/right, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"cdK" = ( -/obj/structure/xenoautopsy/tank/broken{ - desc = "A broken cryo tank, this must've been where it all began..." - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"cdR" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) +"cdI" = ( +/turf/open/floor/strata/blue4/north, +/area/strata/ag/interior/outpost/admin) "cdT" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -22181,107 +10360,12 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/med) -"cdW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"cdX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"cdY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"cdZ" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"cea" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) "ced" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/gen/bball/nest) -"cee" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"ceg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) "cei" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) -"ceq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) -"cer" = ( -/obj/structure/machinery/smartfridge/drinks, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"cet" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"ceu" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/tool/match, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"cew" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"ceG" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"ceI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"ceK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"ceL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"ceM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) -"ceN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "ceQ" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/north_carp) @@ -22289,12 +10373,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"ceV" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) "ceW" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/vending/cola, @@ -22308,56 +10386,16 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"ceY" = ( -/obj/structure/machinery/holosign/surgery, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 1; - id_tag = "bunker_or1"; - name = "\improper Operating Room 1" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"ceZ" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/southwest, +"cfk" = ( +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"cfg" = ( -/turf/open/floor/strata/multi_tiles/southwest, +"cfr" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/interior/dorms/maintenance) +"cft" = ( +/obj/structure/sign/safety/maint, +/turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi/drome) -"cfi" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"cfl" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"cfp" = ( -/obj/structure/surface/rack, -/obj/item/paper_bin, -/obj/item/stack/sheet/glass, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"cfr" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/interior/dorms/maintenance) -"cft" = ( -/obj/structure/sign/safety/maint, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/engi/drome) -"cfv" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/security) "cfx" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) @@ -22381,23 +10419,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"cfC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cfD" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"cfE" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "cfF" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer0, @@ -22408,22 +10429,28 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"cfJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"cfK" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "cfR" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/administration) +"cfU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) "cfX" = ( /obj/structure/largecrate/random, /obj/item/storage/belt/grenade/large/full, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"cfY" = ( -/obj/structure/fence, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "cfZ" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 @@ -22434,59 +10461,21 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"cgd" = ( -/obj/structure/fence, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"cge" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"cgg" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"cgm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cgn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cgo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cgp" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "cgq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"cgu" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) +"cgs" = ( +/obj/item/clipboard, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "cgE" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_res) -"cgN" = ( -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome) +"cgL" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) "cgO" = ( /turf/closed/shuttle/ert{ icon_state = "upp20" @@ -22502,58 +10491,10 @@ icon_state = "upp25" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"cgR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome) -"cgS" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "cgT" = ( /obj/structure/mirror, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"cgU" = ( -/obj/structure/toilet, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/wo_supplies/storage/belts/medical, -/obj/item/dogtag, -/obj/item/clothing/suit/armor/riot, -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"cgW" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cgX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"cgY" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"cgZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"chd" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "che" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/med) @@ -22572,41 +10513,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) -"chp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"chq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"chr" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"cht" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"chw" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"chx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 +"chv" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"chy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "chz" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/bed/medevac_stretcher, @@ -22615,10 +10531,6 @@ "chB" = ( /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"chC" = ( -/obj/effect/spawner/random/attachment, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "chJ" = ( /mob/living/simple_animal/hostile/carp{ desc = "You think this might be Glubs's son." @@ -22632,57 +10544,26 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"chS" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"chX" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"cie" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "cif" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) -"cij" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) "cik" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"cim" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"cin" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"cio" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) +"cip" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "cis" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"ciu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) "civ" = ( /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/north_carp) @@ -22706,14 +10587,17 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/landingzone_checkpoint) -"ciH" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"ciW" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"ciP" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"ciY" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cjb" = ( /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) @@ -22725,38 +10609,13 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"cji" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"cjj" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"cjk" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"cjl" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cjn" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen) -"cjq" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "cjr" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"cjv" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) "cjw" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/south) @@ -22773,12 +10632,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"cjz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) "cjA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -22794,188 +10647,31 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) -"cjG" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"cjH" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"cjI" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"cjN" = ( -/obj/structure/window/framed/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"cjO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"cjP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"cjQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"cjR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"cjS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/northeast, -/area/strata/ag/interior/outpost/med) -"cjU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"cjV" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"cjW" = ( +"cjE" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"cjX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"cjZ" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"cka" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"ckb" = ( -/obj/structure/largecrate/guns/russian, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"ckd" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"cke" = ( -/obj/item/stool, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "ckf" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ckx" = ( -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"ckz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/white_cyan4/north, -/area/strata/ag/interior/outpost/med) -"ckA" = ( -/obj/structure/surface/rack, -/obj/item/paper_bin, -/obj/item/stack/sheet/glass, +"ckt" = ( /obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"ckB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"ckC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"ckE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "ckF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"ckG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"ckH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"ckI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) "ckK" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) @@ -22983,88 +10679,20 @@ /obj/structure/machinery/light_switch, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) -"ckM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ckN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"ckR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"ckS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"ckX" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"ckY" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) "ckZ" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/north_lz_caves) -"cla" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"cle" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "clg" = ( /turf/closed/shuttle/ert{ icon_state = "upp22" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"clo" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"clr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) "cls" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/shuttle/ert{ icon_state = "upp23" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"clv" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "clw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/camera/autoname{ @@ -23083,21 +10711,6 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"clz" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"clG" = ( -/obj/item/dogtag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) "clI" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/light/small, @@ -23110,25 +10723,15 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"clL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) +"clO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "clU" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"clW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) "cmf" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -23139,9 +10742,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"cmn" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) "cmo" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/restricted/devroom) @@ -23152,56 +10752,22 @@ "cmq" = ( /turf/open/floor/greengrid, /area/strata/ag/interior/landingzone_checkpoint) -"cmt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) "cmu" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/north_carp) -"cmA" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"cmB" = ( -/obj/structure/bed/nest, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "cmC" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"cmD" = ( -/obj/effect/decal/strata_decals/grime/grime3{ +"cmN" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"cmE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"cmF" = ( -/obj/structure/surface/rack, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/item/tool/shovel/etool/folded, -/obj/item/tool/shovel/etool/folded, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "cmX" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/research_decks) -"cmZ" = ( -/obj/structure/fence, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) "cna" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, @@ -23216,169 +10782,37 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"cnc" = ( -/obj/item/storage/box/rxglasses, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"cnd" = ( -/obj/item/storage/pill_bottle/russianRed, -/obj/item/storage/pill_bottle/russianRed, -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/inaprovaline, -/obj/item/storage/box/gloves, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"cne" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan4/east, -/area/strata/ag/interior/outpost/med) -"cnf" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"cng" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"cnh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"cni" = ( -/obj/structure/bed/roller, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"cnj" = ( -/turf/open/floor/strata/white_cyan3/southwest, -/area/strata/ag/interior/outpost/med) -"cnk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) "cnm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) -"cnp" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"cnr" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) +"cnn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/stack/medical/bruise_pack, +/obj/item/device/radio, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "cnu" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"cnv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"cnw" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/obj/item/tank/anesthetic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"cnx" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/storage/belt/utility/full, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"cnA" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) "cnB" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/south) -"cnC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"cnK" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "cnO" = ( /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/dorms/hive) -"cnQ" = ( -/obj/item/clipboard, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "cnS" = ( /turf/closed/shuttle/ert{ icon_state = "upp4" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"cnV" = ( -/obj/item/stack/catwalk, -/obj/item/tool/wrench, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"cnZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"coa" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) "cof" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/flight_control) -"cog" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"coh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"coi" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"cok" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) "col" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -23386,6 +10820,9 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"con" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "cor" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/north_carp) @@ -23403,12 +10840,14 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"cov" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"cox" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "coy" = ( /obj/structure/bed/chair/office/light, /obj/effect/decal/strata_decals/catwalk/prison, @@ -23435,93 +10874,41 @@ icon_state = "upp5" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"coO" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) +"coK" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "coP" = ( /obj/structure/bed/chair/office/light, /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) -"coS" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"coU" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"coV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"coX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"coY" = ( -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"coZ" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "cpd" = ( /obj/structure/sign/safety/fire_haz, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) -"cpe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) "cpg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_dorms) -"cpi" = ( -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/splint, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/engi/drome) -"cpo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"cpq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"cpE" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"cpR" = ( -/obj/structure/platform/strata/metal{ +"cpv" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"cpz" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"cpA" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"cpL" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "cpU" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/maint/canteen_e_1) @@ -23531,12 +10918,19 @@ "cpW" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/hotsprings) -"cpY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"cpZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/lady_finger, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "cqf" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 @@ -23546,18 +10940,24 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"cqm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "cqr" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, /turf/open/asphalt/cement, /area/strata/ag/interior/administration) -"cqu" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) +"cqs" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "cqE" = ( /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) @@ -23574,13 +10974,6 @@ "cqH" = ( /turf/open/floor/strata, /area/strata/ag/interior/administration) -"cqI" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/clothing/gloves/yellow, -/obj/item/tool/extinguisher, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/north_lz_caves) "cqM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, @@ -23588,187 +10981,58 @@ "cqQ" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/administration) -"crb" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"crd" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"cqX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"crf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"crk" = ( -/obj/effect/glowshroom/single, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/north_lz_caves) -"crp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"crq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"crt" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ag/interior/landingzone_1) -"cru" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"cry" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"crz" = ( -/obj/structure/bed/nest, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "crA" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms/hive) "crE" = ( /turf/open/floor/plating, /area/strata/ag/interior/landingzone_1) -"crF" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"crG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "crI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"crM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"crJ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "crN" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"crR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"crT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"crU" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"crV" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"crW" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) "crY" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms) -"csc" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"csi" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"csj" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"csk" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +"csd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"csg" = ( +/obj/item/storage/box/ids, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "csm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"cso" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"cst" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"csu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"csA" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"csB" = ( -/obj/structure/coatrack, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"csE" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"csF" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"csG" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "csH" = ( /obj/structure/fence, /turf/open/floor/strata, @@ -23780,35 +11044,22 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"csM" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"csQ" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"csR" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"csT" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"csV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"csW" = ( -/obj/structure/machinery/light/small{ +"csJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"csN" = ( +/obj/structure/bed/chair{ dir = 4 }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"csS" = ( +/obj/structure/fence, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ag/exterior/paths/adminext) "csY" = ( /obj/structure/bed/chair{ dir = 4 @@ -23852,38 +11103,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/dorms) -"ctn" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"cto" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"ctp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"ctx" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"cty" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/marsh/river) -"ctz" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) "ctA" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -23891,21 +11110,9 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"ctB" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) "ctC" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"ctD" = ( -/obj/item/storage/briefcase, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"ctF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) "ctH" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -23913,20 +11120,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"ctI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"ctK" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"ctS" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) "ctZ" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -23947,10 +11140,10 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"cuj" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) +"cun" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/deep/structures/res) "cuy" = ( /obj/structure/platform/strata{ dir = 1 @@ -23965,22 +11158,6 @@ /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) -"cuB" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"cuH" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) "cuM" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -23999,84 +11176,28 @@ /obj/item/clipboard, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"cva" = ( -/turf/open/floor/strata/multi_tiles/southwest, +"cvi" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"cvn" = ( +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/paths/southresearch) +"cvG" = ( +/turf/open/gm/coast/west, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"cvI" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"cvb" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"cvc" = ( -/obj/item/cell/high, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"cvd" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/cell/high, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"cve" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"cvf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"cvg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"cvl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"cvn" = ( -/turf/open/auto_turf/ice/layer0, -/area/strata/ag/exterior/paths/southresearch) -"cvC" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"cvG" = ( -/turf/open/gm/coast/west, -/area/strata/ug/exterior/jungle/deep/carplake_center) -"cvY" = ( -/obj/structure/platform_decoration/strata/metal{ +"cvY" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"cwd" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) "cwe" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -24084,10 +11205,6 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/administration) -"cwn" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) "cwq" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -24101,36 +11218,33 @@ "cwD" = ( /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) -"cwF" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/landingzone_checkpoint) -"cwQ" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) "cwS" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) "cwT" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/landingzone_checkpoint) -"cxf" = ( -/obj/structure/machinery/vending/cigarette/colony, +"cwV" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"cxd" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/type71/carbine, /turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"cxg" = ( -/obj/structure/window/framed/strata, +/area/strata/ag/interior/administration) +"cxi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"cxv" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"cxn" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/marsh) +/area/strata/ag/interior/outpost/canteen/personal_storage) "cxA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -24140,41 +11254,64 @@ "cxC" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/exterior/jungle/deep/carplake_center) +"cxF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "cxJ" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_dorms) "cxK" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"cxS" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) "cxW" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"cyi" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/maintenance) +"cyl" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"cyu" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"cyx" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "cyG" = ( /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/dorms/flight_control) -"cyH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 2; - name = "Medical Airlock" +"cyO" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "cyQ" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"cyV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) "czb" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -24183,12 +11320,25 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) -"czw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/item/clothing/glasses/thermal/syndi, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) +"czx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"czN" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"czX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "cAq" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -24204,14 +11354,33 @@ /obj/item/stack/rods, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"cAA" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "cAK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) +"cBf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/southwest, +/area/strata/ag/interior/outpost/med) "cBv" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"cBZ" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"cCe" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) "cCE" = ( /obj/structure/cargo_container/wy/left{ health = 5000; @@ -24219,32 +11388,53 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"cDt" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"cCH" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) "cDL" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"cEu" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +"cEc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"cEh" = ( +/obj/effect/glowshroom, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"cEA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"cEN" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "cFg" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"cFj" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "cFp" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/east_dorms) @@ -24252,41 +11442,133 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"cFV" = ( +/obj/structure/bookcase, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "cGg" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"cGL" = ( -/obj/structure/closet/bodybag, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"cHm" = ( -/obj/item/weapon/gun/pistol/t73, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"cGr" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cIM" = ( -/obj/structure/machinery/door/airlock/prison{ +/obj/structure/machinery/light/small, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"cGO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"cHw" = ( +/obj/structure/machinery/light/small{ dir = 1; - name = "Reinforced Airlock" + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"cHG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"cHT" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"cJa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "cJf" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"cKc" = ( -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/floor2, +"cJT" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"cKa" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"cKH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) -"cLE" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, +"cLv" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"cLR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"cMc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"cML" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) +"cMN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"cMZ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"cNd" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "cNg" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -24298,117 +11580,196 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"cNA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "cOc" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) -"cOB" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"cOI" = ( -/turf/open/asphalt/cement/cement14, +"cOi" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"cOQ" = ( +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landingzone_2) -"cOR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +"cOU" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"cOZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"cPb" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"cPq" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"cRw" = ( -/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"cRB" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"cSr" = ( +/area/strata/ag/exterior/shed_five_caves) +"cPk" = ( +/obj/item/stack/medical/splint, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"cPY" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, /obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"cQn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"cSP" = ( -/obj/structure/prop/almayer/hangar_stencil, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"cQO" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/toy/deck, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"cTN" = ( +/area/strata/ag/exterior/research_decks) +"cQS" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective{ - dir = 8 +/obj/structure/machinery/computer/cameras{ + dir = 4 }, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ug/interior/jungle/deep/structures/res) +"cSg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"cTT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"cUh" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) "cUi" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"cUr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/stack/catwalk, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"cUu" = ( -/obj/structure/bed, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood, -/obj/item/bedsheet/medical, -/obj/item/storage/large_holster/machete/full, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"cUT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata{ - dir = 1 +"cVl" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata/multi_tiles/west, +/obj/structure/closet/emcloset, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) -"cWs" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"cVn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"cVC" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"cVD" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"cVQ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/machinery/microwave, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"cWE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"cWU" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"cWW" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"cXo" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"cXt" = ( +/obj/structure/machinery/scoreboard{ + id = "basketball"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"cXL" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "cXU" = ( /turf/closed/shuttle/ert{ icon_state = "upp2" }, /area/strata/ag/exterior/marsh/crash) -"cYx" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"cYI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"cZa" = ( -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/dorms/hive) -"cZH" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"cZw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "cZZ" = ( /obj/item/fuel_cell, /turf/open/auto_turf/snow/brown_base/layer1, @@ -24416,12 +11777,49 @@ "daq" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"daF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"dbb" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "dbg" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"dbi" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"dbo" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"dbu" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"dbM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"dbN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "dcc" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -24431,78 +11829,213 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"dcX" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/red1, +"dcg" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/security) +"dcu" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"dcz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/research_decks/security) +"dcK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"ddj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"ddo" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "ddp" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/hive) -"ddI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 1 +"ddx" = ( +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"ddM" = ( +/obj/structure/machinery/space_heater, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 3; + pixel_y = 14 }, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"ddV" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"ddU" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"deC" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"deP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"dfj" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"dfB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"dfR" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "dgB" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"dii" = ( +"dgH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/blood, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/obj/structure/coatrack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"diD" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"dgL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"dgQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"dgY" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"dhB" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"dio" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"diJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"diO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "diZ" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) +"djc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "djr" = ( /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"djR" = ( -/obj/structure/bed/chair{ +"djI" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"djW" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/exterior/paths/north_outpost) +"djY" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) +"dkf" = ( +/obj/structure/machinery/light/small{ dir = 4 }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"dkz" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"dkM" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 2; + name = "Medical Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"dlo" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dlr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"dmb" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"djW" = ( -/turf/closed/wall/strata_ice/dirty, -/area/strata/ag/exterior/paths/north_outpost) -"dks" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"dkw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "dmd" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -24512,29 +12045,49 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"dnz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/machinery/light/small{ - dir = 8 +"dmq" = ( +/obj/structure/filingcabinet{ + layer = 2.9 }, -/turf/open/floor/strata/floor3/east, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"dmG" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"dng" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"dns" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) -"dnR" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/barricade/deployable{ - dir = 4 +"dnI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"dnS" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"doy" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"doF" = ( +/obj/structure/largecrate/random, +/obj/item/storage/belt/shotgun, +/obj/item/storage/backpack/lightpack, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "doO" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -24542,47 +12095,108 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) +"dpa" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"dpd" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"dph" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"dpl" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"dps" = ( +/obj/item/clipboard, +/obj/item/clipboard, +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "dqo" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) +"dqq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"dqt" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"dqu" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "dqH" = ( /obj/item/stack/catwalk, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"drI" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +"drA" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "drQ" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/tearlake) -"drS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, +"dsm" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) -"dsx" = ( -/obj/item/tool/wrench, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"dtt" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) +"dsV" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"dtK" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/landingzone_checkpoint) "duq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"duQ" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"duE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"dvd" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/deep/minehead) "dvf" = ( /obj/structure/platform/strata{ dir = 1 @@ -24596,35 +12210,133 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"dvR" = ( +"dvg" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"dvq" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/snacks/chawanmushi, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"dvE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"dvY" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"dwi" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/engi/drome) -"dvX" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"dwO" = ( -/obj/structure/machinery/optable, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dwA" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"dwB" = ( +/obj/structure/dropship_equipment/sentry_holder, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"dyZ" = ( -/obj/structure/holostool, +/area/strata/ag/interior/outpost/engi/drome) +"dwR" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"dwV" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"dzo" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/strata/ag/exterior/research_decks) +"dxg" = ( +/obj/structure/flora/bush/ausbushes/grassybush, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ug/interior/jungle/deep/east_dorms) +"dxx" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"dxM" = ( +/obj/structure/machinery/bioprinter, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"dyO" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) +"dzi" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/small, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"dAo" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"dAq" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"dAs" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"dAL" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"dAX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"dBb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) "dBe" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"dBg" = ( +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "dBG" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -24636,103 +12348,172 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"dBV" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"dBM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc{ + pixel_y = -24; + start_charge = 0 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "dCb" = ( /obj/structure/machinery/power/reactor/colony, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"dCo" = ( +/obj/item/storage/pill_bottle/bicaridine, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"dCq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "dCu" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"dDr" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"dDW" = ( -/obj/structure/platform/strata{ - dir = 8 +"dCO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"dDj" = ( +/obj/structure/bookcase, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"dDE" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/outpost/med) +"dDW" = ( +/obj/structure/platform/strata{ + dir = 8 + }, +/obj/structure/platform/strata, +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"dEa" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/gen/bball) -"dEy" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +"dEB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" }, -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "dEE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"dEX" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, +"dEY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/item/tool/pen/blue, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"dFU" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 +"dGr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"dGv" = ( -/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"dGZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"dGO" = ( -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) +/area/strata/ug/interior/jungle/deep/structures/res) +"dHu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open{ + pixel_y = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"dHX" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "dIh" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/tearlake) -"dIE" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"dJV" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, +"dIM" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"dIP" = ( +/obj/structure/machinery/computer/emails, +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"dJM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"dKc" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "dKj" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/tearlake) +"dLY" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"dMm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"dMv" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) "dMw" = ( /obj/structure/cargo_container/wy/left, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"dMP" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"dMQ" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) "dNq" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/east_dorms) @@ -24742,6 +12523,10 @@ }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) +"dNI" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) "dNM" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, @@ -24769,14 +12554,47 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"dQi" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) +"dPJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"dPX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "dQq" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) +"dQw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dRj" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) +"dRC" = ( +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"dSk" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "dSA" = ( /obj/structure/bed{ icon_state = "abed" @@ -24793,37 +12611,105 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) +"dSM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"dSO" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) "dSU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"dSV" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"dSZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"dTk" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"dTn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window{ + pixel_y = 31 + }, +/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 13 + }, +/obj/structure/machinery/door/window{ + pixel_y = 10 + }, +/obj/structure/window{ + dir = 8; + pixel_y = 10 + }, +/obj/structure/window, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"dTo" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"dTp" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "dTq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"dTN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) +"dTr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"dTt" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"dTQ" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) "dUl" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/tearlake) -"dUP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"dUQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"dUS" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/platform/strata{ + dir = 1 + }, +/obj/effect/landmark/nightmare{ + insert_tag = "clfship" + }, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/mountain) +"dVD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "dWc" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -24831,44 +12717,133 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) +"dWi" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"dWj" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) "dWm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball) -"dWu" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +"dWS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"dXa" = ( +/obj/item/stack/catwalk, +/obj/item/tool/wrench, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "dXc" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/dorms_quad) +"dXe" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"dXf" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) "dXQ" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"dXV" = ( -/obj/item/stack/snow, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/north_outpost) -"dYK" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"dXS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/obj/structure/mirror{ - pixel_x = -29 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"dYq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"dYt" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"dYu" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med1) +"dYx" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"dYM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) "dZl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/north_outpost) -"dZm" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"dZw" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"dZH" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"dZP" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"dZQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"dZV" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"dZY" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "eai" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -24882,28 +12857,89 @@ "eaO" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"eek" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/good_item, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"eeG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, +"ebe" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"ebk" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/area/strata/ug/interior/outpost/jung/dorms/med2) +"ebm" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"ebr" = ( +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ebH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"ebU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) +"ech" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eda" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"edB" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"edG" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"edR" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"efQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "efR" = ( /obj/structure/cryofeed, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"efS" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) "efT" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, @@ -24914,6 +12950,10 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"egx" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "egV" = ( /obj/structure/cargo_container/arious/right{ health = 5000; @@ -24921,6 +12961,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"ehw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "ehH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -24931,39 +12977,73 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) -"eiV" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"eiT" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/storage/secure/briefcase, /turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/area/strata/ag/interior/outpost/security) +"eji" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"ejn" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "ejw" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"ejN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"ejY" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/photo_album, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"ekb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "ekc" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/north_lz_caves) -"ekh" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"eky" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) "ekJ" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_engi) -"ekZ" = ( -/obj/item/storage/belt/knifepouch, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +"elg" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"elo" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "elr" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -24976,24 +13056,71 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) +"emi" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "emv" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"enU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"emU" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/obj/item/tank/anesthetic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"emX" = ( +/obj/item/weapon/gun/pistol/t73, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"enT" = ( +/turf/open/floor/prison/floor_plate, +/area/strata/ug/interior/jungle/deep/east_dorms) +"eos" = ( +/obj/item/stool, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"eoy" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/canteen) +"eoB" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "eoK" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) +"eoS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"eoY" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/clothing/suit/xenos, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "epm" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -25004,24 +13131,62 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"epM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"epP" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"epY" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eqa" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/effect/spawner/random/tool, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/deep/minehead) +"eqg" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "eqO" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"eqS" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"era" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"erl" = ( +/obj/structure/surface/rack, +/obj/item/paper_bin, +/obj/item/stack/sheet/glass, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "erq" = ( /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"ert" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"erx" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) "ery" = ( /obj/structure/barricade/snow{ dir = 4 @@ -25029,133 +13194,317 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/north_lz_caves) +"erD" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"erV" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"ess" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/secure/briefcase, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"esY" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"etc" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"etm" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"ety" = ( +/obj/effect/spawner/random/attachment, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"etU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "euc" = ( /obj/structure/platform_decoration/strata{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"euN" = ( -/obj/structure/barricade/wooden{ +"eus" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"euv" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"euy" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/closet/bodybag/tarp, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"euG" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"euV" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_hacking, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "euZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) +"evz" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"evA" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"evR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"evZ" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ewj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) "ewk" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"exx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"exO" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"eyA" = ( +"exf" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"exj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"exn" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ezl" = ( -/obj/structure/inflatable/door, +/obj/item/reagent_container/food/snacks/chawanmushi, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"exq" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"eyc" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"eyr" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/clothing/gloves/yellow, +/obj/item/tool/extinguisher, /turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/area/strata/ag/exterior/north_lz_caves) +"eyX" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"ezd" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"ezv" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "ezK" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/fuel_cell, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"eBo" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"eBr" = ( -/obj/structure/prop/dam/van, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) -"eDc" = ( -/obj/structure/bed, -/turf/open/floor/strata/floor2, +"ezM" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) -"eDt" = ( -/obj/structure/bed{ - icon_state = "abed" +"eAk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meatballsoup, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"eAS" = ( +/obj/structure/mirror{ + pixel_y = 24 }, -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"eEO" = ( -/obj/structure/prop/turbine_extras/left, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"eBH" = ( +/obj/structure/curtain/medical, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"eFa" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"eFA" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) -"eFF" = ( +/area/strata/ag/interior/outpost/med) +"eDb" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"eDf" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"eDi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"eDz" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"eDH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"eDO" = ( /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"eFc" = ( +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"eFG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/vanyard) +"eFm" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"eFO" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/strata/red3/north, +"eFA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"eFP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"eFX" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) +"eGe" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "eGq" = ( /obj/structure/cryofeed, /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"eGD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "eGF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) +"eGP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"eGV" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eHb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"eHl" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "eHv" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"eHI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"eIj" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "eIB" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -25163,15 +13512,16 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"eIR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"eIP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/obj/structure/mirror{ + pixel_x = -29 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "eIT" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, @@ -25191,22 +13541,89 @@ }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) +"eKc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"eKm" = ( +/obj/structure/surface/rack, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/tool/shovel/etool/folded, +/obj/item/tool/shovel/etool/folded, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"eKB" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"eKJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/landingzone_checkpoint) +"eKR" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"eLm" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"eLq" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"eLz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) "eLC" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"eLF" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"eLQ" = ( -/obj/structure/machinery/camera/autoname{ +"eLO" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/stack/cable_coil/random, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"eLS" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"eLY" = ( +/obj/item/poster, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"eMr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "eMz" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) @@ -25218,27 +13635,16 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) -"eNz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"eNF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"eNL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"eNk" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"eNl" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "eNW" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -25247,17 +13653,30 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh/crash) -"eOc" = ( -/obj/structure/bed, -/obj/structure/machinery/light/small, -/obj/item/bedsheet/medical, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +"eOe" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"eOg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) +"eOs" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "eOz" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_res) +"eOA" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) "eOI" = ( /obj/structure/platform/strata{ dir = 8 @@ -25265,147 +13684,390 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/restricted) -"eOK" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"ePf" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"eRk" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"eOR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/obj/structure/platform/strata/metal{ - dir = 8 +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"ePi" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"eRJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"ePu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"eSs" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"eSx" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/outpost/med) -"eSK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"ePJ" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"eQw" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"eSR" = ( -/obj/structure/machinery/computer/emails, -/obj/structure/surface/table/almayer, +/area/strata/ag/interior/research_decks/security) +"eQW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"eRk" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"eRl" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"eTd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/area/strata/ag/interior/outpost/security) +"eSx" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/outpost/med) +"eSD" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"eSU" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"eTO" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"eTQ" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) -"eUW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"eUc" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"eUC" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "eVc" = ( /obj/structure/platform/strata/metal{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"eVA" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) "eVI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"eXK" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"eZw" = ( -/obj/structure/bed/chair{ - dir = 4 +"eWC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"eWH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"eXf" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"eXj" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"eYq" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eYs" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"eZj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eZH" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"eZS" = ( +/obj/structure/machinery/shower{ + dir = 8 }, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"faR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"fbG" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/engi/drome) +"fbc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"fbk" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"fbo" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"fbq" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"fbx" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"fbA" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) "fch" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) -"fcB" = ( -/obj/structure/machinery/light/small{ +"fcj" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"fcq" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 1; - pixel_y = 20 + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"fcr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"fcO" = ( +/obj/structure/fence, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"fdf" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"fdY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/fishfingers, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"fea" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"fec" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"fel" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"fep" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"fhl" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"fhW" = ( -/obj/structure/fence, +"feS" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"ffH" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"fgj" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"fgN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"fhk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"fhw" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, /turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/area/strata/ag/interior/landingzone_1) +"fhx" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"fhP" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"fie" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "fil" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) -"fiD" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"fiz" = ( +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/surface/rack, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"fjt" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"fjE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"fjI" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "fjZ" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"fkw" = ( +"fkf" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/barricade/snow{ +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"fkg" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"fkl" = ( +/obj/structure/toilet{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"fkz" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "fkD" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -25416,13 +14078,15 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"fkK" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 1 +"flg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/outpost/med) +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "fli" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -25433,22 +14097,165 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball/nest) +"flx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"flE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) "flK" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) -"fno" = ( -/turf/open/floor/strata/multi_tiles/southeast, +"fmf" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"fmg" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"fmp" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) +"fmx" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"fmF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"fmP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"fmX" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"fnl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"fnH" = ( +/obj/structure/machinery/light/small, +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "fow" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"foN" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"foY" = ( +/obj/item/stack/sandbags, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"foZ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"fpd" = ( +/turf/open/floor/strata/white_cyan4/east, +/area/strata/ag/interior/outpost/med) +"fpr" = ( +/obj/structure/largecrate/random, +/obj/item/trash/pistachios, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"fpy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"fpC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fqq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"fqz" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/milk, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"fqK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "fqQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -25463,33 +14270,54 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"frf" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"frp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"frH" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"frL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"fst" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"frK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"frR" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"fsc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"fsx" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"fsH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 3; + pixel_y = 7 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/south_engi) +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "fsJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -25501,82 +14329,137 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"ftO" = ( -/obj/structure/filingcabinet/filingcabinet, +"ftU" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"fuf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/bed/chair{ + dir = 4 + }, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"fuA" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fuE" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"fuW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/ale, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "fuX" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"fuZ" = ( -/obj/effect/spawner/random/supply_kit, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "fvt" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"fvy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fvL" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"fvO" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "fwc" = ( /obj/structure/dropship_equipment/mg_holder, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"fwi" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) +"fwe" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"fwA" = ( +/obj/structure/coatrack, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"fwU" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "fwV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"fxM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"fxo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/item/reagent_container/food/snacks/monkeyburger{ + pixel_x = -9; + pixel_y = 12 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"fxO" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 6; + pixel_y = 19 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"fxS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/computer/objective{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"fyE" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"fyJ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "fyP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/east_dorms) -"fyU" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/item/fuel_cell, -/turf/open/floor/strata/red2, +"fyT" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"fzv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/lady_finger, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) -"fzn" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) "fzz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 @@ -25593,10 +14476,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"fzJ" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin3) "fzN" = ( /obj/structure/barricade/snow{ dir = 4 @@ -25607,28 +14486,39 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"fAD" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "fAS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) +"fAW" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"fBe" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "fBh" = ( /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"fBk" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"fBu" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 +"fBm" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"fBy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "fBC" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -25636,19 +14526,33 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"fBY" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +"fCk" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "fCo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"fCx" = ( +/obj/item/toy/deck, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "fCz" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/tearlake) +"fCC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) "fCE" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -25662,31 +14566,103 @@ "fCI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) +"fDv" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Chunkeez Diner door" + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "fDG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) +"fEc" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/north_carp) +"fEP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "fEW" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/objective_landmark/close, /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) +"fFr" = ( +/obj/item/stool, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"fFs" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "fFy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"fHp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) +"fGp" = ( +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"fGF" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fGI" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"fHk" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"fHx" = ( +/obj/item/device/t_scanner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "fHW" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) +"fIn" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"fIo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"fIw" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "fIF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -25701,13 +14677,23 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"fKt" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +"fJk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"fKd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "fKT" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/south_engi) +"fLj" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) "fLl" = ( /obj/structure/bed/chair{ dir = 4 @@ -25717,16 +14703,27 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"fMk" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +"fLt" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"fLF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"fLL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/gen/foyer) +"fMe" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/med1) "fMr" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -25737,6 +14734,13 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"fMA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "fMP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -25747,11 +14751,16 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"fMS" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"fMU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fNf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/deep/structures/res) "fNs" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -25760,6 +14769,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"fNt" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "fNH" = ( /obj/item/reagent_container/food/drinks/cans/space_mountain_wind, /obj/structure/disposalpipe/segment{ @@ -25768,32 +14783,88 @@ /obj/item/stack/catwalk, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"fOX" = ( -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"fOi" = ( +/obj/structure/inflatable/door, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"fOp" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fOR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"fOW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "fPO" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) -"fQG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, +"fPQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/deep/structures/res) -"fRa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 4 +"fPU" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"fQr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fQz" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/outpost/med) "fRi" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"fRv" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/crash) +"fRF" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"fRG" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"fRH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"fRT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "fSr" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -25804,39 +14875,101 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) +"fSU" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"fTp" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"fTE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"fUy" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fUS" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "fWs" = ( /turf/closed/wall/mineral/gold, /area/strata/ag/interior/outpost/med) -"fWV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, +"fWL" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"fXU" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) -"fXV" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"fWN" = ( /obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"fYc" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"fYu" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"fYH" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"fYE" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fYL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/space_mountain_wind, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fYS" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"fYV" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "fZe" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"fZG" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"fZU" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) "gab" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; @@ -25854,127 +14987,170 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/engi/drome) +"gaU" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "gaV" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/marsh/crash) -"gbS" = ( +"gaY" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"gbm" = ( /obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"gbU" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "gcj" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/tearlake) -"gdZ" = ( -/obj/structure/machinery/smartfridge, -/obj/structure/machinery/door/window/eastright{ +"gcs" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"gcB" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"gdj" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"gfd" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"ged" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"gfC" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gej" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"ger" = ( +/obj/item/device/motiondetector, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"get" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"geO" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"geP" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) +"gfe" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"gfk" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"gfx" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) "gfI" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"ggr" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, +"ggn" = ( +/obj/structure/machinery/computer/crew, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"ggH" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"ggJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 +/area/strata/ug/interior/jungle/deep/structures/res) +"ggN" = ( +/obj/item/tool/crowbar, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"ghe" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"gha" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/strata{ +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "ghi" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/southresearch) -"ghr" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/photo_album, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, +"ghI" = ( +/obj/item/stool, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"ghL" = ( +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, /turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"ghM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +/area/strata/ug/interior/jungle/deep/structures/res) "ghV" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"gif" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +"ghZ" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) "gih" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"giq" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"gin" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"gjd" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/area/strata/ug/interior/jungle/deep/structures/res) "gjk" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"gjA" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "gjK" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -25991,10 +15167,16 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"gjP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +"gjO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gkg" = ( +/obj/structure/dispenser, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "gkt" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outpost/engi/drome) @@ -26004,19 +15186,28 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"gkA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 +"glj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"glG" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"gln" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "glL" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/mountain) @@ -26028,10 +15219,40 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/landingzone_checkpoint) +"gmC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) +"gmX" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "gnG" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) +"god" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"goi" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"gok" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "gol" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -26042,10 +15263,30 @@ /obj/item/reagent_container/food/drinks/cans/space_mountain_wind, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"gox" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "goG" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) +"goI" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) +"goQ" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "gpp" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -26056,58 +15297,59 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/asphalt/cement, /area/strata/ag/interior/tcomms) -"gpO" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"gqa" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"gqF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" +"gpZ" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"grd" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"gqf" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"grj" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"grq" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "grs" = ( /turf/closed/shuttle/ert{ icon_state = "upp16" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"grG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, +"grH" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"grP" = ( -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) +/area/strata/ag/exterior/paths/adminext) +"gse" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"gsm" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"gsr" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"gtM" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gtN" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "gtZ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -26118,6 +15360,18 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"gul" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/static_comms/net_two, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"gum" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "guz" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -26129,38 +15383,125 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"guF" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) "guV" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"gvG" = ( -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, +"gvd" = ( +/obj/item/stack/rods, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"gvL" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) -"gvR" = ( -/obj/structure/bookcase, +"gwa" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/area/strata/ag/interior/outpost/med) +"gxo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"gxr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"gxU" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"gyz" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"gyE" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"gyL" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"gyP" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"gyV" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "gzd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/south_engi) -"gAm" = ( +"gzk" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"gzl" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"gzo" = ( /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/outpost/engi) +"gzv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"gzz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"gzF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms/south) +"gzZ" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"gAb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "gAv" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -26174,6 +15515,24 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/strata, /area/strata/ag/interior/mountain) +"gAE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"gAT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"gBh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "gBj" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer1, @@ -26181,14 +15540,60 @@ "gBr" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/south_engi) +"gBC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/item/clothing/glasses/thermal/syndi, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"gBU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "gCa" = ( /obj/item/stack/snow, /turf/open/floor/strata, /area/strata/ag/exterior/paths/north_outpost) +"gCU" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"gDf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) "gDg" = ( /obj/structure/prop/almayer/computers/sensor_computer2, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/restricted/devroom) +"gDy" = ( +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome) +"gDM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"gDV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"gEg" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "gEo" = ( /obj/structure/platform/strata{ dir = 1 @@ -26198,24 +15603,53 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"gFf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"gFg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"gFy" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"gFD" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "gFH" = ( /obj/structure/cryofeed/right, /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"gFT" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"gGX" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +"gGu" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"gGS" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "gHQ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, @@ -26227,16 +15661,16 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"gIL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 +"gIu" = ( +/obj/structure/machinery/holosign/surgery, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + id_tag = "bunker_or1"; + name = "\improper Operating Room 1" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "gIY" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -26244,9 +15678,68 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"gIZ" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"gJf" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"gJi" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"gJL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"gJN" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/bcircuit, +/area/strata/ag/interior/dorms) +"gLi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/catwalk, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"gLo" = ( +/obj/structure/surface/rack, +/obj/item/toy/deck, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "gLF" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/paths/north_outpost) +"gLL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -10 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"gLY" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"gMC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) "gMF" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/disposalpipe/segment{ @@ -26255,60 +15748,138 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"gOo" = ( +"gMJ" = ( /obj/item/stack/rods, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outpost/gen/bball/nest) -"gOu" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"gMW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"gMY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"gNb" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/structure/platform/strata/metal{ - dir = 1 +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/strata/red3, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"gNX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) -"gOC" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) +"gOi" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"gOo" = ( +/obj/item/stack/rods, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/outpost/gen/bball/nest) "gOL" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) -"gPG" = ( -/obj/structure/bed/chair/dropship/passenger{ +"gON" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"gPc" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "gPL" = ( /obj/structure/inflatable, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"gPQ" = ( -/obj/structure/machinery/shower{ - dir = 1 +"gQm" = ( +/obj/structure/morgue{ + dir = 8 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gQp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c500, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"gQt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"gRu" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"gRK" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"gRE" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"gRH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "gRO" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) +"gRY" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"gSr" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "gSz" = ( /obj/structure/machinery/power/apc{ dir = 1 @@ -26324,11 +15895,10 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"gTk" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +"gTo" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) "gTx" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -26340,41 +15910,80 @@ /obj/item/device/radio, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"gTC" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) "gTE" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) -"gTM" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) +"gTN" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) "gTZ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"gUj" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "gUp" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"gUE" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"gUH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"gUL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "gUP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) +"gVc" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"gVg" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gVo" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/deep/structures/res) +"gVy" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "gVJ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -26387,82 +15996,271 @@ /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"gWE" = ( -/obj/structure/machinery/bioprinter, -/obj/structure/machinery/light/small{ +"gVT" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"gVZ" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"gWl" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"gWt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"gXX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/structure/machinery/light/small{ +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"gWM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"gWR" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"gXi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/canteen) +"gXQ" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"gXT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"gYt" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"gYu" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"gZH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"gZZ" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"hak" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"gZp" = ( -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/almayer/plate, +"haq" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"haO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"haU" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = -28; + start_charge = 0 + }, +/turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) -"gZP" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/prison/darkyellowfull2, +"hba" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/device/radio, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"hbc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/mushroom, +/obj/item/tool/kitchen/utensil/pspoon, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"hbg" = ( +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"hbw" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"hbB" = ( +/obj/item/cell/high, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"hbJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/russianRed, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"hci" = ( +/obj/structure/fence, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"haw" = ( +"hcC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hcO" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/south_engi) +"hcS" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"hdi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"hdn" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"hdo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"hdt" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"hdx" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"hdy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"hdD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"hdF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"hdW" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"haN" = ( -/obj/structure/largecrate/random, -/obj/item/trash/pistachios, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"haU" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = -28; - start_charge = 0 +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"hek" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/turf/open/floor/plating, -/area/strata/ag/exterior/marsh/crash) -"haZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, /obj/structure/platform/strata/metal{ - dir = 1 + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"hcg" = ( -/obj/item/tool/pen/blue, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"hcO" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"hep" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/south_engi) -"hdc" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"heL" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"hel" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "heO" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball/nest) +"heZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "hfq" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -26470,22 +16268,29 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"hfv" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"hgq" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/obj/structure/mirror{ - pixel_x = -29 +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"hgw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"hgI" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"hhj" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "hhW" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -26503,14 +16308,44 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) +"hih" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "hir" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) +"hiA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/eggplantparm, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"hiE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/enchiladas, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "hiL" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) +"hjm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"hjA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "hjC" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -26522,6 +16357,10 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"hkq" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "hkA" = ( /obj/structure/platform/strata{ dir = 8 @@ -26529,11 +16368,49 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"hmf" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"hkS" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"hld" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"hlm" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hls" = ( +/obj/structure/toilet, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"hlu" = ( +/obj/item/storage/briefcase, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"hlW" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"hmq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) "hms" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -26544,30 +16421,75 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"hmA" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/secure/briefcase, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"hni" = ( +"hmD" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"hmH" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"hnm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"hns" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/exterior/research_decks) +"hnB" = ( +/mob/living/simple_animal/cat/Runtime{ + desc = "Also known as Bernie. Fond of potted plants and Space Carp flavored treats."; + name = "Bernard" + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"hnZ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 +/obj/item/clipboard, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"hoi" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"hoj" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"hot" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"hox" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "hpe" = ( /obj/structure/largecrate/hunter_games_ammo/good, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"hpD" = ( -/obj/structure/curtain/medical, +"hpn" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/area/strata/ug/interior/jungle/deep/structures/res) +"hqa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"hqu" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "hqw" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -26579,16 +16501,89 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"hsg" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/obj/structure/barricade/handrail/strata, +"hqG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"hqH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"hqI" = ( +/obj/structure/curtain/medical, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"hqL" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"hrq" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"hrt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"hrR" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/item/folder/red, +/obj/item/ammo_box/magazine/shotgun/buckshot, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"hrY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"hsc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"hsL" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) "hsV" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"hsW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "hsX" = ( /obj/item/device/flashlight, /turf/open/floor/strata, @@ -26605,22 +16600,40 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"htr" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"hts" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/engi) "htD" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"hue" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"hvj" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"hua" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"hwl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"hwn" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) "hwD" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -26631,28 +16644,150 @@ "hwI" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"hyh" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; +"hxa" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"hxk" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/mass_spectrometer, +/obj/item/device/matter_decompiler, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hyf" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"hyg" = ( +/obj/structure/machinery/power/apc{ dir = 4; - icon_state = "p_stair_sn_full_cap" + pixel_x = 28; + start_charge = 0 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"hyr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "hyu" = ( /obj/effect/landmark/corpsespawner/russian, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) -"hzb" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +"hyU" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"hzh" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"hCp" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hzA" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"hzB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"hAD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1; + icon_state = "commb" + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"hBe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"hBl" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hBQ" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"hCn" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/explosive_mines, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"hCz" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hCR" = ( +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"hCX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"hCY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hDB" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hDI" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"hDN" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "hDX" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -26666,19 +16801,14 @@ /obj/item/tool/mop, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"hEF" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) "hFm" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"hGd" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/red3, -/area/strata/ag/interior/outpost/med) +"hGl" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "hGm" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -26701,94 +16831,234 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"hHm" = ( -/obj/item/stack/rods, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) "hHK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"hHO" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"hIo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"hIW" = ( +/obj/structure/platform/strata/metal{ + dir = 4 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"hIb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) -"hIt" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"hJC" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) "hJE" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/east_dorms) -"hJT" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/paths/north_outpost) +"hKc" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/secure/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"hKD" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"hKM" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"hLd" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "hLf" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) +"hMq" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "hMs" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"hMw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"hMS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"hMY" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"hNS" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/outpost/med) "hOa" = ( /turf/open/gm/river, /area/strata/ug/exterior/jungle/deep/carplake_center) -"hOw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"hOD" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"hOf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hOC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hPl" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "hPr" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/nearlz2) "hPK" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) -"hPZ" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/small, -/obj/structure/platform/strata/metal{ - dir = 4 +"hPN" = ( +/obj/structure/lz_sign/sorokyne_sign/interior, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"hQk" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/obj/effect/spawner/random/powercell, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "hQq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) +"hQK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "hQP" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/crash) -"hTU" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, +"hQT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/outpost/med) +"hQX" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hQY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"hRt" = ( +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"hRu" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"hRR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"hSn" = ( +/obj/structure/prop/turbine_extras/left, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hSw" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"hSJ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"hTi" = ( +/obj/item/storage/box/ids, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hTB" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"hUb" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"hUi" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"hTX" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) +"hUk" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"hUo" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "hUJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -26796,15 +17066,93 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"hUO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "hVm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/outpost/jung/dorms/med1) +"hVA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"hWh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) "hWk" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/exterior/jungle/deep/carplake_center) +"hWp" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"hWs" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"hWy" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"hWQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"hWT" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"hWW" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hWZ" = ( +/obj/item/clothing/gloves/white, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"hXf" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "hYc" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) +"hYe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "hYl" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/recharge_station, @@ -26816,112 +17164,257 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) +"hYA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"hZA" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"hZH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"hZT" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"hZW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"hZZ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"ial" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"iar" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) "iau" = ( /obj/structure/curtain/open/medical, /turf/open/floor/strata, /area/strata/ag/interior/outpost/maint/canteen_e_1) +"iaF" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "ibh" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/nearlz2) -"ibE" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -23; - start_charge = 0 +"ibv" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"ibF" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "ibH" = ( /obj/item/trash/pistachios, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"ich" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" +"ibJ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"ibZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"idW" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"iek" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"icG" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +/area/strata/ag/interior/dorms) +"ieF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"ieM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"ifj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"ifL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/tearlake) -"idq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"idW" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "ifU" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/engi) -"igm" = ( -/obj/structure/bed/chair{ +"igf" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"igl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"igs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"igI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"igX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"ihq" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"ihI" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) -"ihd" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"iiG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"ijo" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/outpost/security) +"ijs" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"ihy" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"ijt" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"ijo" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/tcomms) +"ijY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"ikn" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"ikE" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "ikG" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"ikW" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"ilt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"ilJ" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "ilL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"imV" = ( -/obj/structure/surface/table/reinforced/prison, +"imt" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"imR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"imU" = ( /turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +/area/strata/ag/interior/nearlz1) "imZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -26931,31 +17424,82 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"ioi" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ug/interior/jungle/platform/east/scrub) -"ioz" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/upp, +"ind" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"inj" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"ink" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"inH" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) +"iog" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/interior/landingzone_1) +"ioj" = ( +/obj/structure/machinery/washing_machine, +/obj/item/facepaint/skull, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ioE" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) "ioM" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) -"ipd" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, +"ioW" = ( +/obj/structure/window/framed/strata, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) +"ipf" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"ipr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"ipH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) "iqe" = ( /obj/item/lightstick, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"iqx" = ( +/obj/structure/closet/crate/science, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "iqV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -26970,46 +17514,131 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"iqW" = ( +/obj/structure/closet/bodybag/tarp, +/obj/structure/closet/bodybag/tarp, +/obj/structure/closet/bodybag/tarp, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"irl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) "irq" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) +"irs" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "irx" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"iry" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"irH" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/landingzone_checkpoint) +/obj/item/fuel_cell, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) +"irQ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/pizzabox/meat, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) "isa" = ( /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) +"isb" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "isd" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"isj" = ( -/obj/structure/pipes/vents/pump{ +"ise" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/carrotfries, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"isy" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"isT" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"isu" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/landingzone_checkpoint) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"isX" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) "isY" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) +"isZ" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"itf" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"ith" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"itj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"itr" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) "itw" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -27018,28 +17647,15 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"itG" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"iuf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"iuh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +"itB" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"itH" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) "iuB" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -27048,6 +17664,29 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) +"iuM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"iva" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"ivs" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"ivC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "ivF" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin3) @@ -27055,24 +17694,34 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"iwp" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) +"ivZ" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "iws" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) +"iwu" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "iwH" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"ixb" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/closet/bodybag, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"iwV" = ( +/obj/structure/closet/basketball, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"ixs" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) "ixu" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -27085,32 +17734,56 @@ /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"ixD" = ( -/turf/open/floor/strata/floor2, +"ixN" = ( +/obj/structure/machinery/centrifuge, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) -"ixQ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/cyan3/east, +"iyy" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"iyG" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"iyQ" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/adminext) +"izt" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = null + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/storage/pill_bottle/alkysine, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) -"ixS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"iym" = ( +"izu" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"izZ" = ( /obj/structure/barricade/handrail/strata{ - dir = 1 + dir = 4 }, -/obj/structure/barricade/handrail/strata{ +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/marsh) -"izc" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/obj/item/fuel_cell, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) "iAA" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -27120,6 +17793,35 @@ /obj/structure/closet/emcloset, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"iAJ" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"iAK" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"iAQ" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"iAV" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"iAX" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"iBb" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) "iBM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -27135,10 +17837,10 @@ "iBT" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/tearlake) -"iBV" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +"iBU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "iBZ" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/interior/plastic, @@ -27151,28 +17853,141 @@ }, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) +"iCz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"iCC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"iDc" = ( +/obj/structure/closet/lawcloset, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"iDm" = ( +/obj/item/storage/pill_bottle/russianRed, +/obj/item/storage/pill_bottle/russianRed, +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/inaprovaline, +/obj/item/storage/box/gloves, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "iDq" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"iDG" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"iDM" = ( +/obj/structure/filingcabinet, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"iDQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"iEi" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "iEo" = ( /turf/closed/shuttle/ert{ icon_state = "upp8" }, /area/strata/ag/exterior/marsh/crash) +"iEs" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"iEw" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) "iEU" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med1) -"iGN" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"iGR" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +"iEX" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"iFl" = ( +/obj/item/stack/snow, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/north_outpost) +"iFw" = ( +/obj/structure/bed, +/obj/structure/machinery/light/small, +/obj/item/bedsheet/medical, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"iFD" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"iGb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"iGh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"iGy" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"iHz" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "iHX" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, @@ -27181,6 +17996,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) +"iIn" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "iIz" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -27200,6 +18019,17 @@ /obj/item/storage/surgical_tray, /turf/open/floor/strata, /area/strata/ag/interior/mountain) +"iJA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"iJF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "iJJ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -27211,58 +18041,128 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"iJQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"iJZ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"iKb" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) "iKI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"iKW" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"iKK" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"iKZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) "iLr" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"iLJ" = ( -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "iMn" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"iMP" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"iMJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"iMT" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "iNe" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"iNf" = ( -/obj/structure/pipes/vents/pump{ +"iNp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"iNy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"iOi" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"iOj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"iOp" = ( +/obj/structure/closet/secure_closet/security/soro, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"iOw" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"iOH" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"iPf" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) -"iPd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/canteen/personal_storage) +"iPp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "iPw" = ( /mob/living/simple_animal/hostile/retaliate/clown{ health = 10000; @@ -27272,18 +18172,28 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"iQi" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/vanyard) -"iQt" = ( +"iPO" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/area/strata/ug/interior/jungle/deep/structures/res) +"iQr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) +"iQH" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"iQI" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 16 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "iQS" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/barricade/handrail/strata{ @@ -27304,6 +18214,39 @@ "iSe" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/south_engi) +"iSj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"iTx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"iTC" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/effect/landmark/wo_supplies/storage/belts/m41abelt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"iUe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "iUw" = ( /obj/structure/prop/dam/crane/cargo, /turf/open/floor/strata, @@ -27318,32 +18261,70 @@ /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"iUN" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"iUM" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"iUY" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"iVZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"iVu" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"iWi" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/bed/chair{ +/area/strata/ag/interior/research_decks/security) +"iVw" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"iVz" = ( +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"iVQ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"iWp" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/area/strata/ag/exterior/marsh/river) "iWG" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/north_lz_caves) +"iWV" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cdeathalarm_kit, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "iWZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -27364,31 +18345,61 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"iZa" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"iXC" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"iYq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/storage/fancy/vials, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"iZr" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ug/interior/jungle/platform/east/scrub) -"iZw" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"iYx" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/north_lz_caves) +"iYI" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "iZI" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"jam" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/cyan2/east, +"iZW" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) +"iZY" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"jau" = ( +/obj/item/stack/catwalk, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"jav" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"jaK" = ( +/obj/structure/machinery/chem_dispenser/soda/beer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"jaQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "jaZ" = ( /obj/structure/cargo_container/wy/mid{ health = 5000; @@ -27396,6 +18407,16 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"jbj" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/adminext) +"jbm" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) "jbq" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -27416,32 +18437,86 @@ /obj/structure/window/framed/strata, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"jeF" = ( -/obj/structure/machinery/space_heater, +"jdK" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"jdQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jeZ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, +/area/strata/ag/interior/outpost/security) +"jew" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"jfm" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"jfs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"jfx" = ( +/obj/item/reagent_container/food/drinks/coffee, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"jfA" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"jfh" = ( +/area/strata/ag/interior/outpost/med) +"jge" = ( /obj/item/fuel_cell, /obj/structure/barricade/handrail/strata{ - dir = 1 + dir = 8 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"jgX" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +/area/strata/ag/interior/outpost/engi) +"jgK" = ( /obj/structure/barricade/handrail/strata{ - dir = 8 + dir = 4 }, -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/deep/minehead) +"jgR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"jhh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "jhl" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -27450,60 +18525,188 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) -"jit" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/landingzone_2) -"jiQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jjw" = ( -/obj/structure/machinery/space_heater, +"jhw" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"jhG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/landingzone_checkpoint) +"jio" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"jir" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"jiA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"jiC" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) +"jju" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/storage/pill_bottle/antitox/skillless, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"jjz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "jjJ" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) -"jkc" = ( -/obj/structure/bed/chair{ +"jjX" = ( +/obj/structure/surface/rack, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/weldingtool, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"jkb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"jkl" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 +/obj/structure/barricade/handrail/strata, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jlk" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/obj/structure/machinery/light/small{ +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"jkf" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"jlG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/obj/item/storage/pill_bottle/imidazoline, -/obj/item/storage/pill_bottle/imidazoline, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"jkp" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"jmy" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/vanyard) -"jmH" = ( -/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"jmC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"jnj" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"jmP" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) +/area/strata/ug/interior/jungle/platform/east/scrub) +"jns" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/platform/east/scrub) +"jnz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jnD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "jnH" = ( /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) +"jnR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"jok" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/folder/red, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"jol" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"jot" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/stool, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"joS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"jpq" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"jpB" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"jpU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "jqg" = ( /obj/structure/surface/rack, /obj/structure/machinery/light/small{ @@ -27512,12 +18715,35 @@ /obj/item/book/manual/detective, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"jrs" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" +"jqp" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"jqv" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"jqS" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"jqT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) +"jrd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "jrw" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -27528,19 +18754,24 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/cabin_area) -"jrU" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"jsd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"jso" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +"jrV" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"jsq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "jsw" = ( /obj/structure/closet/bodybag, /turf/open/auto_turf/ice/layer1, @@ -27556,44 +18787,70 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"jsW" = ( -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/surface/rack{ - layer = 2.5 +"jtF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"jtM" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"jtR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"juW" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"jtB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin2) "juY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/restricted/devroom) +"jvv" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"jvO" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "jww" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) +"jwP" = ( +/obj/structure/bed/chair/dropship/passenger, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "jxc" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"jyq" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) -"jyE" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"jxD" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"jxI" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"jxO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "jyO" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -27601,39 +18858,97 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"jzD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) +"jyW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"jze" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"jzr" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"jAm" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "jAo" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ dir = 1 }, -/turf/open/gm/river, -/area/strata/ag/exterior/nearlz2) -"jAE" = ( +/turf/open/gm/river, +/area/strata/ag/exterior/nearlz2) +"jAT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"jAZ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"jBq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"jBv" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"jBQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"jBS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, /obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"jCp" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) -"jBp" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"jBO" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) "jCE" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"jCU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +"jDh" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "jDr" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -27641,50 +18956,130 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"jDO" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; +"jDv" = ( +/obj/effect/decal/cleanable/blood{ dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 + icon_state = "gib6" }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"jDD" = ( +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"jDG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/research_decks) +"jDH" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"jEA" = ( +/obj/structure/fence, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) +/area/strata/ag/exterior/research_decks) "jEB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/security) +"jEE" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"jEH" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jEM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "jEO" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/engi) -"jEW" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1 +"jFe" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jFn" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"jFD" = ( +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. There are a few pushpins dangling from it. Crudely carved into the baseboard is a picture of what seems to be a screaming warlock. To their right is a whip lashing out comically over what you figure are software engineers slaving over a box labeled CM13. The words 'spriterz rule' is carved beneath the box."; + pixel_y = 32 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"jFI" = ( +/obj/structure/bookcase, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "jFO" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/center) -"jIv" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"jFT" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"jGx" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"jGP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"jGT" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/fence, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"jHt" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/research_decks) +"jHL" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"jHQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"jHZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "jIz" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -27693,26 +19088,65 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"jJv" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/engi/drome) +"jIZ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/admin) +"jJa" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"jJq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) "jJy" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) -"jKf" = ( -/obj/structure/largecrate/random/secure, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"jKi" = ( +"jJO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"jJR" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"jJT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"jKk" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 + dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jKE" = ( +/obj/item/clipboard, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"jKO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "jLb" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) @@ -27720,13 +19154,50 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"jLY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"jLq" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"jLv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"jLQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"jLR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"jMb" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"jMk" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"jMr" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "jMD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -27739,62 +19210,163 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"jMV" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"jNJ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"jMQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"jNh" = ( +/obj/item/device/radio, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"jNK" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "jOp" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"jOM" = ( +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"jON" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "jOV" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"jPc" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jPQ" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"jPT" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata{ +"jPo" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"jPK" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "jPV" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"jUo" = ( +"jQp" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"jQT" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"jRi" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"jRv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"jRY" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"jSa" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, /obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"jSf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 1 }, -/obj/structure/bed/chair/office/light{ +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"jSu" = ( +/obj/structure/fence, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"jSy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"jSO" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) +"jTj" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"jTn" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"jTw" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"jTM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "jUA" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) +"jUK" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "jUS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -27804,80 +19376,124 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"jUT" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "jVg" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/camera/autoname, /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) -"jVD" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"jVU" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"jWi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +"jVG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"jWk" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"jVN" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jVP" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"jVY" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "jWs" = ( /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) "jWz" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med2) -"jXD" = ( -/obj/item/weapon/gun/revolver/cmb, -/obj/structure/surface/rack{ - layer = 2.5 +"jWD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"jXh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jXG" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"jXN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "jXQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) -"jXV" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/bball) +"jZk" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"jZL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "kaw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med2) -"kaP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"kbS" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +"kaM" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"kbu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "kbU" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood{ @@ -27885,6 +19501,10 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) +"kck" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "kcw" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -27903,54 +19523,93 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"kdm" = ( +"kcB" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"kcL" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"kdp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, /obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"kdz" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"kdQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/emergency, +/obj/item/device/radio, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/north_lz_caves) +"kdU" = ( +/obj/structure/machinery/light/small, /turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/platform/east/scrub) -"kdK" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, +"keA" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) +"keK" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"keg" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"kes" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ +"kfb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/orange_cover, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) -"kfm" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"kfN" = ( +"kfP" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"kgC" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kfX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/power/apc{ dir = 1; - icon_state = "pipe-c" + pixel_y = 24; + start_charge = 0 }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"kga" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"kgh" = ( +/obj/item/storage/belt/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"kgw" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "kgQ" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/disposalpipe/segment{ @@ -27960,6 +19619,12 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"kgV" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) "khh" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; @@ -27967,6 +19632,32 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) +"khA" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"khI" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"khJ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "khR" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/decal/strata_decals/catwalk/prison, @@ -27979,67 +19670,227 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) +"kiD" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"kiE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/white_cyan4/north, +/area/strata/ag/interior/outpost/med) +"kiS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"kiV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "kjc" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) +"kjY" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"kkH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "kkL" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/nearlz2) -"klE" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"klG" = ( +"klj" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"kly" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"kmt" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/structure/machinery/computer/communications{ + dir = 1; + icon_state = "commb" + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"klL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"kma" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/holobadge, +/obj/item/storage/box/holobadge, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"kmf" = ( /turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/engi) -"knJ" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" +"kmm" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"kmW" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kne" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"kni" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/reagent_container/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" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"knl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/binoculars, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"kog" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) "koj" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/shed_five_caves) +"kol" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"kot" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "koG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"kqt" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" +"kpc" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"kpr" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"krg" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"kpC" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"kqn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"kqr" = ( +/obj/effect/spawner/random/supply_kit, +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"krm" = ( +"kqF" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"kqT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"krd" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"krp" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"krC" = ( +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"ksr" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/barricade/handrail/strata{ dir = 8 @@ -28051,24 +19902,58 @@ /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"kuB" = ( -/obj/structure/bed/chair/office/light{ +"ksF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"ksN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"ksZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"kud" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"kup" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"kvb" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kvK" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "kvY" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kwu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/static_comms/net_two, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"kwm" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "kwU" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -28080,6 +19965,35 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/paths/dorms_quad) +"kwZ" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"kxc" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"kxt" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"kxu" = ( +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"kxx" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "kxF" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -28092,14 +20006,64 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) +"kxT" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"kxW" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"kye" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "kyf" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) +"kyq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "kyr" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_engi) +"kyF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"kyM" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kyO" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "kyT" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 @@ -28110,60 +20074,216 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"kzc" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "kzk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"kzD" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"kAn" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +"kzp" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"kzO" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"kzP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"kAs" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"kAN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/exterior/marsh/river) +"kAY" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kAZ" = ( +/obj/structure/bed, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"kBy" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"kBF" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/med) "kBL" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"kCa" = ( +"kBS" = ( /obj/structure/surface/rack, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"kCf" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/item/storage/box/handcuffs, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"kBZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) +"kCi" = ( +/obj/item/stack/sheet/wood, +/obj/structure/closet/crate/internals, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "kCk" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/center) -"kDb" = ( +"kCD" = ( +/turf/open/floor/strata/blue3/east, +/area/strata/ag/interior/outpost/admin) +"kCQ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"kCY" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"kDf" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"kDB" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kDH" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"kDL" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/marsh) +"kDW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kEA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"kEE" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"kEL" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"kFf" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"kFj" = ( /obj/structure/machinery/space_heater, +/obj/item/device/flashlight/lamp{ + pixel_y = 11 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"kFB" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"kFD" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"kEl" = ( -/obj/structure/closet/secure_closet/personal, +/area/strata/ag/interior/outpost/med) +"kFX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"kGp" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"kGB" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"kGT" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "kGV" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) +"kHd" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"kHe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"kHg" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/research_decks) +"kHQ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "kHV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -28175,6 +20295,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"kHX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "kIu" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -28184,16 +20310,12 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"kIK" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +"kIF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "kIW" = ( /obj/structure/bed/chair{ dir = 8 @@ -28203,25 +20325,88 @@ "kJd" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/east_dorms) +"kJL" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"kJQ" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"kKk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kKt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "kKI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin1) "kLM" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/east_dorms) +"kLN" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) "kLZ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"kMp" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"kMF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"kMJ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"kNm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"kNs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/knife, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "kNJ" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/south_engi) -"kNZ" = ( -/obj/structure/inflatable, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"kNR" = ( +/obj/structure/prop/dam/van, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) "kOr" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -28229,65 +20414,54 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"kPl" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/platform/east/scrub) -"kPC" = ( -/turf/open/gm/coast/beachcorner2/north_east, -/area/strata/ug/exterior/jungle/deep/carplake_center) -"kPL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, +"kOY" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"kPM" = ( -/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"kPf" = ( +/obj/structure/closet/coffin, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/area/strata/ag/interior/outpost/med) +"kPp" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"kPC" = ( +/turf/open/gm/coast/beachcorner2/north_east, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"kQr" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) "kQu" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kRb" = ( -/obj/structure/bed/nest, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +"kRs" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) "kRI" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"kRO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"kRY" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "kSs" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/exterior/jungle/deep/carplake_center) +"kSM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kSP" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "kSS" = ( /obj/structure/window/reinforced/tinted{ dir = 4 @@ -28301,20 +20475,47 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) +"kTt" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) "kTB" = ( /turf/open/gm/coast/north, /area/strata/ug/exterior/jungle/deep/carplake_center) +"kTN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"kTW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "kUb" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"kUi" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +"kUe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "kUs" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/exterior/jungle/deep/carplake_center) +"kUK" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/minehead) "kUN" = ( /obj/effect/decal/strata_decals/grime/grime2{ dir = 8 @@ -28322,14 +20523,65 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) +"kUW" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"kVa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pfork, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"kVG" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kWa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"kWl" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"kWs" = ( +/obj/item/storage/box/nade_box/tear_gas, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "kWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"kXi" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +"kWX" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"kXb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"kXo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/item/device/encryptionkey/dutch, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "kXx" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -28337,10 +20589,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"kXR" = ( -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kYd" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "kYe" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -28348,14 +20602,31 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"kYh" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "kYl" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"kYx" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/landingzone_2) +"kYT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/machinery/computer/communications, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"kZh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"kZk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "kZL" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -28365,15 +20636,23 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) +"kZM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "kZU" = ( /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh) -"lax" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +"lag" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) "laF" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, @@ -28387,13 +20666,42 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"laU" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lbd" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "lbh" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"lbW" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +"lbp" = ( +/obj/structure/machinery/space_heater, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"lbs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"lbC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"lcj" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "lcq" = ( /obj/item/clothing/suit/storage/militia, /obj/item/clothing/suit/storage/snow_suit/doctor, @@ -28402,6 +20710,10 @@ "lcs" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh) +"lcZ" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "ldp" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/platform/strata/metal{ @@ -28413,19 +20725,67 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"ldq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/deep/structures/res) +"ldz" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"ldN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "ldO" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/east_carp) +"ldQ" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "lec" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"let" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"leR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"leW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "lfj" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) +"lfw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lfF" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"lgl" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "lgv" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -28438,6 +20798,36 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"lgA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"lgB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lgP" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lgW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"lhG" = ( +/obj/structure/machinery/processor, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "lhH" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -28445,71 +20835,142 @@ "lhI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/jungle/deep/structures/engi) -"lhR" = ( -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"lij" = ( -/obj/structure/window/reinforced/tinted{ +"lhS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/tool/kitchen/utensil/pknife, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"lic" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"lit" = ( +/obj/item/stack/snow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/north_outpost) +"liy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "liK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"ljg" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/closet/bodybag/tarp, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"lkl" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata/purp1, +"liP" = ( +/obj/item/dogtag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"ljt" = ( +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"ljx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"ljz" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"ljJ" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "lkB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead) -"llC" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ +"lkH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lkV" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"llp" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"llE" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"llH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"llY" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "lmv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) +"lmE" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"lmI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "lmV" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/southresearch) "lno" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/south_engi) -"loN" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"loP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/engi/drome) +"lnD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"loY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "lpk" = ( /obj/structure/bed{ icon_state = "abed" @@ -28526,45 +20987,115 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"lpr" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ +"lpH" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"lpM" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"lpW" = ( +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"lql" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lqB" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "lqD" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"lqJ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"lqM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "lrd" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, /turf/open/asphalt/cement, /area/strata/ag/interior/tcomms) +"lrm" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/hotsprings) +"lry" = ( +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) "lrO" = ( /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) +"lrV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "lsz" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"lsY" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"lsZ" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "ltp" = ( /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"ltW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "ltZ" = ( /obj/structure/bed/roller, /obj/structure/sink{ @@ -28572,6 +21103,9 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/mountain) +"lut" = ( +/turf/open/floor/strata/white_cyan3/southwest, +/area/strata/ag/interior/outpost/med) "luA" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -28580,6 +21114,37 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"luJ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"luT" = ( +/obj/structure/closet/wardrobe/medic_white, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lva" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/marsh) +"lvm" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"lvn" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ug/interior/jungle/platform/east/scrub) +"lvq" = ( +/obj/item/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "lvw" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -28589,23 +21154,44 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"lvE" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) "lvF" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/tearlake) -"lwI" = ( -/obj/structure/barricade/handrail/strata{ +"lvI" = ( +/obj/structure/platform/strata/metal{ dir = 4 }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"lwc" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"lwv" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"lwZ" = ( /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "lxp" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/power/apc{ @@ -28614,12 +21200,27 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"lxO" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "lyv" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) +"lyF" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "lyX" = ( /obj/structure/bed{ icon_state = "abed" @@ -28640,13 +21241,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"lzT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"lzU" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "lAc" = ( /turf/closed/wall/wood, /area/strata/ag/interior/restricted) @@ -28656,6 +21254,78 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"lAy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"lAB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"lAR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"lBr" = ( +/obj/structure/bed/roller, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"lBC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"lBE" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/engi/drome) +"lBJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lBR" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lCe" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"lCg" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"lCo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"lDe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "lDz" = ( /obj/structure/cryofeed, /obj/structure/platform/strata/metal, @@ -28664,36 +21334,85 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"lEo" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"lFy" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"lDQ" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/foyer) +"lEf" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"lEi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"lEm" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"lEw" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"lEC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"lFo" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"lFC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "lFG" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"lGv" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +"lGo" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "lHs" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"lHH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/landingzone_checkpoint) +"lHB" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "lHO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) +"lIa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "lIG" = ( /obj/structure/machinery/power/apc{ dir = 4; @@ -28710,6 +21429,17 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"lIW" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"lIY" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "lJz" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/syndicate, @@ -28722,57 +21452,93 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"lKs" = ( -/obj/structure/toilet{ - dir = 1 +"lJQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"lJT" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "lKv" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) "lKM" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/water) +"lKW" = ( +/obj/structure/machinery/computer/guestpass, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"lLr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"lLv" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) "lLw" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) -"lMB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"lNr" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +"lLP" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"lLV" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"lMy" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lME" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) +"lNn" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lNM" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"lNY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/landingzone_checkpoint) +"lOg" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"lOF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) "lOT" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -28785,17 +21551,16 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"lPk" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) "lPF" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"lPG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "lQT" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -28804,10 +21569,33 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) -"lRa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"lRb" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"lRf" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"lRL" = ( +/obj/structure/closet/emcloset, +/obj/item/coin/marine/engineer, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ag/interior/outpost/gen/foyer) "lRT" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -28815,42 +21603,71 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) +"lSn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"lSv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lTd" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/security) "lTG" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) +"lTJ" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "lTW" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/south_engi) -"lTX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"lUg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"lUm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"lUu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "lUw" = ( /obj/item/weapon/gun/pistol/t73, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"lUI" = ( +/obj/structure/bedsheetbin, +/obj/item/device/binoculars/range, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lUR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/omelette, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"lUS" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"lVg" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"lVn" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "lVF" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -28861,54 +21678,127 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"lVJ" = ( -/obj/structure/machinery/light/small{ +"lVL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"lVS" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"lWm" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lWM" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) +"lXW" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/dogtag, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"lXd" = ( -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lYM" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/strata_decals/grime/grime4{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/marsh) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "lZc" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"lZd" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) "lZf" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/river) -"mam" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump{ +"lZi" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"max" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"may" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"maM" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"maZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"mbg" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"mbk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 1 }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mbs" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"maP" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"mce" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/red1, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"mbK" = ( +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) -"mcD" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, +"mca" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"mcw" = ( +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"mcE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/landingzone_checkpoint) +"mcO" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"mcQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "mcX" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -28916,12 +21806,14 @@ /obj/item/device/flashlight, /turf/open/floor/plating, /area/strata/ag/exterior/nearlz2) -"mcY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"mda" = ( +/obj/structure/surface/rack{ + layer = 2.5 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "mde" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -28929,71 +21821,105 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"mdB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +"mdn" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"mdK" = ( -/obj/item/storage/belt/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"mem" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"mdV" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"meu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/barricade/handrail/strata{ - dir = 1 +/obj/structure/machinery/holosign/surgery, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"meS" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"med" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"meh" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) +"meU" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"meX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"mfi" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) "mfp" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/landingzone_checkpoint) -"mfv" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"mfW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +"mgb" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"mgJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "mhc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) -"mic" = ( +"mhf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"mhi" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"mhQ" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; + dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) "mip" = ( /obj/structure/platform/strata{ dir = 1 @@ -29009,24 +21935,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"miL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ +"miA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"miQ" = ( +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"miR" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/canteen) +"mjh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "mjp" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -29040,118 +21962,161 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"mjt" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "mjJ" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"mjR" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"mlq" = ( +"mkk" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"mkw" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 + dir = 10 }, -/obj/structure/machinery/door/airlock/almayer/medical/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"mms" = ( -/obj/effect/glowshroom, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"mlj" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"mmi" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "mmF" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) -"mnq" = ( -/obj/structure/window/framed/strata, +"mnn" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/paths/north_outpost) +"mnJ" = ( +/obj/structure/machinery/vending/security, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"mnY" = ( +/area/strata/ug/interior/jungle/deep/structures/res) +"mnN" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 + dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"mow" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"mod" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"moy" = ( /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"moN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "mpk" = ( /turf/closed/shuttle/ert{ icon_state = "upp27" }, /area/strata/ag/exterior/marsh/crash) -"mpm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +"mpn" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "mpr" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"mqs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"mqQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"mrp" = ( +"mpA" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"mrz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"mrG" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"mqa" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/north_outpost) +/area/strata/ag/interior/disposals) +"mqf" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"mqE" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"mrK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"mrO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "mrT" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) +"msb" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"msc" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) "mso" = ( /obj/structure/machinery/weather_siren, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/north_outpost) -"msC" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"msp" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"msF" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "msG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -29160,9 +22125,40 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/center) +"mtd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"mtw" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/obj/item/restraint/handcuffs, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "mtD" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/canteen/bar) +"mtP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"muB" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "mvh" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) @@ -29172,54 +22168,98 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"mwq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +"mwo" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2 }, -/obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +/area/strata/ug/interior/jungle/deep/structures/engi) "mwt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"mxa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"mwE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"mxu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"mwV" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"mxo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/toastedsandwich, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 8; + pixel_y = 17 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"mxH" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"mxI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"mxQ" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) "myk" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"mzp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"mzw" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"mzK" = ( /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"mBb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/area/strata/ag/interior/landingzone_checkpoint) +"mAh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) +"mAx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/toy/deck, +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "mBl" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/barricade/handrail/strata{ @@ -29227,20 +22267,80 @@ }, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"mCx" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"mCK" = ( +"mBt" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"mBx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"mBY" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"mCa" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/obj/structure/inflatable/popped/door, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"mCI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"mCN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"mDa" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"mDv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pouch/flare/full, +/obj/item/weapon/gun/pistol/t73, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "mDF" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) +"mDM" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"mDR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"mDZ" = ( +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"mEh" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "mEk" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -29249,17 +22349,39 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"mEL" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/exterior/research_decks) -"mFh" = ( -/obj/structure/fence, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"mGA" = ( -/turf/open/floor/strata/multi_tiles/west, +"mFC" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) +"mFD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"mGj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"mGP" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"mHb" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "mHo" = ( /obj/structure/largecrate/random, /obj/effect/decal/strata_decals/catwalk/prison, @@ -29273,6 +22395,18 @@ /obj/structure/machinery/floodlight/landing, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/engi/drome) +"mHX" = ( +/obj/structure/filingcabinet, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"mIq" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) "mIE" = ( /obj/structure/prop/almayer/computers/mapping_computer, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -29288,81 +22422,131 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"mKv" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"mKA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, +"mIL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"mIU" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/orange_cover, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mJb" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mJN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"mKX" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) -"mLe" = ( +"mJX" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/landingzone_checkpoint) -"mLn" = ( -/turf/closed/wall/strata_ice/jungle, -/area/strata/ug/interior/jungle/deep/east_engi) -"mLN" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mKd" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/exterior/jungle/deep/carplake_center) -"mLW" = ( -/obj/structure/dropship_equipment/mg_holder, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"mKk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 + }, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) +"mLn" = ( +/turf/closed/wall/strata_ice/jungle, +/area/strata/ug/interior/jungle/deep/east_engi) +"mLJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "mMp" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/tearlake) +"mMu" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "mMR" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"mNG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"mNq" = ( +/obj/structure/toilet, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/platform/strata/metal{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, +/obj/effect/landmark/wo_supplies/storage/belts/medical, +/obj/item/dogtag, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"mOi" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/platform/east/scrub) -"mOj" = ( +"mOz" = ( /obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 6; + pixel_y = -4 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"mOK" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "mOR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/strata_grass/layer1, @@ -29385,30 +22569,62 @@ icon_state = "upp8" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"mQg" = ( -/obj/item/stack/catwalk, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"mQE" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "mQR" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"mRN" = ( +"mSu" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"mSz" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"mSI" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mST" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"mTg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"mSK" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"mTt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"mUm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mUz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/flight_control) "mUD" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" @@ -29419,92 +22635,221 @@ icon_state = "upp_rightengine" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"mUY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/device/megaphone, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/deep/minehead) +"mVV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"mWk" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) +"mWo" = ( +/obj/structure/machinery/light/small, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) +"mWu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"mWy" = ( +/obj/structure/closet/bombcloset, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"mWA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) "mWF" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"mWM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 +"mXf" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"mWT" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"mXs" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mYc" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"mYd" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) "mYs" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"mYN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh) -"mYX" = ( -/obj/structure/machinery/shower{ - dir = 8 +"mYv" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/obj/structure/machinery/door/window/eastright{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"mYF" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"mYJ" = ( +/obj/item/clipboard, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mYY" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "mZd" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/gen/foyer) -"nai" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"ncp" = ( -/obj/structure/desertdam/decals/road_stop, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"ndC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +"mZe" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) +"mZP" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"nau" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/platform/east/scrub) +"nbL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"nco" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/security) +"ncM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 }, +/obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"ndS" = ( +/area/strata/ug/interior/jungle/platform/east/scrub) +"ncN" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"ndk" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"neL" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/strata/ag/interior/administration) +"ndF" = ( +/obj/item/stool, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"nee" = ( +/obj/structure/closet/wardrobe/suit, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"nfm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) +"nfH" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "nfK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/closed/wall/resin/membrane/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) +"ngc" = ( +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"ngz" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"ngC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"ngJ" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"nhd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"nhr" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "nhv" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) -"njA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "njW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/ice/layer1, @@ -29518,6 +22863,12 @@ /obj/structure/floodgate, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) +"nkt" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/exterior/research_decks) "nla" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -29527,14 +22878,66 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"nlh" = ( +/obj/item/explosive/grenade/phosphorus, +/obj/structure/surface/rack, +/obj/item/folder/red, +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"nlk" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"nlN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"nlQ" = ( +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/splint, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) +"nmd" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"nmg" = ( +/obj/structure/bed/nest, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "nmS" = ( /obj/structure/machinery/message_server, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"nmZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) "nnq" = ( /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"nnu" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) "nnY" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -29543,39 +22946,46 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"nok" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) "noq" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/east_dorms) -"npf" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"nor" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"npq" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"npy" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"npS" = ( /turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh) -"npW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" +/area/strata/ag/interior/outpost/engi/drome) +"npr" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"npD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata/red3, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"npH" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "npX" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -29584,6 +22994,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"nqV" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "nqX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, @@ -29593,29 +23007,78 @@ /obj/item/stack/sheet/wood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"nrd" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"nri" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "nrp" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/river) -"nrP" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"nrZ" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin3) "nsq" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/east_carp) -"nsB" = ( -/obj/structure/closet/coffin, -/turf/open/floor/strata/floor2, +"nsO" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"nsV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"ntc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"ntn" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"nto" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) -"ntu" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"ntA" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"ntE" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"ntH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "nun" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -29626,25 +23089,155 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"nuE" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"nuO" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"nuP" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/device/encryptionkey/dutch, +/obj/item/dogtag, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"nuR" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/north_lz_caves) +"nvy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"nvJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"nvK" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"nvX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"nwp" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"nwW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"nxd" = ( +/obj/item/stack/sandbags, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"nxf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "nxh" = ( /obj/structure/surface/rack, /obj/item/paper_bin, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"nxr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"nxE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "nxF" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" }, /area/strata/ag/exterior/marsh/crash) -"nyB" = ( -/obj/structure/barricade/handrail/strata{ +"nxM" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"nyR" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"nyX" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/item/storage/box/explosive_mines, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"nzr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"nzt" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"nzT" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) "nAf" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/east_carp) +"nAt" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"nAI" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/structure/machinery/light/small, +/obj/item/clothing/head/hardhat/white, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) "nAM" = ( /obj/structure/platform/strata{ dir = 1 @@ -29663,6 +23256,26 @@ "nAZ" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/east_carp) +"nBb" = ( +/obj/item/storage/firstaid/adv, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"nBj" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"nBs" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) "nCD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -29672,10 +23285,15 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"nCJ" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) +"nDi" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/barricade/snow{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "nDj" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -29685,18 +23303,62 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"nEU" = ( -/obj/structure/filingcabinet, +"nDo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"nDv" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"nDx" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"nFN" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"nEe" = ( +/obj/structure/closet/basketball, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"nEv" = ( +/obj/item/reagent_container/food/drinks/shaker, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"nEA" = ( +/obj/structure/machinery/smartfridge/drinks, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"nEH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"nFe" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "nGi" = ( /obj/structure/cargo_container/grant/left, /turf/open/auto_turf/ice/layer0, @@ -29707,16 +23369,63 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"nIf" = ( +"nGH" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/landingzone_2) +"nHI" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"nIS" = ( -/obj/structure/bed/chair/office/light{ +/area/strata/ag/exterior/research_decks) +"nHZ" = ( +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"nId" = ( +/obj/structure/machinery/cryobag_recycler, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"nIt" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"nIx" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/strata/floor3/east, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/east_engi) +"nIE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) +"nIO" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"nJl" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"nJE" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "nJK" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh) @@ -29724,23 +23433,100 @@ /obj/structure/machinery/shower, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen/personal_storage) +"nKe" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"nKh" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"nKO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"nKS" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/machinery/computer/guestpass{ + dir = 4; + reason = "Visitor" + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "nLG" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"nNR" = ( +"nMh" = ( /obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/obj/item/book/manual/research_and_development, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"nOE" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"nMA" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) +/area/strata/ag/interior/outpost/med) +"nMI" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/maintenance) +"nNj" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"nNl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"nNt" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"nNS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"nNY" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"nOg" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"nOC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "nPb" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/east_carp) @@ -29750,27 +23536,68 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) +"nPl" = ( +/obj/structure/machinery/light/small, +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"nPq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) "nPr" = ( /obj/structure/tunnel, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"nPD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "nPJ" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"nPW" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/crash) -"nQk" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/recharge_station, +"nQf" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"nQi" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"nQj" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"nQz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/area/strata/ag/interior/administration) "nQE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"nRg" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"nRo" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "nRN" = ( /obj/structure/cargo_container/arious/rightmid{ health = 5000; @@ -29778,6 +23605,30 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"nRU" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"nRZ" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/exterior/research_decks) +"nSo" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"nSD" = ( +/obj/structure/kitchenspike, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"nSF" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) "nSJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -29788,32 +23639,43 @@ /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"nST" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"nTf" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"nTD" = ( -/obj/structure/toilet{ +"nTi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"nTC" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"nTQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) "nTS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) +"nUa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"nUy" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "nUM" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" @@ -29821,28 +23683,93 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"nUX" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"nVt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"nVn" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"nVL" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) -"nWv" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +"nWN" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "nWX" = ( /obj/structure/bed/roller, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"nXu" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/landmark/wo_supplies/storage/mines, +/obj/effect/landmark/wo_supplies/storage/mines, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"nXD" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"nXV" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"nYf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"nYo" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"nYA" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"nYF" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"nZr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) "nZR" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/research_decks) +"nZZ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/structures/res) +"oam" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/exterior/research_decks) +"oaF" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "oaV" = ( /obj/effect/decal/cleanable/blood{ desc = "Watch your step."; @@ -29850,6 +23777,45 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"oaZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"obb" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"obl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"obp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"obs" = ( +/obj/item/tool/mop, +/obj/structure/janitorialcart, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "ocw" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -29862,33 +23828,43 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh) -"ocE" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ocH" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/marsh/crash) +"ocP" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "odi" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"odr" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"odB" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) +"odp" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"odE" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "odJ" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/engi/drome) -"oeA" = ( -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) +"oee" = ( +/obj/structure/closet/bodybag, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"oeo" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) "oeH" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -29900,36 +23876,57 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/tcomms/tcomms_deck) +"oeL" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) "oeO" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/east_carp) -"oeQ" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"oeT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) "ofd" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) -"ogL" = ( +"ogi" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"ogl" = ( /obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"oiF" = ( -/obj/structure/machinery/light/small{ +/obj/item/device/radio, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"ohQ" = ( +/obj/item/tool/pen/blue, +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"ohT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"oif" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"oiy" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) "oiV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -29940,6 +23937,10 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"ojd" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "okE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) @@ -29951,19 +23952,36 @@ icon_state = "upp20" }, /area/strata/ag/exterior/marsh/crash) -"olh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"oll" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"olz" = ( +/obj/structure/lamarr, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"olJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"olH" = ( -/obj/structure/bed{ - icon_state = "abed" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"omf" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"omE" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"onj" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/area/strata/ag/interior/tcomms) "onq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, @@ -29971,15 +23989,16 @@ "onr" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"ooj" = ( -/obj/structure/surface/table/reinforced/prison, +"ony" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigar, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "opg" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -29987,25 +24006,85 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) +"opJ" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "oqc" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"oqA" = ( -/obj/item/stack/rods, +"oqg" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"oqt" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"oqI" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) +/area/strata/ag/interior/outpost/maint/canteen_e_1) "oqJ" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) +"oqM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) "oqQ" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/center) +"oqS" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"oqV" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "orc" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"org" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"orq" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/engi/drome) +"oru" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"orx" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "orL" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -30021,61 +24100,218 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"ots" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"ott" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"oup" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "ouB" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"ouJ" = ( -/obj/effect/decal/cleanable/blood/oil, +"ouE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"ova" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"ovp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) +/area/strata/ug/interior/jungle/platform/east/scrub) +"ovC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ovQ" = ( +/obj/structure/largecrate/guns/russian, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"owv" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"oxc" = ( +/obj/structure/bed/nest, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "oxE" = ( /obj/structure/surface/rack, /obj/item/storage/pill_bottle/bicaridine, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"oyu" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 +"oxN" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"oxS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"oya" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"oyd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"oyl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "oyy" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) +"oyG" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"oyS" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"oze" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/armor/bulletproof, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"ozi" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"ozq" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"oAI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"oAK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"oAM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/surgical, +/obj/item/storage/surgical_tray, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) "oAQ" = ( /obj/structure/machinery/light/small, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"oBn" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"oBv" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"oCc" = ( -/obj/item/fuel_cell, +"oBj" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/bball) +"oCj" = ( /obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata/red2, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"oCG" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"oDe" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"oDj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "oDw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -30084,50 +24320,111 @@ /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/south_dorms) -"oFG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"oGW" = ( -/obj/structure/machinery/light/small, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/nearlz2) -"oHN" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/south_dorms) +"oEy" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"oEG" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"oEH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"oEL" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"oFY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"oGr" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"oGz" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oGG" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"oGX" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"oHb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/prison/darkyellowfull2, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) -"oIi" = ( -/obj/structure/filingcabinet, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/objective_landmark/close, +"oHk" = ( +/obj/structure/surface/rack, +/obj/item/spacecash/c500, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"oIv" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/medium, +/area/strata/ug/interior/jungle/deep/structures/res) +"oHv" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"oHQ" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/ripley_build_and_repair, +/obj/item/book/manual/surgery, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"oIx" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"oIj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"oIA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"oIB" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/north_lz_caves) "oIU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"oJD" = ( -/obj/item/stack/rods, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) +"oJm" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oJq" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "oKl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -30135,12 +24432,12 @@ "oKo" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"oKV" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"oKC" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "oLv" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -30148,41 +24445,85 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"oLz" = ( -/obj/structure/platform/strata/metal{ +"oLx" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"oLA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"oMJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"oMa" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"oMZ" = ( -/obj/structure/toilet{ - dir = 8 +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"oMK" = ( +/obj/structure/barricade/snow, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) +"oNk" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"oOB" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"oNp" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"oNz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"oOX" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"oNC" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"oOf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, /obj/structure/machinery/light/small{ - dir = 1 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"oOk" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"oOP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"oOZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"oPq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "oPz" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -30191,34 +24532,64 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"oPN" = ( -/turf/open/asphalt/cement/cement3, -/area/strata/ug/interior/jungle/platform/east/scrub) +"oPB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"oPE" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "oPQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"oQe" = ( -/obj/structure/bed{ - icon_state = "abed" - }, +"oPZ" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"oQp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "oQv" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/crash) -"oRm" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"oSN" = ( -/obj/structure/barricade/handrail/strata{ +"oRK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"oRV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"oSb" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; dir = 1 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"oSI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/door/airlock/almayer/medical/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"oSJ" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"oSM" = ( +/obj/item/stack/rods, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "oSP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -30232,9 +24603,54 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"oUS" = ( +"oSW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"oTh" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"oTx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"oTR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"oUj" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"oUB" = ( +/obj/item/storage/belt/security, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"oUN" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"oVk" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, /turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) +/area/strata/ag/interior/outpost/security) +"oVp" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "oVR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -30243,29 +24659,20 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"oWt" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"oWD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 8 +"oWd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"oWO" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"oWr" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) "oWQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -30276,37 +24683,103 @@ "oWU" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"oXH" = ( -/obj/structure/surface/table/reinforced/prison, +"oWW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"oXE" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"oXV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"oYp" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, /obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"oYx" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"oYJ" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"oYN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"oYY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) -"oZt" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) "oZD" = ( /obj/item/lightstick, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"oZS" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"pal" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "pax" = ( /obj/structure/largecrate/hunter_games_medical, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"pay" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"paL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "paY" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"pbC" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "pbF" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -30314,10 +24787,76 @@ /obj/structure/cryofeed, /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"pbP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"pbR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"pck" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"pcs" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 + }, +/obj/structure/largecrate/random, +/obj/item/seeds/walkingmushroommycelium, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"pdk" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "pdv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) +"pdD" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"pdN" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"pdY" = ( +/obj/item/storage/fancy/cigarettes/lady_finger, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"peb" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"peu" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "pex" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -30325,33 +24864,57 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) +"pfk" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "pfz" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/south_engi) -"pfQ" = ( -/obj/structure/platform/strata/metal{ - dir = 4 +"pfK" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pfO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"pfZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "pge" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"pgW" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"piu" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 +"pgU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"phA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"phJ" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "piD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cheesecakeslice, @@ -30372,9 +24935,24 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"piU" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/condimentbottles, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"piX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "piY" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) +"pjc" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "pje" = ( /obj/structure/cryofeed/right, /obj/structure/platform/strata/metal, @@ -30383,67 +24961,105 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"pkG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"pjm" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"pkO" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/interior/disposals) -"plC" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"pju" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"pkF" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/strata/white_cyan3/northeast, /area/strata/ag/interior/outpost/med) -"pmC" = ( +"pkO" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/interior/disposals) +"plc" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ +/obj/structure/machinery/microwave, +/obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"pmT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"pnP" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"plq" = ( +/obj/structure/platform/strata/metal{ dir = 8 }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"plI" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ - dir = 8 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"pmI" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"poc" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"pnj" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"pnU" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"poh" = ( +/obj/item/stack/sheet/wood, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"ppe" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"ppA" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"ppC" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/exterior/research_decks) +"ppb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) +"ppu" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"pqf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"pqr" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) "pqy" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -30452,6 +25068,10 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"pqC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "pqE" = ( /obj/structure/cargo_container/wy/right{ health = 5000; @@ -30469,20 +25089,34 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"pqS" = ( +/obj/structure/bed/nest, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"prd" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "pri" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"pro" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"prq" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"prt" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "psl" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -30491,36 +25125,30 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"psE" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"psQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"psR" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ +"psu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"psv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"psw" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/east_carp) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"psB" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "psV" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -30530,61 +25158,126 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"ptr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) +"psY" = ( +/obj/structure/bed/chair, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"pty" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ptS" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "ptT" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/hive) -"ptW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"puV" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"puX" = ( -/obj/structure/closet/lawcloset, -/obj/structure/machinery/camera/autoname{ +"ptU" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"pum" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) +"puL" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "pvA" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"pvY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"pwn" = ( -/obj/structure/largecrate/guns/russian, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"pvO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"pwz" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"pwa" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"pwl" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"pwS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "pwW" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"pxG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"pyy" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"pyz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"pyL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"pyR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"pyX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"pza" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "pzb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -30592,43 +25285,113 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"pzt" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) +"pzo" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/structures/res) +"pzx" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"pzG" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"pzK" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "pAc" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior) -"pAM" = ( -/obj/structure/surface/table/reinforced/prison, +"pAh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"pAr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"pAI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"pAX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"pBc" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"pBe" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"pBh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) -"pDb" = ( -/obj/structure/dropship_equipment/sentry_holder, -/turf/open/floor/strata/floor3/east, +"pBK" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"pCj" = ( +/obj/structure/machinery/light/small, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"pCE" = ( +/obj/item/storage/secure/briefcase, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) +"pCF" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"pCR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 2; + name = "Medical Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"pCT" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"pDs" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "pDz" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"pDJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"pDQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +"pDK" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "pDY" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 @@ -30639,39 +25402,54 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) +"pEk" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) "pEm" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"pEo" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"pEF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +"pEx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"pEJ" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "pEM" = ( /obj/structure/barricade/wooden, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"pEY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"pFi" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"pEP" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pFw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"pFQ" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) "pGf" = ( /obj/structure/machinery/power/apc{ dir = 8; @@ -30680,6 +25458,11 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/tcomms/tcomms_deck) +"pGh" = ( +/obj/structure/inflatable/door, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "pGt" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; @@ -30694,28 +25477,55 @@ /obj/item/stack/cable_coil/blue, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"pGC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +"pGO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/blue3/east, +/area/strata/ag/interior/outpost/admin) +"pHa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"pHg" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"pHJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) "pHR" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) "pIa" = ( /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) +"pIp" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"pIq" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"pIv" = ( +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/dorms/hive) "pIy" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"pJu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) "pJz" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -30725,6 +25535,18 @@ "pJA" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/east_dorms) +"pJG" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pJX" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"pKo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) "pKq" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -30732,20 +25554,80 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"pKQ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pKR" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/corpsespawner/russian, +/obj/structure/bed/roller, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"pKW" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/north_outpost) +"pLa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "pLA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_engi) -"pLE" = ( -/obj/structure/largecrate/random/barrel/yellow, +"pLQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"pMk" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"pML" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform/strata/metal{ + dir = 1 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"pMU" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 16 +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"pMW" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"pNc" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) +"pNG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "pNL" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -30757,27 +25639,45 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"pNY" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"pNX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/red1, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"pOi" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"pOH" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/blood/oil, +"pOF" = ( +/obj/structure/machinery/reagentgrinder, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"pOV" = ( +/obj/structure/bed/chair, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"pOW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/area/strata/ag/interior/outpost/med) +"pPa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/item/device/megaphone, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"pPd" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "pPi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, @@ -30786,6 +25686,16 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) +"pQk" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"pQn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "pQH" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, @@ -30797,11 +25707,31 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"pSc" = ( -/obj/structure/closet/coffin, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +"pRM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pRQ" = ( +/obj/item/storage/box/cups, +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/book/manual/surgery, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"pSk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) "pSm" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -30811,9 +25741,51 @@ /obj/structure/closet/bodybag/tarp, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"pSo" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) "pSw" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/east_carp) +"pSU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"pTj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"pTO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pTY" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"pTZ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"pUy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "pUB" = ( /obj/structure/bed{ icon_state = "abed" @@ -30828,18 +25800,47 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"pVn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -10 +"pUC" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"pVq" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"pUE" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"pUF" = ( +/obj/item/device/aicard, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"pVM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"pWo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "pWp" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -30850,58 +25851,148 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"pWP" = ( +"pWB" = ( +/obj/structure/largecrate/random/case/double, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"pWF" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"pWN" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"pWX" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"pXx" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"pYn" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pYt" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"pYE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) -"pXB" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"pYI" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/area/strata/ag/interior/outpost/admin) "pYM" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"pYO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/landingzone_checkpoint) "pZe" = ( /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"pZl" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) "pZS" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"qbk" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +"pZT" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"qak" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"qaC" = ( +/obj/structure/machinery/disposal, +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"qbh" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "qbA" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"qbF" = ( +/obj/item/weapon/gun/revolver/cmb, +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"qbH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "qbR" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"qbU" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +"qbV" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/engi/drome) +"qcs" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "qcB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"qcH" = ( +/obj/structure/bed, +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood, +/obj/item/bedsheet/medical, +/obj/item/storage/large_holster/machete/full, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "qcO" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -30914,26 +26005,67 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) +"qdf" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"qdr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"qdt" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"qdu" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "qdI" = ( /obj/item/ammo_magazine/revolver/cmb, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"qer" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +"qeg" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"qew" = ( +/obj/structure/machinery/power/apc{ + pixel_y = -24; + start_charge = 0 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "qeH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"qeI" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"qeZ" = ( +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/surface/rack{ + layer = 2.5 }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "qfi" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -30942,106 +26074,255 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/crash) +"qfB" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "qfC" = ( /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"qfM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) "qfN" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"qgc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 +"qgb" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"qgw" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"qgz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/north_lz_caves) +"qgA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qgI" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"qgW" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"qhn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/lightreplacer, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "qhp" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"qin" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/restricted/devroom) -"qjD" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/marsh) -"qks" = ( +"qhy" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"qiF" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"qjc" = ( +/obj/structure/filingcabinet, /obj/structure/machinery/light/small, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"qjE" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"qkS" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/marsh) -"qkU" = ( +/area/strata/ag/exterior/landingzone_2) +"qjP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"qky" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/deep/structures/res) +"qkD" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"qkL" = ( /obj/structure/barricade/handrail/strata{ - dir = 4 + dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/marsh) -"qlq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"qkX" = ( +/obj/item/storage/belt/knifepouch, +/obj/structure/surface/rack, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/area/strata/ag/interior/outpost/engi/drome) +"qlg" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + id_tag = "bunker_or1"; + name = "\improper Operating Room 1" + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/med) +"qlh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"qlT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"qmi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "qmw" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/tcomms/tcomms_deck) -"qmW" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"qns" = ( +"qmI" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"qon" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) "qot" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"qoD" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +"qoz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) +"qoK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"qoZ" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"qpD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/effect/decal/strata_decals/grime/grime3{ dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/east_engi) -"qrz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement3, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"qpT" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"qpV" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"qpX" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"qqE" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"qrc" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/north_outpost) +"qrn" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"qro" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"qrM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qrP" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/north_lz_caves) +"qrQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "qsI" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"qsZ" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/adminext) "qtn" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -31054,34 +26335,81 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"quT" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/multi_tiles/southwest, +"qto" = ( +/obj/structure/window/framed/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) +"quJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"quO" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"qvd" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "qvy" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"qvJ" = ( +"qvR" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"qvU" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 + dir = 10 }, -/obj/structure/closet/crate/radiation, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"qwx" = ( -/obj/structure/bed{ - icon_state = "abed" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"qwf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 4 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"qwF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "qwM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/flight_control) +"qxa" = ( +/obj/structure/machinery/smartfridge, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qxc" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "qxi" = ( /obj/effect/decal/cleanable/blood/gibs/core, /mob/living/simple_animal/hostile/carp{ @@ -31094,10 +26422,10 @@ "qxr" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/tearlake) -"qxt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) +"qxu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "qxD" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -31106,59 +26434,154 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"qzf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/strata/cyan2/east, +"qxI" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) -"qAr" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"qxX" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"qyc" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"qzc" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"qzn" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"qzp" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"qzN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"qzX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"qAf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"qAh" = ( +/obj/item/tool/kitchen/rollingpin, +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"qAl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"qAo" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"qAq" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -23; + start_charge = 0 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) "qBd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) -"qBg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"qCv" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"qBw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"qCb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"qCq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "qDg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"qDI" = ( -/obj/structure/machinery/power/reactor/colony, +"qDF" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/recharge_station, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"qFH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"qFY" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 2 +"qEn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"qEr" = ( +/obj/structure/desertdam/decals/road_stop, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"qEQ" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"qFG" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"qGr" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"qGU" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) -"qGK" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) +"qHj" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "qHo" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" @@ -31166,38 +26589,101 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"qIt" = ( +"qHz" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"qHE" = ( /obj/structure/barricade/handrail/strata{ - dir = 4 + dir = 1 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"qJi" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"qHS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/area/strata/ag/exterior/research_decks) +"qHX" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/inflatable/door, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"qJm" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) "qJC" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"qKe" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"qKs" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "qKx" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) -"qKU" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"qLp" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"qKX" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/masks, +/obj/item/storage/box/masks, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"qLa" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/east_carp) +"qLe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"qLk" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qLE" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qMr" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "qMF" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, @@ -31208,62 +26694,32 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qMQ" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"qNi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"qNS" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"qOj" = ( -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"qOm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) "qOt" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qOF" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"qON" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"qOZ" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qPl" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"qOz" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"qOM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"qPW" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "qQq" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qQu" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) "qQN" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/down, @@ -31272,19 +26728,65 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qRj" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"qQW" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/tool/match, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"qRg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"qRP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/admin) +"qSg" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"qSi" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"qSn" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "qSo" = ( /turf/closed/shuttle/ert{ icon_state = "upp4" }, /area/strata/ag/exterior/marsh/crash) +"qSr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"qSu" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"qSv" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"qSz" = ( +/obj/item/stack/catwalk, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "qTk" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/barricade/handrail/strata{ @@ -31316,11 +26818,24 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"qTV" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) +"qUm" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"qUw" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qUA" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "qUB" = ( /obj/structure/bed/chair{ dir = 1 @@ -31331,24 +26846,75 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"qUW" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"qWC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" +"qVd" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"qVt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 }, /turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) +/area/strata/ag/interior/outpost/med) +"qVy" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"qVN" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"qVO" = ( +/obj/structure/bed/nest, +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"qWh" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) "qWD" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/restricted) -"qWQ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +"qXh" = ( +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, +/turf/open/floor/plating/warnplate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"qXk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"qXt" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/small, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"qXD" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"qXL" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "qXN" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -31356,13 +26922,10 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"qXY" = ( -/obj/structure/computerframe, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"qXR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome) "qYm" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/cleanable/blood/gibs/core, @@ -31375,43 +26938,102 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"qYN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "qYZ" = ( /obj/item/weapon/gun/rifle/type71/carbine, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"raa" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"raj" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "ras" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"rba" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/far, +"raz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"raT" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) +/area/strata/ag/exterior/paths/cabin_area) +"rbg" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "rbi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"rbI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "rbO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"rca" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"rci" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"rcG" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"rcT" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "rdm" = ( /obj/structure/largecrate/random, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"rdo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"rdI" = ( +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "reb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31422,6 +27044,9 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) +"rek" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "rel" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31430,29 +27055,77 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"reS" = ( +"reA" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"reI" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"reJ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"reZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"rfB" = ( -/obj/structure/machinery/power/reactor/colony, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) -"rgt" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"rfj" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"rfq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"rfC" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, /area/strata/ug/interior/jungle/deep/minehead) -"rgz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) +"rfI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"rfS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"rfW" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) "rgH" = ( /obj/structure/barricade/snow{ dir = 8 @@ -31460,26 +27133,24 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) -"rhg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"rhk" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, +"rgJ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"rhe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement2, /area/strata/ag/interior/landingzone_1) -"rhJ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, +"rhY" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"riw" = ( +/obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "riM" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -31494,13 +27165,6 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"riS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) "riY" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -31508,73 +27172,234 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"rjb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "rjf" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"rjn" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) "rjG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"rkb" = ( -/obj/item/clothing/glasses/thermal/syndi, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"rkq" = ( -/obj/structure/pipes/vents/pump{ +"rjP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"rjT" = ( +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"rkI" = ( -/obj/structure/largecrate/random, +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"rkJ" = ( +/obj/structure/bed/nest, +/obj/item/weapon/gun/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"rkR" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -10 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"rlc" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"rlV" = ( /obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rmu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"rmD" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/exterior/research_decks) +"rmG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"rnl" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, /turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) -"rno" = ( -/obj/structure/largecrate/random, +/area/strata/ag/interior/landingzone_1) +"rny" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"rnR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan4/north, +/area/strata/ag/interior/outpost/med) +"rog" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/structure/bed/chair, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"roh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"roj" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/area/strata/ag/exterior/vanyard) "rok" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) +"roz" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) "roI" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"rpA" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 2; - name = "Medical Airlock" +"roV" = ( +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"rph" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"rpi" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rpj" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"rpX" = ( -/turf/open/asphalt/cement/cement4, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"rpn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"rpw" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/platform/east/scrub) +"rpJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meatballspagetti, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"rqk" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"rqG" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/obj/item/book/manual/research_and_development, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"rqI" = ( +/obj/structure/bed/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "rqL" = ( /obj/item/tool/wrench, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"rqR" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/med) "rrj" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"rru" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/jcloset, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"rrE" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "rrV" = ( /obj/structure/platform/strata{ dir = 1 @@ -31587,6 +27412,27 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"rsp" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"rsv" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"rtv" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"rtQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "rtW" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/nearlz1) @@ -31595,19 +27441,43 @@ /obj/effect/landmark/static_comms/net_one, /turf/open/floor/greengrid, /area/strata/ag/interior/disposals) +"ruf" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "ruM" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/south_engi) "rvD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/south_engi) -"rwD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, +"rwl" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"rwN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"rxh" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "rxp" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"rxt" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "rxL" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -31620,6 +27490,13 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/nearlz2) +"ryb" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "ryf" = ( /obj/structure/platform_decoration/strata/metal, /obj/effect/decal/strata_decals/catwalk/prison, @@ -31628,53 +27505,141 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) +"ryp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"ryu" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "ryA" = ( /obj/structure/inflatable, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"ryK" = ( -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"rzx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, +"rzb" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"rzr" = ( +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"rzG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"rzF" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "rAv" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"rDl" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/barricade/handrail/strata{ +"rAM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, +/obj/item/stack/catwalk, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"rBg" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"rBV" = ( +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) +"rCK" = ( +/obj/structure/closet/crate, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"rCW" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"rDe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rDj" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"rEc" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rEh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"rEi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "rEr" = ( /obj/structure/platform/strata/metal{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"rEs" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"rFc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"rFh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "rFn" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"rFG" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool/folded, +/obj/item/weapon/gun/pistol/t73, +/obj/item/attachable/bayonet/upp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) "rFZ" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -31685,68 +27650,112 @@ "rGp" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"rHs" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, +"rHp" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/area/strata/ag/exterior/paths/north_outpost) "rHX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/nearlz2) -"rIM" = ( -/turf/open/gm/coast/south, -/area/strata/ug/interior/jungle/deep/north_carp) -"rJf" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/engi) -"rJz" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowfull2, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/nearlz2) +"rIM" = ( +/turf/open/gm/coast/south, +/area/strata/ug/interior/jungle/deep/north_carp) +"rJd" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rJp" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"rKd" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"rKm" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"rKr" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, +/obj/item/tool/crowbar, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) +"rKF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "rKG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/gen/bball/nest) -"rLg" = ( -/obj/structure/machinery/light/small{ +"rKY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"rKZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"rLh" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"rLy" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/cyan4/east, +/turf/open/floor/strata/white_cyan4/east, /area/strata/ag/interior/outpost/med) -"rLn" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/warnplate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"rLZ" = ( -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/turf/open/floor/plating/warnplate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) "rMv" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_2"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"rMy" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, +"rNa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"rNj" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"rNp" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"rMP" = ( -/obj/structure/closet/coffin, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/administration) "rNI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) @@ -31755,145 +27764,242 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) +"rNX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"rOc" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/obj/item/storage/box/cups, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"rOg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "rOB" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/vanyard) +"rOC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rPk" = ( +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "rPA" = ( /obj/structure/platform/strata/metal, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"rQV" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +"rQi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/machinery/light/small{ +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"rQy" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rQU" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "rQX" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"rRb" = ( +/obj/structure/barricade/handrail/strata, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "rRl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"rRx" = ( +"rRN" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 + dir = 10 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"rSa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "rSl" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"rSE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 +"rSW" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"rTE" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" }, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"rTC" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"rUn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"rUQ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, +/area/strata/ag/interior/outpost/canteen) +"rVs" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"rWk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/area/strata/ug/interior/jungle/deep/structures/res) +"rWd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/obj/structure/mirror{ - pixel_x = -29 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) +"rWi" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"rWu" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"rWS" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "rXy" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"rXF" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"rXI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) "rXZ" = ( /obj/item/fuel_cell, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) +"rYc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"rYi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rYN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/storage/briefcase, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rZl" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) "sah" = ( /obj/item/weapon/gun/pistol/t73, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"sau" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 +"sal" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"sas" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"saz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"saB" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"saU" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) "saY" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/tearlake) +"sbD" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "sbW" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) -"scb" = ( -/obj/structure/closet/bodybag/tarp, -/obj/structure/closet/bodybag/tarp, -/obj/structure/closet/bodybag/tarp, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"scp" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/fuel_cell, -/turf/open/floor/strata/red2, -/area/strata/ag/interior/outpost/engi) +"sdi" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"sdD" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "seb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"sen" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" +"seQ" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"sfd" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "sgq" = ( /obj/structure/bed{ icon_state = "abed" @@ -31904,9 +28010,29 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) +"sgx" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) "sgG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) +"sgP" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"sgV" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) "sha" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer0, @@ -31915,46 +28041,82 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"shr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"shv" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 }, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"sip" = ( -/obj/structure/inflatable, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"sjp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"shA" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"shC" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"shE" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"shR" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) +"sik" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"six" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"skd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) "ski" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical, /obj/item/device/flashlight, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"skl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"skJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +"skS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "sly" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -31962,23 +28124,65 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"slL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "smd" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"smj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"smF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "smG" = ( /obj/structure/largecrate/random, /obj/item/toy/deck, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"smQ" = ( +/obj/structure/inflatable, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"smW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"sns" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"snI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/bicaridine, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"snU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/maintenance) "snV" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/jungle/platform/east/scrub) @@ -31989,75 +28193,189 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"sot" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ +"sox" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) -"soD" = ( -/obj/item/fuel_cell, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) +"soK" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "spp" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) +"spI" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/largecrate/guns/russian, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"spJ" = ( +/obj/item/device/megaphone, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"spX" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"sqS" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "sqT" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/crash) +"sqX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/plump_pie, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "srk" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/platform/east/scrub) -"srQ" = ( +"sro" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"srz" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"srE" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"srH" = ( +/obj/effect/landmark/corpsespawner/russian, +/obj/structure/bed/roller, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"srI" = ( +/obj/item/paper_bin, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"srM" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"srW" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "ssd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/east_dorms) -"sse" = ( -/obj/structure/bed{ - icon_state = "abed" +"ssl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"ssA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 1 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ssC" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"std" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"ssE" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/vanyard) +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "stf" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/east_carp) +"stn" = ( +/obj/item/storage/box/ids, +/obj/structure/surface/rack, +/obj/item/device/radio, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "stF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"svg" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/camera/autoname{ - dir = 4 +"stP" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/cyan2/east, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"svP" = ( -/obj/structure/fence, -/obj/structure/fence, -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"suD" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/structures/res) +"suW" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/attachments, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"svs" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"svM" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"sxa" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "sxr" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -32065,15 +28383,45 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) +"sxM" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "sxT" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"sya" = ( -/obj/structure/bed/roller, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"sxU" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/barman_recipes, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"syb" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"syI" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"syN" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "syU" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, @@ -32086,48 +28434,143 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/engi) -"szX" = ( -/obj/structure/machinery/light/small{ +"szf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"szl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"szq" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"szB" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/west_engi) "sAv" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/med1) -"sBf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +"sAB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"sBg" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"sCa" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"sDs" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"sAP" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" + icon_state = "pottedplant_21" }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"sAW" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"sDE" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/exterior/research_decks) +"sBi" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"sBM" = ( +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) +"sBP" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"sCb" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"sCw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"sCS" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"sDn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"sDu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"sDB" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"sDX" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"sEt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "sEG" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -32138,16 +28581,82 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"sEH" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"sET" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "sEV" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) -"sFB" = ( -/obj/structure/machinery/landinglight/ds2{ +"sFe" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"sFf" = ( +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"sFE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/item/tool/stamp, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"sFP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"sFU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"sGx" = ( +/obj/structure/machinery/autolathe/full, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"sGD" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"sGI" = ( +/obj/structure/machinery/washing_machine, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) "sGJ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -32155,111 +28664,312 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"sGR" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/largecrate/random/case/small, +"sGK" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/closet/bodybag, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) +"sHn" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/shed_five_caves) +"sHs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"sHu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"sHA" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/research_decks) "sHP" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"sId" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"sIq" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"sIx" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"sIB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"sIF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/monkeyburger, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"sII" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"sIU" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"sIX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/gen/foyer) "sJd" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) +"sJh" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"sJP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"sJU" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "sKg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_carp) +"sKr" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"sKE" = ( +/obj/effect/glowshroom/single, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/north_lz_caves) "sKX" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"sLn" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) +"sLv" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "sMj" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"sMX" = ( -/obj/structure/bed/chair/dropship/passenger{ +"sMv" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"sNb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"sNq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"sNA" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) -"sOB" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"sNG" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"sNV" = ( +/obj/structure/machinery/disposal, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/gen/foyer) +"sOk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"sOA" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "sPc" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/tcomms) -"sPD" = ( -/obj/structure/bed{ - icon_state = "abed" +"sPe" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"sPz" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/item/storage/fancy/cigarettes/lady_finger, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"sPB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) "sPF" = ( /turf/open/floor/strata, /area/strata/ug/interior/jungle/platform/east/scrub) -"sQs" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/landingzone_2) -"sQA" = ( -/obj/effect/landmark/good_item, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"sPV" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 22 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"sQK" = ( -/obj/structure/barricade/handrail/strata{ +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"sQN" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"sRz" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"sQZ" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"sRJ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "sRR" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"sRX" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"sSv" = ( +"sRW" = ( +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"sSk" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/good_item, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"sSB" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/marsh) -"sSZ" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"sSG" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/bcircuit, +/area/strata/ag/interior/dorms) +"sSQ" = ( +/obj/structure/kitchenspike, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"sTa" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"sTD" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"sUi" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"sWO" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"sUF" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"sUW" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"sVA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"sWh" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/marsh) -"sXl" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/item/stack/folding_barricade, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"sWN" = ( +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"sWQ" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "sXt" = ( /obj/structure/bed/chair{ dir = 8 @@ -32269,13 +28979,6 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"sXu" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) "sXF" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -32297,108 +29000,234 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"sZP" = ( -/obj/structure/pipes/vents/pump{ +"sYk" = ( +/obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"taa" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/blue1, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"sYn" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"sYv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/med) +"sYJ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"sYQ" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"taL" = ( +"sZI" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"sZM" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"sZU" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"taw" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"taE" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"taG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"taN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"taT" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"taV" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"tbp" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/interior/landingzone_1) +"tbV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tcq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"tcu" = ( +/obj/structure/window/reinforced/tinted, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"taW" = ( -/turf/open/asphalt/cement/cement9, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"tcP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"tcS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement3, /area/strata/ug/interior/jungle/platform/east/scrub) -"tdn" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"tdr" = ( -/obj/structure/machinery/light/small{ +"tcU" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"tdi" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"tdB" = ( -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"tds" = ( +/obj/structure/closet/coffin, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ten" = ( +/obj/structure/machinery/photocopier, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"teo" = ( +/obj/structure/inflatable, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/tcomms/tcomms_deck) "teI" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tfB" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/landmark/objective_landmark/medium, +"tfo" = ( +/obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/north_lz_caves) +/area/strata/ag/interior/outpost/engi/drome) +"tfz" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "tfM" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/shed_five_caves) -"tgr" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) +"tfS" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) +"tgn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"tgs" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "tgC" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"tgK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"tgQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "thc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"thd" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "thz" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/item/weapon/gun/pistol/t73, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) -"tio" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"thO" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"til" = ( /turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) -"tiE" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"tiM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/strata/floor2, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"tiQ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"tjj" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) -"tiU" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) "tjo" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, @@ -32409,51 +29238,123 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"tlc" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/obj/item/storage/box/gloves, -/obj/item/storage/box/pillbottles, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"tkU" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"tlo" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"tlJ" = ( -/obj/structure/bed{ - icon_state = "abed" +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tkY" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"tlz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/computer/communications, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/area/strata/ug/interior/outpost/jung/dorms/med2) +"tlE" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"tmf" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "tmi" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"tmw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/almayer/ship_memorial{ - desc = "A large granite slab that breaks the fabric of space time. Special thanks to Fourkhan, Tobinerd, Cakey, and all the countless playtesters that made this map possible."; - name = "slab of triumph"; - pixel_y = 2 +"tmq" = ( +/obj/structure/closet/wardrobe/red, +/obj/item/clothing/suit/imperium_monk, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"tmA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"tmB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"tnM" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"tmV" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tni" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tnm" = ( +/obj/structure/surface/rack, +/obj/item/paper_bin, +/obj/item/stack/sheet/glass, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"tnO" = ( +/obj/structure/closet, +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"tnP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"tnR" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"toh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"tou" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) "toV" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/tearlake) +"tpC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) +"tpO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "tqG" = ( /turf/open/floor/strata, /area/strata/ag/exterior/paths/north_outpost) @@ -32461,15 +29362,12 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"trr" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small{ +"trc" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "tru" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32492,21 +29390,58 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"tsz" = ( +"trF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"trH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"trU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"tsl" = ( +/obj/structure/largecrate/random/barrel/green, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"tsT" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "tsX" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"ttv" = ( +/obj/item/storage/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "ttQ" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) +"ttZ" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) "tuj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -32517,10 +29452,12 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"tuV" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +"tuz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "tvk" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -32528,32 +29465,34 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) +"tvt" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "twa" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"txm" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ +"twg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"txi" = ( +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "txs" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) -"tyh" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"tyj" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"typ" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "tyD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32563,37 +29502,148 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"tyF" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"tyU" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/east_carp) +"tyZ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"tzm" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"tzM" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/crash) +"tzZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"tAb" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"tAm" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"tAr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"tAR" = ( +/obj/item/stool, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"tAY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tAZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "tBn" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tBw" = ( -/obj/structure/closet/crate/radiation, -/turf/open/floor/strata/orange_cover, +"tBt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"tBO" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) +"tBW" = ( +/obj/item/storage/briefcase, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"tCc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"tCg" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "tCi" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/center) -"tCI" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) "tCM" = ( /obj/structure/bed/roller, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"tCO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/maintenance) "tCR" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) +"tDg" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "tDo" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"tEf" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) +"tDB" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) "tEC" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -32604,40 +29654,73 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"tGZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 1 +"tFp" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"tFS" = ( +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"tGw" = ( +/obj/structure/computerframe, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"tGG" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"tHr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) "tHv" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) -"tHx" = ( -/obj/structure/filingcabinet, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +"tHF" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"tHE" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/south_res) +"tHQ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/russianRed, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"tIc" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) "tIl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/mountain) -"tIv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) "tJp" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -32648,6 +29731,15 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"tJr" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"tJE" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "tJJ" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -32666,10 +29758,31 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"tKC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) +"tJY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tKG" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"tKR" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/item/stool, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "tKS" = ( /turf/closed/shuttle/ert{ icon_state = "upp25" @@ -32682,13 +29795,36 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tLI" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/engi) "tLO" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) +"tMc" = ( +/obj/structure/morgue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"tMr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"tMw" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"tML" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "tMP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -32698,61 +29834,83 @@ "tNr" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/bball/nest) +"tNz" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"tNA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh) "tNK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"tNQ" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) -"tOA" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"tPi" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"tPl" = ( -/obj/structure/toilet{ - dir = 1 +"tOY" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"tPf" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/white_cyan2/west, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"tPx" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +"tPu" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "tPN" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/west_engi) +"tPR" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"tPT" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"tPW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"tPZ" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "tQg" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/southresearch) -"tQS" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, +"tQN" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"tRX" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) -"tRf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1; - icon_state = "commb" - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"tRC" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/marsh) "tSb" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, @@ -32793,58 +29951,96 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"tSB" = ( +/obj/structure/closet/coffin, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"tSJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"tSR" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) "tTk" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"tTP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) +"tTE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "tUu" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/north_lz_caves) +"tUB" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"tUF" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "tUN" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tUO" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"tUW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "tUZ" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tVN" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"tVP" = ( -/obj/structure/pipes/vents/pump/on, +"tVr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"tVH" = ( +/obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"tVW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"tWa" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool/folded, +/obj/item/weapon/gun/pistol/t73, +/obj/item/attachable/bayonet/upp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "tWf" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) +"tWI" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "tWJ" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -32854,50 +30050,99 @@ "tWY" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/tcomms/tcomms_deck) -"tYB" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"tYF" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 4 +"tXq" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/auto_turf/ice/layer0, -/area/strata/ag/exterior/marsh/center) -"tZF" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"tXu" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 25 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"tZV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"tXG" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"tYm" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"tYo" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"tYv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) -"uad" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"uaC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"tYA" = ( +/obj/effect/landmark/good_item, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"tYF" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/marsh/center) +"tZD" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"tZR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"uaw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "uaH" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"ubo" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool/folded, -/obj/item/weapon/gun/pistol/t73, -/obj/item/attachable/bayonet/upp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/landingzone_checkpoint) +"uaK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"uaW" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "ubx" = ( /obj/structure/largecrate/random, /obj/item/paper_bin, @@ -32910,27 +30155,40 @@ "ubN" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/tcomms) -"ucl" = ( -/obj/structure/bed/chair{ - dir = 8 +"uck" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "ucD" = ( /obj/structure/inflatable/door, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"ueD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +"ucV" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 9 }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"udC" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"uek" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"uew" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "ueK" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -32949,54 +30207,127 @@ "ueU" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/med) +"ufh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "ufG" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"ufH" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" +"ufN" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"ugh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"ufI" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"ugw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"ugH" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/secure/briefcase, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "ugI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"uhe" = ( -/obj/structure/toilet{ +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"ugN" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"uhd" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"uhE" = ( +/obj/structure/closet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"uhF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"uhR" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"uhU" = ( +/obj/structure/machinery/processor, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"uhW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"uiu" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"uiC" = ( +/obj/structure/bed/roller, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"uiE" = ( +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"uiG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"uiI" = ( +/obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"uhF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"uiO" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"ujb" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"uji" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"uiE" = ( -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) "ujl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -33004,22 +30335,40 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uko" = ( -/obj/item/stack/snow, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/north_outpost) +"ujQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"uka" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "ukx" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"ulv" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/obj/item/restraint/handcuffs, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +"ukB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"ulg" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"ulw" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/restricted/devroom) +"ulD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "ulL" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -33027,50 +30376,122 @@ /obj/structure/cryofeed/right, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"umE" = ( -/obj/structure/toilet{ +"umd" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"unL" = ( +/obj/structure/largecrate/random/secure, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"unN" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"uox" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"unE" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) -"unO" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"uoP" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"uoJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "uph" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"upO" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"uqB" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"uqY" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"ups" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"urF" = ( -/obj/effect/landmark/objective_landmark/close, +/area/strata/ag/interior/outpost/engi/drome) +"upK" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/area/strata/ag/interior/outpost/security) +"upT" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/structure/coatrack, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"upU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"uqb" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"uqk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"uqn" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"uqI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"uqN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"urj" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"urs" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) "urM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"urO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/item/storage/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "urQ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -33079,88 +30500,218 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"urX" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"uss" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"usu" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"usv" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"usB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"usD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) "usI" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"utn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"usJ" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"usT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"usU" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine, +/obj/item/tool/crowbar, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"utk" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "utV" = ( /obj/effect/landmark/monkey_spawn, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"utX" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) "uul" = ( /obj/structure/largecrate/guns/russian, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) +"uuv" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "uux" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/res) +"uuD" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"uuT" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) +"uuY" = ( +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"uvd" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"uvo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"uvr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"uvu" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "uvw" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"uvz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"uvN" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "uvZ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/blocker/invisible_wall, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"uwh" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"uwo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"uwr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "uwJ" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"uwW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "uxf" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"uxu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"uyQ" = ( +"uxp" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"uxU" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"uxX" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/asphalt/cement/cement2, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"uyK" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"uyO" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "uzb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"uzj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"uzh" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/item/stack/catwalk, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"uzr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "uzv" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -33171,27 +30722,69 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"uBz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"uzx" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"uAf" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"uAj" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"uAG" = ( +/obj/structure/toilet{ + dir = 1 }, -/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"uAW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/northeast, +/area/strata/ag/interior/outpost/med) +"uBn" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"uBR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"uCb" = ( /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "uCc" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"uCI" = ( -/obj/structure/dispenser, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"uDa" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"uCg" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"uCj" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"uCL" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"uDO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "uDU" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -33204,98 +30797,228 @@ /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uEj" = ( -/obj/structure/largecrate/random, -/obj/item/toy/deck, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/center) -"uFT" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"uGH" = ( -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"uHa" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"uEx" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/purp2, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"uEC" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"uFq" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/engi) +"uGm" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"uGp" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"uGy" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"uHi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"uHT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "uHX" = ( /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) +"uIE" = ( +/obj/item/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"uIZ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "uJn" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uJY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"uKe" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "uKj" = ( /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uKV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/engi) -"uLd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"uKv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"uLl" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"uLJ" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"uLj" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"uLr" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/north_outpost) +"uLv" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "uLK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"uLM" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"uMm" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"uMI" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) "uNi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) -"uNQ" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, +"uNw" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"uNB" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"uNH" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"uOC" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/canteen) +"uOU" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"uPu" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/interior/landingzone_1) "uPE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"uPH" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool/folded, -/obj/item/weapon/gun/pistol/t73, -/obj/item/attachable/bayonet/upp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +"uPL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "uPR" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) +"uQc" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"uQd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"uQp" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) +"uQO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 9 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"uQS" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"uRw" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/cell/high, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "uRy" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -33304,31 +31027,43 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"uSJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "uSR" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"uSY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"uTn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "uTt" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) -"uTv" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 +"uTw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"uTL" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"uTP" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "uTQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -33337,15 +31072,86 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uVv" = ( -/turf/open/asphalt/cement/cement1, +"uTW" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/storage/apron/overalls, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"uUu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"uUV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"uVb" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"uVl" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"uVp" = ( +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/platform/east/scrub) -"uWe" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"uVH" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"uVW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/computer/objective{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"uWc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/obj/structure/platform/strata/metal{ + dir = 4 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"uWm" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ug/interior/jungle/deep/structures/res) +"uWn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"uWu" = ( +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"uWC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"uWF" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) "uWG" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -33354,36 +31160,65 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"uWO" = ( -/obj/structure/closet/basketball, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"uWP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +"uWU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) "uXg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_dorms) -"uXI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"uXM" = ( +/obj/item/trash/pistachios, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "uXY" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"uZh" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"vaq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) +"uYc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"uYu" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"uYO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"uZi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"uZP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"vaR" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "vaW" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/ice/layer1, @@ -33392,47 +31227,121 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) +"vbe" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "vbw" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"vbI" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ +"vbG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"vbJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"vbN" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"vbM" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"vbQ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"vcy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cubancarp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"vcU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "vdi" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"veX" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" +"vdF" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"vdJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"vdT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"vef" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"ver" = ( +/obj/structure/bed, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"vev" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"vff" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "vgb" = ( /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/restricted) +"vgc" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vgh" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) "vgn" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/stairs/perspective{ @@ -33442,61 +31351,140 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) +"vgx" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "vgW" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"vhl" = ( -/obj/item/storage/pill_bottle/bicaridine, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +"vho" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "vhv" = ( /obj/structure/surface/rack, /obj/item/storage/belt/knifepouch, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"vhA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "vhG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"vhQ" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"via" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/holobadge, +/obj/item/storage/box/evidence, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"vir" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "vit" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) "viA" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"vjc" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) -"vjD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/monkeyburger, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"vjZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +"viQ" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "vkp" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" }, /area/strata/ag/exterior/marsh/crash) +"vks" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/sodawater, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"vkv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"vkG" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/adminext) +"vkT" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/security_space_law, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"vlg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "vlm" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"vlG" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +"vls" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"vlw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"vlz" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "vlH" = ( /obj/structure/machinery/weather_siren{ pixel_x = 10; @@ -33504,38 +31492,17 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"vmm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"vms" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) -"vmI" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"vnh" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"vnC" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"vnI" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/curtain/open/medical, +"vmp" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"vmq" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "vnV" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -33547,9 +31514,9 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"voe" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, +"vot" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) "vox" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -33560,6 +31527,9 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"voz" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/landingzone_2) "vpi" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -33567,65 +31537,76 @@ /obj/structure/filingcabinet, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"vpG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 +"vqs" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "vqx" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"vrH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"vqR" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"vrd" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vrg" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"vrh" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"vrU" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"vsd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1 +"vsb" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"vsp" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"vsj" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"vsy" = ( -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"vsL" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"vsZ" = ( -/obj/item/stack/medical/splint, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"vth" = ( -/obj/structure/closet/lawcloset, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"vtl" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"vsK" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"vsT" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vtI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"vtK" = ( +/obj/structure/machinery/optable, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) -"vtp" = ( -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"vtz" = ( -/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "vtM" = ( /obj/structure/machinery/weather_siren{ @@ -33635,9 +31616,25 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/research_decks/security) +"vtT" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"vuI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "vuJ" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) +"vuN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "vvh" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -33650,31 +31647,48 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"vvp" = ( -/obj/structure/bed/chair{ - dir = 4 +"vvr" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"vvB" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"vvR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/south_engi) +"vvx" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/platform/east/scrub) +"vvO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "vvV" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/camera, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) +"vwg" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) "vwC" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -33683,6 +31697,12 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"vwN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "vwR" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -33696,27 +31716,58 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"vwX" = ( -/obj/structure/machinery/centrifuge, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) "vxd" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) +"vxy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "vye" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"vyl" = ( -/turf/open/floor/strata/cyan2/east, +"vyr" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"vyw" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"vzy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"vzB" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"vAB" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) -"vyK" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) "vBi" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "genericbush_4" @@ -33731,16 +31782,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"vBV" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) "vCl" = ( /obj/structure/barricade/handrail/strata{ layer = 3.1 @@ -33752,6 +31793,25 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"vCx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"vCz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "vCD" = ( /obj/structure/bed/sofa/vert/grey/top, /obj/structure/barricade/handrail/strata{ @@ -33759,20 +31819,38 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"vCN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"vDm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +"vCS" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/strata/metal, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) +/area/strata/ag/interior/tcomms) +"vDl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "vDr" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"vEa" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"vEb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"vEn" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) "vEp" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) @@ -33781,26 +31859,90 @@ icon_state = "upp1" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"vFV" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"vEC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"vET" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/purp2, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"vEY" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) +"vFx" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"vFD" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"vGm" = ( +/obj/structure/largecrate/guns/russian, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) "vGx" = ( /turf/closed/shuttle/ert{ icon_state = "upp2" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"vGC" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "vGW" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"vId" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata, +"vHa" = ( +/obj/structure/machinery/chem_dispenser/soda/beer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"vHb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"vHf" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"vHH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"vIE" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/tcomms) +"vIT" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/storage/box/masks{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"vJd" = ( +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) "vJj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, @@ -33815,26 +31957,140 @@ /obj/effect/landmark/good_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"vKg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"vJG" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"vKa" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) +"vKb" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"vKv" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"vKI" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"vKN" = ( /obj/structure/machinery/power/apc{ dir = 1; - pixel_y = 24; - start_charge = 0 + pixel_y = 25 }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/landingzone_checkpoint) -"vMr" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata/red1, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"vKR" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) -"vNG" = ( -/obj/structure/reagent_dispensers/watertank, +"vKS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"vKT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"vLj" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"vLs" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"vLv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"vLA" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"vLO" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"vMU" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"vNa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"vNh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) +"vNi" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"vOa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "vOf" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -33852,9 +32108,38 @@ "vPi" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/research_decks/security) +"vPu" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine, +/obj/item/tool/crowbar, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"vPw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"vPI" = ( +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) "vPQ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"vPW" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "vPY" = ( /obj/effect/landmark/corpsespawner/upp, /turf/open/floor/strata, @@ -33867,47 +32152,229 @@ icon_state = "upp_rightengine" }, /area/strata/ag/exterior/marsh/crash) -"vRP" = ( +"vQY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"vRp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"vRy" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"vRD" = ( +/obj/item/weapon/gun/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"vRS" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"vSe" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/radiation, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"vSp" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"vSC" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"vSU" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vTj" = ( /obj/structure/stairs/perspective{ - color = "#6e6e6e" + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"vTs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"vTJ" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/crash) +"vUr" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"vUF" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"vUX" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"vVp" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"vVF" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"vTN" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"vUp" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/tearlake) "vVK" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"vVQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vWi" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/mountain) +"vWn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"vWE" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"vXe" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "vXt" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"vYf" = ( -/obj/structure/flora/grass/ice/brown/snowgrassbb_1, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/adminext) -"vYD" = ( +"vXu" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"vXG" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"vXO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"vYb" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"vYc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"vYf" = ( +/obj/structure/flora/grass/ice/brown/snowgrassbb_1, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/adminext) +"vYj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"vYC" = ( +/obj/structure/closet/secure_closet/security/soro, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"vYG" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"vYK" = ( +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"vZG" = ( +/obj/item/stool, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "vZT" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/south_engi) +"vZY" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "wab" = ( /obj/structure/machinery/space_heater, /obj/structure/platform/strata/metal{ @@ -33915,36 +32382,55 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) +"wag" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/suit/bluetag, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wam" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"waF" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) "waZ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"wbK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/engi) "wbN" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"wdf" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"wch" = ( +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"wcw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"wcB" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"wdI" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/outpost/med) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"wdl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) "wdN" = ( /obj/structure/platform/strata{ dir = 4 @@ -33952,13 +32438,32 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/restricted) -"wez" = ( +"wee" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wen" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/nearlz2) +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"wev" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"weD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "wfv" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -33967,10 +32472,61 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) +"wfy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"wfA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "wfE" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) +"wfK" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wfS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"wgf" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"wgr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/foyer) +"wgt" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/storage/pill_bottle/imidazoline, +/obj/item/storage/pill_bottle/imidazoline, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "wgu" = ( /obj/item/weapon/gun/revolver/cmb, /turf/open/auto_turf/ice/layer1, @@ -33984,43 +32540,159 @@ /obj/item/tank/anesthetic, /turf/open/floor/strata, /area/strata/ag/interior/mountain) +"whb" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"whC" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) "whO" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) +"wib" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"wic" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "wij" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) +"win" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "wio" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) +"wir" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"wix" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) +"wiy" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"wiA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"wiD" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"wjn" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "wjv" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) +"wjD" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"wjN" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"wjV" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"wjW" = ( +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"wki" = ( +/obj/structure/dropship_equipment/mg_holder, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "wkv" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"wlh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"wlj" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"wlm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"wlo" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"wlu" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/minehead) +"wlS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "wmZ" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/engi) "wne" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/east_dorms) -"wni" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"wnx" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"wnA" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"wnC" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) "wod" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"wol" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "woP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -34029,6 +32701,23 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"wpT" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"wqb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) "wqm" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -34037,19 +32726,50 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"wqo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"wqC" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"wqS" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"wqU" = ( +/obj/structure/machinery/photocopier, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "wrp" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/flight_control) -"wrv" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, +"wru" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/largecrate/random/case/small, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "wrw" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"wrx" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"wrO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "wsh" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -34057,26 +32777,25 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"wsi" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"wsj" = ( -/obj/item/trash/pistachios, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"wso" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"wsm" = ( -/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"wsU" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/minehead) +"wsY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "wto" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 2; @@ -34084,74 +32803,154 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"wuE" = ( -/obj/structure/barricade/handrail/strata{ +"wtA" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"wtY" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"wub" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"wuw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "wuI" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/east_carp) +"wuS" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) +"wuU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"wvr" = ( +/obj/item/storage/box/rxglasses, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) "wvt" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_dorms) -"wvF" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"wxU" = ( -/obj/structure/bed{ - icon_state = "abed" +"wvH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/machinery/light/small, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"wxY" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"wzZ" = ( -/obj/structure/barricade/handrail/strata, +"wvS" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"wAj" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/structure/machinery/light/small, -/obj/item/clothing/head/hardhat/white, -/turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) -"wAw" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 +"wvU" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"wwL" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"wxf" = ( +/obj/structure/bed/chair{ + dir = 4 }, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"wxu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wyd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"wyD" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"wzz" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"wzH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wzR" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/landingzone_2) +"wAo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "wAG" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"wBj" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +"wAI" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh) +"wBk" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "This jukebox only takes quarters and you seem to be out of them at the moment."; + icon = 'icons/obj/structures/props/misc.dmi'; + icon_state = "jukebox"; + name = "Rockin Robin 2300 Jukebox"; + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"wBv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wBC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"wBG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"wBH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "wBI" = ( /obj/structure/bed{ icon_state = "abed" @@ -34161,10 +32960,55 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"wDq" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"wCe" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"wCq" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"wCw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/cyan4/east, +/area/strata/ag/interior/outpost/med) +"wCy" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"wCE" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"wCF" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"wCH" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"wCU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"wDu" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) "wDF" = ( /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood, @@ -34174,6 +33018,15 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"wEa" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"wEj" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "wEo" = ( /obj/structure/bed{ icon_state = "abed" @@ -34181,14 +33034,57 @@ /obj/effect/landmark/good_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) +"wEq" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"wER" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "wEU" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) +"wEY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"wFb" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"wFn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"wFs" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"wFF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "wFG" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) +"wGc" = ( +/obj/item/clipboard, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "wGm" = ( /obj/structure/fence, /turf/open/floor/strata, @@ -34202,6 +33098,12 @@ "wGx" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/canteen) +"wGL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "wGS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -34209,31 +33111,171 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"wGT" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"wHg" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"wHn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wHo" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"wHI" = ( +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) "wHW" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) -"wLj" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +"wIB" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"wIT" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/storage/belt/utility/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"wIV" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wIX" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"wKe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wKw" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "wLv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"wLI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/almayer/ship_memorial{ + desc = "A large granite slab that breaks the fabric of space time. Special thanks to Fourkhan, Tobinerd, Cakey, and all the countless playtesters that made this map possible."; + name = "slab of triumph"; + pixel_y = 2 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"wLY" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"wMe" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/marsh) "wMy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"wMW" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"wNb" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/canteen) "wNq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_engi) +"wND" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"wOo" = ( +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"wOu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"wOv" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"wPa" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"wPc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"wPk" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "wPp" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -34246,9 +33288,30 @@ /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"wPI" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"wPK" = ( +/obj/structure/machinery/bioprinter, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"wQh" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"wQs" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wQw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "wQx" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -34256,41 +33319,144 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"wUa" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, +"wQE" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"wQY" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"wRc" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"wRq" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wSb" = ( +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"wSB" = ( +/obj/structure/closet/lawcloset, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"wVf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/area/strata/ag/interior/tcomms) +"wSU" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"wTM" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"wTS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/landingzone_checkpoint) -"wWK" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +/area/strata/ag/interior/outpost/security) +"wTW" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"wUu" = ( +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"wUZ" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wVd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) +"wVn" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"wVy" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wWb" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"wWD" = ( +/obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) +/area/strata/ug/interior/jungle/deep/structures/engi) +"wWI" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) "wWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) +"wWU" = ( +/obj/structure/machinery/washing_machine, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"wWX" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "wXb" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"wXg" = ( +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/minehead) +"wXj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "wXm" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"wXL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +"wYc" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"wYn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "wYx" = ( /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) @@ -34304,59 +33470,138 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) -"wZW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/binoculars, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"wZX" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "wZZ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"xaR" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +"xaq" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"xax" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"xaA" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"xbN" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"xcm" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) "xdr" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) "xdE" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/maintenance) -"xdI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"xeo" = ( +"xeb" = ( /obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"xeg" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/structure/closet/jcloset, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"xeh" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/storage/fancy/vials, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"xej" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) "xes" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"xeH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "xeJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"xgR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"xeK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"xgg" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"xgq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"xgv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"xgE" = ( +/obj/item/storage/pill_bottle/bicaridine, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"xgV" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "xhM" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -34369,36 +33614,42 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"xje" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"xjr" = ( -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/deep/east_dorms) -"xjH" = ( +"xiq" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xiO" = ( /obj/structure/machinery/light/small{ - dir = 1 + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"xkj" = ( -/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ag/interior/tcomms) +"xiU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"xjr" = ( +/turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"xlg" = ( -/obj/structure/morgue{ +"xjA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective{ dir = 8 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"xlP" = ( -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) -"xlQ" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/engi) +"xka" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"xkj" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/east_dorms) "xlX" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -34406,89 +33657,180 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"xmR" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +"xlY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"xmx" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xmM" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/nearlz1) +"xng" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"xnl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "xnn" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"xnP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 +"xof" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xov" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/canteen) +"xoD" = ( +/obj/structure/window/framed/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/platform_decoration/strata/metal{ +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"xpa" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"xpE" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"xpM" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) -"xnZ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/mountain) -"xoE" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"xpY" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xqi" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/hive) +"xqz" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"xqL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"xqO" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"xpK" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"xqv" = ( -/obj/structure/inflatable/popped/door, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"xqT" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/engi) +"xrb" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) "xre" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/tcomms/tcomms_deck) -"xrx" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +"xrr" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"xrF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"xrX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/item/weapon/harpoon, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"xsl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"xst" = ( -/obj/structure/machinery/cryobag_recycler, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) "xsH" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) +"xth" = ( +/obj/structure/inflatable/door, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "xtw" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"xuq" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +"xtz" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"xtV" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"xuA" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "xuE" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -34499,89 +33841,279 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"xuN" = ( +/obj/structure/inflatable/popped, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "xuY" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/south_engi) -"xvy" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"xwn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, +"xvk" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/storage/fancy/cigarettes/lady_finger, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"xvv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"xvB" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"xwq" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"xww" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"xwT" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"xxn" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/research_decks) +"xxL" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "xxS" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) +"xxX" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"xxY" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/marsh/crash) "xyz" = ( /obj/structure/mirror, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"xyC" = ( -/obj/structure/bed/chair{ +"xyZ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"xzA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"xzL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"xzD" = ( +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "xzR" = ( /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) +"xzY" = ( +/obj/structure/holostool, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"xAb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "xAc" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"xAp" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"xAF" = ( -/obj/structure/curtain/open/medical, +"xAe" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"xAS" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) -"xBT" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"xCN" = ( -/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"xAg" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"xAN" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"xBd" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"xBM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"xCk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"xCt" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xCu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"xCx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"xCK" = ( +/obj/item/stack/rods, +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"xDc" = ( +/obj/structure/closet/basketball, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"xDf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"xDi" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "xDu" = ( /obj/structure/sign/nosmoking_2, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) +"xDC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "xDD" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) -"xDX" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +"xDH" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"xDT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"xEf" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/clothing/suit/storage/bomber, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"xEh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"xEs" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/warnplate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"xEv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xED" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "xEV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, @@ -34596,10 +34128,32 @@ }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_engi) +"xFg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "xFl" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) +"xFo" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"xFw" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) "xFC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, @@ -34608,22 +34162,15 @@ /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/nearlz2) -"xFR" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) "xFT" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"xGb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"xFV" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "xGi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 @@ -34635,17 +34182,30 @@ /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"xGE" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) +"xHj" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"xHs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "xHw" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) +"xHA" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) "xHW" = ( /obj/structure/platform/strata/metal, /obj/structure/stairs/perspective{ @@ -34660,15 +34220,71 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"xJb" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) +"xIz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"xIB" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"xIC" = ( +/obj/structure/machinery/reagentgrinder/industrial, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"xIG" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"xIL" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"xIY" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"xJn" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"xJy" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "xJD" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xJF" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "xJH" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -34677,23 +34293,43 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"xKr" = ( +"xJM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"xJU" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"xJZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "xKs" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xKw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"xKt" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"xKv" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"xKx" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) +/area/strata/ag/interior/nearlz1) "xKy" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -34704,18 +34340,24 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"xKC" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "xKD" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/down, /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xKE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"xLv" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) "xLB" = ( /obj/effect/decal/cleanable/blood, /obj/item/stack/sheet/wood, @@ -34725,20 +34367,39 @@ /obj/structure/cryofeed/right, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"xLJ" = ( -/obj/structure/bed/chair{ - dir = 8 +"xLI" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"xLR" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/landingzone_2) +"xMq" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xMr" = ( -/obj/effect/landmark/monkey_spawn, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xOa" = ( +/area/strata/ag/interior/outpost/admin) +"xMV" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"xNp" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"xNN" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "xOo" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -34761,57 +34422,173 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"xOz" = ( +/obj/item/clipboard, +/obj/item/clipboard, +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/structures/res) +"xOJ" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/item/clothing/suit/storage/hazardvest, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/wo_supplies/storage/m56d, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "xOL" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) +"xOM" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"xPe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/jellysandwich, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"xPg" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"xPs" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/deep/minehead) "xPv" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) +"xPA" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "xPT" = ( /obj/item/reagent_container/food/drinks/cans/cola, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"xRl" = ( -/obj/structure/bed/chair/dropship/passenger{ +"xQp" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) -"xRr" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"xQx" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"xQz" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/obj/structure/bed{ - icon_state = "abed" +/turf/open/floor/strata/blue4, +/area/strata/ag/interior/outpost/admin) +"xQV" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"xRv" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"xRz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/obj/structure/barricade/wooden{ +/obj/effect/decal/warning_stripes, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"xRK" = ( +/obj/item/clothing/glasses/thermal/syndi, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"xRY" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/pill_bottle/kelotane, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"xSc" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"xSN" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"xSW" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"xRR" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"xSJ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"xTh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"xTa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/maintenance) -"xTw" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/area/strata/ag/interior/outpost/canteen/personal_storage) +"xTf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"xTu" = ( +/obj/structure/xenoautopsy/tank/broken{ + desc = "A broken cryo tank, this must've been where it all began..." + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"xTC" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "xTU" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/nearlz2) @@ -34822,26 +34599,67 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xUc" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "xUg" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/south_engi) -"xUo" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xVQ" = ( -/obj/structure/bed/chair/dropship/passenger{ +"xUl" = ( +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"xUH" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"xUZ" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"xVA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xVR" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"xWJ" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) "xWN" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xWO" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"xWU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "xXi" = ( /obj/effect/decal/cleanable/blood/gibs/body, /obj/effect/decal/cleanable/blood/gibs/core, @@ -34851,83 +34669,236 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"xXy" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"xXA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"xXN" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"xYd" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "xYw" = ( /obj/item/clothing/mask/cigarette/cigar/cohiba, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xZk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +"xYM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"xYQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"xZB" = ( +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"yah" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"ybN" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"yca" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"xZK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"yai" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/kitchenspike, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/engi) -"yde" = ( -/obj/structure/machinery/light/small{ +/area/strata/ug/interior/jungle/deep/minehead) +"yaS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ybh" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) -"ydp" = ( -/obj/structure/surface/rack{ - layer = 2.5 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"ybz" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) +"ybP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"ydz" = ( -/obj/item/toy/deck, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"yci" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"ycq" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/item/folder/blue, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"ydD" = ( +/obj/item/dogtag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"ydL" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"ydO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "ydV" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"yee" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +"yeb" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"yew" = ( +/obj/effect/landmark/corpsespawner/bridgeofficer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"yeC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"yeG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"yeX" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/dogtag, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) +"yfU" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"yfY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"ygf" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick, +/obj/item/storage/box/lightstick, +/obj/item/storage/box/lightstick, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"ygl" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"ygn" = ( +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "ygq" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"ygz" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"yhJ" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan, +"yhb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"yif" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"yin" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/closet/crate/radiation, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"yis" = ( +"yit" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pouch/flare/full, -/obj/item/weapon/gun/pistol/t73, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"yiC" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"yiP" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"yjf" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "yjG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) +"yjT" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) "ykh" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -34937,21 +34908,53 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"ykU" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata/cyan3/east, +"ykt" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) +"ykx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"ykK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pspoon, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"ykM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"ykR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ylt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "ylE" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/south_engi) -"ylF" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) (1,1,1) = {" aaa @@ -35391,46 +35394,46 @@ wrp wrp wrp wrp -alA +dMQ cqE -ang -aoj -aoj -ang -aoj -aoj -aoj -ang -aoj -aoj -aoj +mtP +oVp +oVp +mtP +oVp +oVp +oVp +mtP +oVp +oVp +oVp azx -aBi -aCC +kMJ +qzc azx -aEF -aEF +qCb +qCb azx -aIf -aIf -aIf -aMA -aNI -aIf -aIf -aIf -aMA -aIf -aIf -aIf -aMA -aIf -aNI -aIf -aIf -aMA -aIf -aIf +pBc +pBc +pBc +nDx +xww +pBc +pBc +pBc +nDx +pBc +pBc +pBc +nDx +pBc +xww +pBc +pBc +nDx +pBc +pBc rtW bAe bAe @@ -35580,52 +35583,52 @@ aac aac aac kSU -ftO -vMr -coO -coO -ako -coS -cpR +goQ +phJ +sqS +sqS +tHQ +grq +vef cqE -anh -aok -ctI -ctI -ctI -ctI -ctI -ctI -ctI -ctI -ayg -azy -ctI -ctI -azy -ctI -ctI -aGX -aIg -aIg -aIg -aIg -aIg -aIg -aIg -aIg -aSG -aUo -aVW -aXv -aIf -bbX -aVW -aVW -aVW -aVW -aVW -aVW +nxf +rhe +uYO +uYO +uYO +uYO +uYO +uYO +uYO +uYO +tXG +mBx +uYO +uYO +mBx +uYO +uYO +cEN +mOK +mOK +mOK +mOK +mOK +mOK +mOK +mOK +tbp +cyO +pdk +rfj +pBc +hek +pdk +pdk +pdk +pdk +pdk +pdk rtW bAe bAe @@ -35775,42 +35778,42 @@ aac aac kSU kSU -cnZ +fwU cjb cjb coP -coV -coS -cpR +dUQ +grq +vef cqE -cnv -crb +dCq +gsr apc -arR -atp -auj -rhk -arR -atp -auj -rhk -arR -atp -auj -rhk -arR -atp -auj -rhk -arR -atp -auj -rhk -arR -atp +fhw +dXe +sik +fbk +fhw +dXe +sik +fbk +fhw +dXe +sik +fbk +fhw +dXe +sik +fbk +fhw +dXe +sik +fbk +fhw +dXe apc -cmA -cnv +ptU +dCq cqE cot aZS @@ -35820,7 +35823,7 @@ cqE cqE cqE cqE -btT +xyZ rtW bAf bAf @@ -35841,12 +35844,12 @@ crN bhJ bhY biG -ctx +btQ jnH xzR xzR jnH -fRv +tzM bmW aac aac @@ -35969,18 +35972,18 @@ aac aac aac kSU -ygz -ahP +ntE +syI aiw cof cjb -akp -coS -cpR +vbQ +grq +vef cqE -cnv -crb -apj +dCq +gsr +iJZ crE crE arS @@ -36003,19 +36006,19 @@ crE arS crE crE -crW -cmA -cnv +rnl +ptU +dCq cqE cqE cqE cqE beK -bhp -bhp +hIW +hIW bnb cqE -aoj +oVp rtW alz aXG @@ -36037,10 +36040,10 @@ bhL aZv aZv bia -nPW -fRv -fRv -fRv +vTJ +tzM +tzM +tzM bia bmY bnK @@ -36164,18 +36167,18 @@ aac aac aac kSU -ahq -coO +saB +sqS aix cjb coP -akq -coS -cpR +jHZ +grq +vef cqE -cnv -crb -apf +dCq +gsr +kAs crE crE crE @@ -36198,24 +36201,24 @@ crE crE crE crE -fuA -cmA -cnv +vYb +ptU +dCq cqE aQv aQv cqE -acY +nwp aQv aQv -bck +esY cqE -aoj -aoj +oVp +oVp bAq -bDT -bDT -bDT +bPK +bPK +bPK aac aac aac @@ -36360,17 +36363,17 @@ aac aac kSU ahr -coO -aiy -coO -coO -coV -coS -cpR +sqS +iSj +sqS +sqS +dUQ +grq +vef cqE -cnv -crb -aph +dCq +gsr +rfW crE crE crE @@ -36393,21 +36396,21 @@ crE crE crE crE -dnS -cmA -cnv +xIB +ptU +dCq cqE aQv aQv cqE -acY +nwp aQv aQv -bck +esY beJ -aST +oHv cqE -aST +oHv aZj aZv aZv @@ -36555,17 +36558,17 @@ kSU kSU kSU wrp -ahQ -aiz -coS -coS +jFT +vWn +grq +grq wrp wrp -alB +bHi cqE -cnv -crb -api +dCq +gsr +aLE crE crE crE @@ -36588,21 +36591,21 @@ crE crE crE crE -aRx -cmA -cnv +bXl +ptU +dCq cqE cqE cqE cqE cot -aXw -aXw +ebm +ebm bce cqE -aST +oHv cqE -aST +oHv aZk aVq aVq @@ -36748,19 +36751,19 @@ aac aac kSU cyG -agz -lvE -coO -aiy -coO -coO -agz -lvE -alC +ghe +inj +sqS +iSj +sqS +sqS +ghe +inj +imU cqE -cnv -crb -apj +dCq +gsr +iJZ crE crE crE @@ -36783,9 +36786,9 @@ crE crE crE crE -crW -cmA -cnv +rnl +ptU +dCq cqE cqE cqE @@ -36795,9 +36798,9 @@ cqE cqE cqE cqE -aST +oHv cqE -aST +oHv aZl aZx aZx @@ -36943,19 +36946,19 @@ aac aac kSU cyG -klE -klE +vKR +vKR cjb aix cjb cjb -klE -klE -alC +vKR +vKR +imU amq -ani -crb -apf +oTh +gsr +kAs crE crE crE @@ -36978,21 +36981,21 @@ crE crE crE crE -fuA -aSH -coX +vYb +mxI +vls aVX -pfQ -pfQ +roz +roz bcf cqM cqM cqM cqM bqV -aST +oHv cqE -aST +oHv aVq aZx aZx @@ -37138,19 +37141,19 @@ aac aac kSU cyG -rQV -mfW -coO -aiy -coO -coO -rQV -mfW -alC +khJ +jMQ +sqS +iSj +sqS +sqS +khJ +jMQ +imU cqE -cnv -crb -aph +dCq +gsr +rfW crE crE crE @@ -37173,21 +37176,21 @@ crE crE crE crE -dnS -cmA -cnv -acY +xIB +ptU +dCq +nwp aQv aQv -bck +esY cqE aQv aQv cqE bqW -aST +oHv cqE -aST +oHv aZj aVq aZx @@ -37335,17 +37338,17 @@ kSU kSU kSU wrp -ahQ -aiz -coS -coS +jFT +vWn +grq +grq wrp wrp -alA +dMQ cqE -cnv -crb -apk +dCq +gsr +pYt crE crE crE @@ -37368,24 +37371,24 @@ crE crE crE crE -aRz -cmA -cnv -acY +gTC +ptU +dCq +nwp aQv aQv -bck +esY beJ aQv aQv cqE cqE -aoj -aoj +oVp +oVp bAq -bDT -bDT -bDT +bPK +bPK +bPK aZx aZx aVq @@ -37405,7 +37408,7 @@ bhO bhO okM qSo -ocH +xxY qSo nxF gTE @@ -37530,17 +37533,17 @@ aac aac kSU ahr -coO -aiy -coO -coU -cpq -coS -cpR +sqS +iSj +sqS +reA +tZR +grq +vef cqE -cnv -crb -apj +dCq +gsr +iJZ crE crE crE @@ -37563,19 +37566,19 @@ crE crE crE crE -crW -cmA -cnv +rnl +ptU +dCq cot -aXw -aXw +ebm +ebm bce cqE cqE cqE cqE cqE -aoj +oVp rtW rtW bER @@ -37599,9 +37602,9 @@ bhO bgS bhO mpk -xVQ -oeA -sMX +sUF +wjW +oZS iEo qSo nxF @@ -37724,18 +37727,18 @@ aac aac aac kSU -ahq -coO +saB +sqS aix cjb cjb -coV -coS -cpR +dUQ +grq +vef cqE -cnv -crb -apf +dCq +gsr +kAs crE crE crE @@ -37758,19 +37761,19 @@ crE crE crE crE -fuA -cmA -cnv -aoj -aXx -aoj -bco -aoj -aoj -aoj -bYD -aoj -btU +vYb +ptU +dCq +oVp +shv +oVp +ssl +oVp +oVp +oVp +sGD +oVp +uhE rtW azx bET @@ -37794,11 +37797,11 @@ bhO hQP bhO mpk -fXU -oeA -oeA -oeA -hIb +vHf +wjW +wjW +wjW +kRs cXU bhO bgS @@ -37919,18 +37922,18 @@ aac aac aac kSU -rba -ahP +ivZ +syI aiA qwM ajK -cpE -akU -alD +fNt +ssC +xBd cqM -ani -crb -aph +oTh +gsr +rfW apT crE arS @@ -37953,15 +37956,15 @@ crE arS crE crE -dnS -cmA -cnv -aoj +xIB +ptU +dCq +oVp alz -aUr -aUr +xmM +xmM beL -bhq +xKx azx alz alz @@ -37989,11 +37992,11 @@ bhO bhO bhO mpk -gZp -oeA -oeA -mKX -oeA +mcw +wjW +wjW +eLz +wjW cXU bhO bhO @@ -38115,49 +38118,49 @@ aac aac kSU kSU -coO +sqS cjb cjb coP -akq -coS -cpR +jHZ +grq +vef cqE -cnv -crb +dCq +gsr apc -cZH -auk -arT -atq -auk -cwQ -arT -cZH -auk -cwQ -arT -cZH -auk -cwQ -arT -cZH -auk -cwQ -arT -cZH -auk -cwQ +trc +cmN +dwR +mlj +cmN +wcB +dwR +trc +cmN +wcB +dwR +trc +cmN +wcB +dwR +trc +cmN +wcB +dwR +trc +cmN +wcB apc -cmA -cnv -aoj -aXy -aUs -aVY -aVY -aVY -aVY +ptU +dCq +oVp +uVl +nIt +iWp +iWp +iWp +iWp aac aac aac @@ -38184,9 +38187,9 @@ bgS bsU bhO mpk -uTL -oeA -xRl +pZl +wjW +taV vkp blW vQs @@ -38310,45 +38313,45 @@ aac aac aac kSU -ahO -coa -coO -coO -coV -coS -cpR +kxt +isb +sqS +sqS +dUQ +grq +vef cqE -cnv -crt -apm -apm -apm -apm -apm -apm -apm -apm -apm -apm -apm -apm -apm -aEG -apm -apm -apm -apm -apm -apm -apm -apm -apm -apm -aSN -cnv -aoj -aXy -aUt +dCq +iog +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +qRg +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +kwZ +uPu +dCq +oVp +uVl +fhx cqG bbA bbA @@ -38380,7 +38383,7 @@ bgS bhO tKS blW -ocH +xxY blW vQs xsH @@ -38507,43 +38510,43 @@ aac kSU kSU kSU -ajg +mUz wrp wrp wrp -cqu +pnU cqE -coX -aol -aol -aol -aol -aol -aol -cso -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -cso -aol -aUq -aoj -aXy -aUt +vls +wir +wir +wir +wir +wir +wir +wFF +wir +wir +wir +wir +wir +wir +wir +wir +wir +wir +wir +wir +wir +wir +wir +wir +wir +wFF +wir +pvO +oVp +uVl +fhx bhK ahA ahA @@ -38702,11 +38705,11 @@ aac aac aac crA -exO -acN +nuO +xqi akr -akV -alC +rZl +imU cqE anj cqE @@ -38733,12 +38736,12 @@ cqE cqE cqE cqE -cnv +dCq aSP -aUr -aUr +xmM +xmM azx -aUt +fhx bhK ahA ahA @@ -38897,11 +38900,11 @@ aac aac aac crA -cry -acN +kTW +xqi aks -akV -alC +rZl +imU cqE anj aom @@ -38928,12 +38931,12 @@ cqE aom cqE cqE -cnv +dCq azx -aUs -aVY -aVY -cfi +nIt +iWp +iWp +xeg bhK ahB aiP @@ -39092,40 +39095,40 @@ crA crA crA crA -aji +fcr ddp ddp ddp crY -bAI -bCh +oNk +xIz ctC bYE -apV -apV +gaY +gaY crY -kIK -aul -avn +vrh +ldz +hWs cbj -bWy -bWy -bWy -bWy -aDC +til +til +til +til +daF crY -aFL -aFL -aIh -aJO -aFL -aFL +vsK +vsK +prd +uTw +vsK +vsK crY -aoj +oVp aQv -cnv -aSQ -aUt +dCq +hwn +fhx agA apA apA @@ -39134,7 +39137,7 @@ aZW crN bjB bnn -ajv +mqa pkO pkO pkO @@ -39287,40 +39290,40 @@ cnO cnO cnO cnO -crz +nmg cnO cnO ddp -alE -bWy -bUq -aon +hPN +til +hjm +vZY ctC -apW -arc -arU -arY -aum +ykx +iek +csg +hMq +oIj cbj -bWy +til bPs -azz -aBj +uwo +wND aCD aCD ctC -aFM -aGZ -aMB -aJP -aMB -aMB +bWS +urX +aBB +ocP +aBB +aBB ctC -aOP +kGp aQv -aRA +jyW azx -aUt +fhx cou bnm ahB @@ -39478,42 +39481,42 @@ aac crA cnO bjY -xDX -qKU -cmB +vKI +spX +oxc bjY -xDX -exO +vKI +nuO cnO ddp -alF -bWy -bUq -cru +qEQ +til +hjm +tcP ctC -arY -ard -arV -arY -aum -bWy +hMq +nNt +obl +hMq +oIj +til cbj -ctD -azA -azA +ttv +vqs +vqs crY crY crY crY -aGZ -aIj -bWy -bWy -aMC +urX +bzw +til +til +typ ctC -aOS +xPA aQv -cnv +dCq azx aac cou @@ -39551,8 +39554,8 @@ cwS cwS cwS glN -eLF -eLF +nzT +nzT glN bsU bhN @@ -39672,43 +39675,43 @@ aac aac crA cnO -crz -agB -ahs -cmB -aiB -ajj -coY +nmg +vHH +gzk +oxc +hzA +frR +lpW cnO ddp crY -bAI -bCh +oNk +xIz ctC ctC -apX +rWu ctC crY -ctn -aum +cHw +oIj cbj -bWy -ayj -ctK -aBk +til +sJP +uGp +pCj crY -aDD -aEH +tnO +kzp crY crY -chq -chp -aLf -aMB -cjv -aoj -aQw -ani +cxi +fTE +rKm +aBB +xtV +oVp +wib +oTh aac aac cou @@ -39746,9 +39749,9 @@ cwS fzN cwS cbO -uPH -iVZ -cxg +tWa +mTt +djY bsU bsU bhN @@ -39867,49 +39870,49 @@ aac aac crA cnO -aiE -agC -coZ -ahR -aiC -ajk -ajM -coZ -akW -bSJ -fHp -ank -bSJ -app -apY -aCE -arW -arW -aun -fHp +vLs +pdD +gpZ +bxw +ePu +vRD +vKT +gpZ +ouE +oPB +jHQ +fie +oPB +gej +tDg +ilt +wAo +wAo +lLV +jHQ awG -ayk -arW -arW -aCE +mCN +wAo +wAo +ilt aEI aEI -aFN -aHa -aIk -chq -bWy -aMB -cjv -aoj +jUT +mdn +wEq +cxi +til +aBB +xtV +oVp aQv -aRC +tmA aSR -aUu -aWi -aWi -aWi -aUu +gYu +oCj +oCj +oCj +gYu crN aVq crN @@ -39941,9 +39944,9 @@ cwS pvA nGi cbO -gif -wVf -cxg +xDC +eKJ +djY aac aac aac @@ -40063,48 +40066,48 @@ aac crA cnO bjY -rRx +vNh cnO cnO -kRb +qVO bjY -qKU +spX cnO ddp crY -bAI -bCh +oNk +xIz ctC ctC -apZ +lmI ctC -arX -atr -auo +rcG +jPo +ohT cbj -aLh -ayj -ctK -aBk +jvO +sJP +uGp +pCj crY crY crY -aFO +eHb ctC -aIl -aIn -aLf -aMB -aNJ -aOP +tyZ +hiE +rKm +aBB +jfs +kGp aQv -aRA -aSS -ctx -cty -cty -cty -ctx +jyW +dng +btQ +mZP +mZP +mZP +btQ bjj aVq crN @@ -40137,7 +40140,7 @@ pvA xFl cwT cbO -ixS +nTi cwT aac aac @@ -40256,50 +40259,50 @@ aac aac aac crA -jIv -cEu -agD -aiE +iKK +wKw +inH +vLs cnO -xDX +vKI bjY -kRb +qVO cnO ddp -bXW -bWy -bUq -bXW +vwN +til +hjm +vwN ctC -aFO +eHb aCl -crM -arY -caE -bWy +iyy +hMq +lTJ +til awI -caE -arY -arY +lTJ +hMq +hMq ctC ctC crY -aFP +oWW aHb -aIk -chq -aLf -aMB -fno -aoj +wEq +cxi +rKm +aBB +hBQ +oVp aQv -cnv -aST -ctx -cty -cty -cty -ctx +dCq +oHv +btQ +mZP +mZP +mZP +btQ crN crN aVq @@ -40451,50 +40454,50 @@ aac aac aac crA -aem -aiE -agE -aiE +tPu +vLs +oSW +vLs cnO -jPT +eKR ajl -npf +tPZ cnO ddp -alG -amr -anm -bUL +qjP +lCg +jgR +nXV ctC -aqa +mFD ctC -arX -atr -auo +rcG +jPo +ohT cbj -bWy -ayj -ctK -aBk +til +sJP +uGp +pCj ctC aDF -aEJ +gWR aFQ -aHc -sSZ -chr -bWy -aMB -cjv -aoj -aQw -aRD +dgH +eXf +usv +til +aBB +xtV +oVp +wib +tmf aSR -aUv -aWj -aWj -aWj -aUv +kAN +tcq +tcq +tcq +kAN crN bjN crN @@ -40547,8 +40550,8 @@ aac aac aac mIG -mYN -npS +tNA +wAI bjL bdL ben @@ -40648,7 +40651,7 @@ aac crA cnO cnO -afE +cqm cnO cnO ddp @@ -40656,34 +40659,34 @@ ddp ddp ddp ddp -bXW -bWy -bUq -bXW +vwN +til +hjm +vwN ctC -aFO +eHb ctC -arY -cto -ctD -bWy +hMq +gRH +ttv +til cbj -caE -azB -azB +lTJ +uOU +uOU ctC cdH -aEK -aFR -aHd -aIm -fWV -aLg -aMB -cjv -aoj +vHa +dAq +lhS +vPI +wCU +jDh +aBB +xtV +oVp aQv -cnv +dCq aac aac aWk @@ -40694,7 +40697,7 @@ aWg crN bjN bcx -ajv +mqa pkO pkO pkO @@ -40743,7 +40746,7 @@ aac aac lcs kZU -mYN +tNA bdL ben bea @@ -40843,42 +40846,42 @@ crA crA ddp ddp -agF +qCq ddp ddp ptT ajm -ajQ -ajQ +gsm +gsm ddp crY -bAI -bCh +oNk +xIz ctC ctC -apZ +lmI ctC ctC ctC jqg avr -bWy +til bPs -azC -azC +erx +erx ctC ctC -cer -aFS -chq -aIn -aJQ -aLh -aMB -cjv -aOP +nEA +kVa +cxi +hiE +vuI +jvO +aBB +xtV +kGp aQv -aRA +jyW rtW aac aWk @@ -40937,8 +40940,8 @@ bur aac aac mIG -npS -npS +wAI +wAI bjL ben hir @@ -41036,27 +41039,27 @@ crA crA crA cnO -afD -bIL -agG -bIL -bKZ -kaP -bIL -bIL -bIL -akW -bSJ -fHp -anm -bUM +hot +cTT +sAB +cTT +kOY +rOg +cTT +cTT +cTT +ouE +oPB +jHQ +jgR +srE ctC -aFO -ctB +eHb +pXx arZ -ctB -aup -bWy +pXx +oUN +til cbj bPs azD @@ -41064,21 +41067,21 @@ azD ctC ctC ctC -aFT -aHe -aHe -ceq -aLi -aMD +tdi +sHs +sHs +fRH +jDv +vFx crY -aOS +xPA aQv -cnv +dCq azx aac -bXc -jgX -aZX +mzw +hsL +pjm aVq crN aWp @@ -41127,7 +41130,7 @@ aac aac bur bug -uEj +bWt bus aac aac @@ -41231,48 +41234,48 @@ cnO cnO cnO cnO -afE +cqm ddp bjY bjY ddp ddp -bjg -vNG -akt +hZT +qKe +fBe ddp crY -bAI -bCh +oNk +xIz ctC ctC -aqb -ctB +hKM +pXx afv -ctB -auq +pXx +sal cbj -pgW -bWy +oDe +til cbj -bWy -bWy -aDG -cet +til +til +igl +cKa bZV bPs aIo aJR bPs -cet -aDG -ckX -ckX -cov -aSU +cKa +igl +rsp +rsp +pAX +agY cnB -jyq -jyq +uNH +uNH cnB aac bcx @@ -41423,13 +41426,13 @@ aac aac crA cnO -aes -aiE +pqS +vLs cnO -afF +ydO ddp -aiE -aht +vLs +bTK cnO ddp ddp @@ -41437,38 +41440,38 @@ ddp ddp ddp crY -bWy -ann -aoo -aHa -aqc -ctB +til +plI +xlY +mdn +jLQ +pXx ctl -ctB -ctF -avs +pXx +ieM +gAE emg kUN azE aBl aCG -aDH -ceu -ceV -igm -igm -aJS -aLj -aDH -aDH +ntc +qQW +uhW +xpa +xpa +xCu +hUb +ntc +ntc aPa aPa aRF -ckX -cnA +rsp +pMW aWl bXV -baa +qVN bcx bcx bcx @@ -41617,53 +41620,53 @@ aac aac aac crA -bDv -brg -bIL -akW -cZa -akW -bIL -mam +fRG +csd +cTT +ouE +pIv +ouE +cTT +nvJ cnO wGx wGx -bRs -bRs -bRs +nQf +nQf +nQf wGx -bOs -ano +dAL +lCo wGx crY -aFO +eHb ctC ctC ctC ctC -avt +eLO bZV ctC ctC -aBm -cbW +mdV +rXF ctC ctC ceW -tHE -aIp -aJT -aLk +hbJ +hbc +xEh +qXt ctC ctC -aPb -ckX -cov -aSV +ikn +rsp +pAX +wjV cnB bXd aXB -cnA +pMW bcx aWp bcx @@ -41813,52 +41816,52 @@ aac aac crA cnO -ioz -aiE +ryu +vLs cnO -afE +cqm ddp -agI -izc +rkJ +xIY cnO wGx -bPu -qUW -qUW -qUW -alH -qUW -bUs +rjP +taw +taw +taw +qxc +taw +vYc wGx crY -aeD -aeM -aeM -aeM -aCE +mkw +oYY +oYY +oYY +ilt avu sJd -cew -azG -aBn -aCH -aDI +ejn +oAM +gCU +vbJ +kJQ aEL crY -aHf -aHf -aHf +lEw +lEw +lEw aLl aMF ctC cjw cnB -cov +pAX aLq -cnC +fvL aWm aXC -cnA +pMW bcx aac aac @@ -42011,44 +42014,44 @@ cnO cnO cnO cnO -afE +cqm ddp cnO cnO cnO wGx -ajn -hCp -xSJ -akX -akX -xSJ -bUs +ucV +fIn +vWE +pza +pza +vWE +vYc wGx crY crY -afg +gxr crY crY ctC -bWy +til awK -cew -azH -aBo -aCI -aDJ -cew +ejn +fmp +sSG +gJN +qpT +ejn aLM aNe aNe aOX aPn aOX -cwd +igI aPe aQx -aRG +kHQ aSW cnB cjw @@ -42206,34 +42209,34 @@ crA crA crA crA -afF +ydO ddp wGx wGx wGx wGx wGx -bQs -aku -akY -alI -xSJ -bUs -bUO -afW -afW -afW -asb -jfh +ibF +ngz +vcy +aBd +vWE +vYc +eoy +fUS +fUS +fUS +vdF +gtN bYE cbj bZV -cew -azI -oXH -aCK -cdK -cew +ejn +wPK +ejN +eDb +xTu +ejn aMV aNj aNm @@ -42243,9 +42246,9 @@ aPT aNL aPh cjw -cov +pAX aLq -cnA +pMW clU aXD cjw @@ -42401,33 +42404,33 @@ aac aac aac cfr -afH -bso -agJ -ahu -ahT -agJ -ajo -pDJ -akv -alJ -alJ -ams -bUt +qdf +cZw +lFC +jWD +gNb +lFC +hiA +rfI +elg +bAQ +bAQ +vuN +mgb bAt ctC ctC -afg +gxr ctC ctC ctC -avw -awL +qmI +oMJ ctC ctC -cbW -cbW -cbW +rXF +rXF +rXF ctC kwU aNl @@ -42437,8 +42440,8 @@ aOY aPX cjw aPi -cwd -cov +igI +pAX cmC cnB bXd @@ -42448,8 +42451,8 @@ aac aac aac aac -bnv -brn +qWh +qrP aYX aWp aWp @@ -42596,27 +42599,27 @@ aac aac aac cfr -bOq +rbI xdE wGx -ahv -ahU -xSJ -ajp -qUW -ahU -xSJ -akX -xSJ -bUs -aop -apr -aqe +spI +heZ +vWE +xPe +taw +heZ +vWE +pza +vWE +vYc +wNb +fbc +drA cbj -asc -bXW +mST +vwN ctC -avx +qSi bZV aym ctC @@ -42633,9 +42636,9 @@ aPX cjx cjw cnB -aRI -cmD -cnC +msF +dvY +fvL aLq aXF cjw @@ -42643,8 +42646,8 @@ aac aac aac aac -bnv -crk +qWh +sKE aYY aYd bcx @@ -42699,32 +42702,32 @@ xTU bvE bvE bvD -jit -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -uoP -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -cOI +wzR +dio +dio +dio +dio +dio +dio +dio +dio +dio +dio +dio +dio +ciu +dio +dio +dio +dio +dio +dio +dio +dio +dio +dio +dio +xLR bwt xTU kkL @@ -42790,34 +42793,34 @@ aac aac bAu bGg -bHt +nMI afI xdE -agK -xSJ -ahU -dQi -vjD -qUW -aIi -ala -bMZ -xSJ -bUu -aoq -fHp -fHp -fHp -tio -fHp -aus +wqb +vWE +heZ +xrr +sIF +taw +fcj +fdY +eAk +vWE +gdj +gXi +jHQ +jHQ +jHQ +gUL +jHQ +iJA aEI kSW ayn -aNJ +jfs ciA ciA -aDK +gmC aLy aMH aNo @@ -42825,11 +42828,11 @@ aNo aNo aNl aQa -vnh +bLE aPk -ckX -aRJ -cmE +rsp +gzF +tiM cnB cjw cjw @@ -42838,8 +42841,8 @@ aac aac aac aac -cqI -crk +eyr +sKE aWp aYd tUu @@ -42894,32 +42897,32 @@ bvJ bvE bvD bvD -eFa +ttZ bJI -iwp -jPQ -apv -nTf -iwp -skJ -apv -nTf -iwp -jPQ -apv -nTf -iwp -jPQ -apv -nTf -iwp -jPQ -apv -nTf -iwp -jPQ +ixs +xUZ +nuE +ePi +ixs +oqM +nuE +ePi +ixs +xUZ +nuE +ePi +ixs +xUZ +nuE +ePi +ixs +xUZ +nuE +ePi +ixs +xUZ bJI -wvF +cOQ bvE bwt kkL @@ -42985,34 +42988,34 @@ aac bAu bwg hGO -bHt +nMI afJ xdE -agL -xSJ -ahV -aiF -vjD -qUW -xSJ -alb -alb -xSJ -bUs -aor -bWy -bWy -bWy -bWy -bWy -bWy +bvH +vWE +lVL +rPk +sIF +taw +vWE +qoZ +qoZ +vWE +vYc +xov +til +til +til +til +til +til cbj bZV bPs -fno +hBQ ciA ciA -aDL +jSO aLz aMI aNo @@ -43020,12 +43023,12 @@ aNo aNo aNo aOB -vnh +bLE aPk -ckX -aRK -ckX -cnA +rsp +bKv +rsp +pMW clU aXH cjw @@ -43033,8 +43036,8 @@ aac aac aac aac -bnw -brn +ybz +qrP aYZ aWp aYd @@ -43089,8 +43092,8 @@ bvE rNI xTU bvD -eFa -lEo +ttZ +dTo tCR jWs ewk @@ -43113,8 +43116,8 @@ jWs ewk jWs jWs -yee -wvF +lNM +cOQ bxo bwt kkL @@ -43180,28 +43183,28 @@ bAu bwg acX hGO -bHt +nMI afI xdE -agM -xSJ -ahW -xSJ -ajr -qUW -xSJ -akX -xSJ -amt -bUs -aop -bXW -aqf +hdo +vWE +qXD +vWE +ykK +taw +vWE +pza +vWE +hoj +vYc +wNb +vwN +wWX cbj -aqf -bXW +wWX +vwN ctC -avx +qSi bZV aym ctC @@ -43217,9 +43220,9 @@ aPr aOB cnB cjw -aQy -aRK -aSV +pHg +bKv +wjV cnB coy aXB @@ -43228,8 +43231,8 @@ aac aac aac aac -tfB -brn +mZe +qrP aYX aWp aYd @@ -43284,8 +43287,8 @@ xTU rNI xTU bvD -eFa -sBg +ttZ +wEa jWs jWs jWs @@ -43308,8 +43311,8 @@ jWs jWs jWs jWs -qbk -wvF +cQn +cOQ bvE bwt bwt @@ -43376,19 +43379,19 @@ acX acX hGO xdE -bOq +rbI xdE agN -ahw -bOs -aiG -bPv -qUW -xSJ -alc -alK -xSJ -anp +lhG +dAL +rKZ +bLY +taw +vWE +rpJ +lUR +vWE +nsV wGx crY crY @@ -43396,8 +43399,8 @@ crY crY crY crY -avw -awL +qmI +oMJ ctC aHb aBq @@ -43411,11 +43414,11 @@ aJX aMJ aNB cjy -cnA -aQz -aRK -ckX -cnC +pMW +oaF +bKv +rsp +fvL aWn aXI cjw @@ -43447,8 +43450,8 @@ bdL bdL ben beQ -npS -npS +wAI +wAI lcs aac aac @@ -43479,8 +43482,8 @@ hPr rNI bvE bvD -eFa -eBo +ttZ +qjE jWs jWs jWs @@ -43503,8 +43506,8 @@ jWs jWs jWs jWs -ayh -wvF +rJp +cOQ bvE bwt byr @@ -43571,31 +43574,31 @@ acX acX hGO xdE -afK +obb xdE wGx wGx -bNa +wiy aiH wGx -bQv -xSJ -alb -alb -xSJ -anq +foY +vWE +qoZ +qoZ +vWE +dBM auC crY crY -fwi -ase +eXj +oSb att crY -bWy +til bZV ctC -azL -yis +nVL +mDv ctC aDN aER @@ -43603,13 +43606,13 @@ aMJ aNo aPX aJY -aLo +vKa aMK cjy -cnA -ckY -aRK -wXL +pMW +uAf +bKv +frp cnB cjw cjw @@ -43631,8 +43634,8 @@ aac aac aac mfp -eLF -eLF +nzT +nzT cwT beW bea @@ -43642,7 +43645,7 @@ bdL bdL bxy ben -npS +wAI kZU lcs aac @@ -43674,8 +43677,8 @@ rNI rNI xTU bvD -eFa -odB +ttZ +uGy vqx jWs jWs @@ -43698,8 +43701,8 @@ jWs jWs jWs jWs -aSX -wvF +iMJ +cOQ kkL bvE bwt @@ -43766,31 +43769,31 @@ acX acX hGO xdE -afL -bso -agJ -ahx -bOs -bOs -ajs -ajR -akw -ald -alL -qUW -bUs +psv +cZw +lFC +fnl +dAL +dAL +dTp +kxT +kxx +vPW +kUW +taw +vYc wGx crY aqg -arh +jOM asf atu aLl cbj bZW ayo -azM -aBs +eAS +rFc ctC aDO aER @@ -43802,10 +43805,10 @@ ciA ciA ciA aQu -aQA -aRK -ckX -cnA +cNd +bKv +rsp +pMW whO aXJ cjw @@ -43820,15 +43823,15 @@ aXP aXP aXP aWp -bMd -bRe -cbi +oIB +iYx +kdQ aac aac mfp -eNz +oYN ioM -cxg +djY beY ben bea @@ -43837,8 +43840,8 @@ bdL bdL bdL bjL -npS -npS +wAI +wAI lcs aac ble @@ -43869,8 +43872,8 @@ bvE bvE bvE bvE -eFa -lEo +ttZ +dTo jWs jWs jWs @@ -43893,8 +43896,8 @@ jWs jWs jWs jWs -yee -wvF +lNM +cOQ bvD bvD bvE @@ -43960,32 +43963,32 @@ jbI bDE acX hGO -bHt +nMI bID xdE -bOs -bOs -bOs -bOs +dAL +dAL +dAL +dAL xdE xdE -alp +fDv xdE -anl -apl -rhg +dHX +sIU +kWa xdE crY crY -ari +xSN bXe atv crY -avz +upT bZV -pEF -aMB -aBt +oiy +aBB +nhr ctC aDO aER @@ -43996,10 +43999,10 @@ cjy ciA ciA aNM -cnA -ckY -aRK -aSV +pMW +uAf +bKv +wjV cnB aPh aXE @@ -44015,15 +44018,15 @@ aXP aXP aWp aWp -bMB +nuR bRf cbu aac aac mfp -eNF -iry -cxg +ony +jhG +djY beZ bfr bea @@ -44064,8 +44067,8 @@ bvE bvE bvE bvD -eFa -xGE +ttZ +hdx jWs jWs jWs @@ -44088,8 +44091,8 @@ jWs jWs jWs jWs -qbk -wvF +cQn +cOQ bvD bvD bvE @@ -44155,29 +44158,29 @@ aac jbI bDE hGO -bHt +nMI bID xdE -agP -ahy -ahX -bOs +kgw +nSD +rzb +dAL xdE -bQu -bRY -aky -bRY -aky -aqd -aky +wBk +hbg +dLY +hbg +dLY +cMc +dLY crY crY bXY -nVt +std bXY crY ctC -awM +cVn ctC azO ctC @@ -44191,11 +44194,11 @@ aJZ ciA ciA aNN -cnA -aQD -aRK -ckX -cnC +pMW +cpA +bKv +rsp +fvL aLq aXK cjw @@ -44210,13 +44213,13 @@ aZP glL aac aZJ -bMB +nuR bRf cwT mfp mfp cuz -eOK +eOs isa cwT ocw @@ -44259,8 +44262,8 @@ bvE bvE bvD bvE -eFa -eBo +ttZ +qjE jWs jWs jWs @@ -44283,8 +44286,8 @@ jWs jWs jWs jWs -ayh -wvF +rJp +cOQ bvE bvE bwt @@ -44350,46 +44353,46 @@ aac aac jbI bEh -bHt +nMI bID xdE xdE xdE xdE -cyi +tCO xdE -boW -alq -and -alq -and -aqi -brS +llY +vhQ +fFr +vhQ +fFr +qSr +dMP crY -bWi +doF arj ash atw ctC emg sJd -pEF +oiy cbj aBu -ctB +pXx oLv aER aMT aNo aNB cnB -aLp -cjz +ats +lnD cjw cnB -aQF -cov -ckX +ljx +pAX +rsp cnB cjw cjw @@ -44405,18 +44408,18 @@ aZP glL aac aac -bMG +qgz bRg cbO -cij -rkb +mYc +xRK cuA -eRJ -isu -lGv -cxf +tnP +dtK +eTQ +hZA cbO -cxn +lva bgq bea bdL @@ -44454,8 +44457,8 @@ bvD bvD bvD bvE -eFa -odB +ttZ +uGy jWs jWs jWs @@ -44478,8 +44481,8 @@ jWs jWs jWs jWs -sFB -oFG +cCe +iKZ bvE byr kBL @@ -44546,22 +44549,22 @@ aac aac aac cfr -bIE +qvU bIK bIK bIK -cpo -bOt +oyd +gWM xdE -ajS -akx -ale -akx -apS -aqA -aky +dTn +rNX +mxo +rNX +fxo +dPX +dLY crY -aqh +lLP arj ash atx @@ -44571,17 +44574,17 @@ awN ctC cbj aBv -ctB +pXx ciA aER aMU aNo aOz -vnh -ckX -ckX -aNO -aPl +bLE +rsp +rsp +kBy +pnj aPa aRF aLq @@ -44608,10 +44611,10 @@ cmq cbO cbO iuB -lHH +pYO ofd -qgc -sSv +flE +tHr bha bha bhe @@ -44649,8 +44652,8 @@ bvD bvE bvD bvE -eFa -lEo +ttZ +dTo jWs jWs jWs @@ -44673,8 +44676,8 @@ jWs jWs jWs jWs -yee -wvF +lNM +cOQ bvD bvE bwt @@ -44746,40 +44749,40 @@ cfr cfr cfr cfr -bOv +ybP xdE -ajT -aky -bRY -aky -bRY -aqT -brS +dHu +dLY +hbg +dLY +hbg +iOj +dMP crY crY arj bXf bXZ -aCE +ilt avC bPs ctC azP aBw -ctB +pXx ciA aER aMS aNo aOB -vnh +bLE aLq aML aNP -ckX -ckX -cov -aSY +rsp +rsp +pAX +iaF cjw aac aac @@ -44798,15 +44801,15 @@ aac aac aac mfp -ciH -cmn -cuB -eSK -isu +oWr +qyc +wDu +geP +dtK lIG -isu +dtK cbO -sWO +bqt bgq ben bdL @@ -44844,8 +44847,8 @@ bvE bvD bvE bvD -eFa -sBg +ttZ +wEa jWs jWs jWs @@ -44868,8 +44871,8 @@ jWs jWs jWs jWs -qbk -wvF +cQn +cOQ bvD bvE bwt @@ -44941,26 +44944,26 @@ aac aac aac cfr -bOv +ybP xdE -ajU -alx -alf -anF -apU -asX -aky -avA +sPV +fKd +fpy +fsH +kNs +uQO +dLY +kcB ctC ctC -bXg +jEM ctC ctC -avD +fkg ctC ayp -aHf -aHf +lEw +lEw ctC oLv aER @@ -44968,12 +44971,12 @@ aMS aNo aPX aKa -aLr +ycq cjw cjw cjw cnB -aRL +sIB cjw cnB aac @@ -44997,7 +45000,7 @@ mfp mfp mfp cbO -ixS +nTi mfp cwT cbO @@ -45039,8 +45042,8 @@ bvD bvE bvE bvE -eFa -eBo +ttZ +qjE vJj jWs ewk @@ -45063,8 +45066,8 @@ jWs ewk jWs jWs -ayh -wvF +rJp +cOQ bvD bvE bwt @@ -45136,7 +45139,7 @@ aac aac aac cfr -bOv +ybP xdE xdE xdE @@ -45144,11 +45147,11 @@ xdE xdE xdE aui -avv +jiA xdE xdE xdE -asi +xFg xdE xdE avE @@ -45163,13 +45166,13 @@ aMV aNo aOB cjw -aLs -aMM -aNQ -aPo +gBU +rkR +nlh +hrR cjw -clW -aSZ +mnN +jjX cjw aac bgh @@ -45191,11 +45194,11 @@ aac aac aac mfp -eSR -cwF -lNr +dIP +mzK +mOz cbO -qjD +meh bgs bea ben @@ -45234,32 +45237,32 @@ bvE bvE bvE xTU -eFa +ttZ bJI -vsp -hue -hzb -qbU -vsp -hue -hzb -qbU -vsp -hue -hzb -qbU -vsp -hue -hzb -qbU -vsp -hue -hzb -qbU -vsp -hue +nlk +jqp +isX +wCH +nlk +jqp +isX +wCH +nlk +jqp +isX +wCH +nlk +jqp +isX +wCH +nlk +jqp +isX +wCH +nlk +jqp bJI -wvF +cOQ bvD bvE bwt @@ -45331,21 +45334,21 @@ aac aac aac cfr -aiJ -cpo -cpo -akA -cpo -cpo -cpo -akA -aos -aos -aos -cpo -akA -cpo -xTh +kfX +oyd +oyd +leR +oyd +oyd +oyd +leR +npD +npD +npD +oyd +leR +oyd +snU avF avF ayq @@ -45358,13 +45361,13 @@ aMG aNo aOE cjw -aLt -aMN -aNR -aPp -aQG -aRM -cmF +cWU +hPl +hsW +dVD +jAT +cyu +eKm cjw aac aTV @@ -45385,12 +45388,12 @@ aZP aZK bgh bcz -cxg -eTd -cwF -eOK -cxg -qkS +djY +mcE +mzK +eOs +djY +tfS bgt ben bea @@ -45429,32 +45432,32 @@ bvD bvD bvD bvM -sQs -ppe -ppe -ppe -ppe -ppe -ppe -ouJ -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -kYx +nGH +klj +klj +klj +klj +klj +klj +dbo +klj +klj +klj +klj +klj +klj +klj +klj +klj +klj +klj +klj +klj +klj +klj +klj +klj +voz bvD bvE bwt @@ -45527,12 +45530,12 @@ aac aac cfr cfr -ajt -ajt +sZU +sZU xdE xdE -ajt -ajt +sZU +sZU cfr cfr cfr @@ -45555,7 +45558,7 @@ aOF cnB cjw cjw -aNS +bvm aPq cnB cjw @@ -45581,11 +45584,11 @@ aZK aZK bcz cbO -eVA -cwF -lPk +iNp +mzK +eHl cbO -qjD +meh bgs bea ben @@ -45737,7 +45740,7 @@ aac aac auv ciA -awQ +vkG aHB aZK bdx @@ -45761,14 +45764,14 @@ aQI aVi aQq aWy -bhy -bkt -bnG -brr +vXO +wnC +lFo +fbq cfR -bxr -bAB -bFf +cxd +hRR +jok bIV aZP aZP @@ -45777,10 +45780,10 @@ bav bcA cwT cbO -eLF +nzT lQT cwT -qjD +meh bgu bhb ben @@ -45957,13 +45960,13 @@ aQq aVv aac bwp -bkt -bkt -bkt +wnC +wnC +wnC cfR -ctz -ctS -oUS +mMu +ngJ +byL cfR bav aZP @@ -45972,10 +45975,10 @@ aZP aZK bcW bdO -iym -lXd -lXd -qkU +kDL +tRX +tRX +wMe bgu bea bdL @@ -46010,9 +46013,9 @@ bdL bdL bdL xFH -wez -ads -oGW +dRj +tSR +mWo xFH aac bwt @@ -46152,12 +46155,12 @@ aTg aVP aac bwp -bku -bnS +dpl +hWT coB coB cfR -bAF +iKb cfR coB baw @@ -46205,9 +46208,9 @@ bdL bdL bvu wGm -ncp +qEr npX -ncp +qEr qfC aac bwu @@ -46350,10 +46353,10 @@ bwp coB cfR cfR -buy -brt -bAG -bFB +nKS +eIj +pMk +rlc bIW coB baK @@ -46400,9 +46403,9 @@ bdL bdL bvv wGm -tRC +onj hUJ -tRC +onj qfC aac aac @@ -46543,14 +46546,14 @@ aDQ bhz bhz bkv -bnT -hTX -bhC -bhD +yit +psB +lCe +oJq cqH cqH bIX -chX +dNI bgh aZK aZP @@ -46595,9 +46598,9 @@ bhe bha bvx wAG -xKr +rKY oPz -xZk +rBg iNe aac aac @@ -46736,16 +46739,16 @@ bgh aac bwp bwp -fRa -bkw -csA -bru +twg +fyE +lYM +nQz buO bxs ctA -bru -bIY -chX +nQz +flx +dNI bgh bbj aZK @@ -46790,9 +46793,9 @@ ben bea aac vxd -kfN +ijt hUJ -qLp +xUc vxd aac aac @@ -46930,18 +46933,18 @@ aTb aac aac bwp -beS -bhC -bkx +eSD +lCe +szl cqH brv -bnZ -bhH +hZZ +tgs coB -bxF -bAL +pqr +bNY coB -bhU +uYu coB bcd aZK @@ -46985,16 +46988,16 @@ bea aac aac wGm -gFf +wBH hUJ -vrH +rjb qfC aac aac aac mfp -eLF -eLF +nzT +nzT ocw kkL bwt @@ -47125,19 +47128,19 @@ bgh aac aac bwp -beT -bhD +fvO +oJq cwe -bnZ -brw +hZZ +rNp coB cfR cfR -bFC -bkx -bMV -bRp -chX +kYd +szl +ndk +cJa +dNI bcg aZK bdx @@ -47180,17 +47183,17 @@ aac aac aac wGm -gFf +wBH hUJ -vrH +rjb qfC aac aac aac mfp -ubo -mLe -cxg +rFG +lNY +djY kkL kkL bwt @@ -47320,19 +47323,19 @@ aac aac aac bwp -beU -bhF +wGc +xQx bky bZj cfR cfR -bxu -bAH -bhF -bJc -bFF -bru -cbR +emi +wBC +xQx +saU +nok +nQz +sDn bch bcB bdy @@ -47375,17 +47378,17 @@ aac aac aac hYc -wrv +vrU hUJ -qLp +xUc hYc aac aac aac mfp -vKg -wVf -cxg +ebU +eKJ +djY kkL kkL xTU @@ -47515,19 +47518,19 @@ aac aac aac bwp -beV -bhD +gZZ +oJq cwe -beS -chX -buP -ctS -bAJ -bFF -bJx -ctS -bhD -cbS +eSD +dNI +ljz +ngJ +tBt +nok +sII +ngJ +oJq +itH aZK aZP aZP @@ -47570,16 +47573,16 @@ aac aac aac qfC -tRC +onj hUJ -vrH +rjb rXy aac aac sgG mfp cbO -ixS +nTi mfp kkL xTU @@ -47659,9 +47662,9 @@ aac aac cmo cmp -utX -qFH -qWC +kjY +lEm +dAX cmo anb aoA @@ -47687,10 +47690,10 @@ ccd ccd bYJ ccd -bZY -ayx -azV -iLJ +sqX +sCw +lJT +kdz aKk bbj bbj @@ -47710,19 +47713,19 @@ aac bwp bwp bwp -beX -bhG +urO +hdD csm -boj -chX -buQ -ctS -bAK -ctS -ctS -ctS -bRp -chX +qpD +dNI +sgP +ngJ +uZi +ngJ +ngJ +ngJ +cJa +dNI bdQ bgh bbj @@ -47765,16 +47768,16 @@ aac aac aac qfC -tRC +onj hUJ -mCK +fMA qfC aac aac sgG -qDI +xZB gpr -tRC +onj sgG nJK bxy @@ -47854,10 +47857,10 @@ aac aac cmo dOG -uDa +pay juY -uGH -qin +uVb +ulw anE amj amj @@ -47873,19 +47876,19 @@ aac aac aac adS -anr -bUU -anr +iVu +vyr +iVu vPi -bXi +sHA asj -foN +uCb cuP uKj -awS +cQO kcw kcw -iLJ +kdz aKk bbj bbj @@ -47903,20 +47906,20 @@ aac aac aac bwp -bpS -bpV -oUS -bhH +qxX +ova +byL +tgs cwe -csB -chX -buR -ctS -bAK -bFZ -bJy -bMX -bRu +fwA +dNI +jFI +ngJ +uZi +hzB +quO +taN +tUF bIV bgh bgh @@ -47930,13 +47933,13 @@ tIl aac bhS dOO -ssE -iQi -ssE -jmy +wuS +mYd +wuS +uQp dOO eMZ -unE +bpv dOO dOO boG @@ -47960,16 +47963,16 @@ aac aac aac nmS -mrp +wqC hUJ -vrH +rjb rXy aac aac sgG -psE +cpv lrd -pXB +sCS sgG nJK bea @@ -48049,9 +48052,9 @@ aac aac cmo cmp -uGH +uVb juY -uGH +uVb cmo anN aoA @@ -48068,19 +48071,19 @@ aac aac aac adS -aot -aot -aot +pEk +pEk +pEk aqj -bXi +sHA jyO -iLJ +kdz cuP cuP -awT +wCy kcw kcw -iLJ +kdz aKk bdA bbj @@ -48098,16 +48101,16 @@ aac aac aac bwp -bae -bcF -bfm -bhI +mmi +uuD +alt +iDQ csm -bos +srI coB bwp -bxE -bkx +pWX +szl bwp bwp bwp @@ -48125,14 +48128,14 @@ tIl aac aac rOB -eBr -oeT -bFv -eBr +kNR +sPB +tou +kNR dOO -qTV +iEw qKx -ibE +qAq sbW boG blJ @@ -48155,16 +48158,16 @@ btq jww tWY hYc -wrv +vrU npX -qLp +xUc hYc sgG sPc xDu -nQk +qDF ubN -tRC +onj sgG nJK nJK @@ -48244,9 +48247,9 @@ aac aac cmo gDg -uGH -uGH -dTN +uVb +uVb +wdl cmo anb amj @@ -48263,19 +48266,19 @@ aac aac aac adS -dcX -bUV -bRw +jQT +gFy +xNp vPi -bXi +sHA asl -atz +eSU cuP cuP -foN -iLJ -iLJ -iLJ +uCb +kdz +kdz +kdz aKk bgh bbj @@ -48296,13 +48299,13 @@ bwp coB bcI coB -bhQ +gse cwe -bot +wlh cfR cfR -bxF -bAL +pqr +bNY bwp aac aac @@ -48320,14 +48323,14 @@ tIl aac aac rOB -bFv -yde -bFv -bFv +tou +oqt +tou +tou dOO -vtl +roj opg -xJb +eFc dOO boH blJ @@ -48348,17 +48351,17 @@ btv btv btv btv -kNZ -tdn -xKr +teo +mkk +rKY oPz -nIf -sGR -pLE +hUi +wru +jfm sgG sgG vxd -hOw +ipH vxd sgG nJK @@ -48463,12 +48466,12 @@ pRj vPi aqk ark -asm -bTb +jHt +bOr cuP cuP -foN -iLJ +uCb +kdz aIz aJp aKl @@ -48490,14 +48493,14 @@ aac aUn cqr cqQ -chX -bhQ +dNI +gse csm -bou +dbM coB bZj -bhD -bkx +oJq +szl bwp bwp bwp @@ -48520,9 +48523,9 @@ aac aac aac rOB -rjn +lWM khh -vtl +roj dOO boI bpw @@ -48543,7 +48546,7 @@ btv btv btv btv -ezl +xwT qot qot fIG @@ -48551,8 +48554,8 @@ vwC cAt cAt iBM -qvJ -tBw +yin +bRC qfC vye sgG @@ -48635,7 +48638,7 @@ aac cmo cmo wYx -tmw +wLI uNi cmo anb @@ -48658,12 +48661,12 @@ pRj vPi aql ark -bXi -oLz +sHA +vKv cuP -foN -foN -iLJ +uCb +uCb +kdz baT bfa bbj @@ -48685,12 +48688,12 @@ bgh aUn cqr cqQ -chX -bhQ +dNI +gse cwe -box -brx -buT +ger +itf +yew cqH csm bGa @@ -48738,18 +48741,18 @@ aac aac btq btq -kNZ -tRC -tRC +teo +onj +onj hUJ -vrH -tRC -tRC +rjb +onj +onj hUJ -vrH -vlG -vlG -srQ +rjb +eyX +eyX +vvO eqO nJK bxy @@ -48830,7 +48833,7 @@ aac cmo tEC wYx -dTN +wdl wYx cmo anb @@ -48848,17 +48851,17 @@ aac aac aac adS -ans -bUY -sDs +iOp +bFJ +mrO aqm ark -bXi -bTb +sHA +bOr cuP -foN -awW -ayA +uCb +jBQ +jbj baU aJV aZK @@ -48880,12 +48883,12 @@ bdA aUn cqr aVZ -chX -bhQ +dNI +gse bkz -boy -crq -bru +xrX +gMC +nQz ctA bAM bGb @@ -48935,17 +48938,17 @@ aac jww tWY kOr -gFf +wBH hUJ -vrH +rjb gRO -mQE +sxM hUJ -vrH -tRC -tRC -gFf -nWv +rjb +onj +onj +wBH +nUy bjL bdL bdL @@ -49043,15 +49046,15 @@ aac aac aac mIE -ant -bUZ -aps -aqn +kcL +dgY +gXT +eHI arm -bXj -bYb +jDG +ssA auw -iPd +pHa aHj bcB aIC @@ -49075,15 +49078,15 @@ tWf aUx cqr cqQ -crp -crU +ewj +wHo cwe -boz +pdY bwp bwp bwp cfR -bGc +hmD bJG bwp aac @@ -49130,17 +49133,17 @@ aac aac aac ibH -gFf +wBH hUJ -vrH -vlG -tRC +rjb +eyX +onj ava oVR qot qot qot -kUi +edR bxc bxc bxc @@ -49238,15 +49241,15 @@ aac aac aac amu -anu -bVa -apt -aqo +sdD +wWb +mVV +luJ arn -bXi -bTb +sHA +bOr ukx -foN +uCb aHu aZP aZP @@ -49270,10 +49273,10 @@ aTe vgn aVl bcL -crq -crV +gMC +pfk bkA -boD +jfx bwp aac aac @@ -49325,17 +49328,17 @@ sgG sgG aac oeH -dyZ +xzY tJp -krg -vlG -gFf -tRC -vrH -tRC -rHs -gFf -ayl +vev +eyX +wBH +onj +rjb +onj +hxa +wBH +xuN bxd bdL bdL @@ -49433,15 +49436,15 @@ aac aac aac adS -anv -aou -apu -aqo +pyz +oRK +fxS +luJ arn -bXi -oLz +sHA +vKv ukx -foN +uCb aHu aZP aZK @@ -49466,8 +49469,8 @@ axb aVm bcM coB -bhU -bkB +uYu +xoD bwp bwp aac @@ -49514,22 +49517,22 @@ btq xre aac sgG -vmm -aft -vlG +fgN +dph +eyX vxd vxd vxd mpr -xKw +ijY vxd vxd -jso -vlG -olh -vlG -vlG -srQ +miA +eyX +mAh +eyX +eyX +vvO lTG ben bdL @@ -49628,17 +49631,17 @@ ccd ccd ccd adS -bTa -bTa -bTa +bCJ +bCJ +bCJ aqp -oKV -asn -bTb +xxn +kHg +bOr bYK -foN -bYg -caI +uCb +deP +iyQ aWd aZP aZP @@ -49700,24 +49703,24 @@ blJ bqE bmp bsN -wDq -xTw -fOX +vLA +iyG +nNY btq btq btq btp aac sgG -jVU -oMZ -vlG +iwu +fkl +eyX vxd -tHx -oIi -yhJ +mHX +iDM +vrg epm -hTU +juW sgG iAA qfC @@ -49821,19 +49824,19 @@ aac aac aac bGo -alM -amv -bUx -bVc -bUx -amv -bUx -bVc -atA +uxX +gBh +iTx +uqN +iTx +gBh +iTx +uqN +gxo urM -foN -foN -iLJ +uCb +uCb +kdz aSL aJW aZK @@ -49895,24 +49898,24 @@ blJ bmp bmE bsN -fiD +reI uul -asd +iar btp btq btv btp aac sgG -hOw +ipH vxd vxd vxd -eZw -vlG -vlG +fmF +eyX +eyX hUJ -qBg +hVA vxd bvq qfC @@ -50027,8 +50030,8 @@ ras cuP ukx cuP -foN -iLJ +uCb +kdz aIG aVp aKs @@ -50090,28 +50093,28 @@ bpA bqF brh brU -mFh +jSu gAv rjG -lTX -kwu -lTX -uXI +tVr +gul +tVr +pxG aDQ wio -xZk -xKr -xKr -pWP -mdB -vlG -vlG +rBg +rKY +rKY +pNX +qzX +eyX +eyX hUJ -wZW +knl vxd vxd -hOw -hOw +ipH +ipH vxd sgG sPc @@ -50217,15 +50220,15 @@ anw bJJ bJJ bJJ -foN +uCb cuP cuP ukx cuP -axa -iLJ -aAd -aAd +bBm +kdz +jGT +jGT ccV jjJ ccd @@ -50236,9 +50239,9 @@ baw bbj aac aac -gZP -iLJ -iLJ +bFI +kdz +kdz aSL aZP aZP @@ -50268,9 +50271,9 @@ aac bfg bgJ xdr -gOC +gTN jVg -sXu +cPb okE aac aac @@ -50285,29 +50288,29 @@ bmp bmE bmp bsN -fiD +reI tWJ lbh lbh lbh lbh -jKf +unL aac sgG -ndS -vlG -tRC -vjc -tRC -tRC -tRC -kzD -msC +xsl +eyX +onj +obp +onj +onj +onj +wnA +sJU vxd -iMP -tRC -tRC -gvR +vIE +onj +onj +dDj sgG aac aac @@ -50406,21 +50409,21 @@ aac aac aac nkp -cRw -foN -anx -bVd -cRw -cRw +lkH +uCb +iDG +hMS +lkH +lkH cuP cuP cuP -fxM -foN -foN -foN -azV -aBI +gfe +uCb +uCb +uCb +lJT +wrx jjJ jjJ jjJ @@ -50431,9 +50434,9 @@ baw aPs aac aac -oOB -foN -iLJ +eTO +uCb +kdz aac aWy aZK @@ -50463,9 +50466,9 @@ aac bfg bgI xdr -gOC +gTN fEW -sau +pNc okE aac aac @@ -50480,29 +50483,29 @@ bmp vXt bmp bsN -fiD +reI lbh lbh lbh lbh lbh -jKf +unL aac sgG -vrH -vlG -fMS +rjb +eyX +uyO vxd -tEf -tEf +tBO +tBO uph -odr +tJr vxd vxd -tRC -vlG -vlG -vth +onj +eyX +eyX +wSB sgG aac aac @@ -50607,28 +50610,28 @@ bJJ aov bJJ bJJ -foN +uCb cuP cuP -fxM -foN -foN -foN -foN -ccc -ccW -aDU +gfe +uCb +uCb +uCb +uCb +pjc +yiC +dbb jjJ -cfY -cfY +hci +hci jjJ -cht +kck jjJ ccd ccd jjJ -foN -iLJ +uCb +kdz aac aac aTi @@ -50652,13 +50655,13 @@ aac aac aac fil -iLJ -iLJ +kdz +kdz bfe bfc bgI xdr -rfB +mWk hPK hYl okE @@ -50675,29 +50678,29 @@ bmp bnu bmD bsN -fiD +reI lbh lbh lbh twa hLf -uad +six aac sgG -vrH -vlG -tRC -uqY -aTP -bss -rno -tRC -lFy -ixb -tRC -vlG -vlG -jXD +rjb +eyX +onj +fkf +obs +kEA +cpL +onj +kDH +sGK +onj +eyX +eyX +qbF sgG aac aac @@ -50805,25 +50808,25 @@ kcw cuP cuP cuP -fxM -bZq -foN -bZq -foN -ccc -ccW -aDV +gfe +ydL +uCb +ydL +uCb +pjc +yiC +vLj aEW -foN -foN -aDX -foN -aLB -xqT -aNT +uCb +uCb +exf +uCb +kWX +nrd +rQU jjJ aQK -iLJ +kdz aac aac bgh @@ -50844,17 +50847,17 @@ aZK axb ccs ccs -qsZ +grH cuP -fkw -iLJ -gIL +nDi +kdz +qbh bff bfc bgI xhM xnn -aXs +sHn xdr czb aac @@ -50870,29 +50873,29 @@ blJ bmp bmE bsN -svP -fhW +ink +jqS lbh lbh -fhW -fhW -fhl +jqS +jqS +wTM aac sgG -vrH +rjb fNH -iWi -vlG -vlG -vlG -vlG -vlG -tOA -vlG -vlG -vlG -vlG -jXD +qdt +eyX +eyX +eyX +eyX +eyX +jir +eyX +eyX +eyX +eyX +qbF sgG aac aac @@ -50991,34 +50994,34 @@ aac aac aac ccd -alQ -amz -iPd -aPx -iPd -amz -iPd +lWm +lJQ +pHa +qHS +pHa +lJQ +pHa cuX cuX -bYN -foN -foN -foN -foN -ccc -aCT -aDW +nHI +uCb +uCb +uCb +uCb +pjc +muB +kpC jjJ -aGh +moN aHk arm aKi arm arm -aNV -aPu +nlN +oam fBC -iLJ +kdz aac aac aac @@ -51039,11 +51042,11 @@ aac aDd ccs ccs -qsZ +grH cuP -foN -iLJ -thd +uCb +kdz +oCG bfd bfc bgI @@ -51066,28 +51069,28 @@ blJ tQg brW bsn -wni +iAK lbh -asd +iar vxd vxd vxd sgG sgG -uzj +rAM sly uLK -vlG -vlG -vlG -vlG -vlG -vlG -vlG -vlG -vlG -vlG -jsW +eyX +eyX +eyX +eyX +eyX +eyX +eyX +eyX +eyX +eyX +qeZ sgG aac aac @@ -51188,37 +51191,37 @@ ccd ccd ccd adS -bTa -bTa -bTa +bCJ +bCJ +bCJ aqp -lUm +rtQ cuP cuP -fxM -bZq -foN -bZq -foN -ccc -ccX -cdR +gfe +ydL +uCb +ydL +uCb +pjc +jPK +rph jjJ -cfl -fxM -foN -aKj -cie -ciW -aNW +fjI +gfe +uCb +wVn +rwN +lIY +cvI jjJ aQK -iLJ -aTk -aUE +kdz +gok +npH aWr -iLJ -iLJ +kdz +kdz aSL aZK aZP @@ -51227,18 +51230,18 @@ aZP aZP aZP aUz -iLJ -iLJ +kdz +kdz aac aac aac -ccy -ccy +csS +csS cmX cuP -foN -iLJ -thd +uCb +kdz +oCG bfg bfc bgJ @@ -51261,28 +51264,28 @@ blJ blJ tQg bsN -wni +iAK lbh -asd -pVq -eky -tVP -xOa -iOi -qCv -cUr -dkw -uWP -uWP -uWP -uWP -xKr -tTP -tTP -tTP -uWP -sZP -ihd +iar +oOk +kPp +dZP +gJL +dPJ +eNk +gLi +oXV +iBU +iBU +iBU +iBU +rKY +fIo +fIo +fIo +iBU +bBF +ijs sgG aac aac @@ -51383,37 +51386,37 @@ aac aac aac adS -anz -bVf -imV -aqo -foN +pal +paL +vXG +luJ +uCb cuP cuP -fxM -foN -foN -foN -foN +gfe +uCb +uCb +uCb +uCb jjJ jjJ jjJ jjJ jjJ -aHm +jON jjJ jjJ jjJ jjJ jjJ jjJ -foN -foN -cfY -cfY -cfY -foN -iLJ +uCb +uCb +hci +hci +hci +uCb +kdz aWe bed aZP @@ -51422,18 +51425,18 @@ aYi aRR aRR aZe -iLJ -qmW +kdz +sfd aac ccd cmX fBC -cva -cmZ +rek +jEA cuP -foN -iLJ -thd +uCb +kdz +oCG bfd bfc bgJ @@ -51456,28 +51459,28 @@ blJ blJ blJ bsM -wPI +sYn lbh -asd +iar vxd mpr vxd vxd vxd -eFF -vlG -tRC -puX -xoE -mms -fuZ -qXY -rUQ -xrx -wWK -mms -mms -pwn +jBS +eyX +onj +iDc +uhR +cEh +kqr +tGw +vff +jAm +vCS +cEh +cEh +ovQ sgG aac aac @@ -51578,57 +51581,57 @@ aac aac aac mIE -anA -aox -apw -aqs -aPx +lbp +pLQ +pAr +eQw +qHS cuX cuX -bYN -avJ -foN -ayC -foN -cbp -foN -aDX +nHI +jTw +uCb +syb +uCb +iEX +uCb +exf aEX aGi ukx cuP -iLJ -aNX -bZq -aNX -iLJ +kdz +bQD +ydL +bQD +kdz cuP cuP cuP aUF cuP -foN -iLJ +uCb +kdz aSL aZP aZP bdw aYj -gZP -iLJ -bxI -iLJ -bGk +bFI +kdz +kzP +kdz +lqM aXG -bNm -cva +vKN +rek fBC -cva -cmZ +rek +jEA cuP -foN -iLJ -miL +uCb +kdz +qpX bfh bfc bgJ @@ -51653,15 +51656,15 @@ blJ brW tSi lbh -asd +iar jIz -tRC -tdr -tRC -tRC -vrH -tOA -tRC +onj +bLX +onj +onj +rjb +jir +onj myk pbF efR @@ -51773,57 +51776,57 @@ aac aac aac bUd -anB -aoz -apx -aqt -foN +wSb +hyg +htr +dcz +uCb cuP cuP -fxM -foN -foN -foN -foN -foN -foN -foN +gfe +uCb +uCb +uCb +uCb +uCb +uCb +uCb cuP cuP ukx cuP -aKm +uQS nZR jjJ nZR -lUm +rtQ cuP cuP cuP ukx aWs -cRw -xAp -bcX -bfu -bfu -bkJ -boJ -iLJ -foN -fxM -foN -foN +lkH +lcj +lwv +xKt +xKt +ihI +bUD +kdz +uCb +gfe +uCb +uCb aac bYJ -bRZ +oHb bNS -eFG -exx +wic +iGb cuX -frf -iNf -iLJ +goi +qmi +kdz bfi bgi bgN @@ -51848,23 +51851,23 @@ blJ blJ wfv lbh -asd -vjc -tRC -vlG -vlG -vlG -mBb -vlG -alu +iar +obp +onj +eyX +eyX +eyX +tzZ +eyX +vDl vxd pJz erq erq hkn -vlG -vlG -gfd +eyX +eyX +qdu pJz erq pZe @@ -51972,7 +51975,7 @@ adS adS adS adS -lUm +rtQ cuP cuP fzz @@ -51987,41 +51990,41 @@ cuX cuX cfZ cuX -aPx -aNZ -aMP -aNZ -aPx +qHS +xgq +gRY +xgq +qHS cuX cuX aTn urM sMj aYm -bal -foN -foN -foN -fxM -foN -foN -foN +nNS +uCb +uCb +uCb +gfe +uCb +uCb +uCb ukx cuP cuP -cva +rek bNR bSa bNR bJJ bNR cuP -fxM -foN -iLJ -iLJ -iLJ -tUO +gfe +uCb +kdz +kdz +kdz +fjt bhk bfd bfc @@ -52043,15 +52046,15 @@ blJ blJ wfv lbh -asd -vjc -tRC -hOD -tRC -tRC -tRC -tRC -uCI +iar +obp +onj +xiO +onj +onj +onj +onj +gkg vxd ulL xLH @@ -52167,7 +52170,7 @@ aac aac djW djW -bWD +pKW tqG cuP cuP @@ -52182,11 +52185,11 @@ cuP cuP cuP cuP -aKm +uQS nZR jjJ nZR -lUm +rtQ cuP cuP cuP @@ -52204,19 +52207,19 @@ cuX cfZ cuX cuX -eFG +wic bNS -bSd +upU fBC -cva +rek cna cuP fzz -iPd -iPd -iPd -iPd -tYB +pHa +pHa +pHa +pHa +pzx bhr bkI bfd @@ -52238,23 +52241,23 @@ blJ bsu vnV lbh -asd +iar doO vxd vxd -qfM +cgL vxd vxd -tEf -tEf +tBO +tBO sgG sgG sgG sgG sgG -dFU -bYG -dtt +sgV +oqS +fZU sgG sgG sgG @@ -52362,26 +52365,26 @@ aac aac djW djW -aro +qrc gCa tqG cuP cuP cuP -ayD -ayD +qXL +qXL cuP cuP -ayD -ayD +qXL +qXL cuP cuP cuP -iLJ -aNX -bZq -aNX -iLJ +kdz +bQD +ydL +bQD +kdz cuP cuP cuP @@ -52410,8 +52413,8 @@ cuP cuP cuP cuP -foN -uaC +uCb +eoS bhs bgi biE @@ -52431,13 +52434,13 @@ blJ blJ blJ bsM -vUp +oxN lbh -asd -pVq -vsL -jMV -jMV +iar +oOk +xYd +sdi +sdi vxd aac jrw @@ -52447,9 +52450,9 @@ lmV lmV lmV sgG -hOw -hOw -hOw +ipH +ipH +ipH ghi lmV lmV @@ -52557,25 +52560,25 @@ djW djW djW aAR -uko +iFl tqG tqG tqG cuP cuP -ccc -ccc +pjc +pjc cuP cuP -ccc -ccc +pjc +pjc fAb cuP aIQ oKo -aKB -aKB -aKB +uiu +uiu +uiu oKo oKo ras @@ -52594,24 +52597,24 @@ cuP cna cuP cuP -cva +rek fBC -cva +rek fBC -cva +rek fBC cuP fAb cuP cuP cuP -foN -uaC -iLJ -iLJ -iLJ -tyh -tyh +uCb +eoS +kdz +kdz +kdz +iAX +iAX aac koj koj @@ -52626,13 +52629,13 @@ blJ blJ blJ bsN -wni +iAK lbh -asd -pVq -itG -xeo -nCJ +iar +oOk +lzU +rru +xgg vxd aac uiE @@ -52752,18 +52755,18 @@ djW djW aAR aAR -aro -uko -dXV -mrG -avK -foN -ccc -aAe +qrc +iFl +lit +rHp +sCb +uCb +pjc +vYK tsX tsX -aDY -ccc +lgl +pjc cuP lqD aIQ @@ -52771,7 +52774,7 @@ oKo aLF dgB dgB -aPy +fWL oKo aRV ras @@ -52789,7 +52792,7 @@ cuP bxJ cuP cuP -cva +rek bOj bSD ccH @@ -52800,13 +52803,13 @@ fAb iUw mjJ cuP -foN -fxM -xAp -foN -foN -jjw -foN +uCb +gfe +lcj +uCb +uCb +khA +uCb aac aac aac @@ -52821,13 +52824,13 @@ bmE blJ bmp bsN -wPI -xje -gRK +sYn +tPR +uMm vxd vxd -tEf -tEf +tBO +tBO vxd aac pYM @@ -52972,8 +52975,8 @@ blb blb bfv blb -aYw -bao +jTj +oWd blb bfv blb @@ -52982,13 +52985,13 @@ blb blb blb vlm -mGA -riS -mKv +ebe +uWC +nIO itw -bSE -miR -cjG +rxh +qAo +gyV fBC cuZ cuP @@ -53002,8 +53005,8 @@ cuP syU uKj btH -iLJ -uNQ +kdz +jRi aac aac bmr @@ -53130,7 +53133,7 @@ aac aac aac bLj -hJT +mnn ayv ayw aHh @@ -53156,34 +53159,34 @@ aDZ dgB dgB oKo -aIS -aKn -aLH -aIV -aIV -aPz -aQP +sGx +wtA +qgw +tQN +tQN +bSR +tAb aRW aTp aUK blb -aYx -baq +srz +fFs blb bfw bhV bkO -boL -brB +xWJ +hmH blb -bxL -bAR -rUn -bJV -vmI -oOB -nUX -cjG +jSa +vho +iJF +nyR +qfB +eTO +jvv +gyV fBC cuP fBh @@ -53197,8 +53200,8 @@ cuP syU uKj qMH -gTk -foN +cOi +uCb aac aac bmu @@ -53310,7 +53313,7 @@ aac aac rKG rKG -buc +cLR rKG rKG aac @@ -53325,7 +53328,7 @@ aac aac aac bLj -hJT +mnn ayw azZ awJ @@ -53343,44 +53346,44 @@ djW djW wmZ dgB -jmP -aAg +oll +eLm aPH aPH -aEa -jmP +qzp +oll dgB oKo -aIV -aUV -aUV -aUV -aOb +tQN +kEE +kEE +kEE +tMr blb blb blb bfx bfx blb -aYB -bar +xJU +tVW blb bfx bfx blb blb -brD +usB blb -bxM -bAT -bCq -bJW -vmI -bSI -nUX -cjH +uox +xax +nYA +hrY +qfB +uqI +jvv +tXq fBC -cva +rek fBC iZI cuP @@ -53392,8 +53395,8 @@ cuP rdm qTD nZR -pEY -foN +eLS +uCb gEo aac bmy @@ -53504,9 +53507,9 @@ aac aac aac rKG -bsS -cjq -bvt +mWu +epY +iTC rKG aac aac @@ -53520,7 +53523,7 @@ aac aac aac bLj -hJT +mnn awA ayw awJ @@ -53538,44 +53541,44 @@ aHh awJ avL dgB -jmP -jmP +oll +oll dgB dgB -jmP -jmP +oll +oll dgB -aHo -aIV -aUV -aUV -aUV -aOc -aPB -aQQ -aRX +mcO +tQN +kEE +kEE +kEE +uBn +xnl +gzo +uEx bfy bfy -bda -aYB -bar -bda +eqg +xJU +tVW +eqg bfy bfy -bda -boN -bsk +eqg +qVy +wev vlm -bxN -bAT -bCq -bJX +wvS +xax +nYA +xQp vlm -foN -nUX -cjI +uCb +jvv +sYk cnb -cvb +uGm fCE cuP cuP @@ -53587,8 +53590,8 @@ cuP syU nZR nZR -eqS -foN +ujQ +uCb gEo blo bpw @@ -53699,9 +53702,9 @@ aac aac aac rKG -abt -bud -abK +uwr +eZj +nXu rKG aac aac @@ -53733,45 +53736,45 @@ ufG ufG avL dgB -rJz -rJz +ruf +ruf orc dgB -rJz -rJz +ruf +ruf dgB -xvy -aIW -aKp -aJb -aMQ -aOc -aPC -aQR +edG +dYx +nKO +cWE +qzN +uBn +dCO +maZ oKo blb bbq blb -aYw -bat +jTj +uZP blb blb blb blb -boO -bsl -buU -bxO -bAW -bCq -mCx -mqQ -foN -iLJ -oHN -oHN -oHN -mic +sBM +vbM +kYh +dqt +ugh +nYA +wCF +vEb +uCb +kdz +eFm +eFm +eFm +dwV cuP cuP cuP @@ -53780,10 +53783,10 @@ urM cuP cuP cuP -mEL -iLJ -iLJ -foN +rmD +kdz +kdz +uCb gEo blo bmA @@ -53894,9 +53897,9 @@ aac aac rKG brG -chS -chS -chS +gPc +gPc +gPc brG rKG rKG @@ -53935,38 +53938,38 @@ dgB dgB irx aGl -xvy -aIX -aKq -aIV -aMW -aOc -aPC -aQV +edG +pKQ +gFg +tQN +diJ +uBn +dCO +fzv oKo -aTs -aUM -aWE -aYD -bau -bdb -bfz -aTz -bkP -boP -bsq -buV -bxP -bCq -bCq -bKa -bOE -foN -foN -foN -foN -iLJ -mjt +jJR +cYI +qSv +lRf +gGS +tPW +toh +iCC +kBF +uzx +nYo +sUi +pzG +nYA +nYA +qak +coK +uCb +uCb +uCb +uCb +kdz +nNj cuP cuP cuP @@ -53975,10 +53978,10 @@ ukx cuP cuP lqD -mEL -foN -foN -foN +rmD +uCb +uCb +uCb gEo blo bmA @@ -54122,53 +54125,53 @@ aAR djW djW aNu -oBn +xaq aHv -oBn +xaq szb -jmP -jmP +oll +oll oKo aNu aHv aUS -aUV +kEE dgB -aMW +diJ aOd -aPC -aQW +dCO +hkS oKo -aTt -aUN -aUN -aUN -baV -aUN -aUN -aTy +mbg +kpc +kpc +kpc +smj +kpc +kpc +vXu ghV -boQ -vtz +kFD +hhj vlm -bxT -mCx -mCx -bKb +ksN +wCF +wCF +mTg vlm vlm vlm -cjN -cjN +qto +qto vlm vlm jhl -foN -oRm -qNS -utn -xBT -xqv +uCb +uxU +lEf +dlr +ogi +dpd pRj pRj vtM @@ -54316,59 +54319,59 @@ ayw aHh aHh aAR -xvy -axc -ayE -aAh +edG +xZK +wKe +wQs aHv -aCU -aCU +xka +xka aHv aHv -aHq -aIZ -aIV +pRM +shE +tQN dgB -aMW +diJ aOd -aPD -aQX +fep +sWN oKo -aTu -aUN -aWF -aWH -baN -bdd -aUN -bhZ +opJ +kpc +sOA +sSB +jNK +ggN +kpc +phA vlm vlm -bst +oSI vlm -bUv -bTF -bTF +gjO +euG +euG vlm vlm -bSN -cdC -cjO -cnc -cvc -jkp -aFk -iLJ -foN -cva -uvz -cva -cva -ybN -jWi -bdU -ulv -ybN +tMw +izt +lsY +wvr +hbB +wtY +svM +kdz +uCb +rek +jLR +rek +rek +igf +iCz +bMs +mtw +igf aGf aGL bmD @@ -54512,58 +54515,58 @@ awJ aAR aHh avN -axd +mxH qcO dgB roI dgB dgB roI -aGm -aHr -aUV +uHT +fBy +kEE dgB -aIV -aMX -aOe -aPE -aPE -aRZ -aUN -aUN -aWG -aYB -bar -bde -aUN -bib -cvl -bsv -bsv -buW -bxV -bBB -bGq +tQN +gzv +pYn +sPe +sPe +thO +kpc +kpc +cVD +xJU +tVW +kZk +kpc +pPd +nfm +dBg +dBg +ykt +nxr +fpd +rYN vlm che vlm cdD -cjP -cnd -cvd -fMk +vRp +iDm +uRw +lqB jjJ -aGc -foN -cva -uvz -cva -cva -ybN -aot -kuB -uJY -ybN +wCe +uCb +rek +jLR +rek +rek +igf +pEk +vRy +csJ +igf blp aGP bmE @@ -54674,9 +54677,9 @@ aac aac rKG heO -chS -chS -chS +gPc +gPc +gPc heO cpV tNr @@ -54688,7 +54691,7 @@ gOL gOL gOL bim -hJT +mnn awA awJ awJ @@ -54706,59 +54709,59 @@ awJ aHh awJ aAR -xvy -haN +edG +fpr ayF ouB aBM cAw ouB ouB -aGn -aHs -aJb +gin +lVg +cWE ouB -aLO -aMY -aOf -aPF -aPF -aSb -bfD -bfD -aWH -aYE -baQ -aWH -bfD -bii -bkY -bsw -bsw -bsw -bxX -bBT -bGr -bKc -bOp -bKc +jaQ +mYF +nwW +qwf +qwf +bGF +vEC +vEC +sSB +mIL +uew +sSB +vEC +hsc +mLJ +dbN +dbN +dbN +uAW +ddx +ged +wIX +qVt +wIX cdD -cjQ +jVG vlm vlm vlm jjJ jjJ -oRm -qNS -uxu -xFR -hEF +uxU +lEf +mCa +sZI +jze pRj pRj -rSE -ant -ybN +gIZ +kcL +igf bkU blq bmF @@ -54869,9 +54872,9 @@ rKG bUX rKG cpV -abu -bap -baL +nJl +ech +ddj cpV cpV cpV @@ -54883,7 +54886,7 @@ txs txs txs ccj -hJT +mnn awJ awJ awJ @@ -54902,58 +54905,58 @@ brT ayw brT aHv -axe -wsj -qJi +psY +uXM +kmm dgB dgB dgB aEY aGp -aHt -aJc -aIV +sAP +dZY +tQN dgB -aMW +diJ aOd -aPG -aQY +uwW +tFS oKo -aTy -aUN -aWG -aWG -baR -bdg -aUN -bij +vXu +kpc +cVD +cVD +lOg +ldN +kpc +wCE blb blb -bsx -buX -bye -bBU -bGs -bGs -bOw -bST -bGs -cjR -cne -cve -neL -cve -mnq -foN -foN -uBz -xGb -iPd -lzT -aqn -vvR -axu -ybN +sIX +hih +ehw +cBf +eFP +eFP +iVz +tBW +eFP +pqC +rLy +cML +wGL +cML +wFb +uCb +uCb +trF +kHe +pHa +rKF +eHI +pSk +fGp +igf bkU aGP bmG @@ -55056,21 +55059,21 @@ cdo aOD acQ aam -cjq +epY baH -bld -bmt -yah -csk -cjq -cjq -yah -aby -cjq -bmt -cjq -cjq -adi +nfH +wiD +iiG +xDi +epY +epY +iiG +hlW +epY +wiD +epY +epY +lbC txs txs gOL @@ -55078,7 +55081,7 @@ gOL gOL txs ccj -hJT +mnn awA awJ ayw @@ -55101,50 +55104,50 @@ aHv oWQ aAj orc -bXq +rSW dgB aOa aJd aHv oKo -aUV +kEE dgB aMZ aOd -aPC -aQR +dCO +maZ wmZ -aTy -aUN -aUN -aUN -baS -aUN -aUN -bik +vXu +kpc +kpc +kpc +xFw +kpc +kpc +kye blc -boU -bsy -buY -byv -bBV -bBV -bBV -bBV -bBV -bBV -cjS -bBT -bTF +gDV +vPw +rDe +rnR +dRC +dRC +dRC +dRC +dRC +dRC +pkF +ddx +euG cdG -bTF -mnq -foN +euG +wFb +uCb qMF uJn xGi -foN -iKW +uCb +oGr pRj pRj adS @@ -55251,20 +55254,20 @@ ced cdo aam seb -xzL +mjh cdo rKG rKG rKG bUX rKG -cjq +epY cpV cpV cpV cpV cpV -uZh +rEs dWm dWm dWm @@ -55294,11 +55297,11 @@ aAR aHv axf ayF -aAk +kwm aBO -bXq +rSW ajW -aUV +kEE aGr dCb oKo @@ -55306,46 +55309,46 @@ aKx dgB aMZ aOd -aPC -aQZ +dCO +frK wmZ -aTz -aUR -aYw -aUN -baV -aYw -bfF -bil +iCC +olJ +jTj +kpc +smj +jTj +gQt +hnZ blb -boV +xKE bsz -buZ +iZW cdD vlm cdT -bTF -bTF -bTF +euG +euG +euG cdG -cjU -cnf -cvf +tAZ +mca +uUV fWs -cvf -mnq -foN +uUV +wFb +uCb cuY ukx ras cuP -xpK +lsZ xuE qTk aac aac aac -blu +dUS bmI bnC boi @@ -55446,20 +55449,20 @@ ced ced cdo nfK -xzL +mjh cdo ced ced ced ced bUX -qPl +vJG fln ced ced ced cpV -uZh +rEs cdA cdA cdA @@ -55489,55 +55492,55 @@ brT aHv axg ayH -aMQ -bXq -bXq +qzN +rSW +rSW dgB -aUV +kEE uWG dCb oKo oKo aLP -aMX +gzv aOd -aPC -aRa +dCO +dgQ wmZ wmZ aUS -aWK -aUN -baV -aYw +wZX +kpc +smj +jTj blb blb blb -boV +xKE blb -bTF -byF -bBX -ryK -ryK -bOx -ryK -bTF -cjU -bBT -bTF +euG +qJm +kly +hRt +hRt +cgs +hRt +euG +tAZ +ddx +euG cdG -bTF +euG vlm -oOB +eTO qOt uRy xKs cuP -hmf +riw wsh iQS -xnZ +vWi oxE aac blv @@ -55641,28 +55644,28 @@ ced cdo cdo aHz -aQB +psw cdo cdo cdo ced ced rKG -cjq +epY cpV cpV fln cpV cpV -bzH +lAR cdA cdA -bDU -aet -aet -nOE -afM -cck +qro +qiF +qiF +yeG +ihq +uMI akR djW djW @@ -55683,58 +55686,58 @@ ayw ayw aHv axg -ayI -aAm -aBQ -aCV -bXq -aUV +xqO +fmg +lxO +gMJ +rSW +kEE vBs dCb oKo oKo aLQ -aMX +gzv aOd -hHO -aQQ -aSc -aTA -aUT +sFf +gzo +oLA +vmp +xCk anc aWL bbc aWL aWL -bsy -blh -boY -bsA -fbG -byY -bBY -ryK -ryK -ryK -ryK -bTF -bye -cng -cvg -fXV -jkc +vPw +fLL +hdF +oeL +qSg +ohQ +ppb +hRt +hRt +hRt +hRt +euG +ehw +kog +oAK +kUe +pVM ghV -oOB +eTO qQq uRy xKD cuP -wzZ +lgP wsh iQS -foN +uCb tmi -sRz +wPa blx bmI bnC @@ -55843,21 +55846,21 @@ cdo rKG rKG rKG -yah -cjq -bFg -abL -glG +iiG +epY +xUl +fiz +uEC cpV -uZh +rEs cdA -adB -ccg -ccg -ccg -ccg -dEa -dEa +nEe +pSo +pSo +pSo +pSo +jiC +jiC akR djW djW @@ -55874,62 +55877,62 @@ ayw awJ arr oKo -oBn -oBn +xaq +xaq avP oKo -tuV -aAn -aBR -aCW -aIV -aFb +xED +jlk +geO +fsx +tQN +taE oKo oKo oKo oKo oKo -aNa +iUY aOg -aPD -aRb -aSd -aTB +fep +cMN +jRv +lbs oKo aoP -aYG -bbd +lDQ +wgr bfy bfI mZd -bli -bpe +sNV +lRL mZd -bvb -byZ +jFD +hnB vlm -bGx -bKC -bOz +snI +fhk +jju vlm cdT -cjU -cnh +tAZ +nxM bTD vlm vlm vlm -oOX +uTP qQN uTQ xOs cuP -wzZ +lgP wsh iQS -cRw +lkH cuP -sRz +wPa blz bmK bnB @@ -56031,28 +56034,28 @@ aam abr aam pIa -aaR +oOZ aJn -cjq -cjq +epY +epY cdo -bld -cjq -cjq +nfH +epY +epY rKG rKG bUX rKG cpV -uZh +rEs cdA -adB -dEa -dEa -dEa -dEa -dEa -dEa +nEe +jiC +jiC +jiC +jiC +jiC +jiC akR djW djW @@ -56068,63 +56071,63 @@ ayw ayw aFv oKo -fcB +meU bVM bVM -avQ +srW oKo -ayK +ots aAo aBS dgB -aIV -aUV +tQN +kEE aGr dCb oKo aKy aLR -aMX +gzv aOh aPH aPH aPH aPH -aUU +xHA bfy -aYG -bbd +lDQ +wgr bfy bfJ mZd mZd mZd mZd -bvc -bza -bCf -bCf -bKD -bCf -cyH -buY -cjV -cni -cvl -bTF -bTF -mqQ +xRY +lEi +exj +exj +wfy +exj +pCR +rDe +kMF +uiC +nfm +euG +euG +vEb oqJ xJD ukx xTZ cuP -wzZ +lgP wsh iQS -jVD +uIZ ras -vhl +dCo blB bmL bnF @@ -56239,15 +56242,15 @@ ced ced akR dWm -uZh +rEs cdA -adB -dEa -dEa -kPL -cch -bJb -agf +nEe +jiC +jiC +nPq +uVW +lkV +kJL akR djW djW @@ -56263,63 +56266,63 @@ ayw ayw ayw kyT -bXq +rSW dgB dgB -bXq -axi -ayL -aAp +rSW +gOi +oSM +pfK ajW dgB -aIV -aUV +tQN +kEE uWG dCb oKo dgB dgB -aNb -aJb -aJb -aJb -aJb +sro +cWE +cWE +cWE +cWE aTC -aUU +xHA biH -blN -bsK +kAY +kHX bdi cik cik -bsG -blN -bsB -bvd -bzb -jsd -bGy -bKL -bOA +wee +kAY +hWh +jtF +kWl +oAI +epP +hdi +sMv vlm -bTF -bye -cng -bkY -buY -buY -bkY +euG +ehw +kog +mLJ +rDe +rDe +mLJ hQq qYm urM cuP cuP -vId +lMy oiV vCl -qMQ -euN -iLJ +poh +sDB +kdz blL bmM bmM @@ -56434,11 +56437,11 @@ ced ced akR cdA -acI +jJT cdA cdA -uqB -uqB +uNw +uNw cdA cdA cdA @@ -56458,17 +56461,17 @@ ayw ayw awJ kyT -bXq +rSW dgB dgB -bXq -ufH -aIV +rSW +nDv +tQN aMZ dgB dgB -aIV -aUV +tQN +kEE vBs dCb oKo @@ -56478,42 +56481,42 @@ aNc aNc aPI aRc -aSe +mKd aMZ -aUU +xHA biH -blN -bsK +kAY +kHX bdi -bfV -biD -bll -bll +dhB +oze +oEL +oEL cik cik cik vlm -cjN -cjN +qto +qto vlm bTD cdT -cjU -cnh +tAZ +nxM vlm -mKv -mKv +nIO +nIO vlm -oWD +xXA cuP ukx xWN -foN -gha -tsz -gha -foN -foN +uCb +sAW +hns +sAW +uCb +uCb eRk blE blJ @@ -56629,15 +56632,15 @@ ced ced akR cdA -cci -xKC -cci -cci -cci -cci -xKC -cci -cci +aGk +iMT +aGk +aGk +aGk +aGk +iMT +aGk +aGk akR bDQ djW @@ -56653,62 +56656,62 @@ ayw awJ aFZ oKo -asq +lvI atE atE -avR +iEi oKo -ayM +kFf aMZ dgB dgB -aIV -aFb +tQN +taE aJd oKo aJd -aKB -aKB +uiu +uiu oKo oKo -aKB -aKB +uiu +uiu oKo -aTD +wqo oKo aWO -blN -bsK +kAY +kHX bdi -bfM +oif biH -blN +kAY biH biH bve cik -bCm -bGD -bKM +xJy +ten +mFC msG -bTE -bTF -cjU -bBT +pOV +euG +tAZ +ddx vlm -jkf -jkf +wgt +wgt ghV -pbC +nRg ras uhF xXi -rwD -xqv -cva -xqv -cva -cva +dpa +dpd +rek +dpd +rek +rek jyO blF blJ @@ -56811,7 +56814,7 @@ cdo aJn cdo bgn -aQB +psw adW aam aam @@ -56824,17 +56827,17 @@ ced ced akR cdA -cci -upO -xyC -xyC -upO -xyC -xyC -upO -cci -ccY -eXK +aGk +haq +fWN +fWN +haq +fWN +fWN +haq +aGk +usu +fmX axk axk axk @@ -56848,62 +56851,62 @@ ayw awJ aAR arr -soD -atF -auA -avS -axj -aIV -aAr -aBT -aBT -aBT -aFc -aGt -aJb -aJe -aJb -aJb -aJb -aOi -aJb -aJb -aSf -aFg -aUV +jge +ciP +fqq +xIG +ivC +tQN +sRJ +jio +jio +jio +eQW +lDe +cWE +jpU +cWE +cWE +cWE +irs +cWE +cWE +pWF +kFB +kEE aWP -aYH -bbf +vsb +rWi biH bfN biI -blO -bpz -bll -bvf +yaS +pNG +oEL +olz cik -bCn -bGH -bGO +vIT +csN +mDZ vlm -bTE -bTF -bye -cng -cyH -gbS -jkp +pOV +euG +ehw +kog +pCR +dkf +wtY mrT -foN +uCb rbi vgW xYw -sOB -xqv -cva -hEF -cva -wxY +kSP +dpd +rek +jze +rek +jMk jyO blJ bnD @@ -56993,20 +56996,20 @@ aab aac aac rKG -glG -yah -cjq +uEC +iiG +epY cdo -cjq -cjq -aKw +epY +epY +hwl aLu -gjP -cjq -cjq -gGX +hYe +epY +epY +eGV cdo -cjq +epY adW aam adC @@ -57019,17 +57022,17 @@ ced ced akR cdA -acJ -mce -adD -aed -ich -aed -eGD -bJg -cci -agQ -eXK +hWp +gRE +aCp +pUy +kqT +pUy +xBM +lgA +aGk +hKD +fmX axk axk axk @@ -57045,15 +57048,15 @@ oKo oKo oKo oKo -auB -avT -aIV -bXq -aAs -aBU -aCY -aCY -aFd +nor +vYG +tQN +rSW +lwZ +gRu +plq +plq +eMr aGu dgB dgB @@ -57067,38 +57070,38 @@ dgB aTE ouB bbs -aYI -bbg +wHn +fOR biH -bfV -biK +dhB +kFj blQ biH -bsC -lbW +gLY +wzz cik -bCo -bGO -bGO -rpA -bTF -bTF -cjU -cnh +mYv +mDZ +mDZ +dkM +euG +euG +tAZ +nxM vlm vlm vlm msG -oRm -rdo -vjZ +uxU +uYc +qaC ydV -foN -fYE -dSV -fYE -hcg -foN +uCb +nRZ +nkt +nRZ +xKv +uCb uDU blK bmS @@ -57189,7 +57192,7 @@ aac aac rKG rKG -aZm +wgf cpV cdo pIa @@ -57201,7 +57204,7 @@ aHz pIa acU cdo -cjq +epY gOo abv aJn @@ -57214,16 +57217,16 @@ ced ahS dWm cdA -bzN -mce -bCL -dUP -wol -wol -bHS -bJg -cci -bKp +vqR +gRE +kNm +qOM +oSJ +oSJ +kbu +lgA +aGk +lfF dWm dWm azT @@ -57235,20 +57238,20 @@ awJ ayw ayw oKo -bVL -aqv -ars -ass +piU +rOc +jMb +kup oKo -bXq -bXq -axn -bXq -aAs -aKr +rSW +rSW +kiD +rSW +lwZ +qUm dgB dgB -aMX +gzv dgB biH biH @@ -57262,39 +57265,39 @@ biH biH biH biH -bsK -blN -bdk +kHX +kAY +kZM cik -blV -blV -blV -blV -blV +ozi +ozi +ozi +ozi +ozi aPm vlm vlm vlm cdD -bTG -bTF -cjU -bBT -cFj -ggH -jmH -vmI -foN -fxM +fmx +euG +tAZ +ddx +imt +xaA +fAD +qfB +uCb +gfe vlm -mKv -mKv +nIO +nIO vlm aGd aGe -foN -iLJ -iLJ +uCb +kdz +kdz blL tQg bmp @@ -57384,8 +57387,8 @@ aac aac aac rKG -bFg -chS +xUl +gPc cdo aam aax @@ -57396,7 +57399,7 @@ aax cZZ cdo cdo -cjq +epY abr aam aam @@ -57408,18 +57411,18 @@ ced ced hmw aiD -acr -acK -upO -meu -mzp -bFl -bGJ -bHT -bJg -cci -cci -eXK +xCK +vlw +haq +iNy +nvy +uaK +wcw +kyF +lgA +aGk +aGk +fmX axk axk axk @@ -57429,67 +57432,67 @@ awJ ayw ayw ayw -xvy +edG gTZ bVM bVM ast oKo -auD -bXq -aIV -bXq -aAt -aBW +jrV +rSW +tQN +rSW +xeH +mEh dgB dgB -aFf +eyc aGw biH -aJf -aKC -aLS -aJf -aOk -aLS -aJf -aKC -blN -blN -blN -bsK -blN -blN -bfO -bll -bll -bpE -bsD -bll -bzc -bCp -bHo -bCp -bOE -bUp -buY -cjV -bBT -bTF -bOE -mCx -mwq -iPd -reS -vmI -qzf -pEo -vmI +bNL +egx +kSM +bNL +kDB +kSM +bNL +egx +kAY +kAY +kAY +kHX +kAY +kAY +exq +oEL +oEL +hlu +wsY +oEL +klL +let +qon +let +coK +lAy +rDe +kMF +ddx +euG +coK +wCF +meX +pHa +dXS +qfB +kne +puL +qfB uzv aNA -foN +uCb cuP -kzc +lwc blM bmU bnI @@ -57579,8 +57582,8 @@ aac aac aac rKG -aaf -chS +uvu +gPc aar aar aam @@ -57600,21 +57603,21 @@ cdo cdo aar aar -cjq -hHm -acd -acs -cci -upO -meu -wol -wol -wol -tUW -bJg -cci -cci -eXK +epY +gvd +omf +qHX +aGk +haq +iNy +oSJ +oSJ +oSJ +gum +lgA +aGk +aGk +fmX axk axk axk @@ -57624,22 +57627,22 @@ awJ ayw ayw ayw -xvy +edG qhp -tlc -art +rxt +via asu -atG -auE -avU -aLO -avU -aAu -aBX +dSZ +xJZ +tgn +jaQ +tgn +sox +lVn ouB ouB -aFg -aGx +kFB +npr aHD aJl aJl @@ -57652,39 +57655,39 @@ aPJ aPJ aPJ aWQ -aYK -bll -blN -bfP -blX -blR -blX -blX -blX -blX -bCq -bHp -bCq -bOE -bUv -bTF -cjU -bBT -bTF -bOE -jrU +wiA +oEL +kAY +oUj +tYo +bIl +tYo +tYo +tYo +tYo +nYA +cUh +nYA +coK +gjO +euG +tAZ +ddx +euG +coK +odE mwt -mGA -riS +ebe +uWC vlm -jUo -tRf -vmI +wen +hAD +qfB ldp riM -foN +uCb ras -iLJ +kdz blL bmV bmE @@ -57786,7 +57789,7 @@ aam aam aam cdo -cjq +epY aam aam cdo @@ -57799,16 +57802,16 @@ eVI baM bmq act -cci -upO -meu -wol -wol -wol -tUW -bJg -cci -bKp +aGk +haq +iNy +oSJ +oSJ +oSJ +gum +lgA +aGk +lfF dWm dWm azT @@ -57819,61 +57822,61 @@ ayw ayw ayw ayw -xvy +edG bVN bWl bWl asv oKo -auD -avV -axp -bXq -bXq -ufI +jrV +pfZ +jew +rSW +rSW +sPz orc dgB -aMX -aGy +gzv +gEg cik -aVn -aKD -aLT -iUN -aKD -aPK -qRj -aKD -aTG -wuE +nTC +uaw +sFE +isy +uaw +pLa +eUC +uaw +cpZ +jkl aWR -aYL -bbk -frL -bfQ -bbk -blS -blS -blS -blS -bzd -bCt -bHq -bCt -bkY -bUI -bTF -cjU -bBT -bTF -bOE -ryK -mxa -ryK -ryK -vmI -vyl -fBY +xqL +eNl +fmP +dmb +eNl +ial +ial +ial +ial +xMV +jJO +sKr +jJO +mLJ +rOC +euG +tAZ +ddx +euG +coK +hRt +sHu +hRt +hRt +qfB +sas +iIn vlm vlm itw @@ -57981,7 +57984,7 @@ aan aam acU baH -cjq +epY aam aam cfH @@ -57991,20 +57994,20 @@ aam cdo onq aar -csk +xDi dWm cdA -acJ -bBg -dUP -wol -wol -wol -bHV -bBg -cci -bLt -eXK +hWp +pIp +qOM +oSJ +oSJ +oSJ +iYq +pIp +aGk +wjN +fmX axk axk axk @@ -58015,62 +58018,62 @@ ayw aHh aAR oKo -apy -bWm -aru -asw +wnx +ygf +svs +oup oKo -bXq -avW -axq -bXq -aAv -aKr +rSW +gqf +gyP +rSW +hkq +qUm dgB dgB -aFi -aGz +fsc +wub cik -blN -blN -blN -blN -aOm -blN -blN -aOu -blN -taa +kAY +kAY +kAY +kAY +qrQ +kAY +kAY +vMU +kAY +qPW aWR -bll +oEL oSV -bdp +ovC cik -biT +cyV cik cik vlm -mKv -mKv +nIO +nIO vlm eSx eSx eSx bUJ vlm -cjW -bBT -cKc -bOE -ryK -mxu -pkG -rkq +vAB +ddx +txi +coK +hRt +eOR +vKb +saz vlm -mow -jam -svg -cUu +rcT +nto +tFp +qcH vlm gAD efT @@ -58176,7 +58179,7 @@ aas cdo cfH cdo -cjq +epY aan aam ahn @@ -58189,17 +58192,17 @@ cdo ced akR cdA -acL -bBg -lUu -bGM -aeu -bGM -afh -bBg -cci -bLt -eXK +cXt +pIp +kiS +hnm +xRz +hnm +dgL +pIp +aGk +wjN +fmX axk axk axk @@ -58215,57 +58218,57 @@ oKo oKo asx oKo -bXq -avX -axr -ayN -aAw -aBY -aEb -aEb -aMX -aGA +rSW +jSy +cPY +suW +rKr +uiI +mhf +mhf +gzv +hMY cik -bll -bll -aLU -bll -bll -bll -bll -bll -blN -aUZ +oEL +oEL +pEx +oEL +oEL +oEL +oEL +oEL +kAY +nDo aWR -bll +oEL oSV -bdq +mDa cik -biU -blT -bpF -mnq -bvh -bzf +fPU +xMq +kLN +wFb +dvE +gNX eSx -bHr -bKO -bOF -bUK -ceG -cjU -cnf -bTF -ghM -ryK -ryK -plC -ryK -vnC -tZV -fBY -voe -voe +raz +kni +bqT +gVg +jtM +tAZ +mca +euG +eFX +hRt +hRt +reZ +hRt +gmX +vOa +iIn +eBH +eBH vlm ltZ wgI @@ -58371,7 +58374,7 @@ abs aam aam baH -cjq +epY bgn aar aJn @@ -58384,15 +58387,15 @@ aar ced akR cdA -acJ -bBg -dUP -wol -wol -wol -bHV -bBg -cci +hWp +pIp +qOM +oSJ +oSJ +oSJ +iYq +pIp +aGk dWm dWm djW @@ -58407,20 +58410,20 @@ djW djW djW ijo -arv -asy +sQN +kqn ijo -auF +dcg ijo aHv -oCc -oCc -fyU -scp +oeo +oeo +izZ +irH oKo -aMX +gzv dgB -bfM +oif biH jxc jxc @@ -58428,46 +58431,46 @@ jxc aOn jxc biH -bll -aTH -aVa +oEL +qLk +szf aWR -bll -bbl -bvl +oEL +lpM +umd cik -biV -blU -bpG -mnq -bTF -bTF -bCv -bHs -bKP -bKR -cvf -ceG -cjU -bBT -cLE +god +xpE +dkz +wFb +euG +euG +qlg +evz +sYv +rqR +uUV +jtM +tAZ +ddx +grj ghV -jyE -mGA -ptr -mGA -vnC -tZV -vyl -vyl -eOc +xIL +ebe +gZH +ebe +gmX +vOa +sas +sas +iFw vlm vlm vlm vlm -vvp -dnz -sDE +xgv +cxF +trU che che che @@ -58560,8 +58563,8 @@ aac aac rKG cpV -cjq -cjq +epY +epY cpV abN aam @@ -58579,15 +58582,15 @@ aar ced akR cdA -acM -mce -meu -wol -wol -wol -tUW -bJg -bKn +pKR +gRE +iNy +oSJ +oSJ +oSJ +gum +lgA +qew akR cdA cdA @@ -58602,72 +58605,72 @@ djW djW djW ijo -bZD -asz -ccn -cdZ -avY -axt -bXq -bXq -bXq -bXq -aEc -aMX -aUV +wvU +oyl +wYc +pIq +nyX +ulg +rSW +rSW +rSW +rSW +gDf +gzv +kEE cik -aJm -aKG -aLW -aNf -aOo -aPL +epM +xrF +uWn +tgQ +wqU +cqX aRf -aYO -aTI -aUY +xAb +wER +udC aWR -aYO -aYK -bds +xAb +wiA +dps bfS -biV -blU -npy -mnq -bvj -bzg +god +xpE +iUM +wFb +dns +fgj eSx -bHy -mxu -bOG -bOG -ceY -cjX -cng -oWt -giq -bTF -bTF -bUv -bTF +oYJ +eOR +hqa +hqa +gIu +oIA +kog +fOW +fEP +euG +euG +gjO +euG vlm -xAF -voe -voe +ebr +eBH +eBH vlm vlm -ixQ -vtp -vYD -vtp -ykU -cGL -vYD -vtp -sip -vtp -nFN +vot +wHI +ifj +wHI +kQr +oee +ifj +wHI +smQ +wHI +dYM che aac aac @@ -58754,14 +58757,14 @@ aac aac aac rKG -aXZ -yah -cjq +cwV +iiG +epY cpV -aaz -csG +sZM +eYq aar -cjq +epY aan cdo cfH @@ -58774,15 +58777,15 @@ ced ced akR cdA -biC -mce -meu -wol -wol -wol -tUW -bJg -cci +ppu +gRE +iNy +oSJ +oSJ +oSJ +gum +lgA +aGk cdA cdA cdA @@ -58797,72 +58800,72 @@ aHh djW djW ijo -arw -asA -gAm -cdZ -avZ +mDM +jSf +gaU +pIq +vGC aHv -aGx +npr oKo oKo oKo oKo -ceI -cdZ +ryp +pIq cik -aJo -aOu -blN -aTU -blN -aeX +rqk +vMU +kAY +rWS +kAY +dmq aRf -bll -bsK -aVc +oEL +kHX +gWt aWR -bll +oEL oSV -bdt +mrK cik -biW -blV +hZW +ozi cik cik cik bzh eSx -bHA -bKR -bKR -cvf -ceG -ckx -cnj -cOR -bGs -bGs -bGs -ppC -bGs -vnI -kbS -vCN -vCN -mfv -cyH -mqs -maP -mqs -mqs -mqs -mqs -mqs -mpm -quT -vtz -vtz +gtM +rqR +rqR +uUV +jtM +uuY +lut +rRN +eFP +eFP +eFP +ygl +eFP +nAt +tYv +kol +kol +evR +pCR +nIE +uBR +nIE +nIE +nIE +nIE +nIE +wOu +utk +hhj +hhj che aac aac @@ -58950,12 +58953,12 @@ aac aac rKG cpV -cjq -aZn -cjq -cjq -cjq -cjq +epY +qgb +epY +epY +epY +epY aar aam bgn @@ -58969,15 +58972,15 @@ ced ced akR cdA -bdm -mce -meu -bfn -bFl -bhA -bHT -bJg -cci +srH +gRE +iNy +hZH +uaK +oDj +kyF +lgA +aGk cdA awU ajN @@ -58991,73 +58994,73 @@ awJ aAR aHh aHh -cea -arx -asB -atJ -cdZ -awa +tiQ +jFn +xWU +qwF +pIq +sId aHv -aGx +npr oKo -aBZ -aDe +oEH +roV oKo -ceI +ryp aGC cik -tCI -tCI -tCI +fRF +fRF +fRF aNh -blN -aPN +kAY +gAb aRg -bll -aTK -aVa +oEL +qUA +szf aWR -bll -bbm -frL -bfU -biX -frL -bpH -bsG +oEL +qcs +fmP +loY +jKk +fmP +efQ +wee cik bzh eSx -bHB -bKS -bOH -bVF -ceG -ckz -qxt -cnk -cnk -jAE -bBV -pOW -jAE -voe -vyl -vyl -vyl -tZV +wyD +fhP +hgq +bun +jtM +kiE +wEY +lvm +lvm +iPp +dRC +oOP +iPp +eBH +sas +sas +sas +vOa vlm -hvj -bGd -xlP -xlP -eLQ -xlP -xlP -bGd -rLg -vtz -vtz +oXE +jZk +vJd +vJd +eWH +vJd +vJd +jZk +wCw +hhj +hhj che aac aac @@ -59144,12 +59147,12 @@ aac aac aac rKG -aXZ -aQB -aKw +cwV +psw +hwl aam -aQB -cjq +psw +epY aas aam aam @@ -59164,15 +59167,15 @@ ced ced akR cdA -cci -mce -adE -dUP -wol -wol -afi -bJg -bKp +aGk +gRE +czX +qOM +oSJ +oSJ +kdp +lgA +lfF cdA awX axm @@ -59186,40 +59189,40 @@ aAR aCQ aHh aHh -cea -bWK -ceI -cdZ -cdZ -awc +tiQ +uvN +ryp +pIq +pIq +uKe aHv -bXq +rSW oKo -aCa -bXq +qxu +rSW aUS -aFl +etm cfA -bfU -blS -bbk -aLZ -bfV -blN -aPO +loY +ial +eNl +qAl +dhB +kAY +bGi aRf -bll -bsK -aUY +oEL +kHX +udC aWR -bll +oEL oSV -aLS -bfV -blN -blX -bpI -bsH +kSM +dhB +kAY +tYo +xAe +cHG cik bzh vlm @@ -59230,17 +59233,17 @@ eSx vlm bCz bCz -cRB +oqg bCz bCz -bzl -pro +cfk +jkb vlm vlm eSx eSx eSx -mlq +hMw vlm vlm vlm @@ -59251,8 +59254,8 @@ vlm vlm vlm vlm -mGA -riS +ebe +uWC vlm vlm vlm @@ -59340,13 +59343,13 @@ aac aac rKG cpV -aQB -aap +psw +jLq abv -cjq -cjq +epY +epY adK -cjq +epY aam cdo seb @@ -59356,22 +59359,22 @@ cdo aam aam ced -hHm +gvd dWm cdA -bzM -mce -adF -eIR -bFs -eIR -afj -bJg -cci -bOV -cci -cci -bOV +lUS +gRE +pFw +rQi +mtd +rQi +gln +lgA +aGk +hqH +aGk +aGk +hqH ayw ayw ayw @@ -59384,72 +59387,72 @@ gLF ijo ijo jEB -bYk +eOA ijo ijo aHv -ayS +cvi oKo oKo -ayS +cvi oKo -ceI +ryp cfx aPm aJr oSV -bll -bfV -blN -aPP +oEL +dhB +kAY +oFY aRf -bll -bsK -aVd +oEL +kHX +qgA aWR -bll +oEL oSV -bdu -bfV -biZ -blX -bpI -bsI +iOw +dhB +dWS +tYo +xAe +vsj cik bzh bzh bzh bzh bvK -bWk -ceZ -ckA -cnw -cfg +fCk +iva +tnm +emU +wjD bCz -jEW -bWZ -ckG +lBE +fwe +taG vlm -vsd -aBp -aBp -kRY -gfC +yhb +tMc +tMc +win +oNz vlm vlm vlm vlm vlm -xjH -nsB +nKh +kPf vlm -gbU -gOu -vtz -vtz -qeI -fkK +hNS +pum +hhj +hhj +pwa +fQz vlm aad aad @@ -59534,9 +59537,9 @@ aac aac aac rKG -aXZ -aKw -cjq +cwV +hwl +epY cpV pIa pIa @@ -59550,23 +59553,23 @@ cdo ced aam aar -cjq +epY hmw -bwR -uZh -cci -upO -ucl -ucl -upO -ucl -ucl -upO -cci -cci -cci -cci -cci +taT +rEs +aGk +haq +rci +rci +haq +rci +rci +haq +aGk +aGk +aGk +aGk +aGk ayw ayw ayw @@ -59575,76 +59578,76 @@ aCR ijo ijo ijo -aAF -atJ -ary -bXv -gAm -auH +vcU +qwF +fRT +nOC +gaU +xng ijo -cdZ -cdZ -aAz -ccn -cdZ +pIq +pIq +ffH +wYc +pIq ijo -aFl +etm cfy cik aJs aKK -bll -bfV -aOq -aPQ +oEL +dhB +orx +kKt aRg -bll -aTL -aVa +oEL +xiq +szf aWR -aYP -bbo -bdv +dqq +hUk +wVy cik -bja -blX -bpJ -blN -bvk +qLE +tYo +lag +kAY +jEH aPm cik cgT cik aPm -bWk -cfg -ckB -cfg -cfg +fCk +wjD +ntA +wjD +wjD bCz -loP -bzl -ckH +orq +cfk +ltW vlm -vsZ -ryK -ryK -nST -qON -voe -rUn -nEU -xmR +cPk +hRt +hRt +nMA +fZG +eBH +iJF +stP +dAo vlm -mCx -rMP +wCF +tSB vlm -gbU -hGd -vtz -vtz -vms -fkK +hNS +dTQ +hhj +hhj +qxI +fQz vlm aad aad @@ -59652,8 +59655,8 @@ aad aad iwH iwH -mrz -mrz +uvd +uvd iwH iwH iwH @@ -59730,8 +59733,8 @@ aac aac rKG rKG -aZn -glG +qgb +uEC cpV aag pIa @@ -59745,19 +59748,19 @@ cdo aHz seb wgB -csG -abM -bwR -uZh -bzN -adj -cci -cci -cci -cci -adj -cci -bKp +eYq +cqs +taT +rEs +vqR +kTN +aGk +aGk +aGk +aGk +kTN +aGk +lfF cdA awY axv @@ -59768,77 +59771,77 @@ aAR awJ aAR bVV -anC -bVn -gAm -atJ -atJ -bXv -gAm -bWM +spJ +yeC +gaU +qwF +qwF +nOC +gaU +gfx ijo -isj -gAm -gAm -gAm -cdc -cdW -ceI -cfv -cge -bsG +eiT +gaU +gaU +gaU +bBk +mWA +ryp +nco +tcu +wee oSV -bll -bfV -blN -aPR +oEL +dhB +kAY +yfU aRf -bll -bsK -aVe +oEL +kHX +sNA aWR oSV -bbp -bdv +rqI +wVy bfW -bjb -blY -bpI -blX -blN -bzk -bCw -bHD -bsG +nQj +uqn +xAe +tYo +kAY +pYE +uVH +jGP +wee aPm -bWk -cfp -ckC -cnx -cnx +fCk +erl +haO +wIT +wIT odJ -jJv -bWZ -ckG +qbV +fwe +taG vlm -vtz -xlg -xlg -xlg -gfC -voe -mCx -vyl -ggJ +hhj +gQm +gQm +gQm +oNz +eBH +wCF +sas +vCx vlm -mCx -pSc +wCF +tds vlm -oiF -hGd -vtz -vtz -xnP +hQT +dTQ +hhj +hhj +vNa vlm vlm aad @@ -59846,11 +59849,11 @@ aad aad aad iwH -eek +sSk fZe wDF iwH -eDt +etc iwH iwH aad @@ -59941,14 +59944,14 @@ aHz seb odi baH -csk +xDi dWm cdA cdA cdA cdA -uqB -uqB +uNw +uNw cdA cdA cdA @@ -59962,91 +59965,91 @@ ayw aAR awJ aCQ -cea -cdZ -aoC -gAm -atJ -atJ -bXv -gAm -bWM +tiQ +pIq +uTn +gaU +qwF +qwF +nOC +gaU +gfx ijo -ceI -gAm -gAm -gAm -cdd -cdX -ceI -cfv -cgg -iQt +ryp +gaU +gaU +gaU +bMI +lEC +ryp +nco +nRU +ntH oSV -aMb -bfV -blN -aPR +dWi +dhB +kAY +yfU aRf -bll -bsK -aVf +oEL +kHX +qqE aWS oSV -bll +oEL bfW bfW cik -cgS -bpK -bsJ -biZ +med +vVp +hdy +dWS aPm -bCx -bHE -bLa +gJf +sgx +jnz aPm bCz cft -ckE +ngC bCz odJ odJ -jLY -bzm -pvY +tCc +yfY +eOe vlm -vtz -aBp -aBp -aBp -gfC -voe -diD -vyl -nIS -voe -mCx -nsB +hhj +tMc +tMc +tMc +oNz +eBH +gwa +sas +kyO +eBH +wCF +kPf vlm -gbU -hGd -vtz -vtz -wAj +hNS +dTQ +hhj +hhj +nAI vlm mWF -gFT +mOi aad aad aad iwH -wBj +ptS wXb hwI atI -pYI -rMy +sTD +vNi iwH aad aad @@ -60141,13 +60144,13 @@ akR akR akR cdA -adG -dEa -dEa -aeH -klG -afN -agg +xDc +jiC +jiC +oaZ +vkv +jCp +fLt cdA cdA cdA @@ -60157,81 +60160,81 @@ ayw awJ awJ fwV -cea -cdZ -aoD -gAm -gAm -arz -bXw -gAm -auI +tiQ +pIq +dGr +gaU +gaU +sDu +wIB +gaU +oxS ijo -ceI -cak -cdZ -cdZ -cdc -cdW -ceI -cfv -cgg -aJu +ryp +fjE +pIq +pIq +bBk +mWA +ryp +nco +nRU +kKk oSV -bll +oEL cik -aOt -aPR +cjE +yfU biH -bll -bsK -aVg +oEL +kHX +khI bWH oSV -bll +oEL bdE bfX cik -bsI -bpL -bsK -bvl +vsj +oGG +kHX +umd aPm -bCy -bHF +tzm +bjm bLb aPm -bWw -cfJ +hak +sBP bsW -cnK -cSr -csQ -jWk -bWZ -ckG -rpA -vtz -ryK -ryK -uFT -gfC +kGB +qHE +gVc +eDO +fwe +taG +dkM +hhj +hRt +hRt +pCT +oNz vlm -uLd -dwO -bJV +uDO +vtK +nyR vlm -xjH -nsB +nKh +kPf vlm -gbU -hGd -vtz -vtz -eFO +hNS +dTQ +hhj +hhj +vSC vlm bjr -tiU +whC aad aad aad @@ -60240,7 +60243,7 @@ iwH iwH iwH nxh -jCU +lAB iwH iwH aad @@ -60336,13 +60339,13 @@ aac aac akR cdA -uWO -dEa -dEa -dEa -ccg -dEa -dEa +iwV +jiC +jiC +jiC +pSo +jiC +jiC cdA dWm djW @@ -60353,64 +60356,64 @@ awJ aAR aCQ ijo -cak -bVo -aAF -aqy -arA -bXv -gAm -auJ +fjE +eZH +vcU +lIa +wTS +nOC +gaU +uUu ijo -cac +qEn ijo -cco -cco -cco +dyO +dyO +dyO ijo -ceK -cfv -cgg -aJv +eus +nco +nRU +pty aKL -bbk -qNi -frL -aPS +eNl +nhd +fmP +xzA bbs -blS -aTM -aVj +ial +vLv +cHT aWU -aYR -bll -bfV -xaR +qLe +oEL +dhB +qpV cik cik cik -ckE +ngC cft bzh bzh bzh bzh bvK -bWx +gzl cgc ckF bvB cUi -csQ -csQ -bzl -ckH +gVc +gVc +cfk +ltW ueU -vvB -xlg -xlg -wsi -gfC +jfA +gQm +gQm +usJ +oNz eSx eSx eSx @@ -60419,24 +60422,24 @@ eSx eSx eSx eSx -wdI -npW -vtz -vtz -vBV +dDE +sLn +hhj +hhj +cKH vlm bjr -tiU +whC rEr wZZ htD aad aad iwH -ghr +ejY wXb -pYI -rMy +sTD +vNi iwH aad aad @@ -60530,14 +60533,14 @@ aac aac iJh age -jXV -dEa -ccg -ccg -dEa -dEa -afO -ccg +oBj +jiC +pSo +pSo +jiC +jiC +yeX +pSo cdA dWm ayb @@ -60546,45 +60549,45 @@ ayw ayw awJ aAR -bTk +aXX ijo ijo -aoE +lTd ijo ijo ijo jEB -bYk +eOA ijo ijo -caf +tpC ijo aAB aCb cfx cfx -ceI -cfv -cge -bsG +ryp +nco +tcu +wee biH -aMc -bfP -blN -bll +wXj +oUj +kAY +oEL biH -bll -aTN -wdf +oEL +eGP +kyM aWR -bll -bll -bfV -bll +oEL +oEL +dhB +oEL bjc bjc cik -bsO +gvL bCz bzh bzh @@ -60592,14 +60595,14 @@ bzh bzh bCz bCz -cgd -ckG -bWZ -cUT -gpO -csQ -bWZ -ckG +fcO +taG +fwe +kYT +rLh +gVc +fwe +taG ueU ueU eSx @@ -60607,21 +60610,21 @@ flK eSx mwt hVm -dYK -umE +qGr +mxQ iEU -olH -trr +msc +dYu iEU iEU iEU vlm -mGA -riS +ebe +uWC vlm vlm bjr -tiU +whC rEr wZZ wZZ @@ -60725,14 +60728,14 @@ aac afZ iJh agR -jXV -adH -aee -bHY -bHY -bHY -afP -agh +oBj +mbK +ddV +dWj +dWj +dWj +wWU +sGI cdA dWm tuu @@ -60741,82 +60744,82 @@ ufG ayw aAR aAR -bTl +uLr wto -cdZ -cdZ -isj -cdZ -cdZ -ceI -cdZ -cdZ -awd -cad +pIq +pIq +eiT +pIq +pIq +ryp +pIq +pIq +pTj +eRl ayW -cdY -asE -cdY -cdY -ceL +lPG +ybh +lPG +lPG +oEG cfx cik cgT cik -aMd +dJM cik -aOt -aPW +cjE +nWN biH -bll -blN -aVf +oEL +kAY +qqE aWS -bll -bll +oEL +oEL cik -bll -bje +oEL +eGe bmc cik -ckE +ngC cft bzh bCz bCz bCz -bPe -bWB +eda +bzQ bvz -ckH +ltW bvz -cWs -bzl -bzl -bzl -ckH -rzx +rjT +cfk +cfk +cfk +ltW +tTE bvw bvw bvz gjk nPJ hVm -qns -hIt -keg +whb +wTW +fMe dXQ dXQ dXQ dXQ -kqt +llp ace bjr bjr ace bjr bjr -tiU +whC rEr wZZ bmv @@ -60936,68 +60939,68 @@ ufG ayw awJ aAR -bTl +uLr wto -cdZ -cdZ -cah -cdY -cdY -asE -atL -auK -awe -ceI +pIq +pIq +xvv +lPG +lPG +ybh +tgK +hOC +lgW +ryp wto -cdZ -cdZ -cdZ -cdZ -ceI +pIq +pIq +pIq +pIq +ryp cfx cik -cgU -aKN -bsK +mNq +gMY +kHX cik -aOu -aPW +vMU +nWN biH -bll -blN -aVg +oEL +kAY +khI bWH -bll -bll +oEL +oEL bdI -jBp -bjf +mqf +sYQ bjc cik bsW bvw bvw -bCA -bHH -bLi +bCb +jxO +tfo bvz -bzl +cfk bvz -cla +hLd bvz -csQ -bzl -bzl -bzl -pwz -bCH +gVc +cfk +cfk +cfk +nOg +eji bvB eLC bvB bvB gaq hVm -mYX +eZS iEU iEU dXQ @@ -61011,7 +61014,7 @@ bjr bjr bjr bjr -tiU +whC rEr bmv xFc @@ -61131,7 +61134,7 @@ ufG ufG awJ awJ -bTk +aXX ijo cfx cfx @@ -61144,59 +61147,59 @@ auL cfx axz ijo -cco -cco -cco +dyO +dyO +dyO ijo -aFm +lHB cfy cik cgT cik -aMf +nri cik -aOv -bll -afr -aSk -aRk -aVn -aWV -aYT -apJ +mAx +oEL +qBw +pUC +qrM +nTC +pUE +gFD +nFe cik cik cik -bmf +nzt cik bsW bvz -bzl -bzl -bzl -bzl -bzl -bzp -bzl -cla -bzl -cYx -bzl -kdK -bzl -bzl -rzG -bHP -ckH -bzl -lhR -bPr +cfk +cfk +cfk +cfk +cfk +vtT +cfk +hLd +cfk +uxp +cfk +ups +cfk +cfk +uck +mJN +ltW +cfk +wch +kCQ hVm iEU sAv -bpY -qlq -xCN +vgh +tPT +kXb iEU iEU iEU @@ -61206,11 +61209,11 @@ bjr bjr bjr bjr -tiU +whC rEr bmv wZZ -cIM +nYF aYQ aYQ vPY @@ -61328,70 +61331,70 @@ awJ aHh aAR bVV -gAm -aoF +gaU +cVQ ijo ijo ijo ijo -bYk +eOA ijo ijo -caf +tpC ijo -aAC -aCc -dWu -cea -ceI +oOf +jlG +gVT +tiQ +ryp cfx cik -aJw -aKN -bsK +hls +gMY +kHX cik -aOw -blN -bdq -aSl -agw +iAQ +kAY +mDa +psu +kmW cik -bll -bll -bll +oEL +oEL +oEL bdJ -bga -bjh -bCH -bpx -bsY +oqV +uNB +eji +syN +hgw bvB -bzm -bCH -bCH -bLk -btC -bLk -btC -cle -btC -ddI -gqF -kes -mKA -pAM -rDl -csQ -bCN -jBO +yfY +eji +eji +lGo +yci +lGo +yci +oyG +yci +jZL +duE +hyr +ykM +fqK +cMZ +gVc +lIW +aZN bCz bCz snV srk iEU -unO -qlq -brd +fLj +tPT +wqS iEU vQo wij @@ -61401,16 +61404,16 @@ bjr bjr utV bjr -tiU +whC rEr bmv wZZ iwH -tmB -fzn +qXk +rCW iwH iwH -kPM +cOU iwH iwH aad @@ -61523,64 +61526,64 @@ ayw awJ awJ jdC -gAm -atJ +gaU +qwF ijo -aqz -arC -aqz -bZD +jVP +sWh +jVP +wvU ijo -awf -ceI +rYc +ryp aGs -aAD -aCd -aDf -cea -ceI +fdf +hcS +rpn +tiQ +ryp cfz cik cgT cik -aMf +nri cik cik -tCI -tCI -tCI -tCI +fRF +fRF +fRF +fRF cik -aWW -blN -bll +ert +kAY +oEL bdK -bga -csc -bCK -bpN -csQ +oqV +con +xHs +shR +gVc bvz -bzl -bCK -bHN -bzl -bzl -bzl -bzl -bzl -bzl -bHP -bzl -bzl -bzl -bzl -bHN -bzl -ckH -cSP -bzl -wsm +cfk +xHs +pdN +cfk +cfk +cfk +cfk +cfk +cfk +mJN +cfk +cfk +cfk +cfk +pdN +cfk +ltW +uWu +cfk +hDN snV srk iEU @@ -61596,7 +61599,7 @@ bjr bjr bjr bjr -lwI +jXG rEr bmv wZZ @@ -61604,8 +61607,8 @@ iwH iwH iwH iwH -xdI -qer +jGx +pWN iwH aad aad @@ -61718,64 +61721,64 @@ ayw aAR awJ jdC -gAm -atJ +gaU +qwF ijo -bZD -bZD -bZD -bZD +wvU +wvU +wvU +wvU ijo -bVU -cah -ayY -cdY -aCe -aDg +jhh +xvv +jrd +lPG +sEt +wQh ijo -aFm +lHB cfA -cdY -blS -frL -aMg -aNs -aOx -aNs -aNs -aNs -aTQ -aNs -aNs -aNs +lPG +ial +fmP +xQz +pKo +xeK +pKo +pKo +pKo +xAN +pKo +pKo +pKo bbs bdY -bgb -bji -lUg -bpN -csQ +reJ +fJk +jKO +shR +gVc bvz -bzl -bCK -bzl +cfk +xHs +cfk orL orL -bWZ +fwe orL orL orL -bWZ +fwe orL orL orL orL -bWZ +fwe bvz bsW bvz bvz -gvG +krC snV srk srk @@ -61790,8 +61793,8 @@ bjr bjr bjr bjr -tnM -mNG +uVp +nTQ gTa bmv wZZ @@ -61799,8 +61802,8 @@ aad aad aad iwH -wAw -pnP +cJT +wPk iwH aad aad @@ -61913,64 +61916,64 @@ ayw ayw awJ ijo -anI -aoH +dTr +bYn ijo -aqB -arE -asG -asG +kWs +rbg +oVk +oVk ijo -bYR -axA -gAm -gAm -gAm -aAD -cea -aFn +vzy +wlo +gaU +gaU +gaU +fdf +tiQ +cXL cfx -cdZ -bsC -blN -aMh -aNt -aNt -aNt -aNt -aNt -aTT -aNt -aNt -aNt +pIq +gLY +kAY +cdI +kCD +kCD +kCD +kCD +kCD +pGO +kCD +kCD +kCD biH -beg -crG -csc -csQ -bpN -csQ +qRP +xYQ +con +gVc +shR +gVc cgc -bzl -bCK -bzl +cfk +xHs +cfk orL -bPq -bzl -bzl -bzl -cnQ -bzl -bzl -bzl -mLW -pDb -bzl -bzl -ckH -bzl +aqF +cfk +cfk +cfk +tUB +cfk +cfk +cfk +wki +dwB +cfk +cfk +ltW +cfk bvz -gUj +rzr snV srk wij @@ -61985,8 +61988,8 @@ vQo vQo bjr bjr -tnM -efS +uVp +wam bmv bmv wZZ @@ -62116,58 +62119,58 @@ ijo ijo ijo ijo -awg -cdZ -gAm -aAF -aCf -dWu -cea -ceI +rfq +pIq +gaU +vcU +rtv +gVT +tiQ +ryp cfx -cdZ +pIq cik cik cik -aTU -blN -aQb -aRm -aSm -aTU -blN -blN -blN +rWS +kAY +diO +prt +xVA +rWS +kAY +kAY +kAY biH -beh -bgc -csc -csQ -bpO -csQ +jIZ +uoJ +con +gVc +jol +gVc bvz -bzl -bCN -bzl -bLo -csE +cfk +lIW +cfk +qOz +xPg baX bbT bcp -bWZ -bWZ -grd +fwe +fwe +gON bee bez bez bbT bgO bht -bzl -cfg -aFC +cfk +wjD +fnH snV -tnM +uVp srk wZZ wZZ @@ -62180,13 +62183,13 @@ vQo srk wQx bjr -tnM -efS +uVp +wam bmv bmv wZZ -iZr -hJC +nau +rpi pAc aad aad @@ -62306,51 +62309,51 @@ aES awJ aAR ijo -aqC -arF +rDj +xJn wto cfx auM -bZD -cak -aza -aAG -aCg -aAD +wvU +fjE +eLY +roh +qbH +fdf ijo -aFo +jdQ aGD -aGB +cfK ckK -aKQ -aMi -cjZ -cjZ +jaK +lVS +iXC +iXC ckK ckK ckK ckK -cjZ -cjZ +iXC +iXC ckK bbu bem -bgd -csQ +kfb +gVc bCz bCz bCz bvQ -bzn -bCK -bzl +itB +xHs +cfk orL -csF +ojd baY -cgN +gDy cgO cnS -ddU +maM grs cnS mPj @@ -62358,11 +62361,11 @@ pDz rFn vDr bhu -bzl -bLo +cfk +qOz bCz -oqA -oMa +dTt +lpH wZZ bmv bmv @@ -62375,13 +62378,13 @@ vQo vQo bjr bjr -tnM -jDO +uVp +mhQ jOV wZZ wZZ -rpX -tnM +fbA +uVp aad aad aad @@ -62389,10 +62392,10 @@ aad aad aad sHP -sPD +xvk ltp ltp -wxU +cGr sHP aad aad @@ -62501,63 +62504,63 @@ ayw aAR awJ bVV -aqD -arG -cea +xej +upK +tiQ cfx cfx -bZD +wvU ijo -azb -azb -azb -aDi +odp +odp +odp +qMr ijo -aFp +yif aGD -aHJ +qKs ckK -aKR -aMj -grP -cka -ckI -ckI -ckI -aTW -aVx -aXa +jzr +uji +jDD +org +mCI +mCI +mCI +glj +rca +krp mtD mtD mtD -bge -csQ -bjl -bpP +nvX +gVc +vHb +xYM bCz bwc -bzo -bCK -bHP +oTx +xHs +mJN orL -csF +ojd baZ cgO clg -cnV -dks -guF -kgC +dXa +xJM +tkY +ezd mQe cnS cnS vEw bhv -bzl +cfk qJC -cfg -mcY -tlo +wjD +omE +kxW bmv jCE jCE @@ -62566,17 +62569,17 @@ bmv bmv wZZ bZT -rkI +dbi bjr bjr bjr bjr -rhJ +urs vQo wij wZZ -xAS -tiU +hmq +whC hwD vPQ aad @@ -62584,10 +62587,10 @@ aad aad aad sHP -ueD +dIM lKv lJG -lij +tPf sHP sHP sHP @@ -62701,58 +62704,58 @@ ijo ijo bYS bYS -bZD -axC -bZD -cbv -bZD -cbv -bZD -aFq +wvU +hTi +wvU +qeg +wvU +qeg +wvU +dEB cfA -aHK -aJA -aKS -aMk -cjj -ckb +qYN +dXf +lry +hbw +pBK +vGm ckK ckK ckK cnm -coh -aXc -aYW -bbv +nYf +eDf +pZT +xNN mtD -crG -csQ -bLo -bqe +xYQ +gVc +qOz +vTs bvK bzx -bzl -bCK -bzl +cfk +xHs +cfk orL -csF +ojd fch cgP -clo -cog +lbd +srM dqH gIo kgQ -mQg -pDQ -rLn +qSz +mDR +xEs vGx bhw -bzl -aOp -dGv -shr -oJD +cfk +jau +dcK +peb +hCR qDg bmv bmv @@ -62761,17 +62764,17 @@ bmv bmv fli bZT -tQS -cxS -cxS -uVv -qGK -aHi +qzn +dMv +dMv +ioE +uCL +ibZ vQo wZZ pri -rpX -tiU +fbA +whC hwD vPQ aad @@ -62779,13 +62782,13 @@ aad aad aad sHP -pNY +bbH tjo rqL -oWO +dxx sHP -iuh -tPl +hyf +qHj sHP aad aad @@ -62896,58 +62899,58 @@ bWN ijo atO auO -awh -axD -cbv -bWK -cbv -bZD -aEf -ceI +aRE +ylt +qeg +uvN +qeg +wvU +kHd +ryp cfB -cdZ +pIq ckK -cji -aMl -cjk -cjk -aQc -clG -aSn +uWF +quJ +fel +fel +xpM +liP +mKk aRv -coi -aXd -aZb -bbw +eUc +xgE +mBY +sSQ mtD -crG -csQ -bLo -bLo -bmo +xYQ +gVc +qOz +qOz +tuz bvz -bzl -bCK -bHQ +cfk +xHs +bBc orL -csF +ojd gaA cgP -clr +smW coA coA gMF coA -mSK -pFi -rLZ +eKB +ozq +qXh vGx bhB -bzl +cfk iRY -cfg -rgz -tnM +wjD +hdt +uVp fvt bmv bmv @@ -62965,8 +62968,8 @@ vQo vQo wZZ wZZ -rpX -tiU +fbA +whC hwD vPQ lPF @@ -62974,13 +62977,13 @@ aad aad aad sHP -dii +nVn oZD lKv -tlJ +wso idW -vTN -llC +tXu +xSW sHP aad aad @@ -63084,65 +63087,65 @@ ayw ayw ayw ayw -aoI -apC -aqE +aNk +vSe +ldQ bWN ijo ijo ijo ijo ijo -azd +xeb ijo -aCh -aCh +iUe +iUe ijo -aFr -aGE -aHL +uLj +sIq +kGT aJB -aKT -aMm -aNv -ckd +irQ +wWI +nBs +waF ckK -aRn -aSo +goI +vwg ckK -aVy -aXe -aZh -bbx +iHz +erD +tKG +jRY ckK -crG -csQ -bjl -bpX +xYQ +gVc +vHb +mWy bCz bvz -bzp -bCK -bHW +vtT +xHs +jHL orL -csF +ojd bba cgQ cls -iBV -dsx -gPG -gPG +ufN +bQY +iAJ +iAJ mUD coD coD vJx bhv -bzl -cfg -ana -cuj -oMa +cfk +wjD +fYc +rJd +lpH bmv cBv wZZ @@ -63160,8 +63163,8 @@ wZZ wZZ wij wZZ -rpX -tiU +fbA +whC hwD vPQ vPQ @@ -63171,11 +63174,11 @@ aad sHP sHP iqe -psQ +wvH sHP sHP -dJV -dJV +yeb +yeb sHP sHP aad @@ -63279,53 +63282,53 @@ ayw ayw ayw ayw -aoI -apD -asL +aNk +tkU +sbD bWN -asJ -atP -auP -awi -axE -asL -aAJ -asL -asL -aEg +tni +xUH +tvt +dqu +uaW +sbD +wxu +sbD +sbD +kfP aFs aGF cdh ckK -aKU -aMn -cke -cke +ghI +eDz +uIE +uIE ckL mtD mtD mtD ckK cpd -aZp +rXI bby ckK -crG -csQ +xYQ +gVc bCz bCz bCz bwd -bzp -bCK -bHW +vtT +xHs +jHL orL -csF +ojd gkt -cgR +qXR cgQ coD -ddU +maM coD coD mUU @@ -63333,11 +63336,11 @@ pGt rMv vOf mHA -bzl -tKC -oBv +cfk +pBh +sIx srk -tnM +uVp wZZ wZZ wZZ @@ -63352,11 +63355,11 @@ wZZ wZZ wZZ wZZ -iZr -oPN -oPN +nau +uuT +uuT bjr -tnM +uVp uXg uXg vPQ @@ -63366,12 +63369,12 @@ vPQ uXg sHP fwc -hel -kDb -dnR +oEy +fbx +erV lJG -hel -eeG +oEy +jnR sHP aad aad @@ -63474,11 +63477,11 @@ awJ ayw ayw ayw -bVr -ccp -ccp -bVr -asK +hBe +fOp +fOp +hBe +heL cdh auQ cdh @@ -63499,38 +63502,38 @@ ckf aQd clI mtD -cnp -cnp -cpe -aZq -bbz +rNj +rNj +gJi +ugw +pEJ ckK -bgf -csQ -bmo -oeQ +xDH +gVc +tuz +rBV bCz bwf -bzp -bCK -bzl -bLo -csF +vtT +xHs +cfk +qOz +ojd bbe bef bcq -bWZ -bWZ -gTM +fwe +fwe +lic bef beM beM bgj bef bhE -bzl -cfg -ppA +cfk +wjD +sxa snV srk wZZ @@ -63546,12 +63549,12 @@ bmv wZZ wij wZZ -iZr +nau bjr bjr -cxS -cxS -qQu +dMv +dMv +kdU srk uXg vPQ @@ -63562,11 +63565,11 @@ vPQ sHP fMv ltp -hel +oEy gHQ fLl -hel -kXi +oEy +dfR sHP aad aad @@ -63669,81 +63672,81 @@ awJ ayw aET ayw -bVs -ccp -ccp -bVs -asL +ciY +fOp +fOp +ciY +sbD atQ -auR -ccp -ccp -slL -ccp -ccp -aDk -slL -aFu -dDr -ccp -ccp -awm -ccp -aNw -ccp -auR +dwi +fOp +fOp +uzh +fOp +fOp +hSJ +uzh +jnD +pTY +fOp +fOp +crJ +fOp +jFe +fOp +dwi cdh -cmt -cnr -cok -aXf -aZr -aVB +bVh +yjf +lcZ +hrt +qAh +fuE ckK -crG -csQ +xYQ +gVc bCz -bqb +vUX bCz bwh -bzp -bCK -bIb +vtT +xHs +lZi orL -bzl -bzl -chw -chw -chw -bzl -bzl -bzl -nai -bzl -bzl -bzl -ckH -cSP +cfk +cfk +dZH +dZH +dZH +cfk +cfk +cfk +fYV +cfk +cfk +cfk +ltW +uWu bvz -nai +fYV snV srk wij wZZ -uyQ -nyB -nyB -nyB -rhJ +jns +bMy +bMy +bMy +urs wZZ wZZ bmv wZZ wZZ wZZ -rpX +fbA bjr -kdm +rpw kZL eVc uXg @@ -63757,10 +63760,10 @@ hMs sHP sHP sHP -xRr +qgW nnq -lax -ggr +wlm +viQ sHP sHP aad @@ -63859,85 +63862,85 @@ aac aac anG anG -bMF -bMF -bMF +fSU +fSU +fSU anG anJ aDE -apD -asL +tkU +sbD aDE -asM +kvb cdh -ckM -awj -axF -azf -ccp -ccq -aDl -aEh -ckM -aGH -cgm -aJD -ccp -aMo -aNx -aOy -ckM +tpO +tbV +hCX +liy +fOp +dnI +flg +ise +tpO +fpC +nxE +dlo +fOp +fuf +hdW +pju +tpO clK -aSp -cnr -aVz -aXg -aZt -bbB -beq -bgg -csQ +exn +yjf +igX +pHJ +lBC +gGu +qdr +pQk +gVc bCz -bqd +bMS bCz bwi -bzp -bCK -bzl +vtT +xHs +cfk orL orL -bWZ +fwe orL orL orL -bWZ +fwe orL orL orL orL -bWZ +fwe bvz bsW bvz -cfg -wsm +wjD +hDN snV srk wZZ wZZ -rkI +dbi bjr bjr bjr -lwI +jXG wij wZZ bmv bmv wZZ wZZ -rpX -tnM +fbA +uVp reb fHW vPQ @@ -63951,11 +63954,11 @@ vPQ wXm vPQ vPQ -knJ +kaM xLB lKv -ihy -ihy +pOi +pOi sHP aad aad @@ -64053,77 +64056,77 @@ aac aac aac anG -ajV -akC -alk -alT +hDB +cyl +luT +lBR anG djW aDE bWN bWN bWN -asN +mIU ckf -ckM -awk -awk -awk -ccp -ccr -ccr -aEi -ckM -aGI -cgn -aJE -ccp -awk -ccr -aOA -ckM +tpO +jVN +jVN +jVN +fOp +xWO +xWO +dQw +tpO +bWT +pbP +nPD +fOp +jVN +xWO +ddo +tpO cdh -aSq -cnr -aVA -aXh -cnr -bbC -ber -crF -bjn +dvq +yjf +jtR +dfB +yjf +pOF +kTt +aBA +qkD bCz bCz bCz bwj -bzp -bCK -bIp -bzl -bzl -bzl -bzl -bzl -bzl -bzl -bzl -bzl -bzl -bzl -bIp -bzl -ckH -bzl -nai -bPr +vtT +xHs +tAr +cfk +cfk +cfk +cfk +cfk +cfk +cfk +cfk +cfk +cfk +cfk +tAr +cfk +ltW +cfk +fYV +kCQ snV srk vQo wZZ -rkI +dbi bjr bjr -tnM +uVp wZZ wZZ wZZ @@ -64131,8 +64134,8 @@ bmv bmv xFc bmv -rpX -tnM +fbA +uVp pzb wXm vPQ @@ -64248,67 +64251,67 @@ aac aac anG anG -ajX -bQU -bQU -bQU +nee +sQZ +sQZ +sQZ anG anG anG bPf bPf bPf -asO +pWo cdh -cHm -cgW -cgW -bZB -cbz -cgo -bZB -bZB -aFw -aGJ -cgo -cgW -cbz -bZB -bZB -bZB -aQe +emX +kot +kot +jXh +tAY +lgB +jXh +jXh +oGz +hGl +lgB +kot +tAY +jXh +jXh +jXh +cVC cdh ckK -aTY -aVB -aXi -aZu -bbD -ber -crG -csQ -csQ -mem -csQ +xDf +fuE +xIC +pRQ +uhU +kTt +xYQ +gVc +gVc +fcq +gVc bwk -bzp -bCY -bsY -bLA -btC -btC -btC -clv -btC -btC -clv -btC -btC -btC -rTC -btC -lUg -tVN +vtT +sVA +hgw +jNh +yci +yci +yci +jav +yci +yci +jav +yci +yci +yci +jEE +yci +jKO +wIV bCz bCz snV @@ -64318,7 +64321,7 @@ vQo srk bjr fow -tnM +uVp wZZ wZZ wZZ @@ -64326,8 +64329,8 @@ wZZ bmv bmv uwJ -rpX -tnM +fbA +uVp hGm bIu vPQ @@ -64443,75 +64446,75 @@ aac aac anG bPf -ajY -bQU -all -bTp +tmq +sQZ +bKj +ekb bPf -anK -aoJ -apE +ioj +wRq +wag bPf bPf -asP +tJY cdh -auU -ccr -ccr -caL -ccp -ccr -cfC -ccr -ckM -cfC -aEj -ccr -ccp -ccr -cfC -ccr -ckM +lXW +xWO +xWO +itj +fOp +xWO +fMU +xWO +tpO +fMU +wBv +xWO +fOp +xWO +fMU +xWO +tpO cdh ckK ckK -cjZ -cjZ -cjZ -cjZ +iXC +iXC +iXC +iXC bes -crF -btC -btC -bpM -btC -btC -bzq -bDo -bIq -bIq -bIq -bYA -tiE +aBA +yci +yci +pyy +yci +yci +xwq +iVQ +izu +izu +izu +jTn +qkL bCz -cwn -cwn +raa +raa bCz -krm -ndC -bzm -sjp -bzl -bzl -bzl -ekZ +ksr +vQY +yfY +uPL +cfk +cfk +cfk +qkX vhv vOs bCz bCz bCz bCz -cRB +oqg bCz vQo vQo @@ -64521,9 +64524,9 @@ wZZ wZZ wZZ wZZ -rpX +fbA bjr -tNQ +wRc ajf uXY uXY @@ -64638,75 +64641,75 @@ aac aac anG bPf -bkZ -bkZ -bkZ -alU -bkZ -bkZ -bkZ -bkZ -aqG +vsT +vsT +vsT +rEi +vsT +vsT +vsT +vsT +get bPf -asL +sbD cdh -auV -bZE -ccr -ccr -aAK -ccr -kXR -aEj -ckM -ccr -ccr -ccr -aKW -ccr -ccr -awk -ckM +hWZ +cOZ +xWO +xWO +wuw +xWO +nHZ +wBv +tpO +xWO +xWO +xWO +prq +xWO +xWO +jVN +tpO cdh cdh -crd +ksZ col col col col -crd -crG -csc -csQ -sen -csQ -ctp -bzr -ctp -ctp -bLB -bPt -bPt -chy +ksZ +xYQ +con +gVc +hWQ +gVc +pAh +cfU +pAh +pAh +vtI +tDB +tDB +pgU bCz -cpi -dvR -kCf +nlQ +qoz +fTp kzk bsW -pGC -pGC -pGC -pGC +dMm +dMm +dMm +dMm bvz bvz bvz -bml -cfg -cfg -cfg -cfg -cfg +uvr +wjD +wjD +wjD +wjD +wjD bCz vQo vQo @@ -64716,12 +64719,12 @@ mMR wZZ wZZ wZZ -taW +jBv bjr bjr -nyB -nyB -rhJ +bMy +bMy +urs hwD vPQ vPQ @@ -64832,62 +64835,62 @@ aac aac aac anG -bPX -bQS -bQS -bQS -bTr -amL -anL -aoK -anL -aqH -arH -asQ +llE +wUZ +wUZ +wUZ +mod +ilJ +sNq +vrd +sNq +oRV +iPf +lSv atR -auW -awl -axG -azg -awm -aCj -aDn -aEk -ckM -aGK -aHN -aJF -ccp -aMp -aNy -aOG -ckM +hYA +fYL +rog +gMW +crJ +fuW +qoK +kXo +tpO +rEh +pQn +kDW +fOp +cEc +pyR +vks +tpO aRo cdh -crf +xpY pNL pNL pNL pNL -crf +xpY bsW bvz -csQ +gVc vOs -csR -csR -bzs +lqJ +lqJ +imR vOs vOs -bLC -bLC -cvC -cvC +kZh +kZh +edB +edB bCz -cpY -dvX -kCf -kAn +uWU +dSO +fTp +ulD bsW bvz ski @@ -64897,11 +64900,11 @@ iDq bvz bvz bCz -dEy -iZw -afG -bWk -xRR +wOv +hSw +bSQ +fCk +cGO bCz vQo vQo @@ -64912,11 +64915,11 @@ wZZ wZZ bmv bmv -taW -uVv -uVv +jBv +ioE +ioE bjr -tnM +uVp uXg uXg uXg @@ -65027,60 +65030,60 @@ aac aac aac anG -ajx -bkZ -bkZ -bkZ -bJz -bkZ -bkZ -alU -bkZ -aqI -aiO -asL +iAV +vsT +vsT +vsT +isT +vsT +vsT +rEi +vsT +hjA +fGI +sbD cdh -auX -awm -ccp -azi -ccp -cjl -aDo -ccp -ckM -awm -awm -awm -ccp -awm -cjl -awm -aQf +fvy +crJ +fOp +max +fOp +tmV +gzz +fOp +tpO +crJ +crJ +crJ +fOp +crJ +tmV +crJ +mUm aRq cdh -crf +xpY pNL pNL pNL pNL -crf +xpY bsW bvz -csQ +gVc vOs -bLi -bwn -bzt -bDr +tfo +xEv +qlT +xof vOs -cwn -cwn -cwn +raa +raa +raa bCz bCz bCz -dzo +tjj bCz bCz bsW @@ -65089,8 +65092,8 @@ vOs vOs vOs vOs -ePf -ePf +wMW +wMW vOs bCz bCz @@ -65110,8 +65113,8 @@ wZZ bmv wZZ wij -rpX -tnM +fbA +uVp uXg uXg uXg @@ -65223,17 +65226,17 @@ aac aac anG bPf -ajZ -akD -alm +xEf +uTW +pBe anG -amM -bkZ -alU -apF +fYu +vsT +rEi +caP bPf bPf -asR +oJm cdh cdh cdh @@ -65253,32 +65256,32 @@ aNz azj aQi aAL -aSr -aUb +lBJ +kyq aVD aVD aVD aVD -aUb +kyq nPJ bvz -csQ +gVc vOs -btG -bsp -bDz -bDs +vLO +aYN +uqb +mhi vOs -bAp -bPA -bLJ -bIr +soK +kBZ +bzA +oQp clw cqf dBe -gXX -kCf -bCK +rmu +fTp +xHs bvz vOs vQo @@ -65305,8 +65308,8 @@ wZZ wZZ wZZ wij -rpX -tnM +fbA +uVp uXg uXg ygq @@ -65417,63 +65420,63 @@ aac aac aac anG -ajy -bkZ -bkZ -bkZ -alV -bkZ -bkZ -alU -bkZ -aqJ +lLv +vsT +vsT +vsT +raj +vsT +vsT +rEi +vsT +lql bPf -asS -ccp -ccp -ccp -ckM +may +fOp +fOp +fOp +tpO cjn -aAM -aAM -aAM -aAM +wSU +wSU +wSU +wSU cjn -aGM -cgp -cgX -aKX -cim +nxd +jpq +vCz +nsO +nJE cjn -clL -aQj -ylF -ylF +xtz +oTR +cCH +cCH aUc cpU cpU cpU cpU cpU -bgp -bjo -bmb +cSg +jQp +tIc vOs -btI -bwo -bzt -bDt +pCE +dEY +qlT +qjc vOs -cuH -bQa -bZf +cVl +ugN +uHi bCz clx -bCK -csQ -haw -kCf -bCK +xHs +gVc +rSa +fTp +xHs bvz vOs vQo @@ -65497,16 +65500,16 @@ wZZ vQo jWz jWz -veX +bIR jWz jWz -rpX -tnM +fbA +uVp uXg uXg ygq -fBu -lKs +cNA +seQ ygq lAx vPQ @@ -65612,63 +65615,63 @@ aac aac aac anG -bPY -bQS -bQS -bQS -bQS -bQS -bkZ -alU -bkZ -aqK +hQX +wUZ +wUZ +wUZ +wUZ +wUZ +vsT +rEi +vsT +lvq bPf -asT -ccr -ccr -ccr -cam -caM -chd -cdj -cdj -chd -caM -cgY -cgY -cgY -cgY -aMq -caM -chd -ckN -chd -chd +nzr +xWO +xWO +xWO +ncN +lOF +vXe +xiU +xiU +vXe +lOF +vyw +vyw +vyw +vyw +gox +lOF +vXe +eDi +vXe +vXe cpU -aVE -piu -aZw -kCa +sxU +xvB +euV +xJF cpU crI aHP -bmb +tIc vOs -bvL -bHH -bzt -oIv +yjT +jxO +qlT +keK vOs -oeQ -baA -oeQ +rBV +vhA +rBV bCz cly -crR -cwn -cwn +faR +raa +raa vOs -njA +npq cUi vOs vQo @@ -65695,13 +65698,13 @@ kcy onr wBI jWz -rpX -qks +fbA +fHk srk uXg oWU -mWM -vbI +oYp +vSp ygq ygq ygq @@ -65807,39 +65810,39 @@ aac aac aac anG -ajy -bkZ -bkZ -bJz -bkZ -bkZ -bkZ -alU -apG -aqL +lLv +vsT +vsT +isT +vsT +vsT +vsT +rEi +iJQ +jVY bPf -asU -ccr -ccr -bZG -axI -ceM -aAO -ceN -ceN -aEl -ceM -cgZ -cgZ -cgZ -cgZ -cin -ceM -aOJ -ckR -cdn -chd -aUe +uCj +xWO +xWO +kVG +fQr +wVd +qvR +wrO +wrO +xDT +wVd +leW +leW +leW +leW +eWC +wVd +djc +tcU +jxD +vXe +wBG aVF aXk aVF @@ -65847,23 +65850,23 @@ bbF aKM crI aHP -bmb +tIc vOs -csT -bzG -bzt -bDy +uyK +nNl +qlT +stn vOs -oeQ -baA -oeQ +rBV +vhA +rBV bCz bvz -crT -dBV -hgI -btC -lUg +wzH +pWB +xCt +yci +jKO bvz vOs wZZ @@ -65890,18 +65893,18 @@ qcV onr qTF jWz -rpX -tnM +fbA +uVp uXg ygq ygq -meS -pOH +cox +rny ygq pUB pGy ygq -hdc +ibv ygq pge pge @@ -66003,15 +66006,15 @@ ali ali bPf bPf -bmX -bmX +dsm +dsm bPf -alW -alW -alW -alU -bkZ -aqK +cAA +cAA +cAA +rEi +vsT +lvq cjn cjn chB @@ -66019,39 +66022,39 @@ chi bZH cjn cjn -aAP -cdn -cdn -aEm +ikW +jxD +jxD +uQd cjn -cfD -cgY -cgY -chC -cio +ind +vyw +vyw +ety +vUF cjn -chd -bpl -cdn -aSs +vXe +kIF +jxD +vdT cpU aVF -nNR -aZy -bbG +rqG +vkT +oHQ cpU crI aHP -bmb +tIc vOs vOs vOs -bzs +imR vOs vOs -oeQ -baA -oeQ +rBV +vhA +rBV bCz bvz bvz @@ -66081,17 +66084,17 @@ jWz jWz jWz kaw -grG +uWc rel -hPZ +dzi jWz -rpX -tnM +fbA +uVp uXg ygq -oIx -sQA -drI +nKe +tYA +ujb usI vJB kbU @@ -66173,9 +66176,9 @@ agR agR agR agR -blI +raT aba -blI +raT agR agR agR @@ -66196,57 +66199,57 @@ ahZ awb agR agR -aiM -pMU -bPZ -bPZ -bSv -bPZ -bPZ -alW -alU -bkZ -aqJ +cxv +iQI +xFV +xFV +fyJ +xFV +xFV +cAA +rEi +vsT +lql cjn cau bYl -bYU +gDM bZI cao cjn -chd -cdn -cdn -aEn +vXe +jxD +jxD +uss cjn -cfE -bnE -bnH -bnU -boF +eoB +nqV +uek +bVW +moy cjn -chd -bpl -aDp -aSt +vXe +kIF +hrq +vbe cpU -aRr +uSY cpU cpU cpU cpU -bgz -csi -cst -bqh -bqh -bwq -bgz -csi +ifL +pCF +dbu +etU +etU +kiV +ifL +pCF bCz -oeQ -baA -oeQ +rBV +vhA +rBV bCz bvz bvz @@ -66255,7 +66258,7 @@ bvz bvz bvz bvz -skl +piX bmv bmv bmv @@ -66273,20 +66276,20 @@ bmv bmv bmv jWz -vpG -urF -hpD -tPi -sRX -iZa +ebk +jbm +dYt +vET +xAg +xeh jWz -rpX -tnM +fbA +uVp uXg ygq -jtB -drI -tdB +nEH +ujb +xzD xPv xPv iHX @@ -66368,9 +66371,9 @@ age agR agR agR -ado -ado -ado +keA +keA +keA agR agR ahZ @@ -66391,66 +66394,66 @@ agR ahZ amw ahZ -aiN -bPZ -bPZ -bPZ -aln -alX -alX -anM -aoL -apG -aqK +xTa +xFV +xFV +xFV +vVQ +ykR +ykR +oyS +lfw +iJQ +lvq cjn bXC bYm -auY +xVR bZJ cao cjn -chd -chd -cdn -aEo +vXe +vXe +jxD +ott cjn -cgu -cgu -cgu -cgu -cgu +gyz +gyz +gyz +gyz +gyz cjn -aOK -bpl -cdn -chd -aUf -bjo -bjo -aVG -aVG -aUf -bgA -csV -csu -csV -csV -csV -bzR -bDA +hXf +kIF +jxD +vXe +mIq +jQp +jQp +lmE +lmE +mIq +sNb +vKS +fYS +vKS +vKS +vKS +pbR +fBm bCz -bLH -bQp -bZC +uwh +iEs +qSu bCz -clz -csM -dEX -hni -cvC +gUH +ryb +xmx +tML +edB bvz bvz -bLo +qOz bmv xFc bmv @@ -66468,25 +66471,25 @@ uwJ bmv bmv jWz -nTD -oyu +jAZ +xcm jWz -ooj -poc -aWB +tlz +lSn +iBb jWz -rpX -tnM +fbA +uVp uXg ygq ygq -kEl -jtB +tVH +nEH ygq lyX wEo ygq -hdc +ibv ygq vPQ vPQ @@ -66586,65 +66589,65 @@ ahZ ahZ agR agR -aiO -bPZ -bQT -bPZ -bPZ -bPZ -amN +fGI +xFV +tSJ +xFV +xFV +xFV +pTZ bPf -aoM -apG -aqM +hcC +iJQ +eos cjn asV atS -cdn +jxD cjn cjn cjn cjn -chd -aDp -ckN -aFz -chd -chd -chd -chd -chd -aFz -chd -aQm -cdn -chd -aUf -bjo -bjo -hyh -hyh -aUf -csi -csi -bms -csi -csW -csi -bgA -csV -bIr -bLJ -bQq -oeQ +vXe +hrq +eDi +vRS +vXe +vXe +vXe +vXe +vXe +vRS +vXe +rTE +jxD +vXe +mIq +jQp +jQp +vTj +vTj +mIq +pCF +pCF +uOC +pCF +miQ +pCF +sNb +vKS +oQp +bzA +eKc +rBV vOs vOs vOs vOs vOs vOs -bWZ -pJu +fwe +bOQ vOs bmv bmv @@ -66670,8 +66673,8 @@ jWz jWz jWz jWz -rpX -qks +fbA +fHk srk uXg ygq @@ -66781,57 +66784,57 @@ aiW akH agR agR -aiM -ajz -akb +cxv +qhn +hxk akE -alo -bPZ -alo -bmX -alU -apG -aqK +lNn +xFV +lNn +dsm +rEi +iJQ +lvq arI asW atT -bYU -awo -bFx -azl +gDM +rsv +kga +fmf cjn -chd -cdn -jKi -ceN -ceN -ceN -ceN -ceN -ceN -ceN -tyj -mnY -cdn -aSu +vXe +jxD +jxI +wrO +wrO +wrO +wrO +wrO +wrO +wrO +hep +smF +jxD +oPE cpU -aVH -aVH +bQc +bQc cpU cdm cdm -csi -bjp +pCF +wPc cdm cdm cdm -csi -bjp +pCF +wPc cdm vOs -cwn -cwn -cwn +raa +raa +raa vOs htD cth @@ -66865,8 +66868,8 @@ bmv lgy bmv bmv -rpX -tnM +fbA +uVp jPV oDL vPQ @@ -66980,46 +66983,46 @@ anG anG anG anG -alr -alo -amO -anP -alU -bkZ -aqK +wfK +lNn +sTa +lUI +rEi +vsT +lvq cjn -cdn -atU -cdn +jxD +uAj +jxD cjn cjn cjn bZH -chd -cdn -boF -aFA -aGN -chd -chd -chd -aMr -chd -boF -aDq -chd -aSv +vXe +jxD +moy +qgI +ogl +vXe +vXe +vXe +kpr +vXe +moy +weD +vXe +cnn cpU -aVJ -aND +wQY +wwL cpU -bbI -aHW -rpX -tnM +wix +itr +fbA +uVp bmv bIt -btJ +ncM btL wZZ wZZ @@ -67060,8 +67063,8 @@ bmv bmv bmv bmv -rpX -tnM +fbA +uVp jPV oDL vPQ @@ -67154,13 +67157,13 @@ ahZ ahZ ahZ amm -ado -ado +keA +keA abO acg acv -bAi -bna +iQr +oMK amm ahZ ahZ @@ -67176,42 +67179,42 @@ aac aac aXG nJO -alo +lNn amP bPf bVw apI apI cjn -asY -atV -cdn -cdn -axJ -cdn +hQk +nuP +jxD +jxD +fHx +jxD bYV -chd -cdn -aEq +vXe +jxD +pcs cjn cjn -aHO -aHO +nQi +nQi cjn cjn cpU cpU cpU -aRr +uSY cpU cpU -aVJ -aXn +wQY +tnR aZz -aHW -aHW -rpX -tnM +itr +itr +fbA +uVp wZZ wZZ wZZ @@ -67349,13 +67352,13 @@ ahZ ahZ ahZ ahZ -ado -bmZ -abP -abP -abP -bmZ -bAi +keA +vEn +lME +lME +lME +vEn +iQr agS ahZ ahZ @@ -67371,42 +67374,42 @@ aac aac aXG nJO -alo +lNn amP anR -alU -bkZ -bQU -bYU -cdn -atW -bYU -cdn -axK -cdn +rEi +vsT +sQZ +gDM +jxD +vzB +gDM +jxD +pAI +jxD chB -chd -aDq -chd -aFB +vXe +weD +vXe +jqT aGO aHP aHP aKZ cjn -fKt -aOL +cLv +iqx cpU -aHT -aSw +czN +qrn cpU -aVJ -aXo +wQY +ikE cpU -bbI -aHW -rpX -tnM +wix +itr +fbA +uVp wZZ bqf csY @@ -67415,22 +67418,22 @@ wZZ bqf bLD wZZ -iZr -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -dGO +nau +uuT +uuT +uuT +uuT +uuT +uuT +uuT +uuT +uuT +uuT +uuT +uuT +uuT +uuT +bXD wZZ vQo vQo @@ -67544,13 +67547,13 @@ agR ahZ agR ahZ -ado -bmZ -abQ -abQ -abQ -bmZ -ado +keA +vEn +eOg +eOg +eOg +vEn +keA ahZ ahZ ahZ @@ -67566,16 +67569,16 @@ aac aac aXG nJO -alY +rKd amP anU -alU -bkZ -bQU -arJ -asZ -cdn -bYU +rEi +vsT +sQZ +gYt +vmq +jxD +gDM cjn cjn cjn @@ -67585,47 +67588,47 @@ cjn cpU cjn aHP -cdn -cdn +jxD +jxD aHP -aMs -aHT -aHT -ckS -ckS -ckS -ckS -aHT -aHT -aZD -aHW -aHW -rpX -tnM +rWd +czN +czN +oqI +oqI +oqI +oqI +czN +czN +wyd +itr +itr +fbA +uVp bmw bqs csZ bqf bqf wZZ -kPl +jnj wZZ -rpX +fbA bjr bjr bjr -cxS -cxS -uVv -uVv -szX -uVv -uVv -cxS -cxS -cxS +dMv +dMv +ioE +ioE +ovp +ioE +ioE +dMv +dMv +dMv bjr -tnM +uVp wZZ wZZ vQo @@ -67739,13 +67742,13 @@ ahZ agR ahZ amm -ado -ado +keA +keA abR ach byP -bAi -bna +iQr +oMK amn ahZ agR @@ -67761,13 +67764,13 @@ aac aac aXG nJO -alo +lNn amP anR -alU -bkZ -aqP -bYU +rEi +vsT +pUF +gDM ata vCD avb @@ -67784,31 +67787,31 @@ aHP aHP aLa cjn -aNC +rCK cpU -aND -aHT -aHT -aHT -aHT -aHT -aHT -bbJ -aHW -rpX -tnM +wwL +czN +czN +czN +czN +czN +czN +dxg +itr +fbA +uVp wZZ bwE -ioi +lvn sPF -ioi +lvn btL btE wZZ -rpX +fbA bjr bjr -tiU +whC cti btN cpg @@ -67819,8 +67822,8 @@ wvt bBr wLv wLv -oSN -tnM +jpB +uVp wZZ wZZ srk @@ -67956,17 +67959,17 @@ aac aac aXG nJO -alo +lNn amP bPf -aoM -apG -bQU -cdn +hcC +iJQ +sQZ +jxD bZI bZI bZI -awo +rsv axM bYm aAU @@ -67975,14 +67978,14 @@ aDs cpU cjn cjn -aHO -aJG +nQi +ksF cjn cjn -aND +wwL cpU cpU -aRr +uSY cpU cpU cpU @@ -67990,20 +67993,20 @@ cpU cpU bbK xkj -rpX -tnM +fbA +uVp wZZ wZZ sPF -bwy +vvx sPF bDB wZZ wZZ -rpX +fbA bjr bjr -kdm +rpw cuc cwq xkj @@ -68014,22 +68017,22 @@ cwq xkj xkj wLv -oSN +jpB bjr -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -qrz -oPN -oPN -oPN -oPN -oPN +uuT +uuT +uuT +uuT +uuT +uuT +uuT +uuT +tcS +uuT +uuT +uuT +uuT +uuT cpg uXg uXg @@ -68150,14 +68153,14 @@ aac aac aac aXG -alr -alo -amO -anV -alU -bkZ -bQU -bYU +wfK +lNn +sTa +laU +rEi +vsT +sQZ +gDM ata vCD avb @@ -68170,14 +68173,14 @@ aDt cpU aFD cpU -aHR -aHT +kCY +czN cpU cpU cpU cpU cpU -aHT +czN cpU cpg aMw @@ -68185,19 +68188,19 @@ xkj xkj xkj xkj -rpX -tnM +fbA +uVp wZZ bqf -ioi +lvn sPF -ioi +lvn wZZ bqf wZZ -rpX +fbA bjr -tnM +uVp reb ctH xkj @@ -68209,22 +68212,22 @@ xkj xkj xjr lmv -sot -cxS -uVv -uVv -szX -uVv -uVv -szX -uVv -uVv -uVv -uVv -cxS -cxS -cxS -qIt +gyL +dMv +ioE +ioE +ovp +ioE +ioE +ovp +ioE +ioE +ioE +ioE +dMv +dMv +dMv +ith wLv cpg uXg @@ -68345,17 +68348,17 @@ aac aac aac aXG -alo -aln -drS -anW -aoO -bWc -aqQ -bYU -cdn -cdn -cdn +lNn +vVQ +uLM +jLv +hQK +iFD +evZ +gDM +jxD +jxD +jxD cjn cau bYm @@ -68365,14 +68368,14 @@ cdm aDu aDu aDu -aHT -aHT -aLb -ckS -ckS -ckS -aQp -aRs +czN +czN +oya +oqI +oqI +oqI +wuU +jMr cpU cpg xkj @@ -68380,8 +68383,8 @@ xkj aNF xkj xkj -rpX -tnM +fbA +uVp bmw brs bqf @@ -68390,9 +68393,9 @@ wZZ btK wZZ wZZ -rpX +fbA bjr -tnM +uVp pzb lmv xjr @@ -68445,7 +68448,7 @@ vPQ vPQ vPQ uXg -icG +vVF jLb jLb jLb @@ -68540,33 +68543,33 @@ bNW aac bNW bME -als -alZ -als -anV -bkZ -apK -aqQ -cdn -cdn -cdn -avc +sYJ +rzF +sYJ +laU +vsT +bfC +evZ +jxD +jxD +jxD +czx cjn cjn cjn cjn -cct +oGX cdm -aEr -aFE +eoY +mSI aDu -aHR -aHR +kCY +kCY cpU -aMt -aMt -aMt -aMt +kud +kud +kud +kud aFD aFD xkj @@ -68575,8 +68578,8 @@ xkj xkj xkj xkj -rpX -tnM +fbA +uVp wZZ btE btL @@ -68585,9 +68588,9 @@ wZZ bDC wZZ wZZ -rpX +fbA bjr -tnM +uVp hGm ctZ xjr @@ -68739,29 +68742,29 @@ bME bME bME bPf -bPZ -bWd +xFV +jTM bPf cjn -atb -cdn -avd -awp -axO -azo -ccu -ccu +wlS +jxD +hld +mJb +nEv +ydD +gAT +gAT aDu -cee -aHR -aGQ -aHT -aHT +tyF +kCY +vdJ +czN +czN iau -aMu -aHT -aOM -aQr +nSo +czN +tKR +sWQ cpg cpg wLv @@ -68770,20 +68773,20 @@ wLv xId cpg aMw -bgL +hTB bjr -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN +uuT +uuT +uuT +uuT +uuT +uuT +uuT +uuT bjr bjr bjr -tNQ +wRc cuc xkj xkj @@ -68797,8 +68800,8 @@ xkj cpg cpg cxW -rWk -qOF +eIP +uAG cxW iMn xkj @@ -68916,7 +68919,7 @@ acc age tSb agR -bmZ +vEn agR aac aac @@ -68933,30 +68936,30 @@ bNW bNW bNW bNW -bUF -aoR -rgt -aat +wXg +wlu +wsU +kUK cjn -atc -cdn -cdn -awp -axP -azp -aAY -aCo +gbm +jxD +jxD +mJb +jhw +tlE +fqz +sBi aKM -aEs -aFE +dvg +mSI aDu -aHU -aHT +pDs +czN iau -aMv -aNE -aON -aQs +ver +ddM +kCi +wjn cpg cpg xkj @@ -68965,20 +68968,20 @@ xkj aXp aXp aXp -taW -szX -uVv -uVv -btM -bwF -wLj -wLj -bIv -uVv -szX -uVv -uVv -kdm +jBv +ovp +ioE +ioE +rlV +fCC +usT +usT +sUW +ioE +ovp +ioE +ioE +rpw cuc cwq xkj @@ -68992,8 +68995,8 @@ xkj cpg cpg qbR -tZF -gPQ +mHb +xxL cxW cxW cxW @@ -69112,7 +69115,7 @@ acw age adN bkT -aex +jmC bDm bHj bHj @@ -69128,25 +69131,25 @@ bNW bNW bNW vVK -bUF -bUF -bUF -bUF +wXg +wXg +wXg +wXg cjn cjn -aJG +ksF cjn cpU -axQ -axQ -axQ +fIw +fIw +fIw cpU aDu aDu aDu aDu -aHV -aJH +mXs +cEA cpU aMw aMw @@ -69187,13 +69190,13 @@ xkj cpg cxW cxW -qAr -ydp +sET +mda cxW lpk aLc hjC -jrs +iQH cxW cpg xkj @@ -69306,8 +69309,8 @@ aUD aXb aac adq -adM -aef +ezv +pGh lkB bHj bHj @@ -69328,9 +69331,9 @@ pPk pPk rok rPA -atd +mUY atY -ave +dvd tvk pPk pPk @@ -69340,8 +69343,8 @@ bHj bHj cpg cpg -vDm -vDm +gTo +gTo wLv wLv wLv @@ -69354,8 +69357,8 @@ xkj aXp bdj bbM -beA -bgV +nBj +ntn aXp aXp xkj @@ -69381,9 +69384,9 @@ kLM xkj xkj cxW -ugH -ekh -aHl +hKc +oPZ +rwl wab viA hsX @@ -69427,7 +69430,7 @@ dKj dKj dKj dKj -icG +vVF jLb jLb jLb @@ -69501,14 +69504,14 @@ aUD aUD aac bDm -aex -bDn +jmC +rhY bDm bHj bDm -bJC -bDn -aex +fec +rhY +jmC bon aic agT @@ -69523,9 +69526,9 @@ bon bon bon arK -ate -atZ -avf +xPs +eqa +jgK awr bon bon @@ -69547,11 +69550,11 @@ xkj xkj xkj aXp -aZE -bbN -beB -beB -bgV +xOJ +rdI +gWl +gWl +ntn aXp cwq xkj @@ -69576,9 +69579,9 @@ cFp cxK xkj cxW -hmA -ekh -ekh +ess +oPZ +oPZ uzb viA viA @@ -69602,8 +69605,8 @@ wXm wXm wXm rxp -hfv -uhe +jsq +tfz rxp uXg uXg @@ -69696,15 +69699,15 @@ aUD aUD aac bDm -aex -aex +jmC +jmC bDm bHj bHj -bDn -aex -aex -aex +rhY +jmC +jmC +jmC bon bon bon @@ -69742,11 +69745,11 @@ cwq xkj xkj aXp -aZF -bbN -bbN -bgW -csj +beu +rdI +rdI +urj +shC aXp cpg cwq @@ -69772,13 +69775,13 @@ kLM xkj cxW cxW -eiV -ugH +isZ +hKc cxW dSA sgq cxW -jrs +iQH cxW xjr xkj @@ -69797,14 +69800,14 @@ cyQ cyQ cyQ ivF -uTv -lpr +rpj +kDf rxp dKj dKj dKj dKj -icG +vVF aiT dUl dUl @@ -69891,13 +69894,13 @@ aUD aUD aac bDm -bDn -bDn +rhY +rhY bDm bHj bDm -bDn -bDn +rhY +rhY bDm bHj bHj @@ -69937,7 +69940,7 @@ xkj aNF xkj aXq -aZG +xgV bbO aXp aXp @@ -69985,15 +69988,15 @@ xkj xkj cpg rxp -oQe -qwx -gqa +nrZ +mwV +pML gUp eaO eaO rxp -nrP -fzJ +peu +hqI rxp dKj dKj @@ -70086,13 +70089,13 @@ aac aac aac bDm -bDn -abS +rhY +pwS bDm bHj bDm -bDn -bDn +rhY +rhY bDm bHj bHj @@ -70133,7 +70136,7 @@ xkj xkj aXp aXp -bbP +sFe aXp wkv cpg @@ -70180,9 +70183,9 @@ xkj xkj cpg rxp -taL -tPx -vRP +uKv +bGW +fea eaO eaO eaO @@ -70281,13 +70284,13 @@ bNW bNW bNW bDm -adP -bDn +uhd +rhY bDm bHj bDm -acl -bDn +foZ +rhY bDm bHj vVK @@ -70309,7 +70312,7 @@ vVK vVK vVK vVK -azr +vFD cbF cdp cdp @@ -70375,9 +70378,9 @@ xkj xkj cpg rxp -oQe -sse -haZ +nrZ +mXf +plc sXt xtw gTB @@ -70395,7 +70398,7 @@ jLb jLb jLb jLb -icG +vVF dKj dKj eMz @@ -70476,13 +70479,13 @@ bNW bNW bNW bDm -abS -bDn +pwS +rhY bDm bHj bDm -bDn -abS +rhY +pwS bDm bHj vVK @@ -70502,10 +70505,10 @@ bXG bZN vVK cbF -axR -azq -azr -axR +ivs +xTC +vFD +ivs cbF cbF cbF @@ -70518,7 +70521,7 @@ cjr aQt cpg cpg -aSz +enT xkj xkj xkj @@ -70574,11 +70577,11 @@ rxp rxp rxp rxp -ljg -ljg +euy +euy rxp rxp -fxO +feS rxp dKj dKj @@ -70671,13 +70674,13 @@ bnd bnd bnd bDm -bDn -bDn +rhY +rhY bDm bHj bDm -bDn -bDn +rhY +rhY bDm vVK vVK @@ -70697,13 +70700,13 @@ vVK vVK avg awt -axS -azr -aAZ -axS +frH +vFD +uqk +frH cbF -aEt -aFG +sDX +dfj cbF cdp aIU @@ -70716,7 +70719,7 @@ cjr aSB xkj cpg -aSz +enT xkj xkj beE @@ -70861,18 +70864,18 @@ aad aad bnd bnd -abB +xbN abC -acx +pJX bnd bDm -acy -bDn +rfS +rhY bDm bDm bDm -bDn -aex +rhY +jmC agT bon bon @@ -70892,13 +70895,13 @@ vVK aoT vVK cbF -axT +chv azs aBa -azr +vFD aME -aEu -aFH +xLI +gXQ cbF cdp cdp @@ -71055,19 +71058,19 @@ aad aad aad bnd -abB -bDn -acj -abS -abD +xbN +rhY +xSc +pwS +dsV abC -bDn -bDn -abS -bqY -afl -bDn -aex +rhY +rhY +pwS +hDI +wCq +rhY +jmC bon bon bon @@ -71092,11 +71095,11 @@ azt cbE cbF cbF -aEv -aEv +fAW +fAW cbF cbF -aJI +tNz aHZ cjr cjr @@ -71185,7 +71188,7 @@ dKj dKj dKj dKj -icG +vVF jLb dKj jLb @@ -71251,17 +71254,17 @@ aad aad bnd abC -loN +fbo abC -acy +rfS abC bDm -adO -bDn -bDn -bDn -afm -aex +xHj +rhY +rhY +rhY +evA +jmC agi bon bon @@ -71285,12 +71288,12 @@ vVK axV caV aBb -aCq -aDw +gUE +hUo aCt -aFI -aGR -aIa +xxX +vxy +dmG aJJ aHZ cjr @@ -71344,13 +71347,13 @@ tPN tPN tPN tPN -beF +szB vit vit vit vit vit -beF +szB tPN tPN tPN @@ -71445,14 +71448,14 @@ aad aad aad bnd -abD -abS -bDn -loN -acR -bDn -bDn -bDn +dsV +pwS +rhY +fbo +szq +rhY +rhY +rhY bDm bDm bDm @@ -71480,13 +71483,13 @@ bZN axU caW caW -aCr +unN aDx aEw -azr -aGS +vFD +iYI aIb -aJI +tNz aHZ cjr cjr @@ -71641,13 +71644,13 @@ aad aad bnd bnd -btz +tWI abC -iGR +fyT bnd bDm -abS -bDn +pwS +rhY bDm bHj bHj @@ -71675,10 +71678,10 @@ vVK cbF azu cbF -aCs +gjA aDy aEx -aFJ +rmG cbF cbF cdp @@ -71724,7 +71727,7 @@ cwD piY piY piY -beF +szB tPN tPN tPN @@ -71841,8 +71844,8 @@ bnd bnd bnd bDm -bDn -acy +rhY +rfS bDm bHj bHj @@ -71869,11 +71872,11 @@ vVK aoT vVK vVK -aBc +vaR aCt caW -aEy -aEy +sJh +sJh cbF cdp cdp @@ -72036,8 +72039,8 @@ bDm bDm bDm bDm -bDn -bDn +rhY +rhY bDm bHj bHj @@ -72135,10 +72138,10 @@ vit vit tPN tPN -beF +szB vit vit -beF +szB vit vit vit @@ -72227,12 +72230,12 @@ aad aad aad bDm -bEy -ack -bDn +hqG +rrE +rhY bDm -adP -bDn +uhd +rhY bDm bHj bHj @@ -72318,7 +72321,7 @@ tPN tPN tPN tPN -beF +szB vit vit vit @@ -72422,12 +72425,12 @@ aad aad aad bDm -ack -bDn -bDn -adt -bDn -abS +rrE +rhY +rhY +uSJ +rhY +pwS bDm bHj bHj @@ -72617,12 +72620,12 @@ aad aad aad bDm -bDn -acz -bDn -adw -acz -bDn +rhY +jDH +rhY +eDH +jDH +rhY bDm bHj bHj @@ -72812,12 +72815,12 @@ aad aad aad bDm -bxl -abS -bEy +doy +pwS +hqG bDm -bDn -bDn +rhY +rhY bDm bHj bHj @@ -72899,18 +72902,18 @@ sRR vit vit uvw -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy +ljt +ljt +ljt +ljt +ljt +ljt +ljt +ljt +ljt +ljt +ljt +ljt iRk uvw uvw @@ -72939,14 +72942,14 @@ dKj dKj dKj dKj -icG +vVF jLb jLb eMz euZ eMz jLb -icG +vVF aad aad aad @@ -73008,11 +73011,11 @@ aad aad bDm bDm -bDn +rhY bDm bDm -abS -bDn +pwS +rhY bDm bHj bHj @@ -73045,7 +73048,7 @@ cdp cdp cdp ceQ -aFj +fEc aJK aCv jUA @@ -73094,7 +73097,7 @@ tPN tPN vit uvw -vsy +ljt gih gih gih @@ -73105,7 +73108,7 @@ gih gih pqG gih -vsy +ljt vit vit uvw @@ -73119,7 +73122,7 @@ vit vit vit sRR -beF +szB ekJ ekJ dKj @@ -73202,12 +73205,12 @@ aad aad aad bDm -bxm -bDn -acS +nmd +rhY +oLx bDm -adP -bDn +uhd +rhY bDm bDm bDm @@ -73289,7 +73292,7 @@ tPN tPN vit vit -vsy +ljt gih khT khT @@ -73300,7 +73303,7 @@ khT khT khT gih -vsy +ljt vit vit uvw @@ -73397,15 +73400,15 @@ aad aad aad ake -bxn -bDn -bDn +yai +rhY +rhY bDm -bDn -abS -bDn -aex -afn +rhY +pwS +rhY +jmC +gyE bon bon bon @@ -73476,7 +73479,7 @@ bDH cwD cwD piY -mLN +hqL cuM cuM tPN @@ -73484,18 +73487,18 @@ tPN tPN vit vit -vsy +ljt xJH khT -czw -kRO -xwn -pVn -aKF -lkl +gBC +mwE +nmZ +gLL +irl +ghZ khT gih -vsy +ljt vit vit uvw @@ -73592,14 +73595,14 @@ aad aad aad bDm -acl -bDn -bDn +foZ +rhY +rhY bDm -bDn -bDn -aex -aeN +rhY +rhY +jmC +xFo afo bon bon @@ -73679,18 +73682,18 @@ vit vit vit sRR -mjR +pEP oAQ khT -sCa -vbN -vsy -vsy -lMB -pmC +kzO +eYs +ljt +ljt +mcQ +sFP khT gih -vsy +ljt vit iRk vit @@ -73787,12 +73790,12 @@ aad aad aad bDm -bEy -bDn -abS -bDn -bDn -bDn +hqG +rhY +pwS +rhY +rhY +rhY bDm bDm bDm @@ -73874,18 +73877,18 @@ aKY vit vit vit -vsy +ljt gih -jzD -vsy -lZd +pTO +ljt +rQy khR -lZd +rQy gih -ajO +hOf khT gih -vsy +ljt vit sRR vit @@ -73982,18 +73985,18 @@ aad aad aad bDm -ack -bDn -bDn -bDn -bDn -bEy +rrE +rhY +rhY +rhY +rhY +hqG bDm bHj bHj bHj bHj -bWe +rfC bon vVK bHj @@ -74017,7 +74020,7 @@ pNT pNT pNT pNT -aFj +fEc jUA jUA aSF @@ -74069,18 +74072,18 @@ vit vit vit vit -vsy +ljt gih -bLK -vsy +pFQ +ljt gih -lZd +rQy gih -lZd -vsy +rQy +ljt khT gih -vsy +ljt vit vit vit @@ -74259,29 +74262,29 @@ cwD piY piY cwD -vsy -vsy -vsy -vsy -vsy -vsy +ljt +ljt +ljt +ljt +ljt +ljt gih khT -jNJ -eyA -xgR -uHa -vsy -vsy +bKk +elo +hCY +hWW +ljt +ljt khT gih -vsy -jiQ -vsy -vsy -vsy -vsy -vsy +ljt +uzr +ljt +ljt +ljt +ljt +ljt uvw vit vit @@ -74297,7 +74300,7 @@ wFG wFG wFG wFG -fst +vvr dKj dKj dKj @@ -74307,7 +74310,7 @@ eMz eMz eMz jLb -icG +vVF aad aad aad @@ -74388,7 +74391,7 @@ bon aig vVK aob -bWe +rfC bHj vVK bon @@ -74413,7 +74416,7 @@ jUA jUA jUA jUA -aFj +fEc ceQ ceQ ceQ @@ -74454,7 +74457,7 @@ cwD piY piY sEV -vsy +ljt gih gih gih @@ -74466,8 +74469,8 @@ eIT khT khT khT -rJf -wbK +pJG +lLr khT qXN qXN @@ -74476,7 +74479,7 @@ qXN qXN qXN fre -jiQ +uzr dqo wFG wFG @@ -74649,7 +74652,7 @@ cwD cwD piY piY -vsy +ljt gih khT khT @@ -74658,20 +74661,20 @@ khT khT khT lhI -era +mqE sGJ -lZd +rQy gih -lZd -vsy -sQK -sQK -sQK -sQK -sQK -ipd +rQy +ljt +jJa +jJa +jJa +jJa +jJa +vgx hfq -vsy +ljt wFG oDw wFG @@ -74770,7 +74773,7 @@ aad bHj bDm vVK -bWe +rfC vVK vVK bon @@ -74807,7 +74810,7 @@ ceQ ceQ ceQ ceQ -aFj +fEc ceQ ceQ ceQ @@ -74844,29 +74847,29 @@ cwD cwD piY piY -vsy +ljt gih khT -ogL -kfm -scb -uLl -uLl +hlm +vgc +iqW +dSM +dSM khT -uWe -lZd +qGU +rQy gih -lZd +rQy gih -vsy -lVJ -ixD -ixD -ixD -aCw -ocE +ljt +fUy +wUu +wUu +wUu +llH +vEY hfq -vsy +ljt wFG wFG ekJ @@ -74988,14 +74991,14 @@ aua jUA awu ceQ -aFj +fEc jUA jUA jUA jUA jUA cei -aFj +fEc ceQ ceQ ceQ @@ -75034,23 +75037,23 @@ sKg sKg sKg sKg -mLN +hqL piY cwD piY piY -vsy +ljt gih khT iCt -lRa +uvo khR -lZd +rQy gih khT khT -rJf -wbK +pJG +lLr khT khT khT @@ -75059,9 +75062,9 @@ khT khT khT khT -ocE +vEY hfq -vsy +ljt wFG ekJ ekJ @@ -75234,29 +75237,29 @@ daq daq aZO daq -vsy +ljt gih khT -lZd +rQy gih -mRN +ipf gih -lZd -jPc -ixD -vsy -vsy -mWT -vsy +rQy +hBl +wUu +ljt +ljt +nRo +ljt khT -xst -gWE -vwX -qOZ -puV -ocE +nId +dxM +ixN +dwA +wWD +vEY hfq -vsy +ljt wFG ekJ ekJ @@ -75266,7 +75269,7 @@ ekJ ekJ ekJ ekJ -fst +vvr wFG dqo dqo @@ -75365,7 +75368,7 @@ agT bon bon bon -bWe +rfC bDm bHj bHj @@ -75387,7 +75390,7 @@ cei cei ceQ ceQ -aFj +fEc jUA jUA jUA @@ -75429,29 +75432,29 @@ daq daq aZO daq -vsy +ljt gih khT -rJf -wbK +pJG +lLr khT khT khT khT -oZt -vsy +qUw +ljt gih -xMr -vsy -tGZ -vsy +jqv +ljt +nZr +ljt gih -lZd -sya -puV -ocE +rQy +lBr +wWD +vEY hfq -vsy +ljt ekJ ekJ ekJ @@ -75624,29 +75627,29 @@ sKg daq aZO aZO -vsy +ljt gih -enU -ixD -ixD -enU +aZd +wUu +wUu +aZd khT khT khT khT -iuf -lZd +ipr +rQy gih -vsy -gdZ -cDt -lZd +ljt +qxa +gzZ +rQy gih -sya -puV -hsg +lBr +wWD +ljJ hfq -vsy +ljt khT khT khT @@ -75748,7 +75751,7 @@ bon afq bon bon -bWe +rfC vVK bon vVK @@ -75767,7 +75770,7 @@ ceQ ceQ ceQ ceQ -aFj +fEc jUA jUA jUA @@ -75819,32 +75822,32 @@ sKg sKg aZO aZO -vsy +ljt gih -aCw -ixD -ixD -ixD +llH +wUu +wUu +wUu khT -uLJ -uLJ -qFY -iGN +fGF +fGF +hCz +sEH gih -lRa -iGN +uvo +sEH khT -vsy +ljt pqG -lZd -vyK -puV -hsg +rQy +eLq +wWD +ljJ hfq -vsy -pmT -ixD -eDc +ljt +usD +wUu +kAZ khT ekJ ekJ @@ -75945,8 +75948,8 @@ bon bon vVK aYz -acE -acE +dZV +dZV aYz aYz aYz @@ -76014,29 +76017,29 @@ sKg sKg aZO aZO -vsy +ljt gih -ixD -ixD -ixD -ixD +wUu +wUu +wUu +wUu ifU -txm -uKV -fBk -vsy -vsy -vFV -idq -xlQ -vsy -vFV -vsy -vsy +hts +mGP +mfi +ljt +ljt +ckt +fYH +mwo +ljt +ckt +ljt +ljt khT khT fzA -vsy +ljt khT khT khT @@ -76139,15 +76142,15 @@ bon bon bon bon -adz -aih -aiU -aeC -abX -akK +kEL +hWy +uLv +mgJ +kxu +gVy uux -amc -bUm +jdK +mbs uux bHj bHj @@ -76174,7 +76177,7 @@ jUA jUA cei jUA -aFj +fEc jUA ceQ ceQ @@ -76209,32 +76212,32 @@ sKg sKg aZO aZO -vsy +ljt gih -ixD -eNL -aCw -ixD +wUu +igs +llH +wUu khT khT khT khT -rJf -wbK +pJG +lLr khT khT khT khT khT -tLI -yca -jeF -sXl +kmf +kFX +rEc +ioW gih -vsy -pmT -ixD -eDc +ljt +usD +wUu +kAZ khT ekJ ekJ @@ -76334,15 +76337,15 @@ bon bon bon bon -adz -aii -aiV -ajC -aiV -abX -bRU -bEE -amY +kEL +lKW +nSF +xLv +nSF +kxu +oPq +cXo +hRu uux bHj bHj @@ -76404,29 +76407,29 @@ sKg sKg aZO aZO -vsy +ljt gih -ixD +wUu gih -ixD -ixD -ixD +wUu +wUu +wUu mBl rNO -enU -lZd -lZd -enU -ixD -djR -ixD -sXl -eUW -kmt -xUo -sXl +aZd +rQy +rQy +aZd +wUu +wxf +wUu +ioW +rYi +oNC +uFq +ioW pqG -vsy +ljt khT khT khT @@ -76444,7 +76447,7 @@ dqo dqo dqo dqo -fst +vvr aad aad aad @@ -76529,22 +76532,22 @@ bon agT bon bon -adz -aij -vaq -ajD -akf -akK +kEL +wEj +wYn +jKE +dBb +gVy uux -amd -amZ +xqz +djI uux bHj bHj uux -arO -atg -aub +gcs +gQp +nMh uux cgE cgE @@ -76599,32 +76602,32 @@ aZO sKg aZO aZO -vsy +ljt gih -ixD +wUu gih gih -ixD -ixD -ixD -ixD -ixD -lZd -lZd -aCw -ntu -ydz -xuq -sXl -gkA -chx -cTN -sXl +wUu +wUu +wUu +wUu +wUu +rQy +rQy +llH +qSn +fCx +wQE +ioW +uiG +skd +xjA +ioW gih -vsy -pmT -aCw -eDc +ljt +usD +llH +kAZ khT ekJ ekJ @@ -76725,11 +76728,11 @@ bon bon cay aYz -acE +dZV aYz -ajE -aiV -akL +iOH +nSF +xQV aYz ame uux @@ -76737,9 +76740,9 @@ aYz uux uux uux -arP -bXQ -aub +hqu +cip +nMh uux cgE cgE @@ -76750,7 +76753,7 @@ chN cdx cdx chN -aOr +tHF cgE cgE ceQ @@ -76794,29 +76797,29 @@ aZO aZO aZO daq -vsy +ljt gih -ixD -ixD -ixD -ixD -ixD -ixD -ixD -aCw -lZd -xMr -ixD -ixD -xLJ -ixD +wUu +wUu +wUu +wUu +wUu +wUu +wUu +llH +rQy +jqv +wUu +wUu +hzh +wUu khT -sXl -sXl -sXl +ioW +ioW +ioW khT jDr -vsy +ljt khT khT khT @@ -76922,19 +76925,19 @@ ahc ahG ahG uux -bUo -aiV -bUo -ceg -bXQ -bUn -bXQ -bUn -bXQ -ceg -bXQ -bXQ -auc +sNG +nSF +sNG +pfO +cip +cpz +cip +cpz +cip +pfO +cip +cip +xOM uux cgE cgE @@ -76989,7 +76992,7 @@ aZO lhH aZO daq -vsy +ljt duq gih pqG @@ -76997,13 +77000,13 @@ gih gih gih gih -ixD -ixD -lZd -lZd -ixD -ixD -ixD +wUu +wUu +rQy +rQy +wUu +wUu +wUu pqG sGJ gih @@ -77011,13 +77014,13 @@ gih gih sGJ gih -vsy +ljt ekJ ekJ ekJ ekJ ekJ -fst +vvr wFG dqo wFG @@ -77111,15 +77114,15 @@ uux uux uux aYz -afT -agl +xth +nPl aYz aYz -acE +dZV aYz -ajE -aiV -akM +iOH +nSF +tAm aYz uux uux @@ -77128,8 +77131,8 @@ uux uux uux uux -bXQ -bYu +cip +gcB uux aly aly @@ -77184,29 +77187,29 @@ daq daq aZO daq -vsy -vsy -vsy -vsy -vsy -vsy -vsy +ljt +ljt +ljt +ljt +ljt +ljt +ljt qsI -ixD -lZd -tIv -lZd -lZd -lZd -ixD +wUu +rQy +bHL +rQy +rQy +rQy +wUu gih -vsy -vsy -vsy -vsy -vsy -vsy -vsy +ljt +ljt +ljt +ljt +ljt +ljt +ljt ekJ ekJ ekJ @@ -77301,36 +77304,36 @@ aad aad aad uux -adR -aeh -mcD -adz -afs -ady -ady -ahd -adz -aik -aiX -abX -aiV -akK +trH +mJX +dSk +kEL +vlg +uuv +uuv +xTf +kEL +nBb +mYJ +kxu +nSF +gVy uux -amf -ptW +qHz +dZw uux -cdF -apL -cdF +vir +nUa +vir uux -ath +ukB uux uux aly aly aly aly -aJk +suD chN cdx cdx @@ -77343,7 +77346,7 @@ cei cei cei jUA -aFj +fEc jUA jUA ceQ @@ -77375,7 +77378,7 @@ sKg sKg sKg sKg -psR +qLa daq daq daq @@ -77385,17 +77388,17 @@ mLn mLn mLn fFy -vsy +ljt gih -ixD -cPq -ixD -duQ -dIE -lZd -ixD +wUu +tZD +wUu +cyx +vSU +rQy +wUu gih -vsy +ljt wFG wFG wFG @@ -77496,30 +77499,30 @@ aad aad aad uux -adT -aei -aeB -adz -abX -ady -ady -abX -adz -ail -bPn -aiV -aiV -abX -bRU -bUo -bUo +uCg +cBZ +gVZ +kEL +kxu +uuv +uuv +kxu +kEL +wGT +bKh +nSF +nSF +kxu +oPq +sNG +sNG uux -aoU -bAr -bUo -bXa -bAr -bAr +qKX +ngc +sNG +lrV +ngc +ngc uux uux uux @@ -77580,17 +77583,17 @@ tgC mLn mLn mLn -vsy +ljt gih -ixD -lZd -ixD -ixD -dZm -lZd -ixD +wUu +rQy +wUu +wUu +tJE +rQy +wUu gih -vsy +ljt dqo dqo dqo @@ -77691,33 +77694,33 @@ aad aad aad uux -adU -abX -aeC -adz -afu -ady -ady -ahe -adz -aij -aiY -aeC -abX -akK +vYC +kxu +mgJ +kEL +rFh +uuv +uuv +hQY +kEL +wEj +krd +mgJ +kxu +gVy uux -amg -wUa +oHk +oYx uux -aoV -bAr -bUo +kma +ngc +sNG uux -ati -bAr +cdk +ngc uux -qWQ -axW +gxU +kBS uux aly ccz @@ -77775,17 +77778,17 @@ tgC tgC mLn mLn -vsy +ljt gih -aCw -lZd -ixD -ixD -eEO -pzt -ixD +llH +rQy +wUu +wUu +hSn +ezM +wUu gih -jiQ +uzr dqo dqo dqo @@ -77887,33 +77890,33 @@ aYz aYz uux uux -aej +jJq uux uux aYz -afU -agm +pmI +fOi aYz aYz uux uux aYz -akg -akN +xrb +mGj aYz apd uux aYz -aoW -bAr -bAr +sFU +ngc +ngc uux -bAr -bAr -bXa -bUo -bUo -adz +ngc +ngc +lrV +sNG +sNG +kEL vEp vEp chN @@ -77970,17 +77973,17 @@ lzb tgC tgC mLn -vsy +ljt gih -ixD -tIv -lZd -tIv -lZd -lZd -ixD +wUu +bHL +rQy +bHL +rQy +rQy +wUu gih -vsy +ljt dqo dqo dqo @@ -78075,40 +78078,40 @@ aad aad aad uux -abE -abT -abE +usU +vPu +usU aYz -acT -adx -adV -bAr -bAr -bAr -bMR -bUo -bUo -bMR -bAr -acV -bAr -bAr -bAr -acp -bAr -aeR -akL -aod -bUo -acp -bAr +mSz +qhy +lRb +ngc +ngc +ngc +oNp +sNG +sNG +oNp +ngc +wlj +ngc +ngc +ngc +clO +ngc +jUK +xQV +ggn +sNG +clO +ngc uux uux uux uux -bUo -abU -adz +sNG +dGZ +kEL axX vEp chN @@ -78165,17 +78168,17 @@ vuJ vuJ tgC tgC -vsy +ljt gih -ixD -ixD -ixD -ixD -ixD -ixD -aCw +wUu +wUu +wUu +wUu +wUu +wUu +llH gih -vsy +ljt wFG wFG wFG @@ -78270,39 +78273,39 @@ aad aad aad uux -bUo -abU -bUo -bXa -bAr -bAr -bUo -bUo -abU -aeS -bMR -bUo -bUo -bMR -aeS -aeS -aeS -aeS -aeS -aeS -bUo -bUo -bUo -bAr -bAr -bAr -acV +sNG +dGZ +sNG +lrV +ngc +ngc +sNG +sNG +dGZ +hox +oNp +sNG +sNG +oNp +hox +hox +hox +hox +hox +hox +sNG +sNG +sNG +ngc +ngc +ngc +wlj uux -abX -aud -abX -abX -adT +kxu +wFs +kxu +kxu +uCg uux aBf ccK @@ -78360,7 +78363,7 @@ vuJ pPi tgC tgC -vsy +ljt gih gih gih @@ -78370,9 +78373,9 @@ gih gih gih gih -vsy +ljt ekJ -fst +vvr ekJ ekJ wFG @@ -78465,40 +78468,40 @@ aad aad aad uux -mOj -abV -abF +wfS +tCg +iGh aYz -bAr -bUo -abX -aek -aek -aeT -bSG -aeT -aeT -bMR -bUo -bUo -aeT -aeT -aeT -aeT -aek -aek -abX -bUo -eSs -bAr -bAr -bXa -abX -aue -aiV -awv -mcD -adz +ngc +sNG +kxu +jXN +jXN +wfA +owv +wfA +wfA +oNp +sNG +sNG +wfA +wfA +wfA +wfA +jXN +jXN +kxu +sNG +mpA +ngc +ngc +lrV +kxu +qAf +nSF +kgV +dSk +kEL ccz vEp chN @@ -78509,7 +78512,7 @@ chN cgE cgE ceQ -aFj +fEc jUA jUA cei @@ -78549,23 +78552,23 @@ sKg sKg sKg sKg -qoD +nIx tgC tgC vuJ vuJ tgC -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy +ljt +ljt +ljt +ljt +ljt +ljt +ljt +ljt +ljt +ljt +ljt ekJ ekJ ekJ @@ -78664,36 +78667,36 @@ aYz aYz aYz aYz -acV -abU -bDq +wlj +dGZ +mSu aCP aBy azU auz asp aEC -bMR -bMR -bOh +oNp +oNp +uiO azU aBy aBy asp aCP aDa -abX -abU -bAr -bAr -aqU +kxu +dGZ +ngc +ngc +pzo uux -abX -aeC -avj -aww -aeB -adz +kxu +mgJ +fLF +dYq +gVZ +kEL vEp vEp chN @@ -78855,39 +78858,39 @@ aad aad aad aYz -aur -abW -acm -acA -bAr -bUo -bDq +hCn +xuA +hua +iVw +ngc +sNG +mSu auz bRl bRl bRl bRl agn -bMR -bMR -bOh +oNp +oNp +uiO bRl bRl bRl bRl bRl aDh -abX -bUo -bAr -bAr -aqV +kxu +sNG +ngc +ngc +nZZ uux -acE -acE +dZV +dZV uux -acE -acE +dZV +dZV uux aBf vEp @@ -79050,21 +79053,21 @@ aad aad aad aYz -abH -abX -bUo -bAr -bAr -ady -bDq +ftU +kxu +sNG +ngc +ngc +uuv +mSu auz bRl bRl bRl bBO ago -bMQ -bMQ +msp +msp aim ajb ajF @@ -79072,15 +79075,15 @@ akh bRl bRl aEN -qOm -ady -bAr -bAr -aqW -adz -atj -auf -adz +rNa +uuv +ngc +ngc +xOz +kEL +fNf +ldq +kEL awx axX vEp @@ -79089,7 +79092,7 @@ vEp cdx cdx chN -aOr +tHF cgE cgE cgE @@ -79106,7 +79109,7 @@ daq daq daq daq -bjk +tyU sKg sKg sKg @@ -79161,7 +79164,7 @@ wFG wFG ekJ ekJ -fst +vvr oDw lTW fKT @@ -79245,21 +79248,21 @@ aad aad aad aYz -abI -abX -bUo -acp -bAr -ady -bDq +iWV +kxu +sNG +clO +ngc +uuv +mSu auz bRl aeW bRl aeY -agp -bMP -bMP +sOk +wOo +wOo ain aim ajb @@ -79267,14 +79270,14 @@ ajF akh aeW aEC -qOm -ady -bAr -bAr -aqX +rNa +uuv +ngc +ngc +hpn uux -atk -aug +qky +gVo uux awy vEp @@ -79440,37 +79443,37 @@ aad aad aad aYz -abJ -abW -acn -acB -bAr -ady -bDq +cbk +xuA +hoi +dKc +ngc +uuv +mSu azU bRl bRl bRl aeY -agq -ahh +jwP +ygn ahH -ahh +ygn ain ago aki akO bRl aDR -qOm -ady -bAr -bAr -bAr -bXa -aeS -aeS -avk +rNa +uuv +ngc +ngc +ngc +lrV +hox +hox +msb awz cdx cdx @@ -79638,34 +79641,34 @@ aYz aYz aYz aYz -acE -acE +dZV +dZV aYz -bex +sLv auz bRl bRl bBO afw -agr -ags +lyF +xXN ahI aio -ahi -ajG +wFn +kvK bRj akO bRl aEN -abX -ady -byl -acp -aoY +kxu +uuv +nvK +clO +uka uux -aeS -aeS -sBf +hox +hox +iZY awz cdx cdx @@ -79831,36 +79834,36 @@ aad aad aad aYz -bcR -aco -bey -acZ -adz -bDq +hba +pqf +ufh +iPO +kEL +mSu aCP bRl bRl aeY -afx -afY -ahi -bMP -ahh -ahh -bQg +ieF +hyU +wFn +wOo +ygn +ygn +tsT bRj akP bRl aEN -abX -ady -bAr -bAr -bAr -bXa -aeS -aeS -tgr +kxu +uuv +ngc +ngc +ngc +lrV +hox +hox +bkc eOz axZ chN @@ -80026,35 +80029,35 @@ aad aad aad aYz -bcS -bAr -acF -ada -adz -adX +nXD +ngc +oKC +mbk +kEL +rRb aBy bRl bBO afw -afX -afY +ebH +hyU ahj -ahJ -ahh -ahh -bMP +qvd +ygn +ygn +wOo akj -akQ -bSF -bSF -bUo -ady -bAr -bAr -aqY +tsl +wQw +wQw +sNG +uuv +ngc +ngc +wLY uux -atk -aug +qky +gVo uux awB aya @@ -80221,36 +80224,36 @@ aad aad aad aYz -aZZ -acp +sRW +clO aYz -acE +dZV aYz -bex +sLv asp bRl aeY -afx -afY +ieF +hyU bKK ahk -ahh -ahm -ahi -bMP +ygn +deC +wFn +wOo akj -bMR -bMR -bMR -bUo -ady -bAr -bAr -aqZ -adz -atl -auh -adz +oNp +oNp +oNp +sNG +uuv +ngc +ngc +jBq +kEL +cun +fPQ +kEL awC ayc vEp @@ -80314,7 +80317,7 @@ vuJ tgC tgC tgC -qoD +nIx tgC tgC tgC @@ -80416,38 +80419,38 @@ aad aad aad aYz -abY -bAr +pSU +ngc aYz -adb -bBQ -bDq +uWm +dZQ +mSu aBy bRl aeY -afx -afY -ags +ieF +hyU +xXN ahj ahL aip -ahh -bMP +ygn +wOo akj -bMR -bMR -bMR +oNp +oNp +oNp ane -ady -bAr -acp -aqZ +uuv +ngc +clO +jBq uux -acE -acE +dZV +dZV uux -acE -acE +dZV +dZV uux cbN vEp @@ -80496,7 +80499,7 @@ mLn mLn mLn mLn -qoD +nIx rRl kyr tgC @@ -80611,39 +80614,39 @@ aad aad aad aYz -abZ -aZZ -bXa -bAr -bBQ -adX +jjz +sRW +lrV +ngc +dZQ +rRb asp bRl aeZ afy -afX -afY -ahh -ahJ -ahh -ahh -bMP +ebH +hyU +ygn +qvd +ygn +ygn +wOo akj -bSG -bSG -bSG -bUo -ady -aoX -bAr -aqZ +owv +owv +owv +sNG +uuv +vbG +ngc +jBq uux -atm -aeC -avl -awD -ayd -adz +mYY +mgJ +bkK +cQS +bTL +kEL axX vEp chN @@ -80661,7 +80664,7 @@ cgE cgE cpW cnu -aYy +lrm cnu aVQ aVQ @@ -80809,36 +80812,36 @@ aYz aYz aYz aYz -adc -bBQ -bDq +joS +dZQ +mSu azU bRl bRl aeY -afx -afY -ahh -ahM -ahh -ahh -bQg +ieF +hyU +ygn +uQc +ygn +ygn +tsT bRj akS bRl aEC -abX -ady -bAr -bAr -bAr -bXa -abX -aiV -aei -aiV -aye -adz +kxu +uuv +ngc +ngc +ngc +lrV +kxu +nSF +cBZ +nSF +yiP +kEL vEp vEp chN @@ -80903,7 +80906,7 @@ vuJ tgC tgC tgC -qoD +nIx tgC tgC tgC @@ -81002,37 +81005,37 @@ aad aad aja aYz -aYA -acG -bAr -bBQ -adX +mnJ +jot +ngc +dZQ +rRb auz bRl bRl aeZ afy -agt +dcu ahl ahN aiq -ags -ahi +xXN +wFn bRj bRl akO aEC -abX -ady -bAr -apM -ara +kxu +uuv +ngc +dAs +mpn uux -abX -abX -bZh -abX -abX +kxu +kxu +xCx +kxu +kxu uux aBf vEp @@ -81109,7 +81112,7 @@ mLn mLn mLn mLn -qoD +nIx tgC tgC tgC @@ -81197,45 +81200,45 @@ aad aad aad aYz -aYA -acH -acp -bBQ -bDq +mnJ +ndF +clO +dZQ +mSu asp bRl bRl bRl aeY -agq -ahm -ahm -air +jwP +deC +deC +vZG ais agv akk akT bRl aEN -abX -ady -aoY +kxu +uuv +uka uux uux arQ uux uux uux -ajE -abU -adz +iOH +dGZ +kEL awx ccK chN cdx cdx cdx -aOr +tHF cgE cgE cgE @@ -81285,7 +81288,7 @@ mLn mLn mLn mLn -qoD +nIx tgC tgC vuJ @@ -81392,19 +81395,19 @@ aad aad aad aYz -aYA -acH -bAr -bBQ -bDq +mnJ +ndF +ngc +dZQ +mSu aBy bRl bRl bRl aeY -agu -bMP -bMP +nnu +wOo +wOo ais bPo bQi @@ -81412,18 +81415,18 @@ bQj akm bRl aEC -abX -ady -bAr -bXa -bAr -bAr -bAr -bAr -bXa -bUo -bUo -adz +kxu +uuv +ngc +lrV +ngc +ngc +ngc +ngc +lrV +sNG +sNG +kEL vEp vEp chN @@ -81455,7 +81458,7 @@ aVQ cnu cnu cnu -aYy +lrm cpW cpW cpW @@ -81507,7 +81510,7 @@ vuJ vuJ tgC wFG -fst +vvr aad aad aad @@ -81587,19 +81590,19 @@ aad aad aad aYz -aYA -acG -bAr -bBQ -bDq +mnJ +jot +ngc +dZQ +mSu aCP bRl aeW bRl aeZ agv -bMQ -bMQ +msp +msp bPo bQi bQj @@ -81607,17 +81610,17 @@ akm bRl bRl aEN -abX -ady -aoY +kxu +uuv +uka uux -bAr -acp -bAr -bAr +ngc +clO +ngc +ngc uux -jeZ -bXQ +tOY +cip uux aly axX @@ -81669,7 +81672,7 @@ tgC kyr tgC tgC -qoD +nIx mLn mLn mLn @@ -81784,35 +81787,35 @@ aad aYz aYz aYz -add -bUo -bDq +dTk +sNG +mSu auz bRl bRl bRl bRl bRl -ahf -bMR -bOh +mBt +oNp +uiO bRl bRl bRl aeW bRl aEC -abX -abU -bAr +kxu +dGZ +ngc uux -arb -arb -mdK -arb +oUB +oUB +kgh +oUB uux uux -ayf +tGG uux aly aly @@ -81979,27 +81982,27 @@ uux uux uux uux -ade -adA -bDq +skS +iGy +mSu asp asp asp asp asD auz -ahf -bMR -bOh +mBt +oNp +uiO aBy aBy asp asp aBy aEN -abX -bUo -bAr +kxu +sNG +ngc uux uux uux @@ -82007,7 +82010,7 @@ uux uux uux uux -bXQ +cip uux aly aly @@ -82032,7 +82035,7 @@ aVQ aVQ aVT aXu -aYy +lrm aVQ aVS aXt @@ -82049,7 +82052,7 @@ aVQ aVQ aVQ aVR -aYy +lrm cnu cnu cnu @@ -82171,38 +82174,38 @@ aad aad aad uux -aca -bEE -bbn -bAr -bUo -bZh -aep -aep -afa -afa -afa -afa -bUo -bUo -bUo -afa -afa -afa -afa -aep -aep -abX -bUo -bAr -apN +pck +cXo +qVd +ngc +sNG +xCx +iuM +iuM +qFG +qFG +qFG +qFG +sNG +sNG +sNG +qFG +qFG +qFG +qFG +iuM +iuM +kxu +sNG +ngc +vYj uux aad aad aad aad uux -bXQ +cip uux uux uux @@ -82366,42 +82369,42 @@ aad aad aad uux -acb -acq +kxc +shA uux -adf -bAr -bUo -bUo -abU -afb -aeS -aeS -aeS -aeS -bAr -ait -aeS -aeS -akn -aeS -bUo -abU -bUo -bAr -bAr -apO +oru +ngc +sNG +sNG +dGZ +vUr +hox +hox +hox +hox +ngc +rgJ +hox +hox +rVs +hox +sNG +dGZ +sNG +ngc +ngc +vlz uux uux uux arQ uux uux -bXQ -bXQ -bXQ -bXQ -bRU +cip +cip +cip +cip +oPq chN cdx cdx @@ -82564,39 +82567,39 @@ uux uux uux uux -adg -bAr -adY -aeq -bAr -aeq -bAr -bAr -agx -aeq -bAr -aeq -bAr -agx -bAr -bRT -bAr -bAr -bAr -bAr -bAr -bAr -bRU -cOB -bXQ -bXQ -bXQ -fQG -bXQ -bXQ -bXQ -bXQ -bRU +kkH +ngc +hUO +gjd +ngc +gjd +ngc +ngc +pyX +gjd +ngc +gjd +ngc +pyX +ngc +fkz +ngc +ngc +ngc +ngc +ngc +ngc +oPq +xXy +cip +cip +cip +euv +cip +cip +cip +cip +oPq chN cdx cdx @@ -82762,31 +82765,31 @@ uux aYz aYz uux -aer -aeE -aer -bAr -bAr -bAr -aho -aer -aiu +cWW +pwl +cWW +ngc +ngc +ngc +wpT +cWW +bbE uux -acE -acE +dZV +dZV uux uux -amp -amp -amp +hdn +hdn +hdn uux uux uux uux -bXQ -fQG -bXQ -awE +cip +euv +cip +gLo uux uux uux @@ -82956,19 +82959,19 @@ aad aad aad uux -adZ -bEE -bEE -afc -bEE -afd -agy -bEE -bEE -aiv +kqF +cXo +cXo +ibJ +cXo +nbL +ePJ +cXo +cXo +pDK uux -ajH -afe +cFV +gSr uux uux uux @@ -82978,10 +82981,10 @@ uux aly aly uux -bXQ -cOB -bXQ -awF +cip +xXy +cip +kMp uux aad aad @@ -83022,7 +83025,7 @@ cnu cnu cnu cnu -aYy +lrm aVQ aVQ aVQ @@ -83151,19 +83154,19 @@ aad aad aad uux -aea -bEE -aeF -afd -bEE -bEE -bEE -bEE -afd -bEE -ajd -ajI -ajI +vEa +cXo +qlh +nbL +cXo +cXo +cXo +cXo +nbL +cXo +pzK +tAR +tAR uux aly aly @@ -83173,7 +83176,7 @@ aly aly aly uux -atn +pyL uux uux uux @@ -83191,7 +83194,7 @@ cdx chN chN chN -aOr +tHF cgE cgE cpW @@ -83248,7 +83251,7 @@ rRl tgC tgC tgC -qoD +nIx tgC tgC aad @@ -83346,21 +83349,21 @@ aad aad aad uux -aeb -bEE -bEE -bEE -afA -aga -bop -bEE -bEE -bEE -bEE -bEE -aZZ -bRU -fQG +xRv +cXo +cXo +cXo +pPa +hIo +tYm +cXo +cXo +cXo +cXo +cXo +sRW +oPq +euv vEp vEp apP @@ -83368,7 +83371,7 @@ vEp vEp vEp vEp -fQG +euv aad aad aad @@ -83433,7 +83436,7 @@ tgC tgC tNK tgC -qoD +nIx aad aad aad @@ -83541,19 +83544,19 @@ aad aad aad uux -aec -aZZ -aZZ -afe +wHg +sRW +sRW +gSr uux uux uux -ahp -ahp -aZZ -bEE -bEE -aZZ +ghL +ghL +sRW +cXo +cXo +sRW uux aad vEp @@ -83590,7 +83593,7 @@ cpW cpW cpW cpW -aYy +lrm aVQ aVQ aVR @@ -83746,9 +83749,9 @@ uux uux uux uux -aje -ajJ -aje +gfk +sns +gfk uux aad aad @@ -83796,7 +83799,7 @@ cnu cnu beH cnu -aYy +lrm aad aad aad @@ -84364,7 +84367,7 @@ aad aad aad aad -aYy +lrm bAa cnu cnu diff --git a/maps/map_files/Sorokyne_Strata/standalone/clfship.dmm b/maps/map_files/Sorokyne_Strata/standalone/clfship.dmm new file mode 100644 index 000000000000..d42c492101d1 --- /dev/null +++ b/maps/map_files/Sorokyne_Strata/standalone/clfship.dmm @@ -0,0 +1,4408 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/exterior/research_decks) +"af" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/exterior/research_decks) +"az" = ( +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/gen/foyer) +"aD" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"aG" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/engi/drome) +"aM" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"aU" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/southresearch) +"bf" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/engi/drome) +"bk" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"bv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"bB" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"bH" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"bO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"bS" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/med) +"bT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"bU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"ci" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/platingdmg1, +/area/strata/ag/interior/outpost/admin) +"cm" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"cu" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"cB" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"cE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"cJ" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"cM" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"cO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/strata_decals/grime/grime2, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"cP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"cS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"cV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"cX" = ( +/turf/open/floor/strata/floor3/east, +/area/lv624/lazarus/crashed_ship) +"cZ" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"da" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/heavy_barrel, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"db" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/admin) +"dc" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"df" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/lv624/lazarus/crashed_ship) +"dg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/med) +"dk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"dl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/gen/foyer) +"do" = ( +/obj/item/stack/sheet/wood, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/southresearch) +"ds" = ( +/turf/open/floor/plating, +/area/strata/ag/exterior/research_decks) +"dw" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"dz" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_left" + }, +/area/lv624/lazarus/crashed_ship) +"dC" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"dH" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = -3; + pixel_y = 20 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/lv624/lazarus/crashed_ship) +"dL" = ( +/turf/open/floor/strata, +/area/strata/ag/interior/mountain) +"dV" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/strata/metal, +/turf/open/gm/river, +/area/strata/ag/exterior/research_decks) +"dY" = ( +/obj/item/stool, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"dZ" = ( +/turf/open/floor/almayer/greencorner, +/area/lv624/lazarus/crashed_ship) +"ei" = ( +/turf/open/floor/platingdmg1, +/area/strata/ag/interior/outpost/admin) +"ep" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"es" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ey" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_3" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"eG" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/engi/drome) +"eN" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"eZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/exterior/research_decks) +"fc" = ( +/turf/closed/shuttle/ert, +/area/lv624/lazarus/crashed_ship) +"fe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"fi" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"fj" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/strata_decals/grime/grime3, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"fl" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/interior/outpost/engi) +"fq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"fs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/med) +"fy" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"fA" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/med) +"fB" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"fD" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"fF" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"fH" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"fK" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/orange/southwest, +/area/lv624/lazarus/crashed_ship) +"fL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/transmitter/clf_net/rotary{ + phone_category = "CR-116"; + phone_color = "yellow"; + phone_id = "Engineering" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"fN" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"fP" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) +"gf" = ( +/obj/item/stack/rods, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"gn" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"gt" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Armoury"; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"gw" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_3_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"gF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Cargo Hold" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"gH" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"gK" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"gZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"ha" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/item/toy/deck, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/southresearch) +"hd" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"hh" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"hk" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_medic, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"hs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"ht" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_s_w" + }, +/area/lv624/lazarus/crashed_ship) +"hv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"hy" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"hC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/admin) +"hM" = ( +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_id = "Cargo Bay"; + pixel_y = 32 + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"hO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating, +/area/strata/ag/exterior/research_decks) +"hQ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"hS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"hY" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"ib" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"if" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/platingdmg1, +/area/strata/ag/interior/outpost/med) +"iv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"iL" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"iM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"iO" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"iT" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) +"iU" = ( +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/exterior/research_decks) +"je" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"jg" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/obj/structure/machinery/space_heater, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/southresearch) +"ji" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"jl" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"jm" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/exterior/research_decks) +"jn" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"jr" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ju" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/med) +"jy" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"jz" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"jB" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/interior/outpost/engi/drome) +"jE" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"jF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/admin) +"jI" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/crashed_ship) +"jP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/engi) +"jU" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/lv624/lazarus/crashed_ship) +"jV" = ( +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/gen/foyer) +"jX" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"kf" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/lv624/lazarus/crashed_ship) +"kw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"kB" = ( +/obj/item/stack/rods, +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"kJ" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"kK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper General Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"kM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/exterior/research_decks) +"kO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"kP" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"kT" = ( +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/admin) +"kU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"kY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/admin) +"lc" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"lf" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"lj" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/platform/strata/metal, +/turf/open/gm/river, +/area/strata/ag/exterior/research_decks) +"lk" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"lo" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/mountain) +"ls" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/interior/mountain) +"lv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"lC" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"lG" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"lM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"lX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"mb" = ( +/obj/item/stack/medical/splint, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/med) +"mc" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"md" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"mf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/emerald/northwest, +/area/lv624/lazarus/crashed_ship) +"mj" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"mn" = ( +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"mr" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"mu" = ( +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"mw" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/interior/outpost/gen/foyer) +"mF" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/admin) +"mV" = ( +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"nc" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"ni" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"nj" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"nB" = ( +/obj/structure/bed/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"nD" = ( +/obj/structure/sign/safety/terminal, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/admin) +"nG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Engineering Storage" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"nH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/latex, +/obj/item/storage/surgical_tray, +/turf/open/floor/strata, +/area/strata/ag/interior/mountain) +"nM" = ( +/obj/structure/machinery/computer/communications{ + icon_state = "commb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/lv624/lazarus/crashed_ship) +"nT" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"nV" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"oa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"og" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"oi" = ( +/obj/item/storage/pill_bottle/bicaridine, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"oq" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/gm/river, +/area/strata/ag/exterior/research_decks) +"os" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/gen/foyer) +"ov" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"oz" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/gm/river, +/area/strata/ag/exterior/research_decks) +"oA" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"oE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/engi) +"oV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"oZ" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"ph" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"pj" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"pk" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/storage/belt/utility/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"pm" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"po" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/interior/outpost/admin) +"pq" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"py" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"pD" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/admin) +"pE" = ( +/obj/structure/girder/displaced, +/turf/open/floor/strata, +/area/lv624/lazarus/crashed_ship) +"pJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"pS" = ( +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"pU" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" + }, +/obj/structure/machinery/m56d_hmg{ + rounds = 700 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"qh" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"qj" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"qr" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/gen/foyer) +"qs" = ( +/turf/open/floor/plating/panelscorched, +/area/strata/ag/exterior/research_decks) +"qu" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/admin) +"qB" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1" + }, +/area/lv624/lazarus/crashed_ship) +"qJ" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"qN" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/turf/open/floor/almayer/orange/northeast, +/area/lv624/lazarus/crashed_ship) +"qX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/engi/drome) +"rd" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_9_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"rj" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/platform/strata{ + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/mountain) +"rk" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"rC" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"rE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"rL" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"rR" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2" + }, +/area/lv624/lazarus/crashed_ship) +"rW" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/lv624/lazarus/crashed_ship) +"se" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"sg" = ( +/obj/item/stool, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"si" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/structure/platform/strata/metal, +/turf/open/gm/river, +/area/strata/ag/exterior/research_decks) +"sw" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/platingdmg1, +/area/strata/ag/interior/outpost/engi/drome) +"sx" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"sy" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/damaged3/west, +/area/strata/ag/interior/outpost/med) +"sA" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"sH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"sM" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/strata/ag/exterior/research_decks) +"sP" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"sR" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/inflatable, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/southresearch) +"td" = ( +/obj/item/stool, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"tg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"tj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"tt" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"tx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"tB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"tC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"tH" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"tK" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"tM" = ( +/obj/structure/girder, +/obj/item/stack/rods, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship) +"tO" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"uc" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"uj" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/blue/north, +/area/lv624/lazarus/crashed_ship) +"up" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -8 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 9 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"ur" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/engi) +"us" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"ut" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"ux" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/southresearch) +"uB" = ( +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"uU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"uW" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"vc" = ( +/obj/structure/morgue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"vf" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"vj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"vu" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"vC" = ( +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/engi) +"vD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"vE" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/gen/foyer) +"vF" = ( +/obj/structure/filingcabinet{ + layer = 2.9 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"vG" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine, +/turf/open/floor/strata, +/area/strata/ag/interior/mountain) +"vH" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"vQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/admin) +"vR" = ( +/obj/structure/girder/displaced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"vT" = ( +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/med) +"vY" = ( +/obj/structure/machinery/optable, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"wc" = ( +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/med) +"wg" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/admin) +"wk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/admin) +"wp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -4 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"wB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"wG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"wH" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan2" + }, +/area/lv624/lazarus/crashed_ship) +"wL" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wR" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_2_1" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"xa" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/lv624/lazarus/crashed_ship) +"xc" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"xf" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/admin) +"xj" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 + }, +/obj/item/storage/backpack/general_belt, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"xA" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"xG" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 8; + closed = 0; + density = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/foyer) +"xS" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/gen/foyer) +"xW" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"xY" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/plating, +/area/strata/ag/exterior/research_decks) +"yh" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"yj" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"ym" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"yt" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"yC" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/mountain) +"yD" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/transmitter/clf_net{ + phone_category = "CR-116"; + phone_color = "green"; + phone_id = "Medical Bay"; + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"yF" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/strata/ag/exterior/research_decks) +"yH" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/restraint/handcuffs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/green/southeast, +/area/lv624/lazarus/crashed_ship) +"yJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/gen/foyer) +"yK" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = -3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3 + }, +/turf/open/floor/almayer/green, +/area/lv624/lazarus/crashed_ship) +"yR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/rifle/mar40/lmg{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"yS" = ( +/obj/structure/sign/safety/maint, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/gen/foyer) +"yU" = ( +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"zg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"zj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Dining Area" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"zM" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"zR" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 2; + name = "Medical Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"zS" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_r_w" + }, +/area/lv624/lazarus/crashed_ship) +"zT" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/gm/river, +/area/strata/ag/exterior/research_decks) +"Ad" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"Ae" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"Aj" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"AG" = ( +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/engi) +"AL" = ( +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"AP" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"Be" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bridge" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Bg" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"Bj" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/lv624/lazarus/crashed_ship) +"Bn" = ( +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"BF" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_4_1" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"BP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 3 + }, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"BQ" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/gen/foyer) +"BW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"BX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/engi) +"BZ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Ch" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/admin) +"Cl" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Cm" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Co" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_6_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Cr" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/interior/mountain) +"Cu" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/mountain) +"Cv" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/lv624/lazarus/crashed_ship) +"CQ" = ( +/turf/open/floor/strata, +/area/lv624/lazarus/crashed_ship) +"CY" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3" + }, +/area/lv624/lazarus/crashed_ship) +"CZ" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"Da" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"Dj" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"Dn" = ( +/obj/item/circuitboard/apc{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/cell{ + pixel_x = -2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Ds" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"Dx" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"Dy" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"Dz" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan8" + }, +/area/lv624/lazarus/crashed_ship) +"DA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"DD" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"DT" = ( +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"Ec" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/med) +"Er" = ( +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/southresearch) +"Ev" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/incendiary{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Ew" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/engi) +"Ex" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"Ey" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"EJ" = ( +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/gen/foyer) +"EO" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"EW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/crowbar, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"Ff" = ( +/obj/structure/machinery/power/smes/buildable/charged, +/turf/open/floor/almayer/orange/north, +/area/lv624/lazarus/crashed_ship) +"Fm" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"Fp" = ( +/obj/structure/bed/roller, +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/mountain) +"Fz" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/gen/foyer) +"FH" = ( +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"FJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3"; + dir = 1; + closed = 0; + density = 1 + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/engi) +"FP" = ( +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/engi/drome) +"Ga" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"Gn" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"GJ" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"GS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"GT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/emerald/northeast, +/area/lv624/lazarus/crashed_ship) +"Hc" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"Hl" = ( +/obj/item/tank/anesthetic, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/mountain) +"Hr" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_white_t_up" + }, +/area/lv624/lazarus/crashed_ship) +"Ht" = ( +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"Hv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/admin) +"Hx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"HM" = ( +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/engi/drome) +"HV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Ib" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"Ik" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 3; + pixel_y = 20 + }, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Im" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plating, +/area/strata/ag/exterior/research_decks) +"Iy" = ( +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/strata, +/area/lv624/lazarus/crashed_ship) +"Iz" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/admin) +"IB" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/gen/foyer) +"IF" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/lv624/lazarus/crashed_ship) +"IM" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/crashed_ship) +"IN" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"IT" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"IV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"IX" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/admin) +"Ja" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/engi/drome) +"Jf" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Jo" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"Jq" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Jr" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"JE" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"JI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"JP" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"JQ" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"JT" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_1" + }, +/area/lv624/lazarus/crashed_ship) +"Ka" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/lv624/lazarus/crashed_ship) +"Kd" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"Kf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"Kt" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/med) +"Kx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"Ky" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -10 + }, +/turf/open/floor/almayer/greencorner/west, +/area/lv624/lazarus/crashed_ship) +"KE" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"KG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"KM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/storage/bag/trash, +/obj/item/tool/screwdriver, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"KS" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/southresearch) +"KT" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"Li" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_3" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Lj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/admin) +"Ln" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"Lx" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"Lz" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"LG" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"LL" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing fifty reposessed USCM MRE packets."; + name = "\improper CLF Supply MRE crate (x50)" + }, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"LZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"Mc" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Md" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Mk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"Mo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"Mr" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan21" + }, +/area/lv624/lazarus/crashed_ship) +"MD" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"ML" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/plating, +/area/strata/ag/exterior/research_decks) +"MS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Nc" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/lv624/lazarus/crashed_ship) +"Nm" = ( +/obj/item/weapon/gun/rifle/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Nn" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"Nr" = ( +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/admin) +"Nu" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"NB" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 3 + }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = -3 + }, +/turf/open/floor/almayer/green/southwest, +/area/lv624/lazarus/crashed_ship) +"ND" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 8; + name = "\improper Bunk Beds" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"NI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/east, +/area/lv624/lazarus/crashed_ship) +"NQ" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"NZ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/engi) +"Oq" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/med) +"OD" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"OE" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"OF" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/southresearch) +"OH" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"OK" = ( +/turf/closed/wall/mineral/gold, +/area/strata/ag/interior/outpost/med) +"ON" = ( +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/med) +"OX" = ( +/obj/structure/machinery/computer/station_alert{ + icon_state = "atmosb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"OZ" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Pk" = ( +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/admin) +"Pl" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"Pt" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"PF" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"PK" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/clothing/accessory/storage/webbing, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"PL" = ( +/turf/open/floor/strata/blue1, +/area/lv624/lazarus/crashed_ship) +"PM" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "clf_umbilical_1"; + pixel_x = 1; + pixel_y = 28; + range = 20 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"PP" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"PS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/admin) +"PU" = ( +/obj/structure/sign/safety/medical, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/med) +"PW" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/med) +"Qb" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"Qi" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"Qk" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Qq" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/engi) +"QF" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"QI" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"QS" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"QU" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1; + faction_group = list("CLF") + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/admin) +"Rg" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Ri" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, +/area/lv624/lazarus/crashed_ship) +"RA" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/lv624/lazarus/crashed_ship) +"RH" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/machinery/space_heater, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/southresearch) +"RK" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"RT" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"RW" = ( +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Sa" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"Sc" = ( +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Sh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/strata/ag/interior/mountain) +"Sl" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"Sq" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Su" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"SA" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"SL" = ( +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"SO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" + }, +/obj/item/paper/prison_station/pirate_note/clfship, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"ST" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"Th" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Ts" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/stamp, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"TB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Medical Bay" + }, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"TL" = ( +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"TN" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"TS" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"TU" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Ub" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer/green/northwest, +/area/lv624/lazarus/crashed_ship) +"Ui" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/attached_gun/flamer, +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"Uj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"Uk" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Uo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"Us" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"Uy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"UB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/adv, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"UC" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"UG" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/strata/floor3/east, +/area/lv624/lazarus/crashed_ship) +"UU" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"UZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"Vb" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/plating/plating_catwalk, +/area/lv624/lazarus/crashed_ship) +"Vg" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" + }, +/turf/open/floor/strata, +/area/lv624/lazarus/crashed_ship) +"Vn" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"Vx" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/med) +"VB" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/engi) +"VE" = ( +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"VF" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" + }, +/area/lv624/lazarus/crashed_ship) +"VH" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/green/east, +/area/lv624/lazarus/crashed_ship) +"VY" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2"; + density = 1; + closed = 0 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Wa" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"Wm" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"Wp" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_2" + }, +/area/lv624/lazarus/crashed_ship) +"Ws" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer, +/area/lv624/lazarus/crashed_ship) +"Wt" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/strata/ag/interior/outpost/med) +"Wu" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/gen/foyer) +"WC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"WG" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"WN" = ( +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"WO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"WR" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/strata/ag/interior/outpost/admin) +"WS" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/darkyellowfull2, +/area/lv624/lazarus/crashed_ship) +"WT" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"WW" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/lv624/lazarus/crashed_ship) +"WX" = ( +/turf/open/floor/almayer/greencorner/north, +/area/lv624/lazarus/crashed_ship) +"WY" = ( +/obj/item/stack/rods, +/turf/open/floor/strata, +/area/lv624/lazarus/crashed_ship) +"Xa" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"Xg" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"Xj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"Xk" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/crashed_ship) +"Xo" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"Xs" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"Xt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"XC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/backpack/general_belt{ + pixel_y = 3 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"XD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"XE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"XG" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan9" + }, +/area/lv624/lazarus/crashed_ship) +"XH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + dir = 1; + name = "\improper Side Entrance" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"XI" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + icon_state = "plasteel_closed_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"XS" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_right" + }, +/area/lv624/lazarus/crashed_ship) +"XT" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/gen/foyer) +"Ym" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/engi) +"Yp" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_2_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Yu" = ( +/turf/open/floor/plating, +/area/lv624/lazarus/crashed_ship) +"Yy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"YA" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/lv624/lazarus/crashed_ship) +"YB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/gen/foyer) +"YD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_y = 1 + }, +/obj/item/stack/sheet/plasteel{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/orange/southeast, +/area/lv624/lazarus/crashed_ship) +"YI" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/toy/katana, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"YM" = ( +/obj/structure/machinery/photocopier, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"YQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"YR" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"YS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata, +/area/strata/ag/interior/mountain) +"YW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"YX" = ( +/obj/effect/vehicle_spawner/van/fixed{ + color = "#4a9eed"; + desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; + name = "CLF Van" + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/crashed_ship) +"YZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"Ze" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/strata/ag/interior/outpost/gen/foyer) +"Zf" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"Zk" = ( +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"Zp" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/platingdmg1, +/area/strata/ag/interior/outpost/admin) +"Zr" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/toolbox, +/obj/item/toy/deck/uno{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) +"Zs" = ( +/obj/structure/sign/safety/fire_haz, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/admin) +"ZP" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/lv624/lazarus/crashed_ship) +"ZS" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/strata_outpost, +/area/lv624/lazarus/crashed_ship) +"ZY" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) + +(1,1,1) = {" +Zk +gZ +Us +JE +bT +fl +tj +WO +DD +gn +Xj +DD +zg +Uo +XT +Ze +yS +Qi +Kt +vT +PW +wc +ON +vT +vT +dg +ju +iv +OK +fs +sP +Pl +CZ +kU +kw +mn +AP +oz +lj +ls +ls +ls +rj +"} +(2,1,1) = {" +ut +Ds +Us +JE +lX +fl +fl +oE +eN +gn +Xj +jV +XT +XT +XT +hs +XT +wc +kf +fc +fc +zS +fc +fc +Nc +YA +RK +Gn +ON +vT +fA +af +KT +cO +IT +mn +mr +oq +si +yC +vG +ls +jg +"} +(3,1,1) = {" +Fm +Ds +Us +PF +vu +YW +iM +JI +YB +dl +Fz +os +os +Ln +os +yJ +dk +Oq +Mr +YR +fK +JT +mf +NQ +Dz +Nc +YA +RK +Wt +bS +PU +OD +Nn +cO +Dx +iU +jm +oq +si +Pl +TN +hy +RH +"} +(4,1,1) = {" +Ym +bv +Xt +Kf +cB +bO +md +Ym +IB +Wu +xH +qr +qr +mw +lk +az +kf +fc +xa +dH +rW +JT +py +zM +kP +Dz +IF +ZS +fA +fA +fA +eZ +yF +Im +Su +qs +hh +oq +si +es +mn +hy +sR +"} +(5,1,1) = {" +Zf +Ds +Hc +jz +jz +jz +jz +cu +BQ +jV +Ze +xS +EJ +mw +qr +vE +Mr +Bg +Dn +iO +mu +JT +cM +FH +rL +hS +XS +fc +fc +fc +fc +fc +IF +hO +fj +ds +xY +sM +si +jl +kw +oi +ha +"} +(6,1,1) = {" +Zk +ph +ym +ym +ym +ym +jP +cu +mF +Pk +Kx +Pk +Ch +kf +CQ +rk +TL +Ff +mu +lC +fL +JT +yD +mu +mu +SO +JT +LL +iL +uW +Xo +Qb +Dz +Nc +YA +RK +Gn +zT +dV +tO +Ey +mj +OF +"} +(7,1,1) = {" +Zk +MD +MD +ep +EW +Uj +gZ +AG +Iz +QU +wk +kf +IN +xa +AL +JQ +JT +qN +mu +iT +YD +JT +vD +rL +mu +Wm +JT +lf +xc +YX +AL +xc +Yu +Dz +Nc +YA +RK +Gn +ac +Pl +Pl +Jo +KS +"} +(8,1,1) = {" +nV +Ym +Ym +nV +nV +Qq +ur +Ew +Pk +Nr +wk +tM +KM +dc +Yu +WN +Hr +Wp +nG +Wp +Wp +ht +cm +Bj +hk +Ri +JT +RT +xc +lf +AL +QF +aD +Yu +Dz +Nc +YA +RK +Gn +nT +iU +Xs +do +"} +(9,1,1) = {" +ym +ym +Ib +ym +ym +FJ +NZ +vC +tC +kf +vR +ht +yt +jU +WN +AL +AL +mu +mu +Ky +NB +JT +xj +rL +mu +FH +gF +jI +fN +jI +IM +Ex +fD +wR +Yu +Dz +fc +fc +IF +qs +nc +Xs +Er +"} +(10,1,1) = {" +Zk +Zk +lv +Zk +vC +VB +BX +AG +kf +xa +PL +kB +AL +Md +tg +Yu +JT +Vn +mu +mu +yK +JT +GT +NI +mu +mu +mu +Yu +gH +gf +Mc +sA +Th +Li +ey +GJ +Rg +Yu +wH +ML +qs +jn +aU +"} +(11,1,1) = {" +mV +mV +mV +mV +kT +Iz +Pk +Pk +pE +WN +AL +JT +WN +AL +Rg +UC +JT +jy +FH +mu +Bn +Hr +Wp +Wp +mu +TB +ht +hQ +RW +Rg +Yp +SA +UC +Rg +AL +WS +AL +WN +wH +ds +ds +mj +OF +"} +(12,1,1) = {" +XE +mc +TS +mc +kT +IX +Pk +ib +nM +sg +WN +IN +cE +WN +AL +Rg +yh +QI +je +mu +mu +kK +mu +mu +mu +nj +JT +PM +AL +xA +AL +pU +Yu +WN +cX +Sc +Md +xc +lG +qs +iU +cS +ux +"} +(13,1,1) = {" +ZY +ZY +oa +sH +sH +Lj +PS +Md +WN +CQ +qj +Hr +Jq +WN +Rg +Wp +ht +Kd +yU +yU +Ht +FH +nj +mu +nj +uB +Qk +xW +gw +Yu +Rg +Co +Yu +WY +cX +AL +WN +AL +UG +ds +kM +iU +OF +"} +(14,1,1) = {" +Ts +fi +YZ +KG +Wa +Iz +wg +yh +Yu +Md +AL +Be +Yu +AL +Md +XC +Hr +Wp +Wp +Wp +Wp +ht +wE +mu +uc +fP +JT +TU +OE +AL +Pt +VY +Rg +Rg +WN +Rg +cX +xc +Jf +dL +YS +dL +ls +"} +(15,1,1) = {" +mc +mc +xG +mc +Pk +pD +qu +ZP +OX +dY +Yu +AL +tB +Rg +Rg +je +JT +tK +XD +UB +GS +JT +nj +yR +up +uB +Qk +Yu +rC +BF +Rg +VY +CQ +AL +yj +CQ +CQ +xc +Vg +lo +Sh +nH +ls +"} +(16,1,1) = {" +fF +fH +fH +fH +Pk +kT +Pk +WW +Ka +Yu +Rg +JT +WN +Rg +AL +MS +yh +oA +Ev +Zr +GS +JT +se +kO +wp +fP +JT +hM +Yu +Yu +WN +og +AL +Iy +CQ +WN +CQ +CQ +jE +Fp +Hl +Cu +Cr +"} +(17,1,1) = {" +bH +bH +fq +bH +mV +kT +kT +Pk +WW +Ka +QS +Qk +Rg +FH +mu +FH +JT +pj +OZ +OZ +OZ +JT +gt +Vb +us +uB +JT +Uk +XI +Ga +Yu +Cl +GJ +Yu +WN +AL +AL +WN +wH +fA +fA +fA +Mk +"} +(18,1,1) = {" +IV +Yy +YM +Da +tH +WC +db +Zp +xf +Qk +BZ +JT +Nu +FH +mu +mu +zj +mu +mu +mu +mu +zj +mu +mu +dC +fP +qh +AL +Cm +Nm +WT +qJ +vf +vf +jX +GJ +Yu +Rg +wH +ST +DT +wG +DT +"} +(19,1,1) = {" +mc +hd +mc +vF +tH +fH +Kx +kT +xf +WW +Cv +ht +Sq +Nu +mu +FH +FH +OZ +OZ +OZ +OZ +FH +FH +mu +nj +uB +Jq +Yu +dc +gH +cZ +WN +UU +rd +Yu +XG +Cv +Cv +df +YQ +DA +YQ +YQ +"} +(20,1,1) = {" +Sl +nD +mc +pJ +UZ +fH +Lx +mc +xf +kT +ei +JT +Ws +oZ +mu +FH +Hr +Wp +Wp +Wp +Wp +ht +uj +mu +uc +fP +JT +hQ +AL +JP +WN +sy +if +Cm +XG +RA +CY +rR +qB +KE +PP +SL +SL +"} +(21,1,1) = {" +Ad +Jr +mc +BW +tH +fH +Kx +jr +WG +kT +wk +WW +Cv +Ka +mu +FH +JT +Ub +YI +BP +WX +ND +FH +mu +nj +uB +JT +lc +Yu +pS +AL +sw +vT +XG +RA +CY +rR +qB +fA +fA +fA +fA +fA +"} +(22,1,1) = {" +fH +Jr +mc +uU +tH +fH +Kx +hv +WG +fH +wk +Dj +Jr +WW +Yu +XH +ht +HV +je +td +mu +mu +dw +mu +mu +da +JT +tx +Rg +WN +Rg +LG +XG +RA +CY +rR +qB +Ec +fA +fA +fA +fA +fA +"} +(23,1,1) = {" +fH +Jr +Xa +Hx +UZ +fH +Lx +cV +WG +ci +Sa +tt +Ch +WR +Nr +wk +Mr +Aj +VH +Ht +dZ +JT +bB +Ka +FH +Ui +dz +Cv +Cv +Cv +Cv +Cv +df +mb +vT +wc +Mo +Vx +ni +cP +OH +bU +fA +"} +(24,1,1) = {" +fH +Jr +mc +EO +tH +fH +Kx +wL +WG +LZ +nB +tt +po +mc +kT +wk +WW +Cv +Ka +Ik +kJ +JT +Xk +JT +Ae +XG +df +pk +jB +aG +FP +qX +fA +vT +Dy +Dy +Dy +lM +ni +aM +Xg +vj +fA +"} +(25,1,1) = {" +fH +Jr +mc +EO +tH +fH +Kx +fy +hY +LZ +fH +po +po +Ch +Pk +hC +jF +oV +Mr +PK +yH +JT +ov +JT +XG +RA +CY +jB +jB +wB +Ja +bf +fA +wc +vc +vc +vc +lM +ni +Lz +Xg +ji +ni +"} +(26,1,1) = {" +fH +Ch +bk +EO +mV +fH +Kx +fB +pm +LZ +fH +kY +Zs +Ch +vH +vQ +Hv +sx +WW +Cv +Cv +VF +Cv +VF +RA +CY +rR +gK +HM +eG +cJ +fe +zR +wc +VE +VE +Uy +lM +fA +rE +vY +pq +fA +"} diff --git a/maps/new_varadero.json b/maps/new_varadero.json index ec90142c2295..9174e507c85e 100644 --- a/maps/new_varadero.json +++ b/maps/new_varadero.json @@ -14,8 +14,7 @@ "/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/nv", "/datum/equipment_preset/survivor/security/nv", "/datum/equipment_preset/survivor/beachbum", - "/datum/equipment_preset/survivor/miner", - "/datum/equipment_preset/survivor/clf" + "/datum/equipment_preset/survivor/miner" ], "CO_survivor_types": [ "/datum/equipment_preset/survivor/new_varadero/commander" @@ -36,6 +35,7 @@ ], "environment_traits": { "Fog": true }, "traits": [{ "Ground": true }], + "nightmare_path": "maps/Nightmare/maps/New_Varadero/", "xvx_hives": { "xeno_hive_alpha": 0, "xeno_hive_bravo": 0, diff --git a/maps/prison_station_fop.json b/maps/prison_station_fop.json index 69469ea2fd03..6ad4bbd1ef69 100644 --- a/maps/prison_station_fop.json +++ b/maps/prison_station_fop.json @@ -11,7 +11,6 @@ "/datum/equipment_preset/survivor/prisoner", "/datum/equipment_preset/survivor/gangleader", "/datum/equipment_preset/survivor/engineer/fiorina", - "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], "defcon_triggers": [ diff --git a/maps/shivas_snowball.json b/maps/shivas_snowball.json index 412f0e35ff41..0dbba9deab06 100644 --- a/maps/shivas_snowball.json +++ b/maps/shivas_snowball.json @@ -13,7 +13,6 @@ "/datum/equipment_preset/survivor/engineer/shiva", "/datum/equipment_preset/survivor/colonial_marshal/shiva", "/datum/equipment_preset/survivor/security/shiva", - "/datum/equipment_preset/survivor/clf/cold", "/datum/equipment_preset/survivor/civilian" ], "defcon_triggers": [